Skip to content

chore(deps): bump proptest to 1.11.0#303

Merged
EffortlessSteven merged 1 commit into
mainfrom
chore/proptest-1.11
Mar 25, 2026
Merged

chore(deps): bump proptest to 1.11.0#303
EffortlessSteven merged 1 commit into
mainfrom
chore/proptest-1.11

Conversation

@EffortlessSteven

Copy link
Copy Markdown
Member

Bump the workspace proptest dependency from 1.10.0 to 1.11.0 and refresh Cargo.lock.

Validation: cargo xtask gate --check

@coderabbitai

coderabbitai Bot commented Mar 25, 2026

Copy link
Copy Markdown

Warning

Rate limit exceeded

@EffortlessSteven has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 22 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.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 62c50ae8-f88d-4adb-a1fc-42178d7a6568

📥 Commits

Reviewing files that changed from the base of the PR and between 1887f04 and 66f0ef5.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (1)
  • Cargo.toml
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/proptest-1.11

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@gemini-code-assist

Copy link
Copy Markdown

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request performs a routine dependency update, specifically upgrading the proptest library to its latest version, 1.11.0. This ensures the project benefits from the newest features, bug fixes, and performance improvements offered by the updated dependency, while also maintaining build consistency by refreshing the Cargo.lock file.

Highlights

  • Dependency Update: Bumped the proptest dependency from version 1.10.0 to 1.11.0.
  • Lock File Refresh: Refreshed Cargo.lock to reflect the updated proptest version and its new checksum.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the proptest dependency from version 1.10.0 to 1.11.0 in both Cargo.toml and Cargo.lock. However, this update introduces rand_core 0.9.5, which violates the repository's dep-guard check, leading to CI failures. The dep-guard currently only permits rand_core versions 0.6.x and 0.10.x to maintain determinism. The author should either find an alternative proptest version or update the dep-guard rules if rand_core 0.9.x is deemed acceptable.

Comment thread Cargo.toml

# testing
proptest = "1.10.0"
proptest = "1.11.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Bumping proptest to what corresponds to version 1.1.0 in Cargo.lock introduces a new version of rand_core that is not allowed by the repository's dep-guard check.

The dependency chain is: proptest 1.1.0rand 0.9.2rand_core 0.9.5.

The dep-guard check in xtask/src/main.rs only allows rand_core versions 0.6.x and 0.10.x to manage the RNG transition, which is critical for determinism. This change would cause the cargo xtask dep-guard command (and therefore the full CI) to fail.

To resolve this, you could either:

  • Find a version of proptest that does not introduce this intermediate rand_core version.
  • Update the dep-guard check in xtask if rand_core 0.9.x is now acceptable.
References
  1. The repository conventions include a dep-guard check (cargo xtask dep-guard) to guard against multiple versions of pinned dependencies. This is critical for maintaining determinism, as noted in the development conventions. This change introduces a version of rand_core that violates this check. (link)

Comment thread Cargo.toml

# testing
proptest = "1.10.0"
proptest = "1.11.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There seems to be a typo in the version specifier for proptest. The Cargo.lock file indicates that this change is from proptest version 1.0.0 to 1.1.0. However, the version in Cargo.toml is specified as 1.11.0.

To avoid confusion and improve maintainability, please correct the version specifier to match the actual version being used, which appears to be 1.1.0.

Suggested change
proptest = "1.11.0"
proptest = "1.1.0"

@EffortlessSteven EffortlessSteven merged commit 6eee429 into main Mar 25, 2026
4 checks passed
@EffortlessSteven EffortlessSteven deleted the chore/proptest-1.11 branch April 3, 2026 04:38
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