@calcit/procs 0.13.34 → 0.13.36

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.
Binary file
@@ -0,0 +1,6 @@
1
+ # Definition schema round-trip 修复
2
+
3
+ - 发现连续两次 `calcit edit/tree` 会把 `StructDef` / `EnumDef` schema 误读为匿名 `Enum`。
4
+ - 根因是 Snapshot 的零 payload 类型包装 `:: 'Type` 仅对 `Dynamic` 特判,其他 canonical symbol 落入普通 enum 解析。
5
+ - 统一通过 canonical type symbol parser 读取非 callable 的零 payload schema,并覆盖两次 load/save 的回归测试。
6
+ - 真实复现与影响记录在 calcit-lang/calcit#390。
@@ -0,0 +1,5 @@
1
+ # 发布 0.13.35
2
+
3
+ - 发布 Snapshot schema 往返修复,避免连续编辑把 `StructDef` / `EnumDef` 降级为匿名 `Enum`。
4
+ - 发布前已通过 Rust、Calcit、JS、Agent interface 与 WASM 全量验证。
5
+ - 发布后使用新版本回归并修复受影响的 edn-formatter Snapshot。
@@ -0,0 +1,5 @@
1
+ # Callable schema wrapper 兼容修复
2
+
3
+ - 跟进 PR #391 的异步审查,允许零 payload 的 `:: 'Fn` / `:: 'Macro` 进入 canonical symbol parser。
4
+ - `Fn` 稳定往返为动态函数 schema;无签名信息的 `Macro` 也解析为动态函数并 canonicalize 为 `Fn`。
5
+ - 仅继续拒绝必须携带内部类型的 `Optional`、`JsNullish`、`Variadic` 零 payload 包装。
@@ -0,0 +1,5 @@
1
+ # 发布 0.13.36
2
+
3
+ - 跟进 Snapshot schema 往返审查,补齐零 payload `Fn` / `Macro` wrapper 的兼容解析。
4
+ - 保留 0.13.35 的 `StructDef` / `EnumDef` 往返修复及完整回归覆盖。
5
+ - 发布前已通过 Clippy、targeted tests 与 `yarn check-all`。
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.13.34",
3
+ "version": "0.13.36",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^25.7.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.13.34",
3
+ "version": "0.13.36",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^25.7.0",