go.mod: bump pool to v0.7.0-beta#1313
Conversation
Summary of ChangesHello, 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 dependency update for the Highlights
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 AssistThe 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
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 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
|
In this PR, we bump the embedded
pooldependency up tov0.7.0-beta. The main motivation is to pull in two reliability fixes around the auctioneer subscription path that were causing the order subscribe stream to silently die after extended runtime.The first fix is the EOF handling in the subscribe stream (lightninglabs/pool#518). Before, an EOF from the auctioneer would leave the client in a state where the gRPC connection looked healthy, but no further order updates would actually arrive. We now treat EOF the same as any other transient stream error and trigger a reconnect rather than swallowing it. The second piece (also lightninglabs/pool#518) adds jittered backoff on the reconnect path, which avoids the thundering-herd scenario where every connected trader retries at the same instant after the auctioneer comes back up from a brief restart.
The release also pulls in the stream handling fix in
consumePendingOpenChannels(lightninglabs/pool#507) so we don't get stuck on pending channel finalization, plus the usual round of transitive dependency bumps (go-viper/mapstructure/v2,opencontainers/runc,golang-jwt/jwt/v4,golang.org/x/net).The diff itself is minimal: just
go.mod/go.sumand a one-bullet entry under### Poolin the upcoming0.17.0release notes.Test plan
go build ./...passes on the main lit module.