-
Notifications
You must be signed in to change notification settings - Fork 44
chore(platform): add protocol version 10 support #2686
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
Conversation
WalkthroughThe codebase updates its protocol and platform versioning from version 9 to version 10. This includes introducing a new Changes
Sequence Diagram(s)sequenceDiagram
participant App
participant VersionMod
participant ProtocolVersion
participant V10
App->>VersionMod: Import LATEST_VERSION, v10
VersionMod->>V10: Access PROTOCOL_VERSION_10, PLATFORM_V10
App->>ProtocolVersion: Import LATEST_PLATFORM_VERSION
ProtocolVersion->>V10: Access PLATFORM_V10
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
🧰 Additional context used🧠 Learnings (4)📓 Common learningspackages/rs-platform-version/src/version/protocol_version.rs (20)packages/rs-platform-version/src/version/mod.rs (17)packages/rs-platform-version/src/version/v10.rs (14)⏰ Context from checks skipped due to timeout of 90000ms (16)
🔇 Additional comments (9)
✨ Finishing Touches
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. 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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
QuantumExplorer
left a comment
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.
Self Reviewed
Issue being fixed or feature implemented
Add support for protocol version 10, including necessary updates to the versioning system.
What was done?
PROTOCOL_VERSION_10.v10to define the specifics of protocol version 10.PLATFORM_V10andLATEST_VERSION.How Has This Been Tested?
Changes have been validated through existing unit tests that cover protocol versioning.
Breaking Changes
None
Checklist
For repository code-owners and collaborators only
Summary by CodeRabbit
New Features
Chores