@lucern/sdk 1.0.32 → 1.0.34
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 +12 -0
- package/dist/contextPackCompiler.js +1 -1
- package/dist/proof-attestation.json +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to `@lucern/sdk` will be documented in this file.
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
- No unreleased changes yet.
|
|
7
7
|
|
|
8
|
+
## [1.0.34] - 2026-06-25
|
|
9
|
+
- Coherent SDK release for the Graph V2 live staging identity-audit repair.
|
|
10
|
+
Consumers should pair this SDK with the matching deployed
|
|
11
|
+
`@lucern/reasoning-kernel` `1.0.34` component before rerunning UUIDv7 staging
|
|
12
|
+
inventory, topic navigation, and context-compiler smokes.
|
|
13
|
+
|
|
14
|
+
## [1.0.33] - 2026-06-25
|
|
15
|
+
- Coherent SDK release for the Graph V2 UUIDv7 hard-cut proof line. Consumers
|
|
16
|
+
should pair this SDK with the matching deployed `@lucern/reasoning-kernel`
|
|
17
|
+
`1.0.33` component before rerunning resolver-backed `context compile` and
|
|
18
|
+
topic-tree CLI smokes against UUIDv7-native data.
|
|
19
|
+
|
|
8
20
|
## [1.0.32] - 2026-06-25
|
|
9
21
|
- Coherent 1.0.32 bump with the UUIDv7 identity-spine release line. SDK
|
|
10
22
|
consumers should pair this package line with the matching deployed kernel
|
|
@@ -357,7 +357,7 @@ function compileContradictions(uniqueContradictions, plan, rankOptions) {
|
|
|
357
357
|
const contradictionCandidates = uniqueContradictions.map((row) => {
|
|
358
358
|
const weight = typeof row.weight === "number" ? row.weight : 0;
|
|
359
359
|
return {
|
|
360
|
-
contradictionId: String(row.
|
|
360
|
+
contradictionId: String(row.globalId || row._id || ""),
|
|
361
361
|
severity: contradictionSeverity(weight),
|
|
362
362
|
status: "active",
|
|
363
363
|
description: row.context || row.description || row.summary || "",
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucern/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.34",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -153,10 +153,10 @@
|
|
|
153
153
|
"typecheck": "tsc --project tsconfig.typecheck.json --noEmit"
|
|
154
154
|
},
|
|
155
155
|
"dependencies": {
|
|
156
|
-
"@lucern/contracts": "1.0.
|
|
157
|
-
"@lucern/reasoning-kernel": "1.0.
|
|
158
|
-
"@lucern/secrets": "1.0.
|
|
159
|
-
"@lucern/transport-core": "1.0.
|
|
156
|
+
"@lucern/contracts": "1.0.34",
|
|
157
|
+
"@lucern/reasoning-kernel": "1.0.34",
|
|
158
|
+
"@lucern/secrets": "1.0.34",
|
|
159
|
+
"@lucern/transport-core": "1.0.34",
|
|
160
160
|
"effect": "^3.21.2",
|
|
161
161
|
"zod": "^3.25.76"
|
|
162
162
|
},
|