@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.
- package/.yarn/install-state.gz +0 -0
- package/history/202608101101-release-pr-workflow.md +8 -0
- package/history/202608101102-release-doc-tracked-path.md +5 -0
- package/history/202608110054-small-edit-advice.md +13 -0
- package/history/202608110125-review-optional-list-first.md +4 -0
- package/history/202608110133-review-core-call-sites-and-thresholds.md +5 -0
- package/history/202608110140-release-0.13.9.md +4 -0
- package/lib/package.json +1 -1
- package/package.json +1 -1
package/.yarn/install-state.gz
CHANGED
|
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,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,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.
|
package/lib/package.json
CHANGED