From 44d4fa44498eb108001a47e281d496f9556657ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 18:40:42 +0000 Subject: [PATCH] chore: version packages (alpha) --- .changeset/pre.json | 5 ++++- packages/core/CHANGELOG.md | 2 ++ packages/core/package.json | 2 +- packages/dom/CHANGELOG.md | 8 ++++++++ packages/dom/package.json | 6 +++--- packages/router/CHANGELOG.md | 6 ++++++ packages/router/package.json | 4 ++-- packages/testing/CHANGELOG.md | 6 ++++++ packages/testing/package.json | 4 ++-- pnpm-lock.yaml | 8 ++++---- 10 files changed, 38 insertions(+), 13 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index f65cbe7..0a333fa 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -9,12 +9,15 @@ "@intent-framework/server": "0.1.0", "@intent-framework/testing": "0.1.0-alpha.0", "canonical-invite": "0.0.0", - "choice-form": "0.0.0" + "choice-form": "0.0.0", + "resource-lifecycle": "0.0.0", + "secret-vault": "0.0.0" }, "changesets": [ "five-ducks-sleep", "fresh-jokes-flow", "goofy-oranges-wish", + "many-experts-chew", "quiet-ligers-fetch", "shy-kids-grow", "silent-dragons-exist", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 4e00c00..2f075a2 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @intent-framework/core +## 0.1.0-alpha.7 + ## 0.1.0-alpha.6 ## 0.1.0-alpha.5 diff --git a/packages/core/package.json b/packages/core/package.json index 3a70355..0e4e3c6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "0.1.0-alpha.6", + "version": "0.1.0-alpha.7", "description": "Platformless semantic graph and runtime for Intent applications", "license": "MIT", "repository": { diff --git a/packages/dom/CHANGELOG.md b/packages/dom/CHANGELOG.md index 4ae2881..9d8456e 100644 --- a/packages/dom/CHANGELOG.md +++ b/packages/dom/CHANGELOG.md @@ -1,5 +1,13 @@ # @intent-framework/dom +## 0.1.0-alpha.7 + +### Patch Changes + +- 2185136: renderDom now renders each surface as a separate `
` with accessible label and unique DOM id. Multi-surface screens use `--` suffixed DOM ids to avoid duplicates. Duplicate ask controls across surfaces share underlying state; duplicate action buttons execute the same action. Single-surface screens preserve backward-compatible DOM output with no suffixing or section wrappers. + - @intent-framework/core@0.1.0-alpha.7 + - @intent-framework/router@0.1.0-alpha.7 + ## 0.1.0-alpha.6 ### Patch Changes diff --git a/packages/dom/package.json b/packages/dom/package.json index c3e1d87..ad6f254 100644 --- a/packages/dom/package.json +++ b/packages/dom/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "0.1.0-alpha.6", + "version": "0.1.0-alpha.7", "description": "DOM materializer for Intent screens and router", "license": "MIT", "repository": { @@ -32,8 +32,8 @@ "lint": "tsc -b" }, "dependencies": { - "@intent-framework/core": "workspace:^0.1.0-alpha.6", - "@intent-framework/router": "workspace:^0.1.0-alpha.6" + "@intent-framework/core": "workspace:^0.1.0-alpha.7", + "@intent-framework/router": "workspace:^0.1.0-alpha.7" }, "devDependencies": { "jsdom": "^29.1.1", diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 12384c8..d045724 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -1,5 +1,11 @@ # @intent-framework/router +## 0.1.0-alpha.7 + +### Patch Changes + +- @intent-framework/core@0.1.0-alpha.7 + ## 0.1.0-alpha.6 ### Patch Changes diff --git a/packages/router/package.json b/packages/router/package.json index 0f6da4e..9b41a6e 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "0.1.0-alpha.6", + "version": "0.1.0-alpha.7", "description": "Typed route definitions and navigation for Intent", "license": "MIT", "repository": { @@ -32,7 +32,7 @@ "lint": "tsc -b --noEmit" }, "dependencies": { - "@intent-framework/core": "workspace:^0.1.0-alpha.6" + "@intent-framework/core": "workspace:^0.1.0-alpha.7" }, "devDependencies": { "tsdown": "^0.3.0", diff --git a/packages/testing/CHANGELOG.md b/packages/testing/CHANGELOG.md index d2b4a6e..b7dff6b 100644 --- a/packages/testing/CHANGELOG.md +++ b/packages/testing/CHANGELOG.md @@ -1,5 +1,11 @@ # @intent-framework/testing +## 0.1.0-alpha.7 + +### Patch Changes + +- @intent-framework/core@0.1.0-alpha.7 + ## 0.1.0-alpha.6 ### Patch Changes diff --git a/packages/testing/package.json b/packages/testing/package.json index b2a6197..11a3c62 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "0.1.0-alpha.6", + "version": "0.1.0-alpha.7", "description": "Semantic test harness for Intent screens", "license": "MIT", "repository": { @@ -32,7 +32,7 @@ "lint": "tsc -b" }, "dependencies": { - "@intent-framework/core": "workspace:^0.1.0-alpha.6" + "@intent-framework/core": "workspace:^0.1.0-alpha.7" }, "devDependencies": { "tsdown": "^0.3.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d68b743..943be30 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -143,10 +143,10 @@ importers: packages/dom: dependencies: '@intent-framework/core': - specifier: workspace:^0.1.0-alpha.6 + specifier: workspace:^0.1.0-alpha.7 version: link:../core '@intent-framework/router': - specifier: workspace:^0.1.0-alpha.6 + specifier: workspace:^0.1.0-alpha.7 version: link:../router devDependencies: jsdom: @@ -165,7 +165,7 @@ importers: packages/router: dependencies: '@intent-framework/core': - specifier: workspace:^0.1.0-alpha.6 + specifier: workspace:^0.1.0-alpha.7 version: link:../core devDependencies: tsdown: @@ -197,7 +197,7 @@ importers: packages/testing: dependencies: '@intent-framework/core': - specifier: workspace:^0.1.0-alpha.6 + specifier: workspace:^0.1.0-alpha.7 version: link:../core devDependencies: tsdown: