Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .changeset/iframe-bos-viewer-landing.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/orpc-sse-vote-streaming.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/sidebar-projects-navigation.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/skill-surface-assistant.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/style-chrome-cleanup.md

This file was deleted.

7 changes: 7 additions & 0 deletions api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api",
"version": "2.4.6",
"version": "2.5.0",
"type": "module",
"exports": {
".": {
Expand Down
10 changes: 10 additions & 0 deletions host/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion host/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "host",
"version": "1.7.2",
"version": "1.7.3",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
12 changes: 12 additions & 0 deletions packages/everything-dev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/everything-dev/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everything-dev",
"version": "1.28.12",
"version": "1.29.0",
"type": "module",
"publishConfig": {
"access": "public"
Expand Down
12 changes: 12 additions & 0 deletions plugins/projects/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/projects/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
25 changes: 25 additions & 0 deletions ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "1.4.5",
"version": "1.5.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
Loading