From 97d00c33ad9a59a5e0f3cc718c39d4d62bfcb103 Mon Sep 17 00:00:00 2001 From: GitHub Date: Wed, 24 Jan 2024 00:18:11 +0000 Subject: [PATCH] update documentation --- docs/lnd/release-notes/release-notes-0.17.4.md | 13 +++++++++++++ docs/lnd/release-notes/release-notes-0.18.0.md | 5 ++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/lnd/release-notes/release-notes-0.17.4.md b/docs/lnd/release-notes/release-notes-0.17.4.md index c527576..7d1918f 100644 --- a/docs/lnd/release-notes/release-notes-0.17.4.md +++ b/docs/lnd/release-notes/release-notes-0.17.4.md @@ -29,6 +29,15 @@ FilterKnownChanIDs](https://github.com/lightningnetwork/lnd/pull/8400) by ensuring the `cacheMu` mutex is acquired before the main database lock. +* [Prevent](https://github.com/lightningnetwork/lnd/pull/8385) ping failures + from [deadlocking](https://github.com/lightningnetwork/lnd/issues/8379) + the peer connection. + +* [Fix](https://github.com/lightningnetwork/lnd/pull/8401) an issue that + caused memory leak for users running `lnd` with `bitcoind.rpcpolling=1` + mode. + + # New Features ## Functional Enhancements ## RPC Additions @@ -50,5 +59,9 @@ ## Tooling and Documentation # Contributors (Alphabetical Order) + * Elle Mouton +* Keagan McClelland +* Olaoluwa Osuntokun +* Yong Yu * ziggie1984 diff --git a/docs/lnd/release-notes/release-notes-0.18.0.md b/docs/lnd/release-notes/release-notes-0.18.0.md index 098fbd5..f672c55 100644 --- a/docs/lnd/release-notes/release-notes-0.18.0.md +++ b/docs/lnd/release-notes/release-notes-0.18.0.md @@ -49,7 +49,7 @@ same exclusive group](https://github.com/lightningnetwork/lnd/pull/7800). When using neutrino as a backend unconfirmed transactions have to be removed from the wallet when a conflicting tx is confirmed. For other backends - these unconfirmed transactions are already removed. In addition a new + these unconfirmed transactions are already removed. In addition, a new walletrpc endpoint `RemoveTransaction` is introduced which let one easily remove unconfirmed transaction manually. @@ -61,6 +61,9 @@ this buffer which can be used to increase the commitment fee and it also protects against the case where htlcs are added asynchronously resulting in stuck channels. + +* [Fixed](https://github.com/lightningnetwork/lnd/pull/8377) a watchtower client + test flake that prevented new tasks from overflowing to disk. * [Properly handle un-acked updates for exhausted watchtower sessions](https://github.com/lightningnetwork/lnd/pull/8233)