Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading