Skip to content

Conversation

@LesnyRumcajs
Copy link
Member

@LesnyRumcajs LesnyRumcajs commented Sep 17, 2025

Summary of changes

Changes introduced in this pull request:

  • prepare release v0.30.1 Laurelin

Reference issue to close (if applicable)

Closes

Other information and links

Change checklist

  • I have performed a self-review of my own code,
  • I have made corresponding changes to the documentation. All new code adheres to the team's documentation standards,
  • I have added tests that prove my fix is effective or that my feature works (if possible),
  • I have made sure the CHANGELOG is up-to-date. All user-facing changes should be reflected in this document.

Summary by CodeRabbit

  • Documentation
    • Reorganized Unreleased changelog sections (Added, Changed, Removed, Fixed).
    • Added release notes for Forest v0.30.1 “Laurelin”: mandatory upgrade for mainnet nodes; schedules NV27 Golden Week upgrade (epoch 5,348,280, Wed 24 Sep 23:00:00 UTC 2025); notes snapshot generation/inspection improvements; mentions new CLI timeout option for F3 readiness and support for decoding actor method params; removed obsolete entry.
  • Chores
    • Bumped version to 0.30.1.

@LesnyRumcajs LesnyRumcajs requested a review from a team as a code owner September 17, 2025 09:02
@LesnyRumcajs LesnyRumcajs requested review from akaladarshi and hanabi1224 and removed request for a team September 17, 2025 09:02
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 17, 2025

Walkthrough

Updates 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

Cohort / File(s) Summary
Release notes updates
CHANGELOG.md
Reorganizes unreleased sections (adds Changed/Removed/Fixed placeholders), adds v0.30.1 entry with items #6057 and #6000, removes prior unreleased entry #6068 from that section, retains existing history.
Version bump
Cargo.toml
Increments [package].version from 0.30.0 to 0.30.1; no other changes.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested reviewers

  • hanabi1224
  • akaladarshi

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title Check ✅ Passed The title "chore(release): prepare v0.30.1" is concise, follows conventional-commit style, and accurately summarizes the primary change (preparing and version-bumping to v0.30.1 including changelog and Cargo.toml updates), so it clearly communicates the PR’s intent to teammates scanning history.
Docstring Coverage ✅ Passed No functions found in the changes. Docstring coverage check skipped.
✨ Finishing touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch release-v0.30.1

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.

  • Built-in checks – Quickly apply ready-made checks to enforce title conventions, require pull request descriptions that follow templates, validate linked issues for compliance, and more.
  • Custom agentic checks – Define your own rules using CodeRabbit’s advanced agentic capabilities to enforce organization-specific policies and workflows. For example, you can instruct CodeRabbit’s agent to verify that API documentation is updated whenever API schema files are modified in a PR. Note: Upto 5 custom checks are currently allowed during the preview period. Pricing for this feature will be announced in a few weeks.

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 @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a 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

📥 Commits

Reviewing files that changed from the base of the PR and between 940224f and ae18817.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is 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/Changed

Both 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 check

rg 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'

@LesnyRumcajs LesnyRumcajs added this pull request to the merge queue Sep 17, 2025
Merged via the queue into main with commit a47d237 Sep 17, 2025
49 checks passed
@LesnyRumcajs LesnyRumcajs deleted the release-v0.30.1 branch September 17, 2025 10:31
@coderabbitai coderabbitai bot mentioned this pull request Nov 6, 2025
4 tasks
@coderabbitai coderabbitai bot mentioned this pull request Dec 10, 2025
4 tasks
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.

4 participants