@ipation/specbridge 2.4.8 → 2.4.9
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 +22 -1
- package/dist/cli.js +810 -764
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +40 -48
- package/dist/index.js +842 -788
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.4.9] - 2026-02-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Targeted module coverage guardrail command: `npm run coverage:check-modules`.
|
|
15
|
+
- Coverage guardrail script: `scripts/maintenance/check-module-coverage.mjs`.
|
|
16
|
+
- Verification helper modules:
|
|
17
|
+
- `src/verification/file-verifier.ts`
|
|
18
|
+
- `src/verification/run-settings.ts`
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Refactored verification engine orchestration to delegate run-settings and file-verification concerns.
|
|
23
|
+
- Migrated additional CLI commands to `createConfiguredCommandContext` for consistent initialization/config handling.
|
|
24
|
+
- Hardened CI guardrails:
|
|
25
|
+
- Node 20 unit runtime warning/fail thresholds.
|
|
26
|
+
- Strict module boundary enforcement.
|
|
27
|
+
- Health summary now incorporates runtime and module-coverage gate outcomes.
|
|
28
|
+
- Updated maintenance health documentation with module coverage checks.
|
|
29
|
+
|
|
10
30
|
## [2.4.8] - 2026-02-08
|
|
11
31
|
|
|
12
32
|
### Added
|
|
@@ -1128,7 +1148,8 @@ This release adopts a **pragmatic testing approach**:
|
|
|
1128
1148
|
- Vitest for testing
|
|
1129
1149
|
- tsup for building
|
|
1130
1150
|
|
|
1131
|
-
[Unreleased]: https://github.com/nouatzi/specbridge/compare/v2.4.
|
|
1151
|
+
[Unreleased]: https://github.com/nouatzi/specbridge/compare/v2.4.9...HEAD
|
|
1152
|
+
[2.4.9]: https://github.com/nouatzi/specbridge/compare/v2.4.8...v2.4.9
|
|
1132
1153
|
[2.4.8]: https://github.com/nouatzi/specbridge/compare/v2.4.7...v2.4.8
|
|
1133
1154
|
[2.4.7]: https://github.com/nouatzi/specbridge/compare/v2.4.6...v2.4.7
|
|
1134
1155
|
[2.4.6]: https://github.com/nouatzi/specbridge/compare/v2.4.5...v2.4.6
|