Skip to content

Commit d3336dc

Browse files
committed
build: up version
1 parent ac7ecf5 commit d3336dc

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.1] - 2025-12-29
9+
10+
### Fixed
11+
- **LangGraph Subgraph Support:** Previously, `MemStateCheckpointer` ignored the `checkpoint_ns` (namespace) parameter. This caused state collisions when using nested graphs (subgraphs) within the same thread. Now, checkpoints are strictly isolated by both `thread_id` and `checkpoint_ns`.
12+
13+
### Performance
14+
- **New Indexes:** Added functional indexes for `payload.checkpoint_ns` in both **PostgreSQL** (B-Tree on JSONB path) and **SQLite**. This ensures fast state retrieval for complex agent workflows without full table scans.
15+
16+
### Changed
17+
- **Checkpointer Logic:** Updated `put` and `aput` methods in LangGraph integrations to explicitly persist the `checkpoint_ns` field within the fact payload.
18+
819
## [0.5.0] - 2025-12-23
920

1021
### Major Feature: Hybrid Structured-Semantic Search

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "memstate"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Transactional Memory for AI Agents - Keep SQL and Vector DBs in sync with ACID-like guarantees"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)