Skip to content
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

Merged
merged 1 commit into from
Aug 14, 2024
Merged

feat: bump support for go 1.23 #6

merged 1 commit into from
Aug 14, 2024

Conversation

james-d-elliott
Copy link
Member

No description provided.

Copy link

coderabbitai bot commented Aug 14, 2024

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 @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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.

Commits

Files that changed from the base of the PR and between 9db3fa4 and 4a003f6.

Walkthrough

The recent changes involve updating version specifications in a workflow configuration, enhancing platform support in the platform.go file, and incrementing the version constant in version.go. These modifications collectively aim to ensure compatibility with newer dependencies and to expand the application’s support for additional platforms, while also reflecting a minor semantic version update in the codebase.

Changes

Files Change Summary
.github/workflows/test.yml Updated version list to include "1.19.13", "1.20.14", "1.21.13", "1.22.6", and "1.23.0"; removed "1.19.5" and "1.20.0".
platform.go Enhanced platform support by restructuring platform definitions; added "openbsd" on "riscv64" and "ppc64"; updated PlatformsLatest to point to Platforms_1_23.
version.go Incremented metaVersion from "1.1.2" to "1.1.3" to signify a new release.

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?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a 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

Commits

Files that changed from the base of the PR and between 1c4b77b and 9db3fa4.

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 for Platforms_1_10.

The removal of android/amd64 from Platforms_1_10 is now explicitly structured. This enhances readability and maintains consistency with other platform definitions.


191-193: Added support for openbsd/riscv64 in Platforms_1_22.

This addition expands the platform support, reflecting the growing adoption of RISC-V architecture.


195-197: Added support for openbsd/ppc64 in Platforms_1_23.

This change further extends the platform compatibility, ensuring broader support for OpenBSD on different architectures.


199-199: Updated PlatformsLatest to Platforms_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 for SupportedPlatforms function.

The addition of the ">= 1.23, < 1.24" constraint with Platforms_1_23 ensures that the latest platforms are recognized and supported in the version range.

@james-d-elliott james-d-elliott merged commit 063d71c into master Aug 14, 2024
15 of 18 checks passed
@james-d-elliott james-d-elliott deleted the feat--bumps branch August 14, 2024 21:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant