chore: bump dev toolchain (go 1.26.5, node 26) and add zed/gopls config - #27
Merged
Conversation
- go 1.23.8 -> 1.26.5, node 24 -> 26 (pnpm already tracks latest 11.x) - add .zed/settings.json wiring gopls through mise, and the gopls tool CI reads these versions from mise.toml, so the bump propagates to every workflow. Verified: go build + full test suite on 1.26.5, and the VitePress site builds on node 26 / pnpm 11.13.1. go.mod's `go 1.23.0` floor is left as-is to keep `go install` working on older toolchains. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
TerrorSquad
commented
Jul 17, 2026
TerrorSquad
left a comment
Owner
Author
There was a problem hiding this comment.
Self-review — config-only change, verified locally:
mise.tomlgrep extraction resolves togo 1.26.5 / node 26 / pnpm 11; thego:...goplsline starts with a quote so^go =doesn't match it (no collision).- go build + full test suite pass on 1.26.5; VitePress builds on node 26.5.0 / pnpm 11.13.1 with the lockfile unchanged.
go.modfloor intentionally left atgo 1.23.0.
The one thing only CI can confirm is that actions/setup-go@v6 has 1.26.5 in its version manifest (local install came from mise, not setup-go). The Build & Vet check will prove it — merging once it's green.
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
Updates the dev toolchain in
mise.tomlto the latest and adds the Zed + gopls-via-mise config.CI impact
Every workflow extracts its version from
mise.toml(grep '^go = '/'^node = '/'^pnpm = '), so the bump propagates automatically — no workflow edits needed. Confirmed the greps resolve to1.26.5 / 26 / 11with no collision from thego:...goplsline.Verification
go build ./...+go test ./...pass on go 1.26.5pnpm install --frozen-lockfile+vitepress buildpass on node 26.5.0 / pnpm 11.13.1 (lockfile unchanged)Notes
go.mod'sgo 1.23.0directive left as-is — it's the compatibility floor forgo install, intentionally separate from the dev toolchain pin.🤖 Generated with Claude Code