spec-driven-development 3.7.7 → 3.7.10

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 +19 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # spec-driven-development
2
2
 
3
+ ## 3.7.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 1a44cb6: feat: improve examples to increase coverage of Contracts type
8
+ - Updated dependencies [1a44cb6]
9
+ - @contractspec/app.cli-contractspec@4.1.2
10
+
11
+ ## 3.7.9
12
+
13
+ ### Patch Changes
14
+
15
+ - fix: release
16
+ - Updated dependencies
17
+ - @contractspec/app.cli-contractspec@4.1.1
18
+
3
19
  ## 3.7.6
4
20
 
5
21
  ### Patch Changes
@@ -642,14 +658,17 @@
642
658
  feat: Contract layers support (features, examples, app-configs)
643
659
 
644
660
  ### New CLI Commands
661
+
645
662
  - `contractspec list layers` - List all contract layers with filtering
646
663
 
647
664
  ### Enhanced Commands
665
+
648
666
  - `contractspec ci` - New `layers` check category validates features/examples/config
649
667
  - `contractspec doctor` - New `layers` health checks
650
668
  - `contractspec integrity` - Now shows layer statistics
651
669
 
652
670
  ### New APIs
671
+
653
672
  - `discoverLayers()` - Scan workspace for all layer files
654
673
  - `scanExampleSource()` - Parse ExampleSpec from source code
655
674
  - `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.10",
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.1.2"
11
11
  },
12
12
  "scripts": {
13
13
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",