spec-driven-development 3.7.7 → 3.7.12

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 +36 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # spec-driven-development
2
2
 
3
+ ## 3.7.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [81256ea]
8
+ - Updated dependencies [85ddd6a]
9
+ - Updated dependencies [9cb304e]
10
+ - @contractspec/app.cli-contractspec@4.2.0
11
+
12
+ ## 3.7.11
13
+
14
+ ### Patch Changes
15
+
16
+ - fix: release
17
+ - Updated dependencies
18
+ - @contractspec/app.cli-contractspec@4.1.3
19
+
20
+ ## 3.7.10
21
+
22
+ ### Patch Changes
23
+
24
+ - 1a44cb6: feat: improve examples to increase coverage of Contracts type
25
+ - Updated dependencies [1a44cb6]
26
+ - @contractspec/app.cli-contractspec@4.1.2
27
+
28
+ ## 3.7.9
29
+
30
+ ### Patch Changes
31
+
32
+ - fix: release
33
+ - Updated dependencies
34
+ - @contractspec/app.cli-contractspec@4.1.1
35
+
3
36
  ## 3.7.6
4
37
 
5
38
  ### Patch Changes
@@ -642,14 +675,17 @@
642
675
  feat: Contract layers support (features, examples, app-configs)
643
676
 
644
677
  ### New CLI Commands
678
+
645
679
  - `contractspec list layers` - List all contract layers with filtering
646
680
 
647
681
  ### Enhanced Commands
682
+
648
683
  - `contractspec ci` - New `layers` check category validates features/examples/config
649
684
  - `contractspec doctor` - New `layers` health checks
650
685
  - `contractspec integrity` - Now shows layer statistics
651
686
 
652
687
  ### New APIs
688
+
653
689
  - `discoverLayers()` - Scan workspace for all layer files
654
690
  - `scanExampleSource()` - Parse ExampleSpec from source code
655
691
  - `isExampleFile()` - Check if file is an example spec
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "spec-driven-development",
3
- "version": "3.7.7",
3
+ "version": "3.7.12",
4
4
  "description": "CLI tool for creating, building, and validating contract specifications",
5
5
  "bin": {
6
6
  "sdd": "./bin/contractspec.mjs",
7
7
  "spec-driven-development": "./bin/contractspec.mjs"
8
8
  },
9
9
  "dependencies": {
10
- "@contractspec/app.cli-contractspec": "4.0.0"
10
+ "@contractspec/app.cli-contractspec": "4.2.0"
11
11
  },
12
12
  "scripts": {
13
13
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",