@cross-deck/node 1.9.0 → 1.9.1
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 +7 -0
- package/README.md +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.9.1] — 2026-06-30
|
|
10
|
+
|
|
11
|
+
**Docs — knowledge-backbone governance release.** No runtime API change. This
|
|
12
|
+
patch republishes the SDK with the Markdoc-backed README/version-control surface
|
|
13
|
+
so npm, the public GitHub mirror, and the Crossdeck knowledge backbone all carry
|
|
14
|
+
the same governed installation and contract documentation.
|
|
15
|
+
|
|
9
16
|
## [1.9.0] — 2026-06-24
|
|
10
17
|
|
|
11
18
|
**Added — read-cost cross-match (the Buckets bridge).** When
|
package/README.md
CHANGED
|
@@ -614,8 +614,8 @@ CrossdeckContracts.byId("idempotency-key-deterministic");
|
|
|
614
614
|
CrossdeckContracts.byPillar("revenue");
|
|
615
615
|
CrossdeckContracts.withStatus("proposed");
|
|
616
616
|
CrossdeckContracts.findByTestName("rail namespacing prevents cross-rail collisions");
|
|
617
|
-
CrossdeckContracts.sdkVersion; // "1.
|
|
618
|
-
CrossdeckContracts.bundledIn; // "@cross-deck/node@1.
|
|
617
|
+
CrossdeckContracts.sdkVersion; // "1.9.0"
|
|
618
|
+
CrossdeckContracts.bundledIn; // "@cross-deck/node@1.9.0"
|
|
619
619
|
```
|
|
620
620
|
|
|
621
621
|
The `Contract` type is exported alongside; the binary-stability promise is documented in [`contracts/README.md`](https://github.com/VistaApps-za/crossdeck/blob/main/contracts/README.md).
|
package/dist/index.cjs
CHANGED