spec-driven-development 3.7.25 → 3.7.27
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 +24 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# spec-driven-development
|
|
2
2
|
|
|
3
|
+
## 3.7.27
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: auto-bump internal dependents
|
|
8
|
+
- Updated dependencies because of Add contract-driven overflow behavior and typed DataView hints for shared DataView and DataTable surfaces.
|
|
9
|
+
- Updated dependencies because of Add production-ready collection defaults and renderer mode switching for DataView list, grid, and table specs.
|
|
10
|
+
- Updated dependencies because of Add numeric and temporal FormSpec field kinds with shared renderer support for number, percent, currency, and duration inputs.
|
|
11
|
+
- @contractspec/lib.contracts-spec@6.1.0
|
|
12
|
+
- @contractspec/app.cli-contractspec@6.2.2
|
|
13
|
+
|
|
14
|
+
## 3.7.26
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- chore: auto-bump internal dependents
|
|
19
|
+
- Updated dependencies because of chore: auto-bump internal dependents
|
|
20
|
+
- Updated dependencies because of Remove avoidable Node crypto imports from ContractSpec runtime surfaces and keep signing helpers isolated.
|
|
21
|
+
- Updated dependencies because of Improve FormSpec autocomplete rendering and resolver-backed search.
|
|
22
|
+
- Updated dependencies because of Add first-class FormSpec email fields with native renderer affordances.
|
|
23
|
+
- Updated dependencies because of Add progressive FormSpec section and step layout metadata with shared React and design-system rendering support.
|
|
24
|
+
- @contractspec/app.cli-contractspec@6.2.1
|
|
25
|
+
- @contractspec/lib.contracts-spec@6.0.0
|
|
26
|
+
|
|
3
27
|
## 3.7.25
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spec-driven-development",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.27",
|
|
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": "6.2.
|
|
11
|
-
"@contractspec/lib.contracts-spec": "
|
|
10
|
+
"@contractspec/app.cli-contractspec": "6.2.2",
|
|
11
|
+
"@contractspec/lib.contracts-spec": "6.1.0"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|