[codex] Update fizzy SDK for v4.0.0-rc.5#179
Merged
Merged
Conversation
eb98662 to
78f1601
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Fizzy CLI’s Go module dependencies and toolchain versioning to align with the Fizzy v4.0.0-rc.5 release candidate and ensure builds use a patched Go standard library.
Tip
If you aren't ready for review, convert to a draft PR.
Click "Convert to draft" or run gh pr ready --undo.
Click "Ready for review" or run gh pr ready to reengage.
Changes:
- Bump
github.com/basecamp/fizzy-sdk/gofromv0.2.2tov0.2.3. - Pin Go to
1.26.4ingo.modand.mise.toml(with correspondinggo.sumupdates).
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| go.mod | Updates SDK dependency to v0.2.3 and pins Go version to 1.26.4. |
| go.sum | Refreshes module checksums to reflect the SDK bump. |
| .mise.toml | Pins local/tooling Go version to 1.26.4 for consistent builds. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+3
to
5
| go 1.26.4 | ||
|
|
||
| require ( |
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.
What
Updates
github.com/basecamp/fizzy-sdk/gofromv0.2.2tov0.2.3.Also pins Go to
1.26.4ingo.modand.mise.tomlso the release preflight and rc5 release build use the patched standard library. Localgovulncheckon Go1.26.1reported reachable standard-library vulnerabilities that are fixed in Go1.26.4.Why
Prepares the CLI for the next Fizzy 4 release candidate,
v4.0.0-rc.5, using the released SDK tag instead of a Go pseudo-version.Testing
PATH="$(go env GOPATH)/bin:$PATH" make release-checkgo test -v ./...Note: the e2e package skipped locally because
FIZZY_TEST_TOKENandFIZZY_TEST_ACCOUNTwere not present.Summary by cubic
Prepare the CLI for Fizzy v4.0.0-rc.5 with the latest SDK and a patched Go toolchain.
github.com/basecamp/fizzy-sdk/gofromv0.2.2tov0.2.3.1.26.4ingo.modand.mise.tomlto pick up standard library security fixes.Written for commit 78f1601. Summary will update on new commits.