superlocalmemory 3.4.40 → 3.4.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/package.json +1 -1
- package/pyproject.toml +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
+
## [3.4.41] - 2026-05-09
|
|
13
|
+
|
|
14
|
+
Hotfix release. Pins `tree-sitter-language-pack` to the `<1` line. The
|
|
15
|
+
upstream 1.x rewrite (Rust-backed) ships an incompatible Parser API — the
|
|
16
|
+
language-pack's bundled `Parser` no longer exposes `.parse()`, breaking the
|
|
17
|
+
code-graph extractor and its test suite. Pinning to the 0.x line restores
|
|
18
|
+
the documented API. A migration to the 1.x API will follow in a later
|
|
19
|
+
release once call-site changes are validated.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- `code_graph` extractor and tests broken by `tree-sitter-language-pack 1.x`.
|
|
23
|
+
Constraint changed from `>=0.3,<2` to `>=0.5,<1`.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
12
27
|
## [3.4.40] - 2026-05-09
|
|
13
28
|
|
|
14
29
|
Recall performance and entity-profile hygiene. Two scaling issues surfaced
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superlocalmemory",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.41",
|
|
4
4
|
"description": "Information-geometric agent memory with mathematical guarantees. 4-channel retrieval, Fisher-Rao similarity, zero-LLM mode, EU AI Act compliant. Works with Claude, Cursor, Windsurf, and 17+ AI tools.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-memory",
|
package/pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "superlocalmemory"
|
|
3
|
-
version = "3.4.
|
|
3
|
+
version = "3.4.41"
|
|
4
4
|
description = "Information-geometric agent memory with mathematical guarantees"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = {text = "AGPL-3.0-or-later"}
|
|
@@ -46,7 +46,7 @@ dependencies = [
|
|
|
46
46
|
"orjson>=3.9.0",
|
|
47
47
|
# CodeGraph — code knowledge graph (v3.4)
|
|
48
48
|
"tree-sitter>=0.23.0,<1",
|
|
49
|
-
"tree-sitter-language-pack>=0.
|
|
49
|
+
"tree-sitter-language-pack>=0.5,<1",
|
|
50
50
|
"rustworkx>=0.15,<1",
|
|
51
51
|
"watchdog>=4.0,<6",
|
|
52
52
|
# V3.4.3: Unified Brain
|