better-mem0-mcp 1.1.0b22__tar.gz → 1.1.0b23__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.0b23}/.github/workflows/cd.yml +31 -3
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/CHANGELOG.md +7 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/PKG-INFO +1 -1
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/pyproject.toml +1 -1
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.dockerignore +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.editorconfig +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.github/scripts/check-ci-cd-status.sh +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.github/scripts/merge-with-auto-resolve.sh +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.github/workflows/ci.yml +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.gitignore +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.mise.toml +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.pre-commit-config.yaml +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.python-version +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.releaserc.json +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/.vscode/better-mem0-mcp.code-workspace +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/CODE_OF_CONDUCT.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/CONTRIBUTING.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/Dockerfile +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/LICENSE +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/README.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/SECURITY.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/package-lock.json +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/package.json +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/scripts/clean-venv.mjs +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/src/better_mem0_mcp/__init__.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/src/better_mem0_mcp/__main__.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/src/better_mem0_mcp/config.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/src/better_mem0_mcp/docs/memory.md +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/src/better_mem0_mcp/graph.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/src/better_mem0_mcp/py.typed +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/src/better_mem0_mcp/server.py +0 -0
- {better_mem0_mcp-1.1.0b22 → better_mem0_mcp-1.1.0b23}/uv.lock +0 -0
|
@@ -70,9 +70,9 @@ jobs:
|
|
|
70
70
|
# Get latest release version from dev
|
|
71
71
|
LATEST_TAG=$(git describe --tags --abbrev=0 origin/dev 2>/dev/null || echo "")
|
|
72
72
|
if [ -z "$LATEST_TAG" ]; then
|
|
73
|
-
PR_TITLE="
|
|
73
|
+
PR_TITLE="feat: promote dev to main"
|
|
74
74
|
else
|
|
75
|
-
PR_TITLE="
|
|
75
|
+
PR_TITLE="feat: promote dev to main ($LATEST_TAG)"
|
|
76
76
|
fi
|
|
77
77
|
|
|
78
78
|
# Create PR
|
|
@@ -90,6 +90,30 @@ jobs:
|
|
|
90
90
|
|
|
91
91
|
### Latest beta version: $LATEST_TAG"
|
|
92
92
|
|
|
93
|
+
restore-dev:
|
|
94
|
+
name: Restore Dev Branch
|
|
95
|
+
needs: [release]
|
|
96
|
+
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
|
|
97
|
+
runs-on: ubuntu-latest
|
|
98
|
+
steps:
|
|
99
|
+
- name: Checkout main
|
|
100
|
+
uses: actions/checkout@v6
|
|
101
|
+
with:
|
|
102
|
+
ref: main
|
|
103
|
+
fetch-depth: 0
|
|
104
|
+
token: ${{ secrets.GH_PAT }}
|
|
105
|
+
|
|
106
|
+
- name: Restore dev branch from main
|
|
107
|
+
run: |
|
|
108
|
+
if git ls-remote --exit-code --heads origin dev; then
|
|
109
|
+
echo "Dev branch already exists, skipping"
|
|
110
|
+
exit 0
|
|
111
|
+
fi
|
|
112
|
+
|
|
113
|
+
git checkout -b dev
|
|
114
|
+
git push origin dev
|
|
115
|
+
echo "✅ Dev branch restored from main"
|
|
116
|
+
|
|
93
117
|
release:
|
|
94
118
|
name: Semantic Release
|
|
95
119
|
if: github.event_name == 'push'
|
|
@@ -120,7 +144,11 @@ jobs:
|
|
|
120
144
|
|
|
121
145
|
- name: Run semantic-release
|
|
122
146
|
env:
|
|
123
|
-
GITHUB_TOKEN: ${{ secrets.
|
|
147
|
+
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
148
|
+
GIT_AUTHOR_NAME: github-actions[bot]
|
|
149
|
+
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
|
|
150
|
+
GIT_COMMITTER_NAME: github-actions[bot]
|
|
151
|
+
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
|
|
124
152
|
run: npx semantic-release
|
|
125
153
|
|
|
126
154
|
- name: Check release status
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [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
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 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))
|
|
7
|
+
|
|
1
8
|
# [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
9
|
|
|
3
10
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: better-mem0-mcp
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.0b23
|
|
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.0b23}/.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.0b23}/.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
|