@ipation/specbridge 2.2.0 → 2.4.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 CHANGED
@@ -7,6 +7,66 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.4.0] - 2026-02-07
11
+
12
+ ### Added
13
+
14
+ - Unit test coverage for:
15
+ - LSP server (`tests/unit/lsp/server.test.ts`)
16
+ - MCP server (`tests/unit/mcp/server.test.ts`)
17
+ - Incremental verification helper (`tests/unit/verification/incremental.test.ts`)
18
+ - English summary of project vision in `docs/VISION.en.md`.
19
+
20
+ ### Changed
21
+
22
+ - Replaced deprecated Husky prepare command (`husky install` -> `husky`).
23
+ - Refactored dashboard server unit tests to cover endpoint behavior, cache fallback, and timer lifecycle.
24
+ - Reworked propagation engine tests to validate migration step generation and effort classification with deterministic mocks.
25
+ - Improved analyzer test runtime by reducing repeated ts-morph/file-system setup in slow suites.
26
+ - Introduced structured logging via `pino` and started replacing direct `console.warn`/`console.error` calls in runtime modules.
27
+
28
+ ### Fixed
29
+
30
+ - Removed remaining production lint warning hotspots in:
31
+ - `src/cli/commands/migrate.ts`
32
+ - `src/integrations/github.ts`
33
+ - `src/propagation/engine.ts`
34
+ - `src/verification/autofix/engine.ts`
35
+ - `src/verification/verifiers/dependencies.ts`
36
+ - `src/verification/verifiers/index.ts`
37
+
38
+ ## [2.3.0] - 2026-02-06
39
+
40
+ ### Added
41
+
42
+ - Integration test suites for:
43
+ - MCP server (`tests/integration/mcp-server.test.ts`)
44
+ - LSP server (`tests/integration/lsp-server.test.ts`)
45
+ - Dashboard server (`tests/integration/dashboard-server.test.ts`)
46
+ - Propagation engine (`tests/integration/propagation.test.ts`)
47
+
48
+ ### Changed
49
+
50
+ - Upgraded major runtime dependencies:
51
+ - `zod` 3.x → 4.x
52
+ - `commander` 12.x → 14.x
53
+ - `ts-morph` 24.x → 27.x
54
+ - `chokidar` 3.x → 5.x
55
+ - `express` 4.x → 5.x (with `@types/express` 5.x)
56
+ - Updated CLI unit tests for Commander v14 parse semantics.
57
+ - Raised coverage thresholds to:
58
+ - lines: `70`
59
+ - statements: `69`
60
+ - functions: `73`
61
+ - branches: `60`
62
+
63
+ ### Fixed
64
+
65
+ - Express 5 dashboard fallback routing compatibility (`*` → `/{*path}`).
66
+ - Dashboard API now returns `404` for missing decisions instead of `500`.
67
+ - Propagation graph matching now respects the analysis `cwd` for absolute file paths.
68
+ - Removed all remaining production non-null assertions in `src/**/*.ts`.
69
+
10
70
  ## [2.2.0] - 2026-02-06
11
71
 
12
72
  ### Infrastructure Modernization & Security
package/README.md CHANGED
@@ -30,6 +30,8 @@ SpecBridge creates a living integration layer between design intent and implemen
30
30
 
31
31
  [📖 See full changelog](./CHANGELOG-v2.0.md) | [🔧 Migration Guide](./docs/MIGRATION-V2.md)
32
32
 
33
+ Project vision: [French](./docs/VISION.md) | [English summary](./docs/VISION.en.md)
34
+
33
35
  ## Installation
34
36
 
35
37
  ```bash