coderifts 7.0.0 → 8.0.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coderifts",
3
- "version": "7.0.0",
3
+ "version": "8.0.0",
4
4
  "description": "Detect breaking API changes from the command line. Works locally or with the CodeRifts cloud API.",
5
5
  "author": "CodeRifts <hello@coderifts.com>",
6
6
  "license": "MIT",
@@ -46,7 +46,7 @@
46
46
  "test": "node --test test/*.test.js"
47
47
  },
48
48
  "dependencies": {
49
- "@coderifts/agent-guard": "^14.0.0",
49
+ "@coderifts/agent-guard": "^15.0.0",
50
50
  "chalk": "^4.1.2",
51
51
  "cli-table3": "^0.6.4",
52
52
  "commander": "^12.0.0",
@@ -68,13 +68,18 @@
68
68
  * 7.0.0: floor raised to 14 (guard 14 ships ENFORCING_ATOMIC_V1 + host-reported commit label;
69
69
  * the CLI uses base guard APIs, not the ATOMIC profile — the raise is for manifest consistency,
70
70
  * so the published CLI installs the guard it ships alongside, not an older major).
71
+ * 8.0.0: floor raised to 15 (published guard 15.0.0 is on npm; 7.0.0 declared ^14.0.0 so a
72
+ * fresh install resolved 14.x. The CLI still imports only deployGate,
73
+ * asVerifiedDeployReceiptView, DEPLOY_RECEIPT_VIEW_SPEC and matchGlob — no DeployGateReason
74
+ * exhaustive switch, no V2 config-conflict throw. The raise is installer-facing: the range
75
+ * is what `npm i -g coderifts` resolves.)
71
76
  */
72
77
 
73
78
  const fs = require('fs');
74
79
  const path = require('path');
75
80
 
76
81
  /** Minimum acceptable major for @coderifts/agent-guard in THIS package (the CLI). */
77
- const MIN_GUARD_MAJOR = 14;
82
+ const MIN_GUARD_MAJOR = 15;
78
83
  const DEP = '@coderifts/agent-guard';
79
84
 
80
85
  /**