docs: add workaround for false-positive update banner on brew/winget#33351
Open
SebTardif wants to merge 2 commits intoanthropics:mainfrom
Open
docs: add workaround for false-positive update banner on brew/winget#33351SebTardif wants to merge 2 commits intoanthropics:mainfrom
SebTardif wants to merge 2 commits intoanthropics:mainfrom
Conversation
Author
|
Corrected data point from my machine (Linux + Homebrew in WSL):
This supports the channel-lag hypothesis: npm/runtime may advertise newer availability before downstream package registries fully converge. |
There was a problem hiding this comment.
Pull request overview
Adds user-facing documentation to reduce confusion when Claude Code shows an “Update available” prompt despite Homebrew/WinGet reporting no newer package version (issue #18047), by explaining the npm vs package-registry lag and providing a temporary opt-out.
Changes:
- Documented a known issue where update banners can be false-positive for Homebrew/WinGet installs.
- Explained the underlying version-channel mismatch (npm latest vs Homebrew/WinGet lag).
- Added a temporary workaround using
DISABLE_AUTOUPDATER=1, with bash and PowerShell examples.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Author
|
Addressed the formatting review items in commit 3cf7b57:
Please re-review when convenient. |
9208a46 to
a30807e
Compare
Author
This was referenced Mar 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Update availablebanners on Homebrew and WinGet installsDISABLE_AUTOUPDATER=1Context
Fixes confusion reported in #18047 (and related duplicates) where users see an update prompt but
brew upgradeorwinget upgradereports no newer package version.Why docs
The public repository currently does not include the runtime updater implementation, so this change provides immediate user guidance while a runtime fix is developed in the appropriate codebase.