basic-memory 0.2.12__tar.gz → 0.2.13__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.
Potentially problematic release.
This version of basic-memory might be problematic. Click here for more details.
- {basic_memory-0.2.12 → basic_memory-0.2.13}/.github/workflows/release.yml +11 -7
- {basic_memory-0.2.12 → basic_memory-0.2.13}/CHANGELOG.md +8 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/PKG-INFO +1 -1
- {basic_memory-0.2.12 → basic_memory-0.2.13}/pyproject.toml +1 -1
- {basic_memory-0.2.12 → basic_memory-0.2.13}/.github/workflows/pr-title.yml +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/.github/workflows/test.yml +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/.gitignore +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/.python-version +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/CITATION.cff +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/CODE_OF_CONDUCT.md +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/CONTRIBUTING.md +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/LICENSE +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/Makefile +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/README.md +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/alembic.ini +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/basic-memory.md +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/installer/Basic.icns +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/installer/README.md +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/installer/icon.svg +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/installer/installer.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/installer/make_icons.sh +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/installer/setup.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/memory.json +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/scripts/install.sh +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/alembic/README +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/alembic/env.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/alembic/migrations.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/alembic/script.py.mako +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/alembic/versions/3dae7c7b1564_initial_schema.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/api/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/api/app.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/api/routers/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/api/routers/knowledge_router.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/api/routers/memory_router.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/api/routers/resource_router.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/api/routers/search_router.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/app.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/commands/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/commands/db.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/commands/import_memory_json.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/commands/mcp.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/commands/status.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/commands/sync.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/main.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/config.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/db.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/deps.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/file_utils.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/markdown/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/markdown/entity_parser.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/markdown/markdown_processor.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/markdown/plugins.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/markdown/schemas.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/markdown/utils.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/async_client.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/server.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/tools/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/tools/knowledge.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/tools/memory.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/tools/notes.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/tools/search.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/mcp/tools/utils.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/models/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/models/base.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/models/knowledge.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/models/search.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/entity_repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/observation_repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/relation_repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/search_repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/schemas/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/schemas/base.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/schemas/delete.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/schemas/discovery.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/schemas/memory.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/schemas/request.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/schemas/response.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/schemas/search.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/services/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/services/context_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/services/entity_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/services/exceptions.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/services/file_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/services/link_resolver.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/services/search_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/services/service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/sync/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/sync/file_change_scanner.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/sync/sync_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/sync/utils.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/sync/watch_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/utils.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/api/conftest.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/api/test_knowledge_router.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/api/test_memory_router.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/api/test_resource_router.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/api/test_search_router.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/cli/test_import_memory_json.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/cli/test_status.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/cli/test_sync.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/conftest.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/edit_file_test.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/markdown/__init__.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/markdown/test_entity_parser.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/markdown/test_markdown_plugins.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/markdown/test_markdown_processor.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/markdown/test_observation_edge_cases.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/markdown/test_parser_edge_cases.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/markdown/test_relation_edge_cases.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/markdown/test_task_detection.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/mcp/conftest.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/mcp/test_tool_get_entity.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/mcp/test_tool_knowledge.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/mcp/test_tool_memory.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/mcp/test_tool_notes.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/mcp/test_tool_search.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/mcp/test_tool_utils.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/repository/test_entity_repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/repository/test_observation_repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/repository/test_relation_repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/repository/test_repository.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/schemas/test_memory_url.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/schemas/test_schemas.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/schemas/test_search.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/services/test_context_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/services/test_entity_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/services/test_file_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/services/test_link_resolver.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/services/test_search_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/sync/test_file_change_scanner.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/sync/test_sync_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/sync/test_watch_service.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/test_basic_memory.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/utils/test_file_utils.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/tests/utils/test_permalink_formatting.py +0 -0
- {basic_memory-0.2.12 → basic_memory-0.2.13}/uv.lock +0 -0
|
@@ -64,8 +64,15 @@ jobs:
|
|
|
64
64
|
|
|
65
65
|
- name: Install uv
|
|
66
66
|
run: |
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
pip install uv
|
|
68
|
+
|
|
69
|
+
- name: Create virtual env
|
|
70
|
+
run: |
|
|
71
|
+
uv venv
|
|
72
|
+
|
|
73
|
+
- name: Install dependencies
|
|
74
|
+
run: |
|
|
75
|
+
uv pip install -e .[dev]
|
|
69
76
|
|
|
70
77
|
- name: Install librsvg
|
|
71
78
|
run: brew install librsvg
|
|
@@ -78,10 +85,7 @@ jobs:
|
|
|
78
85
|
|
|
79
86
|
- name: Build macOS installer
|
|
80
87
|
run: |
|
|
81
|
-
|
|
82
|
-
uv venv
|
|
83
|
-
uv pip install -e "..[dev]"
|
|
84
|
-
uv run python setup.py bdist_mac
|
|
88
|
+
make installer-mac
|
|
85
89
|
xattr -dr com.apple.quarantine "build/Basic Memory Installer.app"
|
|
86
90
|
|
|
87
91
|
- name: Zip macOS installer
|
|
@@ -94,4 +98,4 @@ jobs:
|
|
|
94
98
|
with:
|
|
95
99
|
files: installer/build/Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip
|
|
96
100
|
tag_name: ${{ needs.release.outputs.tag }}
|
|
97
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
101
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v0.2.13 (2025-02-14)
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
- Refactor release.yml installer
|
|
9
|
+
([`a152657`](https://github.com/basicmachines-co/basic-memory/commit/a15265783e47c22d8c7931396281d023b3694e27))
|
|
10
|
+
|
|
11
|
+
|
|
4
12
|
## v0.2.12 (2025-02-14)
|
|
5
13
|
|
|
6
14
|
### Bug Fixes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: basic-memory
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.13
|
|
4
4
|
Summary: Local-first knowledge management combining Zettelkasten with knowledge graphs
|
|
5
5
|
Project-URL: Homepage, https://github.com/basicmachines-co/basic-memory
|
|
6
6
|
Project-URL: Repository, https://github.com/basicmachines-co/basic-memory
|
|
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
|
{basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/api/routers/knowledge_router.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/cli/commands/import_memory_json.py
RENAMED
|
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
|
{basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/entity_repository.py
RENAMED
|
File without changes
|
{basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/observation_repository.py
RENAMED
|
File without changes
|
{basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/relation_repository.py
RENAMED
|
File without changes
|
|
File without changes
|
{basic_memory-0.2.12 → basic_memory-0.2.13}/src/basic_memory/repository/search_repository.py
RENAMED
|
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
|
|
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
|