@ipation/specbridge 2.4.7 → 2.4.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/package.json +4 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.4.8] - 2026-02-08
11
+
12
+ ### Added
13
+
14
+ - Monthly maintenance issue automation workflow: `.github/workflows/health-snapshot.yml`.
15
+ - ESLint v10 readiness probe script and npm commands:
16
+ - `npm run eslint10:readiness`
17
+ - `npm run eslint10:readiness:strict`
18
+ - CI `eslint10-readiness` job with staged strict gate toggle on `main` via `ESLINT10_STRICT_GATE`.
19
+
20
+ ### Changed
21
+
22
+ - CI health summary now records collision-safe integration metric keys and flakiness KPI fields.
23
+ - Health checklist and monthly snapshot template now capture ESLint v10 gate status and flaky retry metrics.
24
+ - Added architecture boundary warning alias command: `npm run architecture:check-boundaries:warning`.
25
+
10
26
  ## [2.4.7] - 2026-02-08
11
27
 
12
28
  ### Added
@@ -1112,7 +1128,8 @@ This release adopts a **pragmatic testing approach**:
1112
1128
  - Vitest for testing
1113
1129
  - tsup for building
1114
1130
 
1115
- [Unreleased]: https://github.com/nouatzi/specbridge/compare/v2.4.7...HEAD
1131
+ [Unreleased]: https://github.com/nouatzi/specbridge/compare/v2.4.8...HEAD
1132
+ [2.4.8]: https://github.com/nouatzi/specbridge/compare/v2.4.7...v2.4.8
1116
1133
  [2.4.7]: https://github.com/nouatzi/specbridge/compare/v2.4.6...v2.4.7
1117
1134
  [2.4.6]: https://github.com/nouatzi/specbridge/compare/v2.4.5...v2.4.6
1118
1135
  [2.4.5]: https://github.com/nouatzi/specbridge/compare/v2.4.4...v2.4.5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ipation/specbridge",
3
- "version": "2.4.7",
3
+ "version": "2.4.8",
4
4
  "description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -36,6 +36,9 @@
36
36
  "docs:validate": "node scripts/docs/validate-runtime-policy.mjs",
37
37
  "release:validate": "node scripts/release/validate-version-changelog.mjs",
38
38
  "architecture:check-boundaries": "node scripts/maintenance/check-module-boundaries.mjs",
39
+ "architecture:check-boundaries:warning": "node scripts/maintenance/check-module-boundaries.mjs --mode=warning",
40
+ "eslint10:readiness": "npm_config_cache=.cache/npm node scripts/maintenance/check-eslint10-readiness.mjs",
41
+ "eslint10:readiness:strict": "npm_config_cache=.cache/npm node scripts/maintenance/check-eslint10-readiness.mjs --strict",
39
42
  "type-check": "tsc --noEmit",
40
43
  "version:patch": "npm version patch",
41
44
  "version:minor": "npm version minor",