Skip to content

build: bump version to v0.21.0-beta.rc3#10847

Merged
ziggie1984 merged 4 commits into
lightningnetwork:v0.21.x-branchfrom
ziggie1984:bump-version-v0.21.0-rc3
May 28, 2026
Merged

build: bump version to v0.21.0-beta.rc3#10847
ziggie1984 merged 4 commits into
lightningnetwork:v0.21.x-branchfrom
ziggie1984:bump-version-v0.21.0-rc3

Conversation

@ziggie1984
Copy link
Copy Markdown
Collaborator

@ziggie1984 ziggie1984 commented May 26, 2026

Summary

Bumps the v0.21 release branch version from v0.21.0-beta.rc2 to
v0.21.0-beta.rc3.

This also updates release-branch module requirements so downstream
consumers can resolve tagged modules without relying on local replaces:

  • Bumps github.com/btcsuite/btcwallet to v0.16.18, which contains
    the neutrino ChainService.Start(context.Context) compatibility fix.
  • Bumps github.com/lightningnetwork/lnd/queue to v1.2.0 and removes
    the local replace github.com/lightningnetwork/lnd/queue => ./queue.
  • Bumps github.com/lightningnetwork/lnd/sqldb to v1.0.13 and removes
    the local replace github.com/lightningnetwork/lnd/sqldb => ./sqldb.

The replace removals matter for downstream users because Go does not
propagate replace directives from dependencies. Consumers of the v0.21
module graph now resolve the tagged queue, sqldb, and btcwallet
versions directly.

Test plan

  • go test ./build
  • go list -m github.com/btcsuite/btcwallet

@github-actions github-actions Bot added the severity-medium Focused review required label May 26, 2026
@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello, 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 performs a routine version bump for the v0.21 release branch to reflect the latest beta release candidate.

Highlights

  • Version Increment: Updated the application pre-release version from v0.21.0-beta.rc2 to v0.21.0-beta.rc3.
New Features

🧠 You can now enable Memory (public preview) to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

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 the 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 counterproductive. 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.

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.

@github-actions
Copy link
Copy Markdown

PR Severity: MEDIUM

Classified from changed files | 1 file | 2 lines changed

Medium (1 file)

  • build/version.go - Version bump file in build/ package; not categorized under CRITICAL or HIGH packages — falls under "other Go files not categorized above"

Analysis

This PR makes a minimal change to build/version.go (1 addition, 1 deletion), which is a version bump or similar housekeeping update. The build/ package does not fall under any CRITICAL or HIGH severity categories, so this is classified as MEDIUM per the "other Go files not categorized above" rule.

No severity bump applies: only 1 non-test, non-generated file changed (threshold: >20), and only 2 lines changed (threshold: >500).


To override, add a severity-override-{critical,high,medium,low} label.
<!-- pr-severity-bot -->

Copy link
Copy Markdown

@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 pre-release version string in build/version.go from "beta.rc2" to "beta.rc3". There are no review comments to address, and the changes look correct.

@ziggie1984 ziggie1984 force-pushed the bump-version-v0.21.0-rc3 branch from c1d7b04 to 06436c6 Compare May 26, 2026 18:19
@ziggie1984 ziggie1984 requested review from saubyk and yyforyongyu May 26, 2026 18:49
@ziggie1984
Copy link
Copy Markdown
Collaborator Author

Let's wait for #10838 to be merged

Copy link
Copy Markdown
Collaborator

@saubyk saubyk left a comment

Choose a reason for hiding this comment

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

Aren't we mixing concerns here? Warrants an explanation at least

Comment thread discovery/bootstrapper_test.go
@ziggie1984 ziggie1984 force-pushed the bump-version-v0.21.0-rc3 branch 2 times, most recently from e7dbbda to 431499f Compare May 27, 2026 19:26
@ziggie1984 ziggie1984 added this to v0.21 May 27, 2026
@ziggie1984 ziggie1984 added this to the v0.21.0 milestone May 27, 2026
@ziggie1984 ziggie1984 moved this to In review in v0.21 May 27, 2026
@ziggie1984
Copy link
Copy Markdown
Collaborator Author

Blocker is #10851, thats def a must

ziggie1984 and others added 4 commits May 28, 2026 15:33
In this commit, we drop the in-tree queue replace now that queue/v1.2.0 is
tagged, and pull it in as a normal dependency. The tagged release is
byte-identical to the queue package we've been building in-tree on this
branch, so it's a no-op for what ships in rc3: we just stop carrying the
local replace.

We leave the sqldb replace alone (still gated on the gossip V2 sqldb work),
and kvdb stays on v1.4.16/pgx-v4 for 0.21, so the pgx/v5 migration doesn't
ride along into the release.
Remove the local sqldb replace now that the required changes are
available in the v1.0.13 module release.

This lets the root module consume the tagged sqldb dependency
directly.
Use tagged btcwallet v0.16.18. It includes the neutrino
ChainService Start context signature update.

Downstream module resolution can otherwise select the older
v0.16.17 tag over lnd's previous pseudo-version requirement.
@ziggie1984 ziggie1984 force-pushed the bump-version-v0.21.0-rc3 branch from a4e90df to 02dc7f8 Compare May 28, 2026 18:34
@ziggie1984 ziggie1984 requested a review from Roasbeef May 28, 2026 18:37
@ziggie1984 ziggie1984 force-pushed the bump-version-v0.21.0-rc3 branch from 02dc7f8 to 79e0d6b Compare May 28, 2026 18:50
@github-actions github-actions Bot added severity-medium Focused review required and removed severity-medium Focused review required labels May 28, 2026
Copy link
Copy Markdown
Member

@yyforyongyu yyforyongyu left a comment

Choose a reason for hiding this comment

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

LGTM⏳

@ziggie1984 ziggie1984 merged commit 37fe1ea into lightningnetwork:v0.21.x-branch May 28, 2026
52 of 85 checks passed
@github-project-automation github-project-automation Bot moved this from In review to Done in v0.21 May 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

no-changelog severity-medium Focused review required

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

4 participants