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
3 changes: 3 additions & 0 deletions docs/lnd/code_contribution_guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 14 additions & 0 deletions docs/lnd/release-notes/release-notes-0.14.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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).

Expand All @@ -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).
Expand All @@ -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
Expand All @@ -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
Expand Down