@calcit/procs 0.12.39 → 0.12.40

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
+ # 2026-06-04 compiled executable runtime backfill
2
+
3
+ - `resolve_runtime_or_compiled_def` materialized compiled executable defs without seeding runtime, so repeated symbol lookup rebuilt fresh `Fn` values.
4
+ - Fresh `Fn` ids broke caches keyed by functions, reproducing in `memof` where `memof1-call` and `memof1-call-by` missed cache hits under `cr calcit.cirru`.
5
+ - `materialize_compiled_executable_payload` now writes the resolved executable back into runtime-ready storage, preserving stable function identity across lookups.
6
+ - Program tests now assert runtime backfill for compiled executable resolution and `memof` plain `cr` execution passes again with the patched binary.
@@ -0,0 +1,5 @@
1
+ # 2026-06-04 release 0.12.40
2
+
3
+ - 发布 `0.12.40`,包含 compiled executable runtime backfill 修复。
4
+ - 该修复让 compiled `Fn`/`Macro` 首次 materialize 后回写 runtime-ready storage,避免重复 lookup 生成新函数 identity。
5
+ - 直接收益是恢复 `memof` 这类按函数值做 cache key 的场景,`cr calcit.cirru` 再次通过既有测试。
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.12.39",
3
+ "version": "0.12.40",
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.12.39",
3
+ "version": "0.12.40",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^25.7.0",