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.12.10] - 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` when present, then
`weighted_score`, then raw `score`. New optional fields `smart_score` and `weighted_score` are
exposed on `RecalledMemory` for consumers that need the raw components.
([#181](https://github.com/Dakera-AI/dakera-py/pull/181))

### 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.12.9] - 2026-07-02

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dakera"
version = "0.12.9"
version = "0.12.10"
description = "Python SDK for Dakera - AI memory platform"
readme = "README.md"
license = {text = "MIT"}
Expand Down
2 changes: 1 addition & 1 deletion src/dakera/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
DakeraDelegationHelper,
)

__version__ = "0.12.9"
__version__ = "0.12.10"
__all__ = [
# Clients
"DakeraClient",
Expand Down
Loading