Closed crnbarr93 closed 1 month ago
[!WARNING]
Rate limit exceeded
@crnbarr93 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 14 minutes and 24 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](https://coderabbit.ai/docs/faq) for further information.Commits
Files that changed from the base of the PR and between ddc898c027ce2fbe2d62b8ee45afc5f52bec3971 and 4e5fb173d999ccf0ba5d0059dab5db8aa5d14bc1.
This pull request includes a minor version update for the andromeda-adodb
package from "1.1.1" to "1.1.2" in the Cargo.toml
file. It introduces a conditional check in the store_code_id
function to ensure that the LATEST_VERSION
is only saved when there is no pre-release identifier. Additionally, the test suite is enhanced with new test cases for the test_publish
function, which now validates the publishing of ADO versions, including those with beta suffixes. A new entry in the CHANGELOG.md
notes the support for pre-release tagging.
File Path | Change Summary |
---|---|
contracts/os/andromeda-adodb/Cargo.toml | Version increment from "1.1.1" to "1.1.2". |
contracts/os/andromeda-adodb/src/state.rs | Added conditional check in store_code_id to save LATEST_VERSION only if no pre-release tag. |
contracts/os/andromeda-adodb/src/tests.rs | Enhanced test_publish with new test cases and refined logic for execute function calls. |
contracts/os/andromeda-adodb/CHANGELOG.md | Added entry noting that ADODB now supports pre-release tagging. |
andromeda-adodb
package, directly related to this PR.andromeda-adodb
package, aligning with the version increment seen here.andromeda-primitive
package, relevant to version management in the Andromeda ecosystem.ci: skip-changelog
🐇 In the meadow, changes bloom,
A version update clears the gloom.
With tests that leap and bounds so high,
A beta version ready to fly!
Hooray for code, so fresh and bright,
Let’s hop along, all feels just right! 🌼
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?
Motivation
These changes add the ability to publish a prerelease tagged ADO version without having it set as the "latest" version.
Implementation
Added a check for
LATEST_VERSION
that no pre-release tag is set.Testing
An appropriate test was added for publishing.
Version Changes
adodb
:1.1.1
->1.1.2
Summary by CodeRabbit
New Features
Bug Fixes