-
Notifications
You must be signed in to change notification settings - Fork 382
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
Update mainnet_versions.js #1831
Conversation
WalkthroughThis pull request updates the version constants in the Changes
Possibly related PRs
Poem
Tip CodeRabbit's docstrings feature is now available as part of our Early Access Program! Simply use the command 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (3).vitepress/constants/mainnet_versions.js (3)
The version updates (app v3.1.1 and core v1.44.1) and their corresponding SHA values should be verified against the official releases. Let's verify these changes: ✅ Verification successful✅ Version tags and SHA values are correctly synchronized The GitHub API verification confirms that both version tags and their corresponding SHA values match exactly with the official repositories:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify version tags and SHA values against the celestia repositories
# Check app version and SHA
echo "Verifying app version v3.1.1 and SHA..."
gh api repos/celestiaorg/celestia-app/git/refs/tags/v3.1.1 --jq '.object.sha'
# Check core version and SHA
echo "Verifying core version v1.44.1-tm-v0.34.35 and SHA..."
gh api repos/celestiaorg/celestia-core/git/refs/tags/v1.44.1-tm-v0.34.35 --jq '.object.sha'
Length of output: 457
The app version bump from v3.0.2 to v3.1.1 represents a minor version increase which might include new features or changes that should be documented. Let's check for breaking changes or important updates: ✅ Verification successfulVersion bump is properly documented with security implications The version bump from v3.0.2 to v3.1.1 is well documented in the release notes with clear upgrade notice and changelog. Key points:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for changelog entries or release notes
# Check for changelog entries between versions
echo "Checking for changelog entries between v3.0.2 and v3.1.1..."
gh api repos/celestiaorg/celestia-app/releases/tags/v3.1.1 --jq '.body'
Length of output: 1096
The core version bump from v1.44.0 to v1.44.1 is a patch update, suggesting bug fixes or minor improvements. Let's check the nature of changes: ✅ Verification successfulCore v1.44.1 patch update contains safe changes The patch update from v1.44.0 to v1.44.1 includes:
These changes are maintenance-focused and don't introduce breaking changes or significant functionality modifications, making this a safe patch update. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for patch release details
# Check release notes for the patch update
echo "Checking patch release notes..."
gh api repos/celestiaorg/celestia-core/releases/tags/v1.44.1-tm-v0.34.35 --jq '.body'
Length of output: 1103 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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
Overview
Summary by CodeRabbit