@calcit/procs 0.13.8 → 0.13.9

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,8 @@
1
+ ## Release PR workflow
2
+
3
+ - `main` is protected by a pull-request requirement, including release version
4
+ changes; release commits must be created on a dedicated release branch.
5
+ - A release tag is created only after the release PR is green, merged, and
6
+ fetched back onto local `main`.
7
+ - Publication verification uses non-interactive `gh pr checks` and `gh run
8
+ list` polling, then confirms matching crates.io and npm versions.
@@ -0,0 +1,5 @@
1
+ ## Release documentation tracked path
2
+
3
+ - The repository tracks its agent instructions as `Agents.md`; release-flow
4
+ documentation updates must stage that exact path so the release PR includes
5
+ the operational guidance as well as its history record.
@@ -0,0 +1,13 @@
1
+ ## Suppress structural-edit advice for small definitions
2
+
3
+ - Structural-edit guidance now requires either the existing or incoming Cirru
4
+ tree to contain at least 32 AST nodes.
5
+ - Tiny definitions do not benefit from a path-finding workflow, so full
6
+ definition updates no longer emit a misleadingly heavyweight warning.
7
+ - Keep the threshold in `analyze_cirru_edit_advice` so every caller shares the
8
+ same behavior, including identical-definition advice.
9
+ - `&list:first` now consistently reports its nullable `Optional<T>` result to
10
+ static analysis, matching the Core schema and its `nil` result for empty
11
+ lists.
12
+ - Core macros and comparison helpers that first establish non-emptiness now
13
+ use the explicitly indexed low-level read `&list:nth xs 0`.
@@ -0,0 +1,4 @@
1
+ ## Review follow-ups for nullable list-first inference
2
+
3
+ - Normalize `optional_of` so already-optional types are not wrapped into nested optionals.
4
+ - Rename the list-first inference regression test and cover both non-empty and empty lists.
@@ -0,0 +1,5 @@
1
+ ## Follow-up review fixes for nullable list-first
2
+
3
+ - Migrate remaining guarded Core reads in max/min, comparison folding, and list destructuring to `&list:nth ... 0`.
4
+ - Tag the empty-list regression as both `:core` and `:unit`.
5
+ - Make edit-advice fixtures assert exact 31/32-node boundary behavior, including one-sided threshold crossings.
@@ -0,0 +1,4 @@
1
+ ## Release 0.13.9
2
+
3
+ - Bump the Cargo and npm package versions together after merging PR #331.
4
+ - Refresh the workspace lockfile before creating the release PR and tag.
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.13.8",
3
+ "version": "0.13.9",
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.8",
3
+ "version": "0.13.9",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^25.7.0",