diff --git a/docs/lnd/code_contribution_guidelines.md b/docs/lnd/code_contribution_guidelines.md index e0bad07b..efaa43d5 100644 --- a/docs/lnd/code_contribution_guidelines.md +++ b/docs/lnd/code_contribution_guidelines.md @@ -316,6 +316,9 @@ Examples of common patterns w.r.t commit structures within the project: be a single commit which adds the new functionality, with follow up induvidual commits that begin to intergrate the functionality within the codebase. + * If a PR only fixes a trivial issue, such as updating documentations on a + small scale, fix typo, or any changes that do not modify the code, the + commit message should end with `[skip ci]` to skip the CI checks. ## Code Spacing diff --git a/docs/lnd/release-notes/release-notes-0.14.0.md b/docs/lnd/release-notes/release-notes-0.14.0.md index 0ca25517..68d087ae 100644 --- a/docs/lnd/release-notes/release-notes-0.14.0.md +++ b/docs/lnd/release-notes/release-notes-0.14.0.md @@ -41,6 +41,11 @@ you. * [Makes publishtransaction, in the wallet sub-server, reachable through lncli](https://github.com/lightningnetwork/lnd/pull/5460). +# Safety + +* Locally force closed channels are now [kept in the channel.backup file until + their time lock has fully matured](https://github.com/lightningnetwork/lnd/pull/5528). + # Build System * [A new pre-submit check has been @@ -80,6 +85,8 @@ you. ## Code cleanup, refactor, typo fixes +* [Refactor the interaction between the `htlcswitch` and `peer` packages for cleaner separation.](https://github.com/lightningnetwork/lnd/pull/5603) + * [Unused error check removed](https://github.com/lightningnetwork/lnd/pull/5537). @@ -97,6 +104,8 @@ you. * [Flake fix in async bidirectional payment test](https://github.com/lightningnetwork/lnd/pull/5607). +* [Fixed context timeout when closing channels in tests](https://github.com/lightningnetwork/lnd/pull/5616). + * [Fixed a missing import and git tag in the healthcheck package](https://github.com/lightningnetwork/lnd/pull/5582). * [Fixed a data race in payment unit test](https://github.com/lightningnetwork/lnd/pull/5573). @@ -121,6 +130,10 @@ you. * [Update MC store in blocks](https://github.com/lightningnetwork/lnd/pull/5515) to make payment throughput better when using etcd. +* [The `lnwire` package now uses a write buffer pool](https://github.com/lightningnetwork/lnd/pull/4884) + when encoding/decoding messages. Such that most of the heap escapes are fixed, + resulting in less memory being used when running `lnd`. + ## Bug Fixes A bug has been fixed that would cause `lnd` to [try to bootstrap using the @@ -136,6 +149,7 @@ change](https://github.com/lightningnetwork/lnd/pull/5613). # Contributors (Alphabetical Order) * Andras Banki-Horvath * ErikEk +* Eugene Siegel * Martin Habovstiak * Zero-1729 * Oliver Gugger