@calcit/procs 0.13.64 → 0.13.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# 2026-08-30 WASM-safe library dependencies / WASM 安全的 library 依赖
|
|
2
|
+
|
|
3
|
+
- Move CLI-only download, filesystem locking, home-directory, and file-watch
|
|
4
|
+
dependencies behind the non-wasm target boundary.
|
|
5
|
+
- Add a CI check that compiles the Calcit library for
|
|
6
|
+
`wasm32-unknown-unknown`, preventing native CLI dependencies from leaking
|
|
7
|
+
back into browser runtimes.
|
|
8
|
+
- Align the Actions toolchain with `rust-toolchain.toml` so the WASM standard
|
|
9
|
+
library is installed for the compiler Cargo actually uses.
|
|
10
|
+
- Keep the local JS regression command aligned with CI by installing
|
|
11
|
+
`scripts/main.mjs` after code generation, so clean workspaces have a launcher.
|
|
12
|
+
- Validate the boundary through the real `calcit-lang/wasm-play` embedded
|
|
13
|
+
runtime upgrade.
|
|
14
|
+
- 将 CLI 专用的下载、文件锁、home 目录与文件监听依赖移到 non-wasm target
|
|
15
|
+
边界之后。
|
|
16
|
+
- CI 新增 `wasm32-unknown-unknown` Calcit library 编译检查,防止 native CLI
|
|
17
|
+
依赖重新泄漏到浏览器 runtime。
|
|
18
|
+
- 将 Actions 工具链与 `rust-toolchain.toml` 对齐,确保 WASM 标准库安装到
|
|
19
|
+
Cargo 实际使用的编译器。
|
|
20
|
+
- 将本地 JS 回归命令与 CI 对齐,在代码生成后安装 `scripts/main.mjs`,避免干净工作区
|
|
21
|
+
因缺少启动入口失败。
|
|
22
|
+
- 通过真实 `calcit-lang/wasm-play` 内嵌 runtime 升级验证该边界。
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# 2026-08-30 Release 0.13.65 / 发布 0.13.65
|
|
2
|
+
|
|
3
|
+
- Publish the WASM-safe Calcit library dependency boundary from issue #528
|
|
4
|
+
and PR #529.
|
|
5
|
+
- Include the pinned Rust/WASM CI guard and clean-workspace JS regression
|
|
6
|
+
launcher fix.
|
|
7
|
+
- 发布 issue #528 与 PR #529 完成的 Calcit library WASM 安全依赖边界。
|
|
8
|
+
- 包含固定 Rust 工具链的 WASM CI 守门,以及干净工作区 JS 回归启动修复。
|
package/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calcit/procs",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.65",
|
|
4
4
|
"main": "./lib/calcit.procs.mjs",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@types/node": "^25.7.0",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"try-core-tests": "cargo run --bin calcit -- src/cirru/calcit-core.cirru test --tag unit --summary-only",
|
|
32
32
|
"try-rs": "cargo run --bin calcit -- calcit/test.cirru",
|
|
33
33
|
"warn-dyn-method": "cargo run --bin calcit -- calcit/test.cirru --warn-dyn-method",
|
|
34
|
-
"try-js-brk": "cargo run --bin calcit -- calcit/test.cirru js && node --inspect-brk js-out/main.mjs",
|
|
35
|
-
"try-js": "cargo run --bin calcit -- calcit/test.cirru js && node js-out/main.mjs",
|
|
34
|
+
"try-js-brk": "cargo run --bin calcit -- calcit/test.cirru js && cp scripts/main.mjs js-out/main.mjs && node --inspect-brk js-out/main.mjs",
|
|
35
|
+
"try-js": "cargo run --bin calcit -- calcit/test.cirru js && cp scripts/main.mjs js-out/main.mjs && node js-out/main.mjs",
|
|
36
36
|
"try-ir": "cargo run --bin calcit -- calcit/test.cirru ir",
|
|
37
37
|
"try-wasm": "bash scripts/test-wasm.sh"
|
|
38
38
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calcit/procs",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.65",
|
|
4
4
|
"main": "./lib/calcit.procs.mjs",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@types/node": "^25.7.0",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"try-core-tests": "cargo run --bin calcit -- src/cirru/calcit-core.cirru test --tag unit --summary-only",
|
|
32
32
|
"try-rs": "cargo run --bin calcit -- calcit/test.cirru",
|
|
33
33
|
"warn-dyn-method": "cargo run --bin calcit -- calcit/test.cirru --warn-dyn-method",
|
|
34
|
-
"try-js-brk": "cargo run --bin calcit -- calcit/test.cirru js && node --inspect-brk js-out/main.mjs",
|
|
35
|
-
"try-js": "cargo run --bin calcit -- calcit/test.cirru js && node js-out/main.mjs",
|
|
34
|
+
"try-js-brk": "cargo run --bin calcit -- calcit/test.cirru js && cp scripts/main.mjs js-out/main.mjs && node --inspect-brk js-out/main.mjs",
|
|
35
|
+
"try-js": "cargo run --bin calcit -- calcit/test.cirru js && cp scripts/main.mjs js-out/main.mjs && node js-out/main.mjs",
|
|
36
36
|
"try-ir": "cargo run --bin calcit -- calcit/test.cirru ir",
|
|
37
37
|
"try-wasm": "bash scripts/test-wasm.sh"
|
|
38
38
|
},
|