AbstractMemory 0.2.5__tar.gz → 0.2.6__tar.gz
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.
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/.github/workflows/release.yml +1 -1
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/CHANGELOG.md +10 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/PKG-INFO +2 -1
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/pyproject.toml +2 -1
- abstractmemory-0.2.6/release-notes.md +7 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/src/abstractmemory/lancedb_store.py +5 -1
- abstractmemory-0.2.5/release-notes.md +0 -8
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/.github/workflows/ci.yml +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/.gitignore +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/ACKNOWLEDGMENTS.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/CONTRIBUTING.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/LICENSE +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/README.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/SECURITY.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/README.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/api.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/architecture.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/overview.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/planned/001_semantics_aligned_memory_record_conventions.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/planned/002_sqlite_database_compatibility_and_store_capabilities.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/planned/003_bounded_graph_traversal_over_triples.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/planned/004_recall_trace_and_access_events_contract.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/planned/005_source_linked_summaries_and_derived_assertion_lineage.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/planned/006_deterministic_anchor_and_facet_index.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/planned/007_read_only_memory_observer_contract.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/backlog/proposed/2026-05-08_gateway_memory_install_and_config_boundary.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/development.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/faq.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/getting-started.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/docs/stores.md +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/llms-full.txt +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/llms.txt +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/src/abstractmemory/__init__.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/src/abstractmemory/embeddings.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/src/abstractmemory/in_memory_store.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/src/abstractmemory/models.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/src/abstractmemory/sqlite_store.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/src/abstractmemory/store.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/tests/conftest.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/tests/test_in_memory_query_text_fallback.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/tests/test_lancedb_triple_store.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/tests/test_sqlite_triple_store.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/tests/test_term_canonicalization.py +0 -0
- {abstractmemory-0.2.5 → abstractmemory-0.2.6}/tests/test_triple_store_limits.py +0 -0
|
@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
*No unreleased changes.*
|
|
11
11
|
|
|
12
|
+
## [0.2.6] - 2026-05-09
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- The `test` optional dependency now installs `lancedb` so release CI exercises
|
|
16
|
+
the persisted LanceDB store contract instead of skipping it.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- `LanceDBTripleStore` now recognizes the current LanceDB `list_tables()`
|
|
20
|
+
response shape, restoring persisted table reopen/query behavior.
|
|
21
|
+
|
|
12
22
|
## [0.2.5] - 2026-05-08
|
|
13
23
|
|
|
14
24
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AbstractMemory
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6
|
|
4
4
|
Summary: AbstractMemory: temporal, provenance-aware semantic memory primitives for AbstractFramework.
|
|
5
5
|
Project-URL: AbstractFramework (monorepo), https://github.com/lpalbou/abstractframework
|
|
6
6
|
Author: Laurent-Philippe Albou
|
|
@@ -30,6 +30,7 @@ Provides-Extra: gpu
|
|
|
30
30
|
Provides-Extra: lancedb
|
|
31
31
|
Requires-Dist: lancedb; extra == 'lancedb'
|
|
32
32
|
Provides-Extra: test
|
|
33
|
+
Requires-Dist: lancedb; extra == 'test'
|
|
33
34
|
Requires-Dist: pytest>=7.0.0; extra == 'test'
|
|
34
35
|
Description-Content-Type: text/markdown
|
|
35
36
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "AbstractMemory"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.6"
|
|
8
8
|
description = "AbstractMemory: temporal, provenance-aware semantic memory primitives for AbstractFramework."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -39,6 +39,7 @@ dev = [
|
|
|
39
39
|
]
|
|
40
40
|
test = [
|
|
41
41
|
"pytest>=7.0.0",
|
|
42
|
+
"lancedb",
|
|
42
43
|
]
|
|
43
44
|
lancedb = [
|
|
44
45
|
"lancedb",
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
### Changed
|
|
2
|
+
- The `test` optional dependency now installs `lancedb` so release CI exercises
|
|
3
|
+
the persisted LanceDB store contract instead of skipping it.
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- `LanceDBTripleStore` now recognizes the current LanceDB `list_tables()`
|
|
7
|
+
response shape, restoring persisted table reopen/query behavior.
|
|
@@ -99,7 +99,11 @@ def _loads_json(raw: object) -> dict:
|
|
|
99
99
|
def _list_lancedb_tables(db: Any) -> set[str]:
|
|
100
100
|
list_tables = getattr(db, "list_tables", None)
|
|
101
101
|
if callable(list_tables):
|
|
102
|
-
|
|
102
|
+
result = list_tables()
|
|
103
|
+
tables = getattr(result, "tables", None)
|
|
104
|
+
if tables is not None:
|
|
105
|
+
return {str(name) for name in tables}
|
|
106
|
+
return {str(name) for name in result}
|
|
103
107
|
|
|
104
108
|
table_names = getattr(db, "table_names", None)
|
|
105
109
|
if callable(table_names):
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
### Added
|
|
2
|
-
- Added GitHub Actions CI for Python 3.10 through 3.12 with pytest and package
|
|
3
|
-
build checks.
|
|
4
|
-
- Added a trusted-publishing release workflow for tagged or manually dispatched
|
|
5
|
-
releases, including version/changelog validation, distribution artifacts,
|
|
6
|
-
PyPI publication, and GitHub Release creation.
|
|
7
|
-
- Added an AbstractMemory GitHub bug report template.
|
|
8
|
-
- Added a `test` optional dependency extra for CI and release validation.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|