@calcit/procs 0.13.38 → 0.13.39
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/README.md +1 -0
- package/editing-history/20260823-2328-caps-toolchain-guard.md +6 -0
- package/editing-history/20260823-2340-caps-toolchain-review-followup.md +6 -0
- package/editing-history/20260824-0009-release-01339.md +5 -0
- package/lib/package.json +1 -1
- package/package.json +1 -1
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/README.md
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# `caps verify --toolchain` runtime version guard
|
|
2
|
+
|
|
3
|
+
- `deps.cirru :calcit-version` is the project-selected Calcit release. A regular `caps verify` validates module-store integrity; `caps verify --toolchain` additionally makes this version a CI gate.
|
|
4
|
+
- For JavaScript projects the guard requires the running `caps` release, `package.json`'s exact `@calcit/procs` version, and the version Yarn resolves through `yarn node` to match exactly. This supports both Yarn PnP and node-modules installations.
|
|
5
|
+
- `caps upgrade --all` now requests `@calcit/procs@<current-calcit-version>` explicitly, so its manifest and lockfile remain tied to the Calcit release rather than whichever npm version happens to be latest.
|
|
6
|
+
- Place `caps verify --toolchain` after `caps --ci && yarn install --immutable` in JS CI. Native-only projects without `package.json` remain supported and verify the Calcit/deps pair only.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# Follow up: exact JS runtime toolchain guard
|
|
2
|
+
|
|
3
|
+
- The CI guard now treats a `package.json` without `@calcit/procs` as an error. The no-`package.json` case remains the explicit native-project escape hatch.
|
|
4
|
+
- Both `caps upgrade --all` and `caps verify --toolchain` use exact `@calcit/procs` versions. A SemVer caret could otherwise resolve a newer patch and make the upgrade command violate its own gate.
|
|
5
|
+
- `caps upgrade --all <path/to/deps.cirru>` now runs Yarn in the directory containing that dependency file, rather than the caller's working directory.
|
|
6
|
+
- Toolchain helper tests cover absent, exact, range, and installed-version cases, plus deriving the project root from a non-default `deps.cirru` path.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Release 0.13.39
|
|
2
|
+
|
|
3
|
+
- Release the merged `caps verify --toolchain` guard.
|
|
4
|
+
- The release keeps `deps.cirru :calcit-version`, the installed Calcit CLI, the exact `@calcit/procs` manifest dependency, and Yarn's resolved runtime version aligned in JavaScript CI.
|
|
5
|
+
- `caps upgrade --all` now syncs the exact runtime version in the project directory selected by its `deps.cirru` input.
|
package/lib/package.json
CHANGED