spec-driven-development 3.7.24 → 3.7.26

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 +26 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # spec-driven-development
2
2
 
3
+ ## 3.7.26
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: auto-bump internal dependents
8
+ - Updated dependencies because of chore: auto-bump internal dependents
9
+ - Updated dependencies because of Remove avoidable Node crypto imports from ContractSpec runtime surfaces and keep signing helpers isolated.
10
+ - Updated dependencies because of Improve FormSpec autocomplete rendering and resolver-backed search.
11
+ - Updated dependencies because of Add first-class FormSpec email fields with native renderer affordances.
12
+ - Updated dependencies because of Add progressive FormSpec section and step layout metadata with shared React and design-system rendering support.
13
+ - @contractspec/app.cli-contractspec@6.2.1
14
+ - @contractspec/lib.contracts-spec@6.0.0
15
+
16
+ ## 3.7.25
17
+
18
+ ### Patch Changes
19
+
20
+ - chore: auto-bump internal dependents
21
+ - Updated dependencies because of Add mobile-safe FormSpec layout helpers and scoped DataView filters.
22
+
23
+ FormSpec authors can now use `responsiveFormColumns(...)` for explicit mobile-first column metadata without changing legacy numeric `layout.columns` behavior. DataView contracts can declare `filterScope.initial` and `filterScope.locked` filters so generic list/search contracts can be reused in context-restricted screens while keeping locked constraints out of user-editable URL state.
24
+
25
+ - Updated dependencies because of Add OSS harness CLI verification with deterministic Playwright, optional agent-browser visual runs, auth profile refs, visual diff evidence, replay bundles, and core scenario success semantics.
26
+ - @contractspec/lib.contracts-spec@5.7.0
27
+ - @contractspec/app.cli-contractspec@6.2.0
28
+
3
29
  ## 3.7.24
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "spec-driven-development",
3
- "version": "3.7.24",
3
+ "version": "3.7.26",
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.1.2",
11
- "@contractspec/lib.contracts-spec": "5.6.0"
10
+ "@contractspec/app.cli-contractspec": "6.2.1",
11
+ "@contractspec/lib.contracts-spec": "6.0.0"
12
12
  },
13
13
  "scripts": {
14
14
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",