Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/lnd/release-notes/release-notes-0.20.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
* Fix a bug where [repeated network
addresses](https://github.com/lightningnetwork/lnd/pull/10341) were added to
the node announcement and `getinfo` output.

* [Fix source node race
condition](https://github.com/lightningnetwork/lnd/pull/10371) which could
prevent a node from starting up if two goroutines attempt to update the
node's announcement at the same time.

* [Fix a startup issue in LND when encountering a
deserialization issue](https://github.com/lightningnetwork/lnd/pull/10383)
Expand Down
6 changes: 6 additions & 0 deletions docs/lnd/release-notes/release-notes-0.21.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
sub-server is still starting. This allows clients to reliably detect the
transient condition and retry without brittle string matching.

- [Fixed an issue](https://github.com/lightningnetwork/lnd/pull/10399) where the
TLS manager would fail to start if only one of the TLS pair files (certificate
or key) existed. The manager now correctly regenerates both files when either
is missing, preventing "file not found" errors on startup.

# New Features

- Basic Support for [onion messaging forwarding](https://github.com/lightningnetwork/lnd/pull/9868)
Expand Down Expand Up @@ -77,4 +82,5 @@

* Boris Nagaev
* Elle Mouton
* Mohamed Awnallah
* Nishant Bansal