claude-code - 💡(How to fix) Fix [BUG] claude update reports up-to-date on 2.1.104 while 2.1.116 is latest stable [2 comments, 1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#51660Fetched 2026-04-22 07:56:18
View on GitHub
Comments
2
Participants
1
Timeline
7
Reactions
0
Participants
Timeline (top)
labeled ×4commented ×2closed ×1

Fix Action

Workaround

Passing the version explicitly to the install script works:

curl -fsSL https://claude.ai/install.sh | bash -s -- 2.1.116

This bypasses the version resolution and installs 2.1.116 correctly.

Code Example

Current version: 2.1.104
   Checking for updates to stable version...
   Claude Code is up to date (2.1.104)

---

curl -fsSL https://claude.ai/install.sh | bash

---

Setting up Claude Code...
Claude Code successfully installed!
     Version: 2.1.104

---

curl -fsSL https://claude.ai/install.sh | bash -s -- 2.1.116
RAW_BUFFERClick to expand / collapse

Bug Description

claude update and the install script (curl -fsSL https://claude.ai/install.sh | bash) both resolve the latest stable version as 2.1.104, while the changelog shows 2.1.116 as the latest release.

Steps to Reproduce

  1. Run claude update:

    Current version: 2.1.104
    Checking for updates to stable version...
    Claude Code is up to date (2.1.104)
  2. Re-install via the install script:

    curl -fsSL https://claude.ai/install.sh | bash

    Output:

    Setting up Claude Code...
    ✔ Claude Code successfully installed!
      Version: 2.1.104
  3. Both report 2.1.104 as latest, but https://code.claude.com/docs/en/changelog shows 2.1.116.

Workaround

Passing the version explicitly to the install script works:

curl -fsSL https://claude.ai/install.sh | bash -s -- 2.1.116

This bypasses the version resolution and installs 2.1.116 correctly.

Expected Behavior

claude update and the install script should resolve to 2.1.116 (or whatever the actual latest stable release is).

Environment

  • Platform: macOS (Apple Silicon)
  • Installation method: Native binary via install.sh
  • Current version: 2.1.104 (reports as up-to-date)
  • Actual latest: 2.1.116

extent analysis

TL;DR

Passing the version explicitly to the install script can bypass the incorrect version resolution and install the latest version.

Guidance

  • The issue seems to be related to the version resolution mechanism in claude update and the install script, which is not correctly identifying the latest stable version.
  • To verify the issue, check the changelog at https://code.claude.com/docs/en/changelog to confirm the latest release version.
  • As a workaround, use the install script with the version explicitly specified, like curl -fsSL https://claude.ai/install.sh | bash -s -- 2.1.116, to install the desired version.
  • It's unclear what causes the version resolution to fail, so monitoring the changelog and using the explicit version install method may be necessary until the root cause is addressed.

Example

curl -fsSL https://claude.ai/install.sh | bash -s -- 2.1.116

This command installs version 2.1.116, bypassing the incorrect version resolution.

Notes

The provided workaround relies on manually checking the changelog for the latest version and specifying it during installation. This may not be a long-term solution and does not address the underlying issue with the version resolution mechanism.

Recommendation

Apply the workaround by using the install script with the explicit version, as it allows for installing the latest version despite the resolution issue.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix [BUG] claude update reports up-to-date on 2.1.104 while 2.1.116 is latest stable [2 comments, 1 participants]