From a52d803eedd7c9151eaef1041425ce9a9aefc104 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 03:56:10 +0000 Subject: [PATCH] chore: version packages --- .changeset/calm-schools-smash.md | 5 ----- .changeset/dirty-pugs-wink.md | 6 ------ .changeset/late-ducks-yawn.md | 5 ----- .changeset/tiny-snakes-sin.md | 7 ------- .changeset/warm-bugs-hope.md | 5 ----- host/CHANGELOG.md | 11 +++++++++++ host/package.json | 2 +- package.json | 2 +- packages/everything-dev/CHANGELOG.md | 11 +++++++++++ packages/everything-dev/package.json | 2 +- plugins/apps/CHANGELOG.md | 6 ++++++ plugins/apps/package.json | 2 +- ui/CHANGELOG.md | 6 ++++++ ui/package.json | 2 +- 14 files changed, 39 insertions(+), 33 deletions(-) delete mode 100644 .changeset/calm-schools-smash.md delete mode 100644 .changeset/dirty-pugs-wink.md delete mode 100644 .changeset/late-ducks-yawn.md delete mode 100644 .changeset/tiny-snakes-sin.md delete mode 100644 .changeset/warm-bugs-hope.md diff --git a/.changeset/calm-schools-smash.md b/.changeset/calm-schools-smash.md deleted file mode 100644 index f64348d7..00000000 --- a/.changeset/calm-schools-smash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"everything-dev": patch ---- - -Fix UI-only `bos init` scaffolding so child apps keep the right workspaces, accept `--no-interactive`, and avoid generating API-only type artifacts when no local `api/` workspace exists. Clarify the public TanStack Intent skill docs for UI-only tenant children, including current scaffold caveats and cleanup guidance. diff --git a/.changeset/dirty-pugs-wink.md b/.changeset/dirty-pugs-wink.md deleted file mode 100644 index 6102701b..00000000 --- a/.changeset/dirty-pugs-wink.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"host": patch -"ui": patch ---- - -Fix production SSR by keeping the UI auth client local during server rendering and by resolving SSR-imported asset URLs from the UI remote instead of the host origin. diff --git a/.changeset/late-ducks-yawn.md b/.changeset/late-ducks-yawn.md deleted file mode 100644 index 174bf464..00000000 --- a/.changeset/late-ducks-yawn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"host": patch ---- - -Write host deployment URLs back to the root bos.config.json so release publishes can commit updated runtime URLs. diff --git a/.changeset/tiny-snakes-sin.md b/.changeset/tiny-snakes-sin.md deleted file mode 100644 index b92e2d2c..00000000 --- a/.changeset/tiny-snakes-sin.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"everything-dev": minor -"host": minor -"@everything-dev/apps-plugin": minor ---- - -Support account-relative tenant resolution on shared hosts so subdomains derive from the active runtime account instead of `label.near`, and allow nested tenant labels in the resolver and tests. Expose runtime lineage in the apps registry by deriving parent, root, depth, and extendsChain from `extends`, and add registry list filters for parent and root traversal. diff --git a/.changeset/warm-bugs-hope.md b/.changeset/warm-bugs-hope.md deleted file mode 100644 index b0639a63..00000000 --- a/.changeset/warm-bugs-hope.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"everything-dev": patch ---- - -Fix `bos types:gen` to handle remote plugins that only have a `production` URL (no `development`). Plugin contract fetch failures no longer crash the entire type generation — failed plugins are reported and skipped, and the command shows per-plugin fetched/skipped/failed status instead of only API-level status. \ No newline at end of file diff --git a/host/CHANGELOG.md b/host/CHANGELOG.md index a4b2eff7..7704e86e 100644 --- a/host/CHANGELOG.md +++ b/host/CHANGELOG.md @@ -1,5 +1,16 @@ # host +## 1.8.0 + +### Minor Changes + +- 1adfdee: Support account-relative tenant resolution on shared hosts so subdomains derive from the active runtime account instead of `label.near`, and allow nested tenant labels in the resolver and tests. Expose runtime lineage in the apps registry by deriving parent, root, depth, and extendsChain from `extends`, and add registry list filters for parent and root traversal. + +### Patch Changes + +- dd5a7d4: Fix production SSR by keeping the UI auth client local during server rendering and by resolving SSR-imported asset URLs from the UI remote instead of the host origin. +- 4629b80: Write host deployment URLs back to the root bos.config.json so release publishes can commit updated runtime URLs. + ## 1.7.3 ### Patch Changes diff --git a/host/package.json b/host/package.json index fd5014f2..bcf076a9 100644 --- a/host/package.json +++ b/host/package.json @@ -1,6 +1,6 @@ { "name": "host", - "version": "1.7.3", + "version": "1.8.0", "private": true, "type": "module", "scripts": { diff --git a/package.json b/package.json index 12f759c1..259de8ae 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "@better-auth/passkey": "1.6.9", "better-near-auth": "1.5.0", "every-plugin": "^2.5.11", - "everything-dev": "^1.29.0", + "everything-dev": "^1.30.0", "typescript": "^5.9.3", "vitest": "^4.0.17", "@libsql/client": "0.17.0", diff --git a/packages/everything-dev/CHANGELOG.md b/packages/everything-dev/CHANGELOG.md index 702296c2..bc6f9901 100644 --- a/packages/everything-dev/CHANGELOG.md +++ b/packages/everything-dev/CHANGELOG.md @@ -1,5 +1,16 @@ # everything-dev +## 1.30.0 + +### Minor Changes + +- 1adfdee: Support account-relative tenant resolution on shared hosts so subdomains derive from the active runtime account instead of `label.near`, and allow nested tenant labels in the resolver and tests. Expose runtime lineage in the apps registry by deriving parent, root, depth, and extendsChain from `extends`, and add registry list filters for parent and root traversal. + +### Patch Changes + +- 4518cdb: Fix UI-only `bos init` scaffolding so child apps keep the right workspaces, accept `--no-interactive`, and avoid generating API-only type artifacts when no local `api/` workspace exists. Clarify the public TanStack Intent skill docs for UI-only tenant children, including current scaffold caveats and cleanup guidance. +- ea4b5f2: Fix `bos types:gen` to handle remote plugins that only have a `production` URL (no `development`). Plugin contract fetch failures no longer crash the entire type generation — failed plugins are reported and skipped, and the command shows per-plugin fetched/skipped/failed status instead of only API-level status. + ## 1.29.0 ### Minor Changes diff --git a/packages/everything-dev/package.json b/packages/everything-dev/package.json index f171bde7..a93a1451 100644 --- a/packages/everything-dev/package.json +++ b/packages/everything-dev/package.json @@ -1,6 +1,6 @@ { "name": "everything-dev", - "version": "1.29.0", + "version": "1.30.0", "type": "module", "publishConfig": { "access": "public" diff --git a/plugins/apps/CHANGELOG.md b/plugins/apps/CHANGELOG.md index 7c9cc1ad..a21bff1a 100644 --- a/plugins/apps/CHANGELOG.md +++ b/plugins/apps/CHANGELOG.md @@ -1,5 +1,11 @@ # @everything-dev/registry-plugin +## 1.4.0 + +### Minor Changes + +- 1adfdee: Support account-relative tenant resolution on shared hosts so subdomains derive from the active runtime account instead of `label.near`, and allow nested tenant labels in the resolver and tests. Expose runtime lineage in the apps registry by deriving parent, root, depth, and extendsChain from `extends`, and add registry list filters for parent and root traversal. + ## 1.3.1 ### Patch Changes diff --git a/plugins/apps/package.json b/plugins/apps/package.json index 7c4f599b..3c1d3ca9 100644 --- a/plugins/apps/package.json +++ b/plugins/apps/package.json @@ -1,6 +1,6 @@ { "name": "@everything-dev/apps-plugin", - "version": "1.3.1", + "version": "1.4.0", "description": "Apps plugin for discovering and publishing apps via NEAR FastKV", "type": "module", "exports": { diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index 8dbaaafd..f2bfb160 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -1,5 +1,11 @@ # ui +## 1.5.1 + +### Patch Changes + +- dd5a7d4: Fix production SSR by keeping the UI auth client local during server rendering and by resolving SSR-imported asset URLs from the UI remote instead of the host origin. + ## 1.5.0 ### Minor Changes diff --git a/ui/package.json b/ui/package.json index dd5d22a4..4d9aa4ba 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "ui", - "version": "1.5.0", + "version": "1.5.1", "private": true, "type": "module", "scripts": {