You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+62Lines changed: 62 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff 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.
0 commit comments