Skip to content

chore(release): cut v1.10.1#658

Merged
yaojin3616 merged 2 commits into
mainfrom
release/v1.10.1
Jun 7, 2026
Merged

chore(release): cut v1.10.1#658
yaojin3616 merged 2 commits into
mainfrom
release/v1.10.1

Conversation

@github-actions

@github-actions github-actions Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

Automated release PR for v1.10.1. Merging this PR will automatically tag the release and publish it.


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

git pull origin main

cd deploy
# Rebuild and restart services
docker compose down && docker compose up -d --build

Source Deployment

git pull origin main

cd backend
alembic upgrade heads
cd ..

cd frontend
npm install
npm run build
cd ..

./restart.sh

Kubernetes / Helm

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.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 07f194d70b

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread RELEASE_NOTES.md
### Kubernetes / Helm

```bash
helm upgrade clawith helm/clawith/ -f values.yaml

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Point Helm at the chart values file

For users following the upgrade guide from the repo root after git pull origin main, this Helm command passes -f values.yaml, but the only values file in the repo is helm/clawith/values.yaml; Helm documents -f/--values as specifying a YAML file or URL (https://helm.sh/docs/helm/helm_upgrade/), so this will fail with a missing file unless the user happens to run it from inside helm/clawith. Use the repo-relative path or cd into the chart directory in the guide.

Useful? React with 👍 / 👎.

Updated deployment instructions to include backend service rebuild and restart steps.
@yaojin3616 yaojin3616 merged commit 5aef9da into main Jun 7, 2026
1 check failed
@yaojin3616 yaojin3616 deleted the release/v1.10.1 branch June 7, 2026 18:16

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 32719f60dd

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread RELEASE_NOTES.md
git pull origin main

cd backend
alembic upgrade heads

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Remove the manual Alembic upgrade step

For source upgrades, this tells users to run Alembic manually before restarting, but the same guide later runs ./restart.sh, whose start_backend path already auto-runs .venv/bin/alembic upgrade head, and the new notes also state that no manual migration is required. In source installs without a globally installed alembic, this extra command aborts the upgrade guide before the restart; when it is installed, it duplicates the startup migration step.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant