Skip to content

Commit d2a297d

Browse files
committed
docs: update changelogs for v3.1.3 release
1 parent 89f36dc commit d2a297d

3 files changed

Lines changed: 75 additions & 13 deletions

File tree

docs/changelogs/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to the LedgerMind project since version 2.0.0.
44

55
---
66

7+
## [v3.1.3] - 2026-03-02
8+
9+
- **Real-Time Synchronization:** Instant history synchronization for Claude
10+
Code via the new `Stop` hook ([#70](https://github.com/sl4m3/ledgermind/pull/70)
11+
by @sl4m3).
12+
- **Hypothesis Unification:** Unified procedural and behavioral hypothesis
13+
lifecycles for consistent knowledge evolution
14+
([#72](https://github.com/sl4m3/ledgermind/pull/72) by @sl4m3).
15+
- **Increased Scaling:** Memory event length limit increased to 500KB for
16+
technical log recording ([#73](https://github.com/sl4m3/ledgermind/pull/73)
17+
by @sl4m3).
18+
- **Hook Reliability:** Secured interaction recording via stdin pipe
19+
([#76](https://github.com/sl4m3/ledgermind/pull/76) by @sl4m3).
20+
721
## [v3.1.2] - 2026-03-01
822

923
- **Unified Error Handling:** Implemented `Result` pattern with explicit error

docs/changelogs/latest.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
# Latest Release: v3.1.2
1+
# Latest Release: v3.1.3
22

3-
## March 1, 2026
3+
## March 2, 2026
44

5-
LedgerMind v3.1.2 focus on production-grade reliability, security hardening,
6-
and comprehensive system monitoring.
5+
LedgerMind v3.1.3 focus on real-time synchronization, hypothesis unification,
6+
and improved technical log recording.
77

88
### Highlights
99

10-
- **Unified Error Handling:** Standardized `Result` pattern for core operations
11-
with explicit error codes.
12-
- **Health Monitoring:** New `/health` endpoints for real-time status of all
13-
system components.
14-
- **Connection Pooling:** High-performance SQLAlchemy `QueuePool` for episodic
15-
storage.
16-
- **Hardened Security:** Multi-layer input sanitization against XSS and Unicode
17-
attacks.
10+
- **Real-Time Synchronization (Stop Hook):** Instant history synchronization
11+
for Claude Code via the new `Stop` hook, preventing duplicate entries.
12+
- **Hypothesis Unification:** Consistent evolutionary path for both
13+
procedural and behavioral hypotheses.
14+
- **Increased Scaling:** Memory event length limit increased to 500KB to
15+
support large technical logs and complex code snippets.
16+
- **Secure Hook Recording:** Robust interaction recording via stdin pipes.
1817

19-
[View full v3.1.2 changelog](./v3.1.2.md)
18+
[View full v3.1.3 changelog](./v3.1.3.md)

docs/changelogs/v3.1.3.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Changelog v3.1.3 (March 2, 2026)
2+
3+
LedgerMind v3.1.3 focuses on real-time synchronization, hypothesis unification,
4+
and improved technical log recording.
5+
6+
## Highlights
7+
8+
### ⚡ Real-Time Synchronization
9+
- **Claude Code Stop Hook:** Implemented instant history synchronization for
10+
Claude Code using the new `Stop` hook. This ensures that every interaction is
11+
recorded immediately after the task finishes.
12+
- **Hybrid Deduplication:** Added a robust deduplication mechanism (UUID +
13+
content hash) in `bridge-context` to prevent duplicate prompt recording during
14+
hook execution.
15+
16+
### 🧠 Reasoning Evolution
17+
- **Hypothesis Unification:** Unified procedural and behavioral hypothesis
18+
lifecycles within the reasoning engine. This provides a consistent evolution
19+
path for all types of discovered patterns.
20+
21+
### 🛡️ Security & Scaling
22+
- **Increased Event Limits:** Memory event length limit increased to 500KB to
23+
accommodate large technical logs and complex code snippets.
24+
- **Relaxed Technical Validation:** Adjusted validation rules to allow recording
25+
of legitimate code blocks and logs that were previously flagged by overly
26+
strict security heuristics.
27+
- **Secure Interaction Recording:** Interaction recording via stdin pipes is now
28+
more robust and secure.
29+
30+
## What's Changed
31+
32+
- feat(claude): implement real-time transcript sync via Stop hook by @sl4m3 in
33+
[#70](https://github.com/sl4m3/ledgermind/pull/70)
34+
- fix(cli): prevent duplicate prompt recording by relying on Stop hook sync by @sl4m3 in
35+
[#75](https://github.com/sl4m3/ledgermind/pull/75)
36+
- feat(reasoning): unify procedural and behavioral hypothesis lifecycles by @sl4m3 in
37+
[#72](https://github.com/sl4m3/ledgermind/pull/72)
38+
- fix(security): relax validation to allow recording of code and technical logs by @sl4m3 in
39+
[#71](https://github.com/sl4m3/ledgermind/pull/71)
40+
- fix(security): increase max memory event length to 500KB by @sl4m3 in
41+
[#73](https://github.com/sl4m3/ledgermind/pull/73)
42+
- feat: unify Claude Code hooks path and fix episodic duplicate detection by @sl4m3 in
43+
[#74](https://github.com/sl4m3/ledgermind/pull/74)
44+
- fix(hooks): secure interaction recording via stdin pipe by @sl4m3 in
45+
[#76](https://github.com/sl4m3/ledgermind/pull/76)
46+
- fix(security): definitively remove mixed-script homoglyph check by @sl4m3 in
47+
[#77](https://github.com/sl4m3/ledgermind/pull/77)
48+
49+
**Full changelog:** [v3.1.2...v3.1.3](https://github.com/sl4m3/ledgermind/compare/v3.1.2...v3.1.3)

0 commit comments

Comments
 (0)