styleproof 3.13.0 → 3.14.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/CHANGELOG.md +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.14.0] - 2026-07-05
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **The GitHub Action hard-gates on unacknowledged navigable removals, out of the box.**
|
|
15
|
+
A removed route / tab / menu-item — a feature going unreachable — is categorically not a
|
|
16
|
+
restyle, so it must not be waved through by the review-gate's "approve all changes" box.
|
|
17
|
+
The Action now reads the diff's machine-readable inventory verdict (3.13.0) and, as a
|
|
18
|
+
final step in **both** certify and review-gate modes, fails when
|
|
19
|
+
`inventory.unacknowledged > 0`, naming each removed affordance — unless the removal is
|
|
20
|
+
recorded (with a reason) in `styleproof.inventory.json`. Style diffs are unaffected
|
|
21
|
+
(they stay report-only / sign-off). On by default; set `"gateInventoryRemovals": false`
|
|
22
|
+
in `styleproof.config.json` to opt out. Covered by a new `action-dogfood` removal
|
|
23
|
+
scenario (base offers `/a` + `/b`, head drops `/b` → the Action fails).
|
|
24
|
+
|
|
10
25
|
## [3.13.0] - 2026-07-05
|
|
11
26
|
|
|
12
27
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styleproof",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.0",
|
|
4
4
|
"description": "Catch every CSS change before it ships — review PRs and certify refactors by the browser's computed styles, not pixels. Works with any styling system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"playwright",
|