@ipation/specbridge 1.1.1 → 1.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.1.2] - 2026-02-02
11
+
12
+ ### Documentation
13
+
14
+ #### Dogfooding Expansion
15
+
16
+ - **📚 Expanded Architectural Decisions** - Added 10 new decision files
17
+ - `arch-006`: Verifier Plugin Architecture - Base interface and registry pattern
18
+ - `arch-007`: Security Pattern Enforcement - ReDoS, XSS, SQL injection prevention
19
+ - `arch-008`: Autofix TextEdit Offset Model - 0-based byte offsets with descending sort
20
+ - `arch-009`: Server Integration Options Pattern - LSP/MCP lazy initialization
21
+ - `arch-010`: Configuration Merging Strategy - Recursive merge for nested objects
22
+ - `arch-011`: Testing Infrastructure Standards - Vitest with 90%+ coverage thresholds
23
+ - `arch-012`: Scope Matching Logic - Centralized applicability checking
24
+ - `arch-013`: Agent Context Format Conventions - Emoji icons and multiple formats
25
+ - `arch-014`: Violation Model Structure - createViolation helper usage
26
+ - `arch-015`: Verifier Extension Stability - API stability guarantees
27
+
28
+ - **📊 Compliance Achievement**
29
+ - Expanded dogfooding from 5 to 15 active architectural decisions
30
+ - 54 total constraints (up from 7)
31
+ - 100% compliance across codebase
32
+ - Documents all patterns introduced in v1.1.0
33
+
34
+ - **📖 Updated Documentation**
35
+ - Updated `docs/dogfooding-guide.md` with all 15 decisions
36
+ - Updated integration tests to verify all 15 decisions
37
+ - Comprehensive decision coverage for verifiers, security, autofix, servers, and testing
38
+
39
+ ### Testing
40
+
41
+ - ✅ All 893 tests passing
42
+ - ✅ Commit-level verification < 5 seconds
43
+ - ✅ 100% architectural compliance
44
+
10
45
  ## [1.1.1] - 2026-02-01
11
46
 
12
47
  ### Security
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ipation/specbridge",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",