From c28118015aa74e995151a6db0e30287717528631 Mon Sep 17 00:00:00 2001 From: Dakera Ops Date: Sun, 31 May 2026 00:26:38 +0000 Subject: [PATCH] chore: bump version to 0.11.75, add CHANGELOG entries for 0.11.75 and 0.11.57 Tracks Dakera server v0.11.75 (TieredEngine, binary HNSW dispatch, ReembedJob). No client API surface changes. Also backfills missing CHANGELOG entry for v0.11.57 (storeMemoriesBatch, DAK-5508). Closes #DAK-6030 --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32e62d2..ac9b7df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.75] - 2026-05-31 + +### Changed + +- **Server compatibility**: tracks Dakera server v0.11.75 (TieredEngine registered in + AppState, binary HNSW dispatch wired in search paths, ReembedJob spawned at startup). + No client API surface changes required — all existing calls work unchanged. Binary HNSW + is opt-in server-side via `DAKERA_SEARCH_MODE=hybrid`; the SDK sends requests identically + regardless of server search mode. + +## [0.11.57] - 2026-05-22 + +### Added + +- **`storeMemoriesBatch()`** — new `DakeraClient` method for `POST /v1/memories/store/batch`, + enabling high-throughput batch memory ingestion (DAK-5508) + - `BatchStoreMemoryItem` — per-item fields matching the server batch schema + - `BatchStoreMemoryRequest` — `agentId` + `BatchStoreMemoryItem[]` + - `BatchStoredMemory` / `BatchStoreMemoryResponse` — response types + ## [0.11.56] - 2026-05-17 ### Changed diff --git a/package.json b/package.json index 1a2cde5..4274c72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dakera-ai/dakera", - "version": "0.11.57", + "version": "0.11.75", "description": "TypeScript/JavaScript SDK for Dakera AI memory platform", "main": "dist/index.js", "module": "dist/index.mjs",