From 059fb06203823d4edebf7ad5c151caae18137c67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 20:47:14 +0000 Subject: [PATCH] chore: version packages --- .changeset/lazy-otters-shave.md | 5 ----- .changeset/tidy-donuts-tickle.md | 5 ----- .changeset/wild-ghosts-brake.md | 5 ----- api/CHANGELOG.md | 6 ++++++ api/package.json | 2 +- host/CHANGELOG.md | 6 ++++++ host/package.json | 2 +- ui/CHANGELOG.md | 6 ++++++ ui/package.json | 2 +- 9 files changed, 21 insertions(+), 18 deletions(-) delete mode 100644 .changeset/lazy-otters-shave.md delete mode 100644 .changeset/tidy-donuts-tickle.md delete mode 100644 .changeset/wild-ghosts-brake.md diff --git a/.changeset/lazy-otters-shave.md b/.changeset/lazy-otters-shave.md deleted file mode 100644 index 781c9312..00000000 --- a/.changeset/lazy-otters-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"api": patch ---- - -Add a starter test suite for the API plugin: vitest config, an integration harness (`tests/setup.ts`) that boots the plugin runtime over HTTP with typed oRPC clients and injectable auth/org context, integration tests for public and authenticated routes, and PGlite-backed unit tests for `TenantsService`. The root `test:api` script now runs real tests instead of erroring with "no test files found". diff --git a/.changeset/tidy-donuts-tickle.md b/.changeset/tidy-donuts-tickle.md deleted file mode 100644 index 8a537553..00000000 --- a/.changeset/tidy-donuts-tickle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"ui": patch ---- - -Fix login redirect loop after successful sign-in by invalidating the session query before navigating. Use the typed `detectNearAccount` (removes `as any`) and `getNearClient()` for direct wallet transactions. diff --git a/.changeset/wild-ghosts-brake.md b/.changeset/wild-ghosts-brake.md deleted file mode 100644 index 518a206c..00000000 --- a/.changeset/wild-ghosts-brake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"host": patch ---- - -Add `wss:` scheme to CSP `connect-src` directive to allow WebSocket connections (e.g. nostr relays, streaming APIs). Plugins declaring `connectSrc` with `wss://` URLs now work through the host without per-request CSP overrides. diff --git a/api/CHANGELOG.md b/api/CHANGELOG.md index 1d3afbd9..ccca0d9b 100644 --- a/api/CHANGELOG.md +++ b/api/CHANGELOG.md @@ -1,5 +1,11 @@ # api +## 2.8.1 + +### Patch Changes + +- 7138a8b: Add a starter test suite for the API plugin: vitest config, an integration harness (`tests/setup.ts`) that boots the plugin runtime over HTTP with typed oRPC clients and injectable auth/org context, integration tests for public and authenticated routes, and PGlite-backed unit tests for `TenantsService`. The root `test:api` script now runs real tests instead of erroring with "no test files found". + ## 2.8.0 ### Minor Changes diff --git a/api/package.json b/api/package.json index f5c29d45..e49361c1 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "api", - "version": "2.8.0", + "version": "2.8.1", "type": "module", "engines": { "node": ">=20.11" diff --git a/host/CHANGELOG.md b/host/CHANGELOG.md index 92171006..266ec645 100644 --- a/host/CHANGELOG.md +++ b/host/CHANGELOG.md @@ -1,5 +1,11 @@ # host +## 1.16.1 + +### Patch Changes + +- 97ae11d: Add `wss:` scheme to CSP `connect-src` directive to allow WebSocket connections (e.g. nostr relays, streaming APIs). Plugins declaring `connectSrc` with `wss://` URLs now work through the host without per-request CSP overrides. + ## 1.16.0 ### Minor Changes diff --git a/host/package.json b/host/package.json index a30992e9..999735b8 100644 --- a/host/package.json +++ b/host/package.json @@ -1,6 +1,6 @@ { "name": "host", - "version": "1.16.0", + "version": "1.16.1", "private": true, "type": "module", "scripts": { diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index 2e0f7c09..d268dbc6 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -1,5 +1,11 @@ # ui +## 1.9.1 + +### Patch Changes + +- f5fb888: Fix login redirect loop after successful sign-in by invalidating the session query before navigating. Use the typed `detectNearAccount` (removes `as any`) and `getNearClient()` for direct wallet transactions. + ## 1.9.0 ### Minor Changes diff --git a/ui/package.json b/ui/package.json index aef45a1d..014b8499 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "ui", - "version": "1.9.0", + "version": "1.9.1", "private": true, "type": "module", "scripts": {