-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: bump support for go 1.23 #6
Conversation
Warning Rate limit exceeded@james-d-elliott has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 21 minutes and 18 seconds before requesting another review. How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. WalkthroughThe recent changes involve updating version specifications in a workflow configuration, enhancing platform support in the Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
cd653a6
to
9db3fa4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (2)
go.mod
is excluded by!**/*.mod
go.sum
is excluded by!**/*.sum
,!**/*.sum
Files selected for processing (3)
- .github/workflows/test.yml (1 hunks)
- platform.go (3 hunks)
- version.go (1 hunks)
Files skipped from review due to trivial changes (1)
- version.go
Additional comments not posted (6)
.github/workflows/test.yml (1)
23-27
: LGTM! Updated Go versions in the test matrix.The Go versions in the test matrix have been updated to include newer versions. This ensures that the code is tested against the latest Go releases, which is a good practice for maintaining compatibility.
platform.go (5)
134-136
: Updated platform removal forPlatforms_1_10
.The removal of
android/amd64
fromPlatforms_1_10
is now explicitly structured. This enhances readability and maintains consistency with other platform definitions.
191-193
: Added support foropenbsd/riscv64
inPlatforms_1_22
.This addition expands the platform support, reflecting the growing adoption of RISC-V architecture.
195-197
: Added support foropenbsd/ppc64
inPlatforms_1_23
.This change further extends the platform compatibility, ensuring broader support for OpenBSD on different architectures.
199-199
: UpdatedPlatformsLatest
toPlatforms_1_23
.This update aligns the latest platform set with the most recent changes, ensuring that the latest supported platforms are used by default.
246-246
: Added new entry forSupportedPlatforms
function.The addition of the
">= 1.23, < 1.24"
constraint withPlatforms_1_23
ensures that the latest platforms are recognized and supported in the version range.
9db3fa4
to
4a003f6
Compare
No description provided.