Skip to content

chore: update mainnet beta to celestia-node v0.26.4#2257

Merged
jcstein merged 1 commit intomainfrom
jcs/mainnet-v0.26.4
Oct 6, 2025
Merged

chore: update mainnet beta to celestia-node v0.26.4#2257
jcstein merged 1 commit intomainfrom
jcs/mainnet-v0.26.4

Conversation

@jcstein
Copy link
Copy Markdown
Member

@jcstein jcstein commented Oct 6, 2025

Overview

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @jcstein, 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 updates the celestia-node version referenced for the mainnet beta environment. The change ensures that any configurations or documentation relying on these constants point to the latest stable celestia-node release, maintaining consistency and accuracy across the project's ecosystem.

Highlights

  • celestia-node Version Update: The celestia-node version for mainnet beta has been updated from v0.25.3 to v0.26.4.
  • SHA Hash Update: The corresponding SHA hash for the celestia-node mainnet beta has been updated to 1b84e2b3f0df39a6f2197096fb2a58d9cd250687.
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.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

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.

Copy link
Copy Markdown
Contributor

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

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 mainnet beta version for celestia-node to v0.26.4. The change itself is a straightforward update of constant values. I have provided one suggestion to refactor the data structure for improved long-term maintainability. Otherwise, the changes look good.

Comment on lines 1 to 6
const mainnetVersions = Object.freeze({
"app-latest-tag": "v5.0.5",
"app-latest-sha": "bb1b85dea2aba0228b4502f02f0c7ee9d7014ab7",
"node-latest-tag": "v0.25.3",
"node-latest-sha": "8bee349fb74ebb8fdcbe68fad4c9dae750a91807",
"node-latest-tag": "v0.26.4",
"node-latest-sha": "1b84e2b3f0df39a6f2197096fb2a58d9cd250687",
});
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

For improved maintainability and code structure, consider refactoring this flat object into a nested structure. This groups related constants for 'app' and 'node' and makes the data model more scalable for future additions.

Note that this would be a breaking change for any code that consumes this object. For example, mainnetVersions['app-latest-tag'] would become mainnetVersions.app.latestTag.

Suggested change
const mainnetVersions = Object.freeze({
"app-latest-tag": "v5.0.5",
"app-latest-sha": "bb1b85dea2aba0228b4502f02f0c7ee9d7014ab7",
"node-latest-tag": "v0.25.3",
"node-latest-sha": "8bee349fb74ebb8fdcbe68fad4c9dae750a91807",
"node-latest-tag": "v0.26.4",
"node-latest-sha": "1b84e2b3f0df39a6f2197096fb2a58d9cd250687",
});
const mainnetVersions = Object.freeze({
app: {
latestTag: "v5.0.5",
latestSha: "bb1b85dea2aba0228b4502f02f0c7ee9d7014ab7",
},
node: {
latestTag: "v0.26.4",
latestSha: "1b84e2b3f0df39a6f2197096fb2a58d9cd250687",
},
});

@jcstein jcstein requested a review from mindstyle85 October 6, 2025 19:20
@jcstein jcstein merged commit 9f3d176 into main Oct 6, 2025
7 of 8 checks passed
@jcstein jcstein deleted the jcs/mainnet-v0.26.4 branch October 6, 2025 21:27
@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Oct 6, 2025

PR Preview Action v1.6.2
Preview removed because the pull request was closed.
2025-10-06 21:28 UTC

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.

2 participants