Skip to content

Commit 5aef9da

Browse files
chore(release): cut v1.10.1 (#658)
* chore(release): cut v1.10.1 * Revise deployment steps in RELEASE_NOTES.md Updated deployment instructions to include backend service rebuild and restart steps. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: 姚劲 <yaojin@dataelem.com>
1 parent 9974a78 commit 5aef9da

3 files changed

Lines changed: 64 additions & 2 deletions

File tree

RELEASE_NOTES.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,65 @@
1+
# v1.10.1 — Chat Model Switcher & Entrypoint Permission Optimizations
2+
3+
## What's New
4+
5+
### Core Features
6+
- **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.
7+
8+
### Optimizations
9+
- **Faster Entrypoint Permissions Check**: Refactored and optimized entrypoint permissions verification, providing faster and leaner permission handling during request routing and task dispatch.
10+
- **Deployment Config Adjustments**: Updated deployment configuration for improved reliability and compatibility with diverse environments.
11+
12+
## Bug Fixes
13+
14+
- **Chat Model Switcher Stability**: Resolved issues related to toggling chat models via websocket, ensuring seamless switching without session drops or inconsistent UI states.
15+
- **Entrypoint Permissions Issue**: Fixed minor permission validation defects that could block valid requests in specific workflows.
16+
- **Config Consistency**: Addressed deployment config edge cases related to environment-specific overrides and fallback handling.
17+
18+
## Upgrade Guide
19+
20+
### Docker Deployment
21+
22+
```bash
23+
git pull origin main
24+
25+
cd deploy
26+
# Rebuild and restart services
27+
docker compose down && docker compose up -d --build
28+
```
29+
30+
### Source Deployment
31+
32+
```bash
33+
git pull origin main
34+
35+
cd backend
36+
alembic upgrade heads
37+
cd ..
38+
39+
cd frontend
40+
npm install
41+
npm run build
42+
cd ..
43+
44+
./restart.sh
45+
```
46+
47+
### Kubernetes / Helm
48+
49+
```bash
50+
helm upgrade clawith helm/clawith/ -f values.yaml
51+
```
52+
53+
## Notes
54+
55+
- **Live Model Switching**: No special configuration is required for enabling the websocket-based chat model switcher; feature is enabled by default.
56+
- **Entrypoint Permissions**: Permission check routines have changed under the hood. If you maintain custom permission middleware or gateway logic, audit integration points for compatibility.
57+
- **No manual database migration required**: Schema migrations run automatically on application startup.
58+
59+
---
60+
61+
---
62+
163
---
264
# v1.10.0 — Async Agent Messaging, Atlas Onboarding & Robust File/Code Streaming
365

backend/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.0
1+
1.10.1

frontend/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.0
1+
1.10.1

0 commit comments

Comments
 (0)