From bf9bcba1acb10d260065521c6aa6b68fe27bb22d Mon Sep 17 00:00:00 2001 From: Jarvis Date: Sat, 4 Apr 2026 21:15:59 -0500 Subject: [PATCH] fix(packages): bump db/memory/queue for PGlite + adapter factories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same class of bug as #386: source content changed without a version bump, so the published tarballs on Gitea are stale and missing exports that the gateway imports at runtime. - @mosaic/db@0.0.2 registry tarball has no client-pglite.* files — gateway crashes with "does not provide an export named createPgliteDb" (createPgliteDb was added in fc7fa119 without bumping the version) - @mosaic/memory@0.0.2 is missing factory.* / types.* on registry - @mosaic/queue@0.0.2 is missing factory.* / types.* on registry Bumps: - @mosaic/db 0.0.2 → 0.0.3 - @mosaic/memory 0.0.2 → 0.0.3 - @mosaic/queue 0.0.2 → 0.0.3 - @mosaic/gateway 0.0.5 → 0.0.6 (required because ^0.0.2 in sub-1.0 semver only matches 0.0.2 exactly, so gateway must republish with ^0.0.3 deps) Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/gateway/package.json | 2 +- packages/db/package.json | 2 +- packages/memory/package.json | 2 +- packages/queue/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/gateway/package.json b/apps/gateway/package.json index e8fade3..566b6ed 100644 --- a/apps/gateway/package.json +++ b/apps/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@mosaic/gateway", - "version": "0.0.5", + "version": "0.0.6", "repository": { "type": "git", "url": "https://git.mosaicstack.dev/mosaic/mosaic-stack.git", diff --git a/packages/db/package.json b/packages/db/package.json index 54fa5ed..1f6669f 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@mosaic/db", - "version": "0.0.2", + "version": "0.0.3", "repository": { "type": "git", "url": "https://git.mosaicstack.dev/mosaic/mosaic-stack.git", diff --git a/packages/memory/package.json b/packages/memory/package.json index 44530f7..436e325 100644 --- a/packages/memory/package.json +++ b/packages/memory/package.json @@ -1,6 +1,6 @@ { "name": "@mosaic/memory", - "version": "0.0.2", + "version": "0.0.3", "repository": { "type": "git", "url": "https://git.mosaicstack.dev/mosaic/mosaic-stack.git", diff --git a/packages/queue/package.json b/packages/queue/package.json index 2c9f862..6bd1c24 100644 --- a/packages/queue/package.json +++ b/packages/queue/package.json @@ -1,6 +1,6 @@ { "name": "@mosaic/queue", - "version": "0.0.2", + "version": "0.0.3", "repository": { "type": "git", "url": "https://git.mosaicstack.dev/mosaic/mosaic-stack.git",