better-mem0-mcp 1.1.0b23__tar.gz → 1.1.0b25__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.
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.github/workflows/cd.yml +19 -3
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/CHANGELOG.md +14 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/PKG-INFO +1 -1
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/pyproject.toml +1 -1
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.dockerignore +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.editorconfig +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.github/scripts/check-ci-cd-status.sh +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.github/scripts/merge-with-auto-resolve.sh +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.github/workflows/ci.yml +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.gitignore +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.mise.toml +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.pre-commit-config.yaml +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.python-version +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.releaserc.json +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.vscode/better-mem0-mcp.code-workspace +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/CODE_OF_CONDUCT.md +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/CONTRIBUTING.md +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/Dockerfile +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/LICENSE +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/README.md +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/SECURITY.md +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/package-lock.json +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/package.json +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/scripts/clean-venv.mjs +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/src/better_mem0_mcp/__init__.py +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/src/better_mem0_mcp/__main__.py +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/src/better_mem0_mcp/config.py +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/src/better_mem0_mcp/docs/memory.md +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/src/better_mem0_mcp/graph.py +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/src/better_mem0_mcp/py.typed +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/src/better_mem0_mcp/server.py +0 -0
- {better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/uv.lock +0 -0
|
@@ -3,6 +3,9 @@ name: CD
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
5
|
branches: [dev, main]
|
|
6
|
+
pull_request:
|
|
7
|
+
types: [closed]
|
|
8
|
+
branches: [main]
|
|
6
9
|
workflow_dispatch:
|
|
7
10
|
inputs:
|
|
8
11
|
action:
|
|
@@ -93,7 +96,9 @@ jobs:
|
|
|
93
96
|
restore-dev:
|
|
94
97
|
name: Restore Dev Branch
|
|
95
98
|
needs: [release]
|
|
96
|
-
if:
|
|
99
|
+
if: |
|
|
100
|
+
(github.ref == 'refs/heads/main' && github.event_name == 'push') ||
|
|
101
|
+
(github.event_name == 'pull_request' && github.event.pull_request.merged == true)
|
|
97
102
|
runs-on: ubuntu-latest
|
|
98
103
|
steps:
|
|
99
104
|
- name: Checkout main
|
|
@@ -116,7 +121,9 @@ jobs:
|
|
|
116
121
|
|
|
117
122
|
release:
|
|
118
123
|
name: Semantic Release
|
|
119
|
-
if:
|
|
124
|
+
if: |
|
|
125
|
+
(github.event_name == 'push') ||
|
|
126
|
+
(github.event_name == 'pull_request' && github.event.pull_request.merged == true && github.event.pull_request.head.ref == 'dev')
|
|
120
127
|
runs-on: ubuntu-latest
|
|
121
128
|
outputs:
|
|
122
129
|
released: ${{ steps.check.outputs.released }}
|
|
@@ -128,6 +135,7 @@ jobs:
|
|
|
128
135
|
with:
|
|
129
136
|
fetch-depth: 0
|
|
130
137
|
token: ${{ secrets.GH_PAT }}
|
|
138
|
+
ref: ${{ github.event_name == 'pull_request' && 'main' || github.ref }}
|
|
131
139
|
|
|
132
140
|
- name: Setup Node.js
|
|
133
141
|
uses: actions/setup-node@v6
|
|
@@ -143,13 +151,20 @@ jobs:
|
|
|
143
151
|
run: npm install -g semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/exec
|
|
144
152
|
|
|
145
153
|
- name: Run semantic-release
|
|
154
|
+
id: semantic
|
|
146
155
|
env:
|
|
147
156
|
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
148
157
|
GIT_AUTHOR_NAME: github-actions[bot]
|
|
149
158
|
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
|
|
150
159
|
GIT_COMMITTER_NAME: github-actions[bot]
|
|
151
160
|
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
|
|
152
|
-
run:
|
|
161
|
+
run: |
|
|
162
|
+
npx semantic-release --dry-run > release-output.txt 2>&1 || true
|
|
163
|
+
if grep -qE "Published release|Release notes for" release-output.txt; then
|
|
164
|
+
npx semantic-release
|
|
165
|
+
else
|
|
166
|
+
echo "No new commits to release"
|
|
167
|
+
fi
|
|
153
168
|
|
|
154
169
|
- name: Check release status
|
|
155
170
|
id: check
|
|
@@ -168,6 +183,7 @@ jobs:
|
|
|
168
183
|
echo "No new release"
|
|
169
184
|
fi
|
|
170
185
|
|
|
186
|
+
|
|
171
187
|
publish-pypi:
|
|
172
188
|
name: Publish to PyPI
|
|
173
189
|
needs: release
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.1.0-beta.25](https://github.com/n24q02m/better-mem0-mcp/compare/v1.1.0-beta.24...v1.1.0-beta.25) (2026-02-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **cd:** use dry-run check to prevent workflow failure when no release needed ([6cf51cd](https://github.com/n24q02m/better-mem0-mcp/commit/6cf51cd7cfb8475a834f3547625d1ca328997d44))
|
|
7
|
+
|
|
8
|
+
# [1.1.0-beta.24](https://github.com/n24q02m/better-mem0-mcp/compare/v1.1.0-beta.23...v1.1.0-beta.24) (2026-02-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **cd:** checkout main branch for PR merge release ([77b08ad](https://github.com/n24q02m/better-mem0-mcp/commit/77b08ad425d07caf35d31730e792f54a3b961d9c))
|
|
14
|
+
|
|
1
15
|
# [1.1.0-beta.23](https://github.com/n24q02m/better-mem0-mcp/compare/v1.1.0-beta.22...v1.1.0-beta.23) (2026-02-05)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: better-mem0-mcp
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.0b25
|
|
4
4
|
Summary: Zero-setup MCP Server for AI memory - works with Neon/Supabase
|
|
5
5
|
Project-URL: Homepage, https://github.com/n24q02m/better-mem0-mcp
|
|
6
6
|
Project-URL: Repository, https://github.com/n24q02m/better-mem0-mcp.git
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.github/scripts/merge-with-auto-resolve.sh
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{better_mem0_mcp-1.1.0b23 → better_mem0_mcp-1.1.0b25}/.vscode/better-mem0-mcp.code-workspace
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
|