Skip to content

Commit 978f393

Browse files
lroolleclaude
andcommitted
refactor(versions): honest labels and pin playwright in upgrade path
- Rename display sections: "Pinned Agent Tools" -> "Agent Tools (auto-upgraded by make versions-up)", toolchains and playwright sections note "pinned — edit versions.env to bump" - Playwright stays pinned in version-upgrade.sh (uses $PLAYWRIGHT_VERSION not get_latest) — browser version bumps break test stability - Playwright still in TOOL_REGISTRY for `make versions` comparison, so you can see when a newer version exists without auto-upgrading Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 34c8a47 commit 978f393

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/toolchain-report.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ line() {
1818
main() {
1919
load_version_pins
2020

21-
heading "Pinned Toolchains"
21+
heading "Toolchains (pinned — edit versions.env to bump)"
2222
line "Node.js line:" "${NODE_MAJOR}.x"
2323
line "Go:" "$GO_VERSION"
2424
line "Python:" "$PYTHON_VERSION"
@@ -28,15 +28,15 @@ main() {
2828
line "delta:" "$DELTA_VERSION"
2929
line "tmux:" "$TMUX_VERSION"
3030

31-
heading "Pinned Agent Tools"
31+
heading "Agent Tools (auto-upgraded by make versions-up)"
3232
line "Claude Code:" "$CLAUDE_CODE_VERSION"
3333
line "Claude Trace:" "$CLAUDE_TRACE_VERSION"
3434
line "Codex:" "$CODEX_VERSION"
3535
line "Gemini CLI:" "$GEMINI_CLI_VERSION"
3636
line "Atlas CLI:" "$ATLAS_CLI_VERSION"
3737
line "Copilot API:" "$COPILOT_API_VERSION"
3838

39-
heading "Pinned Browser Tooling"
39+
heading "Browser Tooling (pinned — edit versions.env to bump)"
4040
line "Playwright:" "$PLAYWRIGHT_VERSION"
4141

4242
heading "Floating Build-Time Tools"

scripts/version-upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ main() {
104104
gemini_ver="${_CLI_GEMINI:-$(get_latest "gemini-cli")}"
105105
atlas_ver="${_CLI_ATLAS:-$(get_latest "atlas-cli")}"
106106
copilot_ver="${_CLI_COPILOT:-$(get_latest "copilot-api")}"
107-
playwright_ver="${_CLI_PLAYWRIGHT:-$(get_latest "playwright")}"
107+
playwright_ver="${_CLI_PLAYWRIGHT:-${PLAYWRIGHT_VERSION}}"
108108

109109
# Verify all required versions are set
110110
local missing=()

0 commit comments

Comments
 (0)