@contractspec/bundle.library 3.9.5 → 3.9.6
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +41 -0
- package/package.json +23 -23
package/.turbo/turbo-build.log
CHANGED
|
@@ -2,7 +2,7 @@ $ contractspec-bun-build prebuild
|
|
|
2
2
|
$ bun run build:bundle && bun run build:types
|
|
3
3
|
$ contractspec-bun-build transpile
|
|
4
4
|
[contractspec-bun-build] transpile target=bun root=src entries=319 noBundle=false
|
|
5
|
-
Bundled 319 modules in
|
|
5
|
+
Bundled 319 modules in 408ms
|
|
6
6
|
|
|
7
7
|
application/context-storage/index.js 0.85 KB (entry point)
|
|
8
8
|
presentation/features/templates/types.js 8 bytes (entry point)
|
|
@@ -325,7 +325,7 @@ Bundled 319 modules in 334ms
|
|
|
325
325
|
application/mcp/contractsMcpResources.js 3.47 KB (entry point)
|
|
326
326
|
|
|
327
327
|
[contractspec-bun-build] transpile target=node root=src entries=319 noBundle=false
|
|
328
|
-
Bundled 319 modules in
|
|
328
|
+
Bundled 319 modules in 392ms
|
|
329
329
|
|
|
330
330
|
application/context-storage/index.js 0.85 KB (entry point)
|
|
331
331
|
presentation/features/templates/types.js 0 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @contractspec/bundle.library
|
|
2
2
|
|
|
3
|
+
## 3.9.6
|
|
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 Add Biome guardrails that keep JSX layout and text compatible with React and React Native.
|
|
10
|
+
- Updated dependencies because of Add mobile-safe FormSpec layout helpers and scoped DataView filters.
|
|
11
|
+
|
|
12
|
+
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.
|
|
13
|
+
|
|
14
|
+
- 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.
|
|
15
|
+
- Updated dependencies because of Complete the knowledge OSS surface with stricter guardrails and an easier runtime path.
|
|
16
|
+
|
|
17
|
+
`@contractspec/lib.knowledge` now exposes a higher-level `KnowledgeRuntime` helper for the common ingest -> retrieve -> answer flow, adds per-query overrides on `KnowledgeQueryService`, and makes typed retrieval filters (`locale`, `category`) real rather than documentation-only. The access guard now enforces `automationWritable` and denies missing workflow/agent bindings when scoped allow-lists exist, which aligns runtime behavior with the contracts-spec knowledge semantics. The package also gains deeper regression coverage over previously untested public primitives.
|
|
18
|
+
|
|
19
|
+
`@contractspec/example.knowledge-canon` now demonstrates a real `lib.knowledge` retrieval path instead of a placeholder TODO, so OSS consumers have a concrete example package they can reuse.
|
|
20
|
+
|
|
21
|
+
- @contractspec/bundle.workspace@4.5.4
|
|
22
|
+
- @contractspec/example.data-grid-showcase@3.8.18
|
|
23
|
+
- @contractspec/lib.ai-providers@3.7.17
|
|
24
|
+
- @contractspec/lib.content-gen@3.7.24
|
|
25
|
+
- @contractspec/lib.contracts-integrations@3.8.16
|
|
26
|
+
- @contractspec/lib.contracts-library@3.7.24
|
|
27
|
+
- @contractspec/lib.contracts-runtime-server-graphql@3.8.3
|
|
28
|
+
- @contractspec/lib.contracts-runtime-server-mcp@3.8.4
|
|
29
|
+
- @contractspec/lib.contracts-runtime-server-rest@3.8.3
|
|
30
|
+
- @contractspec/lib.example-shared-ui@7.0.3
|
|
31
|
+
- @contractspec/lib.logger@3.7.17
|
|
32
|
+
- @contractspec/lib.provider-ranking@0.7.17
|
|
33
|
+
- @contractspec/lib.runtime-sandbox@3.0.3
|
|
34
|
+
- @contractspec/lib.surface-runtime@0.5.24
|
|
35
|
+
- @contractspec/lib.ui-link@3.7.19
|
|
36
|
+
- @contractspec/module.context-storage@0.7.23
|
|
37
|
+
- @contractspec/module.examples@4.0.3
|
|
38
|
+
- @contractspec/lib.ui-kit-web@3.12.1
|
|
39
|
+
- @contractspec/lib.design-system@4.1.0
|
|
40
|
+
- @contractspec/lib.contracts-spec@5.7.0
|
|
41
|
+
- @contractspec/lib.contracts-runtime-client-react@3.11.1
|
|
42
|
+
- @contractspec/lib.knowledge@3.8.0
|
|
43
|
+
|
|
3
44
|
## 3.9.5
|
|
4
45
|
|
|
5
46
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/bundle.library",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf dist",
|
|
@@ -1938,27 +1938,27 @@
|
|
|
1938
1938
|
"react": "19.2.0"
|
|
1939
1939
|
},
|
|
1940
1940
|
"dependencies": {
|
|
1941
|
-
"@contractspec/bundle.workspace": "4.5.
|
|
1941
|
+
"@contractspec/bundle.workspace": "4.5.4",
|
|
1942
1942
|
"@apollo/client": "^4.1.7",
|
|
1943
1943
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
1944
|
-
"@contractspec/example.data-grid-showcase": "3.8.
|
|
1945
|
-
"@contractspec/lib.ai-providers": "3.7.
|
|
1946
|
-
"@contractspec/lib.contracts-spec": "5.
|
|
1947
|
-
"@contractspec/lib.contracts-library": "3.7.
|
|
1948
|
-
"@contractspec/lib.content-gen": "3.7.
|
|
1949
|
-
"@contractspec/lib.contracts-runtime-server-mcp": "3.8.
|
|
1950
|
-
"@contractspec/lib.design-system": "4.
|
|
1951
|
-
"@contractspec/lib.surface-runtime": "0.5.
|
|
1952
|
-
"@contractspec/lib.provider-ranking": "0.7.
|
|
1953
|
-
"@contractspec/lib.example-shared-ui": "7.0.
|
|
1954
|
-
"@contractspec/lib.knowledge": "3.
|
|
1955
|
-
"@contractspec/lib.logger": "3.7.
|
|
1956
|
-
"@contractspec/lib.runtime-sandbox": "3.0.
|
|
1944
|
+
"@contractspec/example.data-grid-showcase": "3.8.18",
|
|
1945
|
+
"@contractspec/lib.ai-providers": "3.7.17",
|
|
1946
|
+
"@contractspec/lib.contracts-spec": "5.7.0",
|
|
1947
|
+
"@contractspec/lib.contracts-library": "3.7.24",
|
|
1948
|
+
"@contractspec/lib.content-gen": "3.7.24",
|
|
1949
|
+
"@contractspec/lib.contracts-runtime-server-mcp": "3.8.4",
|
|
1950
|
+
"@contractspec/lib.design-system": "4.1.0",
|
|
1951
|
+
"@contractspec/lib.surface-runtime": "0.5.24",
|
|
1952
|
+
"@contractspec/lib.provider-ranking": "0.7.17",
|
|
1953
|
+
"@contractspec/lib.example-shared-ui": "7.0.3",
|
|
1954
|
+
"@contractspec/lib.knowledge": "3.8.0",
|
|
1955
|
+
"@contractspec/lib.logger": "3.7.17",
|
|
1956
|
+
"@contractspec/lib.runtime-sandbox": "3.0.3",
|
|
1957
1957
|
"@contractspec/lib.schema": "3.7.14",
|
|
1958
|
-
"@contractspec/lib.ui-kit-web": "3.12.
|
|
1959
|
-
"@contractspec/lib.ui-link": "3.7.
|
|
1960
|
-
"@contractspec/module.context-storage": "0.7.
|
|
1961
|
-
"@contractspec/module.examples": "4.0.
|
|
1958
|
+
"@contractspec/lib.ui-kit-web": "3.12.1",
|
|
1959
|
+
"@contractspec/lib.ui-link": "3.7.19",
|
|
1960
|
+
"@contractspec/module.context-storage": "0.7.23",
|
|
1961
|
+
"@contractspec/module.examples": "4.0.3",
|
|
1962
1962
|
"@dnd-kit/core": "^6.1.0",
|
|
1963
1963
|
"@dnd-kit/sortable": "^10.0.0",
|
|
1964
1964
|
"@dnd-kit/utilities": "^3.2.2",
|
|
@@ -1974,10 +1974,10 @@
|
|
|
1974
1974
|
"posthog-react-native": "^4.42.3",
|
|
1975
1975
|
"react-hook-form": "^7.72.1",
|
|
1976
1976
|
"zod": "^4.3.5",
|
|
1977
|
-
"@contractspec/lib.contracts-integrations": "3.8.
|
|
1978
|
-
"@contractspec/lib.contracts-runtime-server-rest": "3.8.
|
|
1979
|
-
"@contractspec/lib.contracts-runtime-server-graphql": "3.8.
|
|
1980
|
-
"@contractspec/lib.contracts-runtime-client-react": "3.11.
|
|
1977
|
+
"@contractspec/lib.contracts-integrations": "3.8.16",
|
|
1978
|
+
"@contractspec/lib.contracts-runtime-server-rest": "3.8.3",
|
|
1979
|
+
"@contractspec/lib.contracts-runtime-server-graphql": "3.8.3",
|
|
1980
|
+
"@contractspec/lib.contracts-runtime-client-react": "3.11.1"
|
|
1981
1981
|
},
|
|
1982
1982
|
"devDependencies": {
|
|
1983
1983
|
"@types/react": "~19.2.14",
|