chore(release): cut v1.10.1#658
Conversation
There was a problem hiding this comment.
💡 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".
| ### Kubernetes / Helm | ||
|
|
||
| ```bash | ||
| helm upgrade clawith helm/clawith/ -f values.yaml |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
💡 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".
| git pull origin main | ||
|
|
||
| cd backend | ||
| alembic upgrade heads |
There was a problem hiding this comment.
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 👍 / 👎.
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
Optimizations
Bug Fixes
Upgrade Guide
Docker Deployment
Source Deployment
Kubernetes / Helm
Notes