Update Go to 1.24.0 and upgrade dependencies#41
Merged
JackOfMostTrades merged 1 commit intoNetflix:masterfrom Nov 4, 2025
Merged
Update Go to 1.24.0 and upgrade dependencies#41JackOfMostTrades merged 1 commit intoNetflix:masterfrom
JackOfMostTrades merged 1 commit intoNetflix:masterfrom
Conversation
- Update Go version to 1.24.0 and remove toolchain directive - Update GitHub Actions workflow to use Go ^1.24.0 - Update all direct dependencies to newer versions: - github.com/golang/protobuf: v1.5.2 -> v1.5.4 - github.com/google/uuid: v1.3.0 -> v1.6.0 - github.com/schollz/progressbar/v3: v3.8.3 -> v3.18.0 - github.com/sirupsen/logrus: v1.8.1 -> v1.9.3 - github.com/stretchr/testify: v1.7.0 -> v1.11.1 - google.golang.org/protobuf: v1.33.0 -> v1.36.10 - Update indirect dependencies and remove unused ones
Contributor
|
Thanks for the PR! |
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.
Upgrade Go to version 1.24.0 and update dependencies
Closes #40
Summary
This pull request (PR) updates the Go version from 1.23.0 to 1.24.0 and upgrades all project dependencies to their latest versions.
This PR addresses issue #40, which requested updating the Go version to 1.24.0 to take advantage of the latest features, performance improvements, and security updates, as Go 1.23 support ended on August 12, 2025.
Changes
Go Version
1.23.0to1.24.0.toolchaindirective ingo.modhas been removed as it is no longer required.GitHub Actions
In the
.github/workflows/go.yml, the Go version used in CI/CD has been updated to^1.24.0.Dependencies
The direct dependencies have been upgraded as follows:
github.com/golang/protobuf1.5.21.5.4github.com/google/uuid1.3.01.6.0github.com/schollz/progressbar/v33.8.33.18.0github.com/sirupsen/logrus1.8.11.9.3github.com/stretchr/testify1.7.01.11.1google.golang.org/protobuf1.33.01.36.10Indirect dependencies have also been upgraded to compatible versions.
github.com/google/go-cmp,golang.org/x/crypto,github.com/mattn/go-runewidth)github.com/rivo/uniseg,golang.org/x/sys,golang.org/x/termVerification
Changed files
.github/workflows/go.yml- updated version of Go in CI/CDgo.mod- updated version of Go and dependenciesgo.sum- updated dependency checksums