Skip to content

Comments

Prepare for litd v0.16.1-alpha release#1230

Merged
ViktorT-11 merged 9 commits intolightninglabs:masterfrom
ViktorT-11:litd-v0_16_1
Feb 13, 2026
Merged

Prepare for litd v0.16.1-alpha release#1230
ViktorT-11 merged 9 commits intolightninglabs:masterfrom
ViktorT-11:litd-v0_16_1

Conversation

@ViktorT-11
Copy link
Contributor

This PR prepares litd for the v0.16.1-alpha release, and bumps lnd, loop & taproot-assets.

The release notes for
lightninglabs#1168
accidentally got added to the `v0.16.0` release notes instead of the
`v0.16.1` release notes. This commit moves the release note to the
correct doc.
Bump lnd to `v0.20.1-beta`, and to `sqldb` to the same version `lnd` is
using.
Bump `loop` to `v0.31.8-beta`, `looprpc` to `v1.0.13` and
`swapserverrpc` to `v1.0.20`.

Additionally, we also add the new `loop` protos to `litd`.
Bump `taproot-assets` to `v0.7.1` & `taprpc` to `v1.0.12`. This tapd
uses a new migrate dependency version, and therefore that is also bumped
in `litd`.

As the `tapd` `/universerpc.Universe/Info` call now requires a macaroon,
we need to add the `taproot-assets.allow-public-uni-proof-courier` to
the node config in order to whitelist the call.
Bump `lnd`, `looprpc` & `taprpc` to the same versions as the `terminal`
package, to keep them in sync.
Bump `lnd` to the same version as the `terminal` package, to keep them
in sync.
@gemini-code-assist
Copy link

Summary of Changes

Hello @ViktorT-11, 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 prepares litd for its v0.16.1-alpha release by performing significant dependency updates across core components like lnd, loop, and taproot-assets. It also introduces new functionality within the loop sub-server to manage HTLC sweeps and includes necessary protobuf regenerations to align with updated protoc-gen-go versions.

Highlights

  • Loop Sub-server Update: Introduced a new SweepHtlc RPC method and its associated message types (SweepHtlcRequest, SweepHtlcResponse, PublishNotRequested, PublishSucceeded, PublishFailed) to the loop sub-server, enabling the sweeping of HTLC outputs via the success path.
  • Dependency Bumps: Updated several key dependencies including lnd to v0.20.1-beta, loop to v0.31.8-beta, and taproot-assets to v0.7.1, along with their respective RPC packages and other related modules.
  • Protobuf Regeneration: Regenerated various protobuf files across autopilotserverrpc and litrpc packages using protoc-gen-go v1.36.11, incorporating unsafe imports and protogen:"open.v1" tags, and adjusting method implementations for AccountIdentifier and RuleValue.
  • Release Version Bump: Incremented the application patch version to v0.16.1-alpha, reflecting the upcoming release preparation.

🧠 New Feature in Public Preview: You can now enable Memory 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.

Changelog
  • app/src/types/generated/loop_pb.d.ts
    • Added new TypeScript definitions for SweepHtlcRequest, SweepHtlcResponse, PublishNotRequested, PublishSucceeded, and PublishFailed messages.
  • app/src/types/generated/loop_pb.js
    • Exported new JavaScript classes for SweepHtlcRequest, SweepHtlcResponse, PublishNotRequested, PublishSucceeded, and PublishFailed.
  • app/src/types/generated/loop_pb_service.d.ts
    • Defined SwapClientSweepHtlc type and added sweepHtlc method to SwapClient and SwapClientClient interfaces.
  • app/src/types/generated/loop_pb_service.js
    • Implemented the SweepHtlc RPC method for SwapClient and SwapClientClient.prototype.
  • autopilotserverrpc/autopilotserver.pb.go
    • Updated protoc-gen-go version to v1.36.11.
    • Added unsafe import and protogen:"open.v1" tags to message structs.
    • Removed protoimpl.UnsafeEnabled checks from ProtoReflect methods.
  • docs/release-notes/release-notes-0.16.0.md
    • Removed the section detailing dev.Dockerfile cache mounts.
  • docs/release-notes/release-notes-0.16.1.md
    • Added a section detailing dev.Dockerfile cache mounts.
    • Documented version bumps for lnd, loop, and taproot-assets.
    • Added ViktorT-11 to the list of contributors.
  • go.mod
    • Updated lightning-node-connect/gbn to v1.0.2-0.20250610182311-2f1d46ef18b7.
    • Updated lightning-node-connect/mailbox to v1.0.2-0.20250610182311-2f1d46ef18b7.
    • Updated loop to v0.31.8-beta.
    • Updated loop/looprpc to v1.0.13.
    • Updated loop/swapserverrpc to v1.0.20.
    • Updated taproot-assets to v0.7.1.
    • Updated taproot-assets/taprpc to v1.0.12.
    • Updated lnd to v0.20.1-beta.
    • Updated lnd/sqldb to v1.0.12-0.20260113193010-8565d12e40b1.
    • Updated google.golang.org/protobuf to v1.36.11.
    • Updated lightninglabs/aperture to v0.4.0.
    • Updated lightninglabs/lightning-node-connect/hashmailrpc to v1.0.4-0.20250610182311-2f1d46ef18b7.
    • Updated lightninglabs/neutrino/cache to v1.1.3.
    • Updated github.com/golang-migrate/migrate/v4 replace directive.
    • Removed nhooyr.io/websocket indirect dependency.
    • Added github.com/coder/websocket indirect dependency.
  • go.sum
    • Updated checksums to reflect changes in go.mod.
  • itest/litd_node.go
    • Added taproot-assets.allow-public-uni-proof-courier flag to default litd arguments.
  • litrpc/firewall.pb.go
    • Updated protoc-gen-go version to v1.36.11.
    • Added unsafe import and protogen:"open.v1" tags to message structs.
    • Removed protoimpl.UnsafeEnabled checks from ProtoReflect methods.
  • litrpc/go.mod
    • Updated loop/looprpc to v1.0.13.
    • Updated taproot-assets/taprpc to v1.0.12.
    • Updated lnd to v0.20.1-beta.
    • Updated google.golang.org/protobuf to v1.36.11.
    • Updated loop/swapserverrpc to v1.0.14.
    • Updated lnd/sqldb to v1.0.12-0.20260113193010-8565d12e40b1.
  • litrpc/go.sum
    • Updated checksums to reflect changes in litrpc/go.mod.
  • litrpc/lit-accounts.pb.go
    • Updated protoc-gen-go version to v1.36.11.
    • Added unsafe import and protogen:"open.v1" tags to message structs.
    • Removed protoimpl.UnsafeEnabled checks from ProtoReflect methods.
    • Modified AccountIdentifier's GetValue, GetId, and GetLabel methods for safer field access.
  • litrpc/lit-autopilot.pb.go
    • Updated protoc-gen-go version to v1.36.11.
    • Added unsafe import and protogen:"open.v1" tags to message structs.
    • Removed protoimpl.UnsafeEnabled checks from ProtoReflect methods.
    • Updated protobuf key/value tags for Features and Rules maps.
  • litrpc/lit-sessions.pb.go
    • Updated protoc-gen-go version to v1.36.11.
    • Added unsafe import and protogen:"open.v1" tags to message structs.
    • Removed protoimpl.UnsafeEnabled checks from ProtoReflect methods.
    • Modified Session's AutopilotFeatureInfo and FeatureConfigs map key/value protobuf tags.
    • Modified RuleValue's GetValue and related getter methods for safer field access.
  • litrpc/lit-status.pb.go
    • Updated protoc-gen-go version to v1.36.11.
    • Added unsafe import and protogen:"open.v1" tags to message structs.
    • Removed protoimpl.UnsafeEnabled checks from ProtoReflect methods.
  • litrpc/proxy.pb.go
    • Updated protoc-gen-go version to v1.36.11.
    • Added unsafe import and protogen:"open.v1" tags to message structs.
    • Removed protoimpl.UnsafeEnabled checks from ProtoReflect methods.
  • perms/go.mod
    • Updated lnd to v0.20.1-beta.
    • Updated lnd/sqldb to v1.0.12-0.20260113193010-8565d12e40b1.
  • perms/go.sum
    • Updated checksums to reflect changes in perms/go.mod.
  • proto/loop.proto
    • Added SweepHtlc RPC service definition.
    • Defined SweepHtlcRequest, SweepHtlcResponse, PublishNotRequested, PublishSucceeded, and PublishFailed messages.
  • version.go
    • Bumped the application patch version from 0 to 1.
Activity
  • ViktorT-11 created the pull request to prepare for the v0.16.1-alpha release.
  • Changes were implemented to update various dependencies and introduce new RPC functionality.
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

@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 prepares for the v0.16.1-alpha release by bumping versions and updating dependencies. The changes are mostly related to dependency updates and generated code, which look correct. I've found a couple of minor typos in the release notes that should be addressed.

Copy link
Member

@jamaljsr jamaljsr left a comment

Choose a reason for hiding this comment

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

tACK LGTM 🚀

Tested the litd UI and TW e2e tests. All clear 👌

Copy link
Member

@ellemouton ellemouton left a comment

Choose a reason for hiding this comment

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

lgtm!

@ViktorT-11 ViktorT-11 merged commit 4351846 into lightninglabs:master Feb 13, 2026
22 of 23 checks passed
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.

3 participants