feat: support Go 1.23+ minimum version across go.mod, CI matrix, and docs - #94
Merged
Conversation
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.
Description
This pull request lowers the minimum required Go version to Go 1.23+ to maximize compatibility across the Go ecosystem, expands the multi-version CI test matrix, and updates all relevant documentation.
Summary of Changes
1. Go 1.23+ Compatibility
go.mod: Setgo 1.23.0minimum version directive..github/workflows/ci.yml): Expanded the test matrix to automatically run tests with race detection across:Go 1.23Go 1.24Go 1.25Go 1.26Go 1.27Go stable2. Documentation Updates
README.md: Updated description and overview to reflect Go 1.23+ support.CONTRIBUTING.md: Updated development prerequisites to Go 1.23 or higher.llms.txt: Synchronized machine-readable overview to specify Go 1.23+.Verification
gofmt -s -w .passed with 0 unformatted files.go mod tidy && git diff --exit-code go.mod go.sumverified clean.go test ./...passed across all 15 packages.go vet ./...andrevive -config revive.toml ./...passed with 0 issues.govulncheck ./...reported no vulnerabilities.