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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.102] - 2026-07-05

### Fixed

- **`RecalledMemory.score` now returns server-rank ordering** — `.score` previously exposed the
raw `score` field, which did not match the server's actual ranking key (`smart_score` →
`weighted_score` → `score` fallback). `.score` now resolves `smart_score ?? weighted_score ??
score`, matching the server's sort key. New optional fields `smart_score` and `weighted_score`
are exposed on `RecalledMemory` for consumers that need the raw components.
([#194](https://github.com/Dakera-AI/dakera-js/pull/194))

### Changed

- **Server sync v0.11.97** — no additional SDK API surface changes; bundled with server v0.11.97
security dep pins (quick-xml/memmap2), CI improvements (DAK-7362).

## [0.11.101] - 2026-07-02

### Changed
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dakera-ai/dakera",
"version": "0.11.101",
"version": "0.11.102",
"description": "TypeScript/JavaScript SDK for Dakera AI memory platform",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -74,4 +74,4 @@
"postcss": ">=8.5.10",
"esbuild": ">=0.28.1"
}
}
}
Loading