better-mem0-mcp 1.1.0b22__tar.gz → 1.1.0b24__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.0b22 → better_mem0_mcp-1.1.0b24}/.github/workflows/cd.yml +40 -4
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/CHANGELOG.md +14 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/PKG-INFO +1 -1
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/pyproject.toml +1 -1
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.dockerignore +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.editorconfig +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.github/scripts/check-ci-cd-status.sh +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.github/scripts/merge-with-auto-resolve.sh +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.github/workflows/ci.yml +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.gitignore +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.mise.toml +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.pre-commit-config.yaml +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.python-version +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.releaserc.json +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/.vscode/better-mem0-mcp.code-workspace +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/CODE_OF_CONDUCT.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/CONTRIBUTING.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/Dockerfile +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/LICENSE +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/README.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/SECURITY.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/package-lock.json +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/package.json +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/scripts/clean-venv.mjs +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/src/better_mem0_mcp/__init__.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/src/better_mem0_mcp/__main__.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/src/better_mem0_mcp/config.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/src/better_mem0_mcp/docs/memory.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/src/better_mem0_mcp/graph.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/src/better_mem0_mcp/py.typed +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/src/better_mem0_mcp/server.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b24}/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:
|
|
@@ -70,9 +73,9 @@ jobs:
|
|
|
70
73
|
# Get latest release version from dev
|
|
71
74
|
LATEST_TAG=$(git describe --tags --abbrev=0 origin/dev 2>/dev/null || echo "")
|
|
72
75
|
if [ -z "$LATEST_TAG" ]; then
|
|
73
|
-
PR_TITLE="
|
|
76
|
+
PR_TITLE="feat: promote dev to main"
|
|
74
77
|
else
|
|
75
|
-
PR_TITLE="
|
|
78
|
+
PR_TITLE="feat: promote dev to main ($LATEST_TAG)"
|
|
76
79
|
fi
|
|
77
80
|
|
|
78
81
|
# Create PR
|
|
@@ -90,9 +93,37 @@ jobs:
|
|
|
90
93
|
|
|
91
94
|
### Latest beta version: $LATEST_TAG"
|
|
92
95
|
|
|
96
|
+
restore-dev:
|
|
97
|
+
name: Restore Dev Branch
|
|
98
|
+
needs: [release]
|
|
99
|
+
if: |
|
|
100
|
+
(github.ref == 'refs/heads/main' && github.event_name == 'push') ||
|
|
101
|
+
(github.event_name == 'pull_request' && github.event.pull_request.merged == true)
|
|
102
|
+
runs-on: ubuntu-latest
|
|
103
|
+
steps:
|
|
104
|
+
- name: Checkout main
|
|
105
|
+
uses: actions/checkout@v6
|
|
106
|
+
with:
|
|
107
|
+
ref: main
|
|
108
|
+
fetch-depth: 0
|
|
109
|
+
token: ${{ secrets.GH_PAT }}
|
|
110
|
+
|
|
111
|
+
- name: Restore dev branch from main
|
|
112
|
+
run: |
|
|
113
|
+
if git ls-remote --exit-code --heads origin dev; then
|
|
114
|
+
echo "Dev branch already exists, skipping"
|
|
115
|
+
exit 0
|
|
116
|
+
fi
|
|
117
|
+
|
|
118
|
+
git checkout -b dev
|
|
119
|
+
git push origin dev
|
|
120
|
+
echo "✅ Dev branch restored from main"
|
|
121
|
+
|
|
93
122
|
release:
|
|
94
123
|
name: Semantic Release
|
|
95
|
-
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')
|
|
96
127
|
runs-on: ubuntu-latest
|
|
97
128
|
outputs:
|
|
98
129
|
released: ${{ steps.check.outputs.released }}
|
|
@@ -104,6 +135,7 @@ jobs:
|
|
|
104
135
|
with:
|
|
105
136
|
fetch-depth: 0
|
|
106
137
|
token: ${{ secrets.GH_PAT }}
|
|
138
|
+
ref: ${{ github.event_name == 'pull_request' && 'main' || github.ref }}
|
|
107
139
|
|
|
108
140
|
- name: Setup Node.js
|
|
109
141
|
uses: actions/setup-node@v6
|
|
@@ -120,7 +152,11 @@ jobs:
|
|
|
120
152
|
|
|
121
153
|
- name: Run semantic-release
|
|
122
154
|
env:
|
|
123
|
-
GITHUB_TOKEN: ${{ secrets.
|
|
155
|
+
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
156
|
+
GIT_AUTHOR_NAME: github-actions[bot]
|
|
157
|
+
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
|
|
158
|
+
GIT_COMMITTER_NAME: github-actions[bot]
|
|
159
|
+
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
|
|
124
160
|
run: npx semantic-release
|
|
125
161
|
|
|
126
162
|
- name: Check release status
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [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)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **cd:** checkout main branch for PR merge release ([77b08ad](https://github.com/n24q02m/better-mem0-mcp/commit/77b08ad425d07caf35d31730e792f54a3b961d9c))
|
|
7
|
+
|
|
8
|
+
# [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)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Use GITHUB_TOKEN instead of GH_PAT for GitHub Container Registry authentication and CI/CD status checks. ([2287b07](https://github.com/n24q02m/better-mem0-mcp/commit/2287b072b1ea9f96fb466abb6497d45363b5052d))
|
|
14
|
+
|
|
1
15
|
# [1.1.0-beta.22](https://github.com/n24q02m/better-mem0-mcp/compare/v1.1.0-beta.21...v1.1.0-beta.22) (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.0b24
|
|
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.0b22 → better_mem0_mcp-1.1.0b24}/.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.0b22 → better_mem0_mcp-1.1.0b24}/.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
|