From cc0fc14a4e5978b503bae6cdb15a835edc376ff5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 02:54:05 +0000 Subject: [PATCH] chore: version packages --- .changeset/curated-public-api.md | 10 ---------- .changeset/host-selected-surface-plan.md | 8 -------- .changeset/narrow-public-api.md | 8 -------- packages/summon-react/CHANGELOG.md | 16 ++++++++++++++++ packages/summon-react/package.json | 4 ++-- packages/summon-server/CHANGELOG.md | 20 ++++++++++++++++++++ packages/summon-server/package.json | 4 ++-- packages/summon/CHANGELOG.md | 16 ++++++++++++++++ packages/summon/package.json | 2 +- 9 files changed, 57 insertions(+), 31 deletions(-) delete mode 100644 .changeset/curated-public-api.md delete mode 100644 .changeset/host-selected-surface-plan.md delete mode 100644 .changeset/narrow-public-api.md diff --git a/.changeset/curated-public-api.md b/.changeset/curated-public-api.md deleted file mode 100644 index d1b13c9..0000000 --- a/.changeset/curated-public-api.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@anarchitecture/summon": minor -"@anarchitecture/summon-server": patch -"@anarchitecture/summon-react": patch ---- - -Curate the root Summon export to the beta host-authoring API and move advanced -browser, engine, and host runtime APIs behind explicit public subpaths. Packed -server and React packages now import those public subpaths instead of relying on -root export leakage. diff --git a/.changeset/host-selected-surface-plan.md b/.changeset/host-selected-surface-plan.md deleted file mode 100644 index 0a62395..0000000 --- a/.changeset/host-selected-surface-plan.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@anarchitecture/summon": minor -"@anarchitecture/summon-server": minor ---- - -Make SurfacePlan authority host-selected: server resolution now falls back to -embedded/no-authority defaults unless an explicit host plan is accepted, and -`suggestSurfacePlan()` exposes prompt heuristics as advisory UI scaffolding. diff --git a/.changeset/narrow-public-api.md b/.changeset/narrow-public-api.md deleted file mode 100644 index aca26b1..0000000 --- a/.changeset/narrow-public-api.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@anarchitecture/summon": minor -"@anarchitecture/summon-server": minor -"@anarchitecture/summon-react": minor ---- - -Narrow public package exports to explicit adoption-path APIs and move copied -implementation output under `dist/_internal`. diff --git a/packages/summon-react/CHANGELOG.md b/packages/summon-react/CHANGELOG.md index 9401efa..b112c2d 100644 --- a/packages/summon-react/CHANGELOG.md +++ b/packages/summon-react/CHANGELOG.md @@ -1,5 +1,21 @@ # @anarchitecture/summon-react +## 0.2.0 + +### Minor Changes + +- [#5](https://github.com/block/summon/pull/5) [`4f8a939`](https://github.com/block/summon/commit/4f8a93950ec7cadd83368f322f709bf773d58c13) Thanks [@nahiyankhan](https://github.com/nahiyankhan)! - Narrow public package exports to explicit adoption-path APIs and move copied + implementation output under `dist/_internal`. + +### Patch Changes + +- [#7](https://github.com/block/summon/pull/7) [`fd68e7f`](https://github.com/block/summon/commit/fd68e7f485a247642de887912cd8a4dfe295a134) Thanks [@nahiyankhan](https://github.com/nahiyankhan)! - Curate the root Summon export to the beta host-authoring API and move advanced + browser, engine, and host runtime APIs behind explicit public subpaths. Packed + server and React packages now import those public subpaths instead of relying on + root export leakage. +- Updated dependencies [[`fd68e7f`](https://github.com/block/summon/commit/fd68e7f485a247642de887912cd8a4dfe295a134), [`0bd2551`](https://github.com/block/summon/commit/0bd25519ce86ec81c924a6de6d0056b6d06f5766), [`4f8a939`](https://github.com/block/summon/commit/4f8a93950ec7cadd83368f322f709bf773d58c13)]: + - @anarchitecture/summon@0.3.0 + ## 0.1.1 ### Patch Changes diff --git a/packages/summon-react/package.json b/packages/summon-react/package.json index 8220840..f162835 100644 --- a/packages/summon-react/package.json +++ b/packages/summon-react/package.json @@ -1,6 +1,6 @@ { "name": "@anarchitecture/summon-react", - "version": "0.1.1", + "version": "0.2.0", "description": "React adapter for rendering Summon surfaces and component islands", "license": "Apache-2.0", "author": "Block, Inc.", @@ -42,7 +42,7 @@ "prepublishOnly": "pnpm build" }, "dependencies": { - "@anarchitecture/summon": "^0.2.0" + "@anarchitecture/summon": "^0.3.0" }, "peerDependencies": { "react": ">=18.3.0 || >=19.0.0", diff --git a/packages/summon-server/CHANGELOG.md b/packages/summon-server/CHANGELOG.md index 2fc1a9a..80a25a3 100644 --- a/packages/summon-server/CHANGELOG.md +++ b/packages/summon-server/CHANGELOG.md @@ -1,5 +1,25 @@ # @anarchitecture/summon-server +## 0.2.0 + +### Minor Changes + +- [#8](https://github.com/block/summon/pull/8) [`0bd2551`](https://github.com/block/summon/commit/0bd25519ce86ec81c924a6de6d0056b6d06f5766) Thanks [@nahiyankhan](https://github.com/nahiyankhan)! - Make SurfacePlan authority host-selected: server resolution now falls back to + embedded/no-authority defaults unless an explicit host plan is accepted, and + `suggestSurfacePlan()` exposes prompt heuristics as advisory UI scaffolding. + +- [#5](https://github.com/block/summon/pull/5) [`4f8a939`](https://github.com/block/summon/commit/4f8a93950ec7cadd83368f322f709bf773d58c13) Thanks [@nahiyankhan](https://github.com/nahiyankhan)! - Narrow public package exports to explicit adoption-path APIs and move copied + implementation output under `dist/_internal`. + +### Patch Changes + +- [#7](https://github.com/block/summon/pull/7) [`fd68e7f`](https://github.com/block/summon/commit/fd68e7f485a247642de887912cd8a4dfe295a134) Thanks [@nahiyankhan](https://github.com/nahiyankhan)! - Curate the root Summon export to the beta host-authoring API and move advanced + browser, engine, and host runtime APIs behind explicit public subpaths. Packed + server and React packages now import those public subpaths instead of relying on + root export leakage. +- Updated dependencies [[`fd68e7f`](https://github.com/block/summon/commit/fd68e7f485a247642de887912cd8a4dfe295a134), [`0bd2551`](https://github.com/block/summon/commit/0bd25519ce86ec81c924a6de6d0056b6d06f5766), [`4f8a939`](https://github.com/block/summon/commit/4f8a93950ec7cadd83368f322f709bf773d58c13)]: + - @anarchitecture/summon@0.3.0 + ## 0.1.1 ### Patch Changes diff --git a/packages/summon-server/package.json b/packages/summon-server/package.json index 619b373..7692410 100644 --- a/packages/summon-server/package.json +++ b/packages/summon-server/package.json @@ -1,6 +1,6 @@ { "name": "@anarchitecture/summon-server", - "version": "0.1.1", + "version": "0.2.0", "description": "Provider-neutral server-side generation primitives for Summon surfaces", "license": "Apache-2.0", "author": "Block, Inc.", @@ -42,7 +42,7 @@ "prepublishOnly": "pnpm build" }, "dependencies": { - "@anarchitecture/summon": "^0.2.0" + "@anarchitecture/summon": "^0.3.0" }, "devDependencies": { "typescript": "^5.4.0" diff --git a/packages/summon/CHANGELOG.md b/packages/summon/CHANGELOG.md index 038fa5d..474b5b3 100644 --- a/packages/summon/CHANGELOG.md +++ b/packages/summon/CHANGELOG.md @@ -1,5 +1,21 @@ # @anarchitecture/summon +## 0.3.0 + +### Minor Changes + +- [#7](https://github.com/block/summon/pull/7) [`fd68e7f`](https://github.com/block/summon/commit/fd68e7f485a247642de887912cd8a4dfe295a134) Thanks [@nahiyankhan](https://github.com/nahiyankhan)! - Curate the root Summon export to the beta host-authoring API and move advanced + browser, engine, and host runtime APIs behind explicit public subpaths. Packed + server and React packages now import those public subpaths instead of relying on + root export leakage. + +- [#8](https://github.com/block/summon/pull/8) [`0bd2551`](https://github.com/block/summon/commit/0bd25519ce86ec81c924a6de6d0056b6d06f5766) Thanks [@nahiyankhan](https://github.com/nahiyankhan)! - Make SurfacePlan authority host-selected: server resolution now falls back to + embedded/no-authority defaults unless an explicit host plan is accepted, and + `suggestSurfacePlan()` exposes prompt heuristics as advisory UI scaffolding. + +- [#5](https://github.com/block/summon/pull/5) [`4f8a939`](https://github.com/block/summon/commit/4f8a93950ec7cadd83368f322f709bf773d58c13) Thanks [@nahiyankhan](https://github.com/nahiyankhan)! - Narrow public package exports to explicit adoption-path APIs and move copied + implementation output under `dist/_internal`. + ## 0.2.0 ### Minor Changes diff --git a/packages/summon/package.json b/packages/summon/package.json index 8ec63ee..86809d4 100644 --- a/packages/summon/package.json +++ b/packages/summon/package.json @@ -1,6 +1,6 @@ { "name": "@anarchitecture/summon", - "version": "0.2.0", + "version": "0.3.0", "description": "Sandboxed generative UI runtime, protocol, policy bridge, and browser host primitives", "license": "Apache-2.0", "author": "Block, Inc.",