@lucern/sdk 1.0.26 → 1.0.28
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 +19 -0
- package/dist/proof-attestation.json +1 -1
- package/dist/realtime/refs.js +8 -0
- 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,25 @@ 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.28] - 2026-06-14
|
|
9
|
+
- Coherent with `@lucern/reasoning-kernel` 1.0.28: FR.12d access-control
|
|
10
|
+
completion — the definitive creator-grant 403 cure (#1361). The project
|
|
11
|
+
overlay now accepts epistemicNode-backed topics (node-only UUIDv7 self-key
|
|
12
|
+
and dual-backed `t17` doc-id shapes) and `tenant_api_key` service principals
|
|
13
|
+
resolve through the same grant-evaluation path, so a real non-admin
|
|
14
|
+
granted principal can `create_question` (and the rest of the project-scoped
|
|
15
|
+
write surface) without a spurious `PROJECT_ACCESS_DENIED` 403.
|
|
16
|
+
Function/runtime-contract line, not a schema line.
|
|
17
|
+
|
|
18
|
+
## [1.0.27] - 2026-06-14
|
|
19
|
+
- FR.12c access-control completion. Coherent with `@lucern/reasoning-kernel`
|
|
20
|
+
1.0.27: the kernel default `getProject` is now a real overlay materializer
|
|
21
|
+
rather than a `() => null` stub, so the FR.12 creator-grant read is actually
|
|
22
|
+
reached. This makes `create_question`, `create_evidence`, `create_task`, and
|
|
23
|
+
`archive_belief` succeed again for granted principals — the prior 1.0.25/1.0.26
|
|
24
|
+
grant-read fix sat behind unreachable code. SDK surface is unchanged; this line
|
|
25
|
+
moves the coherent `@lucern/*` set forward and carries the kernel runtime cure.
|
|
26
|
+
|
|
8
27
|
## [1.0.26] - 2026-06-13
|
|
9
28
|
- Release notes pending.
|
|
10
29
|
|
package/dist/realtime/refs.js
CHANGED
|
@@ -9,5 +9,13 @@ import { anyApi } from "convex/server";
|
|
|
9
9
|
*
|
|
10
10
|
* Client consumers should continue importing from `@lucern/sdk/realtime`.
|
|
11
11
|
*/
|
|
12
|
+
// TODO(FR.11-structural): `AnyApi`/`anyApi` is the SDK's public, consumer-facing
|
|
13
|
+
// escape hatch for referencing deployed functions — it is NOT a mechanical swap
|
|
14
|
+
// to a generated typed surface. Eliminating it requires the SDK to ship a
|
|
15
|
+
// published typed platform-API `.d.ts` (a typed function-reference manifest)
|
|
16
|
+
// that consumers import in place of `anyApi`. Until that typed surface is
|
|
17
|
+
// generated and bundled into the package, this remains the only typed way for
|
|
18
|
+
// SDK consumers to reference platform functions. Deferred to the FR.11 closing
|
|
19
|
+
// pass (needs a new generated artifact + public-API contract change).
|
|
12
20
|
export const platformApi = anyApi;
|
|
13
21
|
//# sourceMappingURL=refs.js.map
|
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.28",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -113,10 +113,10 @@
|
|
|
113
113
|
"typecheck": "tsc --project tsconfig.typecheck.json --noEmit"
|
|
114
114
|
},
|
|
115
115
|
"dependencies": {
|
|
116
|
-
"@lucern/contracts": "1.0.
|
|
117
|
-
"@lucern/reasoning-kernel": "1.0.
|
|
118
|
-
"@lucern/secrets": "1.0.
|
|
119
|
-
"@lucern/transport-core": "1.0.
|
|
116
|
+
"@lucern/contracts": "1.0.28",
|
|
117
|
+
"@lucern/reasoning-kernel": "1.0.28",
|
|
118
|
+
"@lucern/secrets": "1.0.28",
|
|
119
|
+
"@lucern/transport-core": "1.0.28",
|
|
120
120
|
"effect": "^3.21.2",
|
|
121
121
|
"zod": "^3.25.76"
|
|
122
122
|
},
|