@ipation/specbridge 2.4.3 → 2.4.5

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 +75 -2
  2. package/package.json +7 -4
package/CHANGELOG.md CHANGED
@@ -7,6 +7,63 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.4.5] - 2026-02-08
11
+
12
+ ### Added
13
+
14
+ - Release metadata consistency validation command: `npm run release:validate`.
15
+ - CI `release-metadata` job to enforce package/changelog version alignment.
16
+ - CI `health-summary` artifact with machine-readable check status and integration durations.
17
+
18
+ ### Changed
19
+
20
+ - Security workflow now fails on high/critical npm audit findings.
21
+ - CI coverage upload action updated to `codecov/codecov-action@v4`.
22
+ - Maintenance checklist and monthly health template updated with release metadata validation steps.
23
+
24
+ ## [2.4.4] - 2026-02-08
25
+
26
+ ### Added
27
+
28
+ - Runtime/docs policy validation command: `npm run docs:validate`.
29
+ - Quick health command for local verification: `npm run health:quick`.
30
+ - Runtime policy guardrail script: `scripts/docs/validate-runtime-policy.mjs`.
31
+ - Integration runtime metrics artifacts in CI (`ci-metrics/*.json`).
32
+
33
+ ### Changed
34
+
35
+ - Hardened CI reliability gates with dedicated docs policy validation.
36
+ - Optimized slow CLI integration tests by reducing duplicate setup overhead.
37
+ - Refined unit and integration tests for determinism and runtime stability.
38
+
39
+ ## [2.4.3] - 2026-02-07
40
+
41
+ ### Added
42
+
43
+ - CLI integration sharding into targeted suites:
44
+ - `test:integration:cli:smoke`
45
+ - `test:integration:cli:core`
46
+ - `test:integration:cli:aux`
47
+ - Runtime budgets and retry-once handling for publish integration workflow.
48
+
49
+ ### Changed
50
+
51
+ - Split CLI integration tests into focused files (`smoke`, `init-verify`, `infer-decision`, `hook-report-context`, `errors`).
52
+ - Improved CI and publish observability with per-suite runtime summaries.
53
+
54
+ ## [2.4.2] - 2026-02-07
55
+
56
+ ### Fixed
57
+
58
+ - Publish workflow now builds package artifacts before running integration tests.
59
+
60
+ ## [2.4.1] - 2026-02-07
61
+
62
+ ### Changed
63
+
64
+ - Hardened release workflow reliability and timeout handling.
65
+ - Updated integration test configuration and packaging checks for release readiness.
66
+
10
67
  ## [2.4.0] - 2026-02-07
11
68
 
12
69
  ### Added
@@ -1021,9 +1078,25 @@ This release adopts a **pragmatic testing approach**:
1021
1078
  - Vitest for testing
1022
1079
  - tsup for building
1023
1080
 
1024
- [Unreleased]: https://github.com/nouatzi/specbridge/compare/v1.1.1...HEAD
1081
+ [Unreleased]: https://github.com/nouatzi/specbridge/compare/v2.4.5...HEAD
1082
+ [2.4.5]: https://github.com/nouatzi/specbridge/compare/v2.4.4...v2.4.5
1083
+ [2.4.4]: https://github.com/nouatzi/specbridge/compare/v2.4.3...v2.4.4
1084
+ [2.4.3]: https://github.com/nouatzi/specbridge/compare/v2.4.2...v2.4.3
1085
+ [2.4.2]: https://github.com/nouatzi/specbridge/compare/v2.4.1...v2.4.2
1086
+ [2.4.1]: https://github.com/nouatzi/specbridge/compare/v2.4.0...v2.4.1
1087
+ [2.4.0]: https://github.com/nouatzi/specbridge/compare/v2.3.0...v2.4.0
1088
+ [2.3.0]: https://github.com/nouatzi/specbridge/compare/v2.2.0...v2.3.0
1089
+ [2.2.0]: https://github.com/nouatzi/specbridge/compare/v1.3.0...v2.2.0
1090
+ [1.3.0]: https://github.com/nouatzi/specbridge/compare/v1.2.1...v1.3.0
1091
+ [1.2.1]: https://github.com/nouatzi/specbridge/compare/v1.2.0...v1.2.1
1092
+ [1.2.0]: https://github.com/nouatzi/specbridge/compare/v1.1.2...v1.2.0
1093
+ [1.1.2]: https://github.com/nouatzi/specbridge/compare/v1.1.1...v1.1.2
1025
1094
  [1.1.1]: https://github.com/nouatzi/specbridge/compare/v1.1.0...v1.1.1
1026
- [1.1.0]: https://github.com/nouatzi/specbridge/compare/v1.0.6...v1.1.0
1095
+ [1.1.0]: https://github.com/nouatzi/specbridge/compare/v1.0.4...v1.1.0
1096
+ [1.0.4]: https://github.com/nouatzi/specbridge/compare/v1.0.3...v1.0.4
1097
+ [1.0.3]: https://github.com/nouatzi/specbridge/compare/v1.0.2...v1.0.3
1098
+ [1.0.2]: https://github.com/nouatzi/specbridge/compare/v1.0.1...v1.0.2
1099
+ [1.0.1]: https://github.com/nouatzi/specbridge/compare/v1.0.0...v1.0.1
1027
1100
  [1.0.0]: https://github.com/nouatzi/specbridge/compare/v0.2.1...v1.0.0
1028
1101
  [0.2.1]: https://github.com/nouatzi/specbridge/compare/v0.2.0...v0.2.1
1029
1102
  [0.2.0]: https://github.com/nouatzi/specbridge/compare/v0.1.0...v0.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ipation/specbridge",
3
- "version": "2.4.3",
3
+ "version": "2.4.5",
4
4
  "description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -33,6 +33,8 @@
33
33
  "lint:check": "eslint . --max-warnings=0",
34
34
  "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
35
35
  "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
36
+ "docs:validate": "node scripts/docs/validate-runtime-policy.mjs",
37
+ "release:validate": "node scripts/release/validate-version-changelog.mjs",
36
38
  "type-check": "tsc --noEmit",
37
39
  "version:patch": "npm version patch",
38
40
  "version:minor": "npm version minor",
@@ -41,7 +43,8 @@
41
43
  "docs:serve": "npm run docs && npx http-server docs/api",
42
44
  "pack:check": "npm_config_cache=.cache/npm npm pack --ignore-scripts && npm_config_cache=.cache/npm HUSKY=0 npm pack --dry-run",
43
45
  "deps:outdated": "npm_config_cache=.cache/npm npm outdated --long",
44
- "health:check": "npm run type-check && npm run lint:check && npm run format:check && npm run test && npm run test:integration && npm run test:coverage && npm audit --audit-level=high",
46
+ "health:quick": "npm run type-check && npm run lint:check && npm run format:check && npm run test:unit",
47
+ "health:check": "npm run docs:validate && npm run release:validate && npm run type-check && npm run lint:check && npm run format:check && npm run test && npm run test:integration && npm run test:coverage && npm audit --audit-level=high",
45
48
  "prepare": "husky",
46
49
  "prepublishOnly": "npm run build"
47
50
  },
@@ -89,7 +92,7 @@
89
92
  "fast-glob": "^3.3.0",
90
93
  "minimatch": "^10.1.2",
91
94
  "ora": "^9.3.0",
92
- "pino": "^9.9.5",
95
+ "pino": "^10.3.0",
93
96
  "table": "^6.8.0",
94
97
  "ts-morph": "^27.0.2",
95
98
  "vscode-languageserver": "^9.0.1",
@@ -100,7 +103,7 @@
100
103
  "devDependencies": {
101
104
  "@eslint/js": "^9.39.2",
102
105
  "@types/express": "^5.0.6",
103
- "@types/node": "^25.2.1",
106
+ "@types/node": "^25.2.2",
104
107
  "@typescript-eslint/eslint-plugin": "^8.54.0",
105
108
  "@typescript-eslint/parser": "^8.54.0",
106
109
  "@vitest/coverage-v8": "^4.0.18",