From a830e8cafc280ea46d9973deedab70387d6004a9 Mon Sep 17 00:00:00 2001 From: tiye Date: Tue, 1 Sep 2026 23:31:18 +0800 Subject: [PATCH 1/2] chore: upgrade Calcit 0.13.73 and Respo 0.16.88 --- deps.cirru | 4 ++-- .../202609012330-upgrade-calcit-01373-respo-01688.md | 8 ++++++++ package.json | 2 +- yarn.lock | 10 +++++----- 4 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 history/202609012330-upgrade-calcit-01373-respo-01688.md diff --git a/deps.cirru b/deps.cirru index b40690d..fd53f2c 100644 --- a/deps.cirru +++ b/deps.cirru @@ -1,9 +1,9 @@ -{} (:calcit-version |0.13.72) +{} (:calcit-version |0.13.73) :version |0.0.4 :dependencies $ {} (|Respo/alerts.calcit |0.10.26) |Respo/reel.calcit |0.6.10 |Respo/respo-feather.calcit |0.4.7 |Respo/respo-markdown.calcit |0.4.28 |Respo/respo-ui.calcit |0.7.13 - |Respo/respo.calcit |0.16.87 + |Respo/respo.calcit |0.16.88 diff --git a/history/202609012330-upgrade-calcit-01373-respo-01688.md b/history/202609012330-upgrade-calcit-01373-respo-01688.md new file mode 100644 index 0000000..3071a37 --- /dev/null +++ b/history/202609012330-upgrade-calcit-01373-respo-01688.md @@ -0,0 +1,8 @@ +# Upgrade Calcit 0.13.73 and Respo 0.16.88 + +- Align `deps.cirru`, `@calcit/procs`, and `yarn.lock` on Calcit 0.13.73. +- Upgrade the root Respo dependency to 0.16.88, which resolves js-ffi 0.1.11 through the module graph. +- Keep the application version unchanged because `main` is deployed directly and this change does not cut a tagged msg-buffer release. +- `caps verify --toolchain`, the existing quality baseline, JavaScript codegen, and the Node 24 production build pass. + +中文:本次同步 Calcit 0.13.73、Respo 0.16.88 与 js-ffi 0.1.11 依赖链;不升级 msg-buffer 自身版本号,继续沿用 `main` 自动部署流程。 diff --git a/package.json b/package.json index d195a2c..3ae901e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "dependencies": { - "@calcit/procs": "0.13.72", + "@calcit/procs": "0.13.73", "@google/genai": "^2.18.0", "@tiye/main-fonts": "0.0.1", "axios": "^1.15.0", diff --git a/yarn.lock b/yarn.lock index 8e6d654..c85d910 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5,14 +5,14 @@ __metadata: version: 8 cacheKey: 10c0 -"@calcit/procs@npm:0.13.72": - version: 0.13.72 - resolution: "@calcit/procs@npm:0.13.72" +"@calcit/procs@npm:0.13.73": + version: 0.13.73 + resolution: "@calcit/procs@npm:0.13.73" dependencies: "@calcit/ternary-tree": "npm:0.0.26" "@cirru/parser.ts": "npm:^0.0.9" "@cirru/writer.ts": "npm:^0.1.9" - checksum: 10c0/8ba4668d6337c346f89174e69d9b0b6ffdeb4cc47e61ed1f95bf3234524722aad562ff2ffc38c98c9f1f69c3fd00b397de42b44d20079d259871faf1c3f4aa47 + checksum: 10c0/ea00d50da82f2c855c89597ea40ddaa0c16e02e12e5b3cf19938f35fcceb01fa5b3bd8c85f0f09b4864df908fb8f25ce30e0f8020269cf7742616048ec634c4e languageName: node linkType: hard @@ -1573,7 +1573,7 @@ __metadata: version: 0.0.0-use.local resolution: "root-workspace-0b6124@workspace:." dependencies: - "@calcit/procs": "npm:0.13.72" + "@calcit/procs": "npm:0.13.73" "@google/genai": "npm:^2.18.0" "@tiye/main-fonts": "npm:0.0.1" axios: "npm:^1.15.0" From f7fac27fa62c8966b807db87c97c97a762d5f7bc Mon Sep 17 00:00:00 2001 From: tiye Date: Tue, 1 Sep 2026 23:34:07 +0800 Subject: [PATCH 2/2] ci: install independent caps release --- .github/workflows/upload.yaml | 2 +- history/202609012330-upgrade-calcit-01373-respo-01688.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/upload.yaml b/.github/workflows/upload.yaml index 7e72593..05bd618 100644 --- a/.github/workflows/upload.yaml +++ b/.github/workflows/upload.yaml @@ -22,7 +22,7 @@ jobs: corepack prepare yarn@4.12.0 --activate yarn --version - - uses: calcit-lang/setup-calcit@v1.3.0 + - uses: calcit-lang/setup-calcit@v1.4.0 with: tools: calcit,caps diff --git a/history/202609012330-upgrade-calcit-01373-respo-01688.md b/history/202609012330-upgrade-calcit-01373-respo-01688.md index 3071a37..1e8b1c1 100644 --- a/history/202609012330-upgrade-calcit-01373-respo-01688.md +++ b/history/202609012330-upgrade-calcit-01373-respo-01688.md @@ -2,7 +2,8 @@ - Align `deps.cirru`, `@calcit/procs`, and `yarn.lock` on Calcit 0.13.73. - Upgrade the root Respo dependency to 0.16.88, which resolves js-ffi 0.1.11 through the module graph. +- Upgrade `calcit-lang/setup-calcit` to v1.4.0 so CI installs the independently released `calcit-caps` tool. - Keep the application version unchanged because `main` is deployed directly and this change does not cut a tagged msg-buffer release. - `caps verify --toolchain`, the existing quality baseline, JavaScript codegen, and the Node 24 production build pass. -中文:本次同步 Calcit 0.13.73、Respo 0.16.88 与 js-ffi 0.1.11 依赖链;不升级 msg-buffer 自身版本号,继续沿用 `main` 自动部署流程。 +中文:本次同步 Calcit 0.13.73、Respo 0.16.88 与 js-ffi 0.1.11 依赖链,并升级 setup-calcit v1.4.0 以安装独立发布的 `calcit-caps`;不升级 msg-buffer 自身版本号,继续沿用 `main` 自动部署流程。