$ recombobulate _
home / tips / switch-to-the-stable-update-channel-with-autoupdateschannel
0

Switch to the Stable Update Channel with autoUpdatesChannel

bagwaa @bagwaa · Mar 26, 2026 · Configuration
switch-to-the-stable-update-channel-with-autoupdateschannel

Claude Code updates to the newest release automatically. If you prefer predictability over bleeding-edge features, set autoUpdatesChannel to "stable" in your user settings.

// ~/.claude/settings.json
{
  "autoUpdatesChannel": "stable"
}

The stable channel follows a release that is typically about one week behind latest and skips versions with confirmed major regressions. You get the same features, just with a short delay that lets critical issues get caught and patched before they reach your machine.

The latest channel (the default) gives you each release as soon as it ships. This is fine for most developers on active projects. The stable channel is a better fit for:

  • CI runners where a surprise regression would break pipelines
  • Team machines managed by an admin
  • Anyone who has been bitten by a regression before and wants a buffer

To switch channels and pull the current stable release immediately:

# After updating settings.json:
claude update

You can switch back to latest at any time by changing the value:

{
  "autoUpdatesChannel": "latest"
}

On any machine where consistency matters more than freshness, stable is the safer default.


via Claude Code Settings

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
0
Set Claude's Response Language with the language Setting

The language setting makes Claude respond in your preferred language by default, across every session and project.

bagwaa @bagwaa · 1 hour ago
0
Customize or Remove Claude's Git Attribution with the attribution Setting

The attribution setting lets you customize or completely remove Claude's Co-Authored-By trailer from git commits and pull requests.

bagwaa @bagwaa · 1 hour ago
0
Surface Team Messages at Startup with companyAnnouncements

The companyAnnouncements setting surfaces team messages to every developer at startup, directly in their Claude Code session.

bagwaa @bagwaa · 1 hour ago