From 34651b33510e6ff8753f5128834873fb4d530503 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 04:00:59 +0000 Subject: [PATCH] chore: version packages --- .changeset/iframe-bos-viewer-landing.md | 10 --------- .changeset/orpc-sse-vote-streaming.md | 6 ------ .changeset/sidebar-projects-navigation.md | 13 ------------ .changeset/skill-surface-assistant.md | 5 ----- .changeset/style-chrome-cleanup.md | 5 ----- api/CHANGELOG.md | 7 +++++++ api/package.json | 2 +- host/CHANGELOG.md | 10 +++++++++ host/package.json | 2 +- package.json | 2 +- packages/everything-dev/CHANGELOG.md | 12 +++++++++++ packages/everything-dev/package.json | 2 +- plugins/projects/CHANGELOG.md | 12 +++++++++++ plugins/projects/package.json | 2 +- ui/CHANGELOG.md | 25 +++++++++++++++++++++++ ui/package.json | 2 +- 16 files changed, 72 insertions(+), 45 deletions(-) delete mode 100644 .changeset/iframe-bos-viewer-landing.md delete mode 100644 .changeset/orpc-sse-vote-streaming.md delete mode 100644 .changeset/sidebar-projects-navigation.md delete mode 100644 .changeset/skill-surface-assistant.md delete mode 100644 .changeset/style-chrome-cleanup.md create mode 100644 api/CHANGELOG.md diff --git a/.changeset/iframe-bos-viewer-landing.md b/.changeset/iframe-bos-viewer-landing.md deleted file mode 100644 index ca7dee88..00000000 --- a/.changeset/iframe-bos-viewer-landing.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"host": patch -"ui": patch ---- - -Move the homepage BOS viewer into an isolated iframe surface backed by a host-rendered `/_viewer` page. - -- Update `ui/src/routes/_layout/index.tsx` to load the landing viewer through `/_viewer` while preserving `?path=` support. -- Add a dedicated host-rendered `/_viewer` endpoint with scoped CSP framing rules so the viewer can run in production without weakening the rest of the app. -- Bootstrap the NEAR BOS web component from the host page so the requested widget path is forwarded correctly into the viewer runtime. diff --git a/.changeset/orpc-sse-vote-streaming.md b/.changeset/orpc-sse-vote-streaming.md deleted file mode 100644 index afbdaf8b..00000000 --- a/.changeset/orpc-sse-vote-streaming.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"api": minor -"ui": minor ---- - -Replace manual EventSource SSE with oRPC MemoryPublisher + eventIterator. Eliminates MaxListenersExceededWarning from Node EventTarget, stabilizes query keys to prevent refetch cascades, and adds typed streaming via VoteEventSchema contract. \ No newline at end of file diff --git a/.changeset/sidebar-projects-navigation.md b/.changeset/sidebar-projects-navigation.md deleted file mode 100644 index 2263ee27..00000000 --- a/.changeset/sidebar-projects-navigation.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"everything-dev": minor -"ui": patch -"@everything-dev/projects-plugin": patch ---- - -Fix sidebar navigation to derive from plugin sidebar items and include projects - -- Updated `ui/src/routes/_layout.tsx` to properly consume generated `pluginSidebarItems` instead of using hardcoded navigation. -- Fixed `packages/everything-dev/src/sidebar.ts` so the core `home` item points to `/home` (logo/dot still links to `/` for repository markdown render). -- Added `plugins.projects.sidebar` to `bos.config.json` so the projects plugin appears in generated navigation. -- Regenerated `ui/src/lib/plugin-sidebar.gen.ts` via `bos types gen` to include the `projects` sidebar item. -- Fixed unbalanced JSX structure in `_layout.tsx` and removed stale/unused imports. diff --git a/.changeset/skill-surface-assistant.md b/.changeset/skill-surface-assistant.md deleted file mode 100644 index a8408f4d..00000000 --- a/.changeset/skill-surface-assistant.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"ui": patch ---- - -Add a public skill surface for agents and builders, including a rendered `/skill` page, an updated raw `/skill.md` prompt, links from the about page, and a floating home-screen assistant that opens quick actions for the skill and related docs. diff --git a/.changeset/style-chrome-cleanup.md b/.changeset/style-chrome-cleanup.md deleted file mode 100644 index 2b2b67cb..00000000 --- a/.changeset/style-chrome-cleanup.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"ui": patch ---- - -Refactor the shared app shell by extracting the existing `_layout` chrome into `ui/src/components/style-chrome.tsx` without changing the intended authenticated and unauthenticated UI behavior. diff --git a/api/CHANGELOG.md b/api/CHANGELOG.md new file mode 100644 index 00000000..0b3cf207 --- /dev/null +++ b/api/CHANGELOG.md @@ -0,0 +1,7 @@ +# api + +## 2.5.0 + +### Minor Changes + +- b662086: Replace manual EventSource SSE with oRPC MemoryPublisher + eventIterator. Eliminates MaxListenersExceededWarning from Node EventTarget, stabilizes query keys to prevent refetch cascades, and adds typed streaming via VoteEventSchema contract. diff --git a/api/package.json b/api/package.json index 4165d453..a75f31f1 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "api", - "version": "2.4.6", + "version": "2.5.0", "type": "module", "exports": { ".": { diff --git a/host/CHANGELOG.md b/host/CHANGELOG.md index 27173a1c..a4b2eff7 100644 --- a/host/CHANGELOG.md +++ b/host/CHANGELOG.md @@ -1,5 +1,15 @@ # host +## 1.7.3 + +### Patch Changes + +- b662086: Move the homepage BOS viewer into an isolated iframe surface backed by a host-rendered `/_viewer` page. + + - Update `ui/src/routes/_layout/index.tsx` to load the landing viewer through `/_viewer` while preserving `?path=` support. + - Add a dedicated host-rendered `/_viewer` endpoint with scoped CSP framing rules so the viewer can run in production without weakening the rest of the app. + - Bootstrap the NEAR BOS web component from the host page so the requested widget path is forwarded correctly into the viewer runtime. + ## 1.7.2 ### Patch Changes diff --git a/host/package.json b/host/package.json index c0582f0c..fd5014f2 100644 --- a/host/package.json +++ b/host/package.json @@ -1,6 +1,6 @@ { "name": "host", - "version": "1.7.2", + "version": "1.7.3", "private": true, "type": "module", "scripts": { diff --git a/package.json b/package.json index 3984d705..efdb7d83 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.28.12", + "everything-dev": "^1.29.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 52d4b4fc..702296c2 100644 --- a/packages/everything-dev/CHANGELOG.md +++ b/packages/everything-dev/CHANGELOG.md @@ -1,5 +1,17 @@ # everything-dev +## 1.29.0 + +### Minor Changes + +- b662086: Fix sidebar navigation to derive from plugin sidebar items and include projects + + - Updated `ui/src/routes/_layout.tsx` to properly consume generated `pluginSidebarItems` instead of using hardcoded navigation. + - Fixed `packages/everything-dev/src/sidebar.ts` so the core `home` item points to `/home` (logo/dot still links to `/` for repository markdown render). + - Added `plugins.projects.sidebar` to `bos.config.json` so the projects plugin appears in generated navigation. + - Regenerated `ui/src/lib/plugin-sidebar.gen.ts` via `bos types gen` to include the `projects` sidebar item. + - Fixed unbalanced JSX structure in `_layout.tsx` and removed stale/unused imports. + ## 1.28.12 ### Patch Changes diff --git a/packages/everything-dev/package.json b/packages/everything-dev/package.json index c77b343b..f171bde7 100644 --- a/packages/everything-dev/package.json +++ b/packages/everything-dev/package.json @@ -1,6 +1,6 @@ { "name": "everything-dev", - "version": "1.28.12", + "version": "1.29.0", "type": "module", "publishConfig": { "access": "public" diff --git a/plugins/projects/CHANGELOG.md b/plugins/projects/CHANGELOG.md index 0d7b4a92..d030bf2b 100644 --- a/plugins/projects/CHANGELOG.md +++ b/plugins/projects/CHANGELOG.md @@ -1,5 +1,17 @@ # @everything-dev/projects-plugin +## 1.3.3 + +### Patch Changes + +- b662086: Fix sidebar navigation to derive from plugin sidebar items and include projects + + - Updated `ui/src/routes/_layout.tsx` to properly consume generated `pluginSidebarItems` instead of using hardcoded navigation. + - Fixed `packages/everything-dev/src/sidebar.ts` so the core `home` item points to `/home` (logo/dot still links to `/` for repository markdown render). + - Added `plugins.projects.sidebar` to `bos.config.json` so the projects plugin appears in generated navigation. + - Regenerated `ui/src/lib/plugin-sidebar.gen.ts` via `bos types gen` to include the `projects` sidebar item. + - Fixed unbalanced JSX structure in `_layout.tsx` and removed stale/unused imports. + ## 1.3.2 ### Patch Changes diff --git a/plugins/projects/package.json b/plugins/projects/package.json index 2524869a..e855d30e 100644 --- a/plugins/projects/package.json +++ b/plugins/projects/package.json @@ -1,6 +1,6 @@ { "name": "@everything-dev/projects-plugin", - "version": "1.3.2", + "version": "1.3.3", "description": "Projects, KV store, and organization management plugin", "type": "module", "exports": { diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index 1f9adb7d..8dbaaafd 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -1,5 +1,30 @@ # ui +## 1.5.0 + +### Minor Changes + +- b662086: Replace manual EventSource SSE with oRPC MemoryPublisher + eventIterator. Eliminates MaxListenersExceededWarning from Node EventTarget, stabilizes query keys to prevent refetch cascades, and adds typed streaming via VoteEventSchema contract. + +### Patch Changes + +- b662086: Move the homepage BOS viewer into an isolated iframe surface backed by a host-rendered `/_viewer` page. + + - Update `ui/src/routes/_layout/index.tsx` to load the landing viewer through `/_viewer` while preserving `?path=` support. + - Add a dedicated host-rendered `/_viewer` endpoint with scoped CSP framing rules so the viewer can run in production without weakening the rest of the app. + - Bootstrap the NEAR BOS web component from the host page so the requested widget path is forwarded correctly into the viewer runtime. + +- b662086: Fix sidebar navigation to derive from plugin sidebar items and include projects + + - Updated `ui/src/routes/_layout.tsx` to properly consume generated `pluginSidebarItems` instead of using hardcoded navigation. + - Fixed `packages/everything-dev/src/sidebar.ts` so the core `home` item points to `/home` (logo/dot still links to `/` for repository markdown render). + - Added `plugins.projects.sidebar` to `bos.config.json` so the projects plugin appears in generated navigation. + - Regenerated `ui/src/lib/plugin-sidebar.gen.ts` via `bos types gen` to include the `projects` sidebar item. + - Fixed unbalanced JSX structure in `_layout.tsx` and removed stale/unused imports. + +- b662086: Add a public skill surface for agents and builders, including a rendered `/skill` page, an updated raw `/skill.md` prompt, links from the about page, and a floating home-screen assistant that opens quick actions for the skill and related docs. +- b662086: Refactor the shared app shell by extracting the existing `_layout` chrome into `ui/src/components/style-chrome.tsx` without changing the intended authenticated and unauthenticated UI behavior. + ## 1.5.3 ### Patch Changes diff --git a/ui/package.json b/ui/package.json index 4eb97ea2..dd5d22a4 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "ui", - "version": "1.4.5", + "version": "1.5.0", "private": true, "type": "module", "scripts": {