-
Notifications
You must be signed in to change notification settings - Fork 182
chore(release): prepare v0.30.1 #6093
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
WalkthroughUpdates CHANGELOG with a new v0.30.1 entry and reorganized unreleased sections; removes one unreleased item. Bumps package version in Cargo.toml from 0.30.0 to 0.30.1. No code or API changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested reviewers
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests
Tip 👮 Agentic pre-merge checks are now available in preview!Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.
Please see the documentation for more information. Example: reviews:
pre_merge_checks:
custom_checks:
- name: "Undocumented Breaking Changes"
mode: "warning"
instructions: |
Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal).Please share your feedback with us on this Discord post. 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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
CHANGELOG.md (1)
40-46: Minor wording and timestamp clarity
- Add an ISO‑8601 timestamp alongside the human‑readable time to avoid TZ parsing ambiguity.
- Grammar nit: “actors method params” → “actor method params”.
Apply:
- Mandatory release for mainnet node operators. It sets the NV27 _Golden Week_ network upgrade to epoch `5_348_280` which corresponds to `Wed 24 Sep 23:00:00 UTC 2025`. It also includes a few improvements that help with snapshot generation and inspection. + Mandatory release for mainnet node operators. It sets the NV27 _Golden Week_ network upgrade to epoch `5_348_280` which corresponds to `Wed 24 Sep 23:00:00 UTC 2025` (2025-09-24T23:00:00Z). It also includes a few improvements that help with snapshot generation and inspection.- - [#6000](https://github.com/ChainSafe/forest/pull/6000) Added support for the `Filecoin.StateDecodeParams` API methods to enable decoding actors method params. + - [#6000](https://github.com/ChainSafe/forest/pull/6000) Added support for the `Filecoin.StateDecodeParams` API methods to enable decoding of actor method params.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
Cargo.lockis excluded by!**/*.lock
📒 Files selected for processing (2)
CHANGELOG.md(1 hunks)Cargo.toml(1 hunks)
🧰 Additional context used
🧠 Learnings (1)
📓 Common learnings
Learnt from: LesnyRumcajs
PR: ChainSafe/forest#5907
File: src/rpc/methods/state.rs:523-570
Timestamp: 2025-08-06T15:44:33.467Z
Learning: LesnyRumcajs prefers to rely on BufWriter's Drop implementation for automatic flushing rather than explicit flush() calls in Forest codebase.
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (7)
- GitHub Check: Build Ubuntu
- GitHub Check: cargo-publish-dry-run
- GitHub Check: Build MacOS
- GitHub Check: Build forest binaries on Linux AMD64
- GitHub Check: All lint checks
- GitHub Check: tests
- GitHub Check: tests-release
🔇 Additional comments (3)
CHANGELOG.md (2)
32-37: Changelog structure addition LGTM.Adding explicit Changed/Removed/Fixed under Unreleased improves clarity for future entries.
48-55: Entries read well; double‑check linking of #6068 across Added/ChangedBoth bullets refer to #6068 but different facets (new flag vs. behavior). Keep as‑is if both landed in the same PR; otherwise split the reference.
Cargo.toml (1)
3-3: Version bump LGTM — re-run stale-version checkrg reported "No files were searched", so the quick-check didn't run; run this and paste the output.
#!/usr/bin/env bash set -euo pipefail # Search all .toml files (exclude target/ and CHANGELOG.md) rg -nP '\b0\.30\.0\b' --glob '**/*.toml' --glob '!target/**' --glob '!**/CHANGELOG.md' || echo "No stale 0.30.0 strings found."If it still reports "No files were searched", run:
rg --debug '\b0\.30\.0\b' --glob '**/*.toml' --glob '!target/**' --glob '!**/CHANGELOG.md'
Summary of changes
Changes introduced in this pull request:
Reference issue to close (if applicable)
Closes
Other information and links
Change checklist
Summary by CodeRabbit