From 07f194d70b6b1557aaa2ec9d6ff036df10f1c827 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jun 2026 18:01:41 +0000 Subject: [PATCH 1/2] chore(release): cut v1.10.1 --- RELEASE_NOTES.md | 56 ++++++++++++++++++++++++++++++++++++++++++++++++ backend/VERSION | 2 +- frontend/VERSION | 2 +- 3 files changed, 58 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2c9e97c44..62e1361a0 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,59 @@ +# v1.10.1 — Chat Model Switcher & Entrypoint Permission Optimizations + +## What's New + +### Core Features +- **Live Chat Model Switching via WebSocket**: Enables users to change the active chat model in real time through websockets, improving flexibility and responsiveness in ongoing chat sessions. + +### Optimizations +- **Faster Entrypoint Permissions Check**: Refactored and optimized entrypoint permissions verification, providing faster and leaner permission handling during request routing and task dispatch. +- **Deployment Config Adjustments**: Updated deployment configuration for improved reliability and compatibility with diverse environments. + +## Bug Fixes + +- **Chat Model Switcher Stability**: Resolved issues related to toggling chat models via websocket, ensuring seamless switching without session drops or inconsistent UI states. +- **Entrypoint Permissions Issue**: Fixed minor permission validation defects that could block valid requests in specific workflows. +- **Config Consistency**: Addressed deployment config edge cases related to environment-specific overrides and fallback handling. + +## Upgrade Guide + +### Docker Deployment + +```bash +git pull origin main + +# Rebuild and restart services +docker compose down && docker compose up -d --build +``` + +### Source Deployment + +```bash +git pull origin main + +# Rebuild frontend +cd frontend && npm install && npm run build +cd .. + +# Restart backend / frontend services +``` + +### Kubernetes / Helm + +```bash +helm upgrade clawith helm/clawith/ -f values.yaml +``` + +## Notes + +- **Live Model Switching**: No special configuration is required for enabling the websocket-based chat model switcher; feature is enabled by default. +- **Entrypoint Permissions**: Permission check routines have changed under the hood. If you maintain custom permission middleware or gateway logic, audit integration points for compatibility. +- **No manual database migration required**: Schema migrations run automatically on application startup. + +--- + +--- + --- # v1.10.0 — Async Agent Messaging, Atlas Onboarding & Robust File/Code Streaming diff --git a/backend/VERSION b/backend/VERSION index 81c871de4..4dae2985b 100644 --- a/backend/VERSION +++ b/backend/VERSION @@ -1 +1 @@ -1.10.0 +1.10.1 diff --git a/frontend/VERSION b/frontend/VERSION index 81c871de4..4dae2985b 100644 --- a/frontend/VERSION +++ b/frontend/VERSION @@ -1 +1 @@ -1.10.0 +1.10.1 From 32719f60dd2df6883a078b13136447f5d48bb494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=9A=E5=8A=B2?= Date: Mon, 8 Jun 2026 02:15:01 +0800 Subject: [PATCH 2/2] Revise deployment steps in RELEASE_NOTES.md Updated deployment instructions to include backend service rebuild and restart steps. --- RELEASE_NOTES.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 62e1361a0..b2300a466 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -22,6 +22,7 @@ ```bash git pull origin main +cd deploy # Rebuild and restart services docker compose down && docker compose up -d --build ``` @@ -31,11 +32,16 @@ docker compose down && docker compose up -d --build ```bash git pull origin main -# Rebuild frontend -cd frontend && npm install && npm run build +cd backend +alembic upgrade heads cd .. -# Restart backend / frontend services +cd frontend +npm install +npm run build +cd .. + +./restart.sh ``` ### Kubernetes / Helm