coderifts 8.6.0 → 8.6.1
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/CHANGELOG.md +5 -0
- package/dist/cli.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 8.6.1 - 2026-09-09
|
|
6
|
+
|
|
7
|
+
The generated strict workflow pins contract-gate v0.9.2 (12a2673), following the gate release.
|
|
8
|
+
|
|
9
|
+
|
|
5
10
|
## 8.6.0 - 2026-09-08
|
|
6
11
|
|
|
7
12
|
- `--check` recognizes the SHA-pinned strict workflow (`coderifts/contract-gate@<40-hex>`, not only `@v0`), with states MISSING / PRESENT_UNPINNED / PRESENT_STALE / PRESENT_CURRENT; strict `--check` passes only PRESENT_CURRENT, and a generate-then-check round-trip exits 0.
|
package/dist/cli.js
CHANGED
|
@@ -3028,7 +3028,7 @@ var require_package = __commonJS({
|
|
|
3028
3028
|
"package.json"(exports2, module2) {
|
|
3029
3029
|
module2.exports = {
|
|
3030
3030
|
name: "coderifts",
|
|
3031
|
-
version: "8.6.
|
|
3031
|
+
version: "8.6.1",
|
|
3032
3032
|
description: "Detect breaking API changes from the command line. Works locally or with the CodeRifts cloud API.",
|
|
3033
3033
|
author: "CodeRifts <hello@coderifts.com>",
|
|
3034
3034
|
license: "MIT",
|
|
@@ -231520,10 +231520,10 @@ var require_gate_pin = __commonJS({
|
|
|
231520
231520
|
"src/generated/gate-pin.json"(exports2, module2) {
|
|
231521
231521
|
module2.exports = {
|
|
231522
231522
|
repo: "coderifts/contract-gate",
|
|
231523
|
-
sha: "
|
|
231524
|
-
tag: "v0.9.
|
|
231523
|
+
sha: "12a2673d9bf094a1a97cb1387348018332a5c33f",
|
|
231524
|
+
tag: "v0.9.2",
|
|
231525
231525
|
resolved_from: "https://github.com/coderifts/contract-gate refs/tags/v0",
|
|
231526
|
-
resolved_at: "2026-09-
|
|
231526
|
+
resolved_at: "2026-09-09T18:05:11Z",
|
|
231527
231527
|
note: "STRICT template pins this full commit SHA (GitHub: only a full SHA is immutable). v0 is a tag we move on every release, so it is NOT a pin. Re-run scripts/generate-gate-pin.js on each gate release; Dependabot bumps adopters."
|
|
231528
231528
|
};
|
|
231529
231529
|
}
|
package/package.json
CHANGED