@ipation/specbridge 2.3.0 → 2.4.2
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 +28 -0
- package/README.md +4 -0
- package/dist/cli.js +1012 -760
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +707 -506
- package/dist/index.js.map +1 -1
- package/package.json +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,34 @@ 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
|
+
|
|
10
38
|
## [2.3.0] - 2026-02-06
|
|
11
39
|
|
|
12
40
|
### Added
|
package/README.md
CHANGED
|
@@ -30,8 +30,12 @@ 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
|
|
|
37
|
+
Requires Node.js `20.19.0` or later.
|
|
38
|
+
|
|
35
39
|
```bash
|
|
36
40
|
npm install -g @ipation/specbridge
|
|
37
41
|
```
|