hebbrix 2.2.0 → 2.3.0

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 ADDED
@@ -0,0 +1,42 @@
1
+ # Changelog
2
+
3
+ ## 2.3.0 — 2026-08-27
4
+
5
+ - Reconcile every exported advanced method with the canonical public OpenAPI,
6
+ including temporal, working-memory, consolidation, memory-tool, and RL routes.
7
+ - Correct `collections.list()` to return `CursorPage<Collection>` at both type
8
+ and runtime levels, with clean-tarball compile and runtime coverage.
9
+ - Treat durable-but-indexing batch results as `202`, poll them through the SDK,
10
+ and throw `IndexingTimeoutError` with the durable receipt on client deadline.
11
+ - Preserve structured entitlement metadata in `EntitlementError`.
12
+ - Add a route-manifest release gate and clean-tarball installation verification.
13
+ - Withdraw the experimental World Model from the public SDK until a trained,
14
+ versioned production model artifact and serving contract exist.
15
+ - Publish compatibility through `GET /v1/release`; remove the broken repository
16
+ metadata and retain valid artifact and support links.
17
+
18
+ ## 2.2.1 — 2026-08-26
19
+
20
+ - Preserve bearer authentication, content type, user agent, idempotency, and
21
+ caller-supplied headers on every request.
22
+ - Handle `204`, empty, and non-JSON successful responses without attempting an
23
+ unconditional JSON parse.
24
+ - Preserve valid evidence-bound search rows during a degraded or abstaining
25
+ server response while retaining the safety metadata; malformed and explicit
26
+ no-match envelopes still fail closed.
27
+ - Preserve caller-provided abort signals while retaining the default timeout.
28
+ - Add `temporal.deleteFact(factId)` for tenant-scoped, idempotent cleanup of
29
+ facts created through the temporal API.
30
+ - Align procedure create/list/get/update/execute/delete with the canonical
31
+ `/v1/procedures` REST and OpenAPI contract, including empty `204` deletion.
32
+ - Add explicit synchronous/asynchronous batch readiness receipts and
33
+ `waitForBatchSearchable`, which polls every accepted memory, propagates
34
+ terminal failures, respects deadlines, and supports cancellation.
35
+
36
+ The supported server/SDK release pair is published by the server OpenAPI
37
+ document in `info.x-hebbrix-sdk-compatibility`. Patch releases preserve the
38
+ public API within the same major version.
39
+
40
+ ## 2.2.0
41
+
42
+ - Added the GA scoped memory, corrections, search proof, and ProofLoop surface.