diff --git a/CHANGELOG.md b/CHANGELOG.md index 9387cc8..97ea13e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index f4a2c37..9e12783 100644 --- a/package.json +++ b/package.json @@ -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", @@ -74,4 +74,4 @@ "postcss": ">=8.5.10", "esbuild": ">=0.28.1" } -} +} \ No newline at end of file