better-mem0-mcp 1.1.0b8__tar.gz → 1.1.0b9__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.0b8 → better_mem0_mcp-1.1.0b9}/.github/workflows/cd.yml +11 -10
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/CHANGELOG.md +7 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/PKG-INFO +1 -1
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/pyproject.toml +1 -1
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/.dockerignore +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/.editorconfig +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/.github/workflows/ci.yml +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/.gitignore +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/.mise.toml +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/.pre-commit-config.yaml +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/.python-version +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/.releaserc.json +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/CONTRIBUTING.md +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/Dockerfile +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/LICENSE +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/README.md +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/SECURITY.md +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/scripts/clean-venv.mjs +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/src/better_mem0_mcp/__init__.py +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/src/better_mem0_mcp/config.py +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/src/better_mem0_mcp/docs/memory.md +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/src/better_mem0_mcp/graph.py +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/src/better_mem0_mcp/py.typed +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/src/better_mem0_mcp/server.py +0 -0
- {better_mem0_mcp-1.1.0b8 → better_mem0_mcp-1.1.0b9}/uv.lock +0 -0
|
@@ -106,6 +106,12 @@ jobs:
|
|
|
106
106
|
- name: Set up Docker Buildx
|
|
107
107
|
uses: docker/setup-buildx-action@v3
|
|
108
108
|
|
|
109
|
+
- name: Login to Docker Hub
|
|
110
|
+
uses: docker/login-action@v3
|
|
111
|
+
with:
|
|
112
|
+
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
113
|
+
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
114
|
+
|
|
109
115
|
- name: Login to GHCR
|
|
110
116
|
uses: docker/login-action@v3
|
|
111
117
|
with:
|
|
@@ -120,18 +126,13 @@ jobs:
|
|
|
120
126
|
BRANCH=${{ github.ref_name }}
|
|
121
127
|
|
|
122
128
|
if [ "$BRANCH" = "main" ]; then
|
|
123
|
-
|
|
129
|
+
DOCKERHUB_TAGS="n24q02m/better-mem0-mcp:$VERSION,n24q02m/better-mem0-mcp:latest"
|
|
130
|
+
GHCR_TAGS="${{ env.DOCKER_IMAGE }}:$VERSION,${{ env.DOCKER_IMAGE }}:latest"
|
|
124
131
|
else
|
|
125
|
-
|
|
132
|
+
DOCKERHUB_TAGS="n24q02m/better-mem0-mcp:$VERSION,n24q02m/better-mem0-mcp:beta"
|
|
133
|
+
GHCR_TAGS="${{ env.DOCKER_IMAGE }}:$VERSION,${{ env.DOCKER_IMAGE }}:beta"
|
|
126
134
|
fi
|
|
127
|
-
|
|
128
|
-
- name: Debug - List files
|
|
129
|
-
run: |
|
|
130
|
-
echo "Current directory: $(pwd)"
|
|
131
|
-
echo "Files in directory:"
|
|
132
|
-
ls -la
|
|
133
|
-
echo "Checking README.md exists:"
|
|
134
|
-
[ -f README.md ] && echo "README.md found!" || echo "README.md NOT found!"
|
|
135
|
+
echo "tags=$DOCKERHUB_TAGS,$GHCR_TAGS" >> $GITHUB_OUTPUT
|
|
135
136
|
|
|
136
137
|
- name: Build and push
|
|
137
138
|
uses: docker/build-push-action@v6
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.1.0-beta.9](https://github.com/n24q02m/better-mem0-mcp/compare/v1.1.0-beta.8...v1.1.0-beta.9) (2026-01-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **cd:** add Docker Hub publishing alongside GHCR ([5efb2ef](https://github.com/n24q02m/better-mem0-mcp/commit/5efb2efadbe92e651ef442f869b7d042f1fc9402))
|
|
7
|
+
|
|
1
8
|
# [1.1.0-beta.8](https://github.com/n24q02m/better-mem0-mcp/compare/v1.1.0-beta.7...v1.1.0-beta.8) (2026-01-02)
|
|
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.0b9
|
|
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
|
|
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
|