Skip to content

Commit 7fd099b

Browse files
committed
docs: update release notes and add notes for 0.18.2
1 parent 3b4106c commit 7fd099b

File tree

2 files changed

+102
-53
lines changed

2 files changed

+102
-53
lines changed

docs/release-notes/release-notes-0.18.1.md

Lines changed: 4 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -19,80 +19,31 @@
1919

2020
# Bug Fixes
2121

22-
* `closedchannels` now [successfully reports](https://github.com/lightningnetwork/lnd/pull/8800)
23-
settled balances even if the delivery address is set to an address that
24-
LND does not control.
25-
26-
* [SendPaymentV2](https://github.com/lightningnetwork/lnd/pull/8734) now cancels
27-
the background payment loop if the user cancels the stream context.
28-
29-
* [Fixed a bug](https://github.com/lightningnetwork/lnd/pull/8822) that caused
30-
LND to read the config only partially and continued with the startup.
22+
* [Fixed a bug](https://github.com/lightningnetwork/lnd/pull/8862) in error
23+
matching from publishing transactions that can cause the broadcast process to
24+
fail if `btcd` with an older version (pre-`v0.24.2`) is used.
3125

3226
# New Features
3327
## Functional Enhancements
3428
## RPC Additions
35-
36-
* The [SendPaymentRequest](https://github.com/lightningnetwork/lnd/pull/8734)
37-
message receives a new flag `cancelable` which indicates if the payment loop
38-
is cancelable. The cancellation can either occur manually by cancelling the
39-
send payment stream context, or automatically at the end of the timeout period
40-
if the user provided `timeout_seconds`.
41-
4229
## lncli Additions
4330

44-
* [Added](https://github.com/lightningnetwork/lnd/pull/8491) the `cltv_expiry`
45-
argument to `addinvoice` and `addholdinvoice`, allowing users to set the
46-
`min_final_cltv_expiry_delta`.
47-
48-
* The [`lncli wallet estimatefeerate`](https://github.com/lightningnetwork/lnd/pull/8730)
49-
command returns the fee rate estimate for on-chain transactions in sat/kw and
50-
sat/vb to achieve a given confirmation target.
51-
5231
# Improvements
5332
## Functional Updates
5433
## RPC Updates
55-
56-
* [`xImportMissionControl`](https://github.com/lightningnetwork/lnd/pull/8779)
57-
now accepts `0` failure amounts.
58-
59-
* [`ChanInfoRequest`](https://github.com/lightningnetwork/lnd/pull/8813)
60-
adds support for channel points.
61-
6234
## lncli Updates
63-
64-
* [`importmc`](https://github.com/lightningnetwork/lnd/pull/8779) now accepts
65-
`0` failure amounts.
66-
67-
* [`getchaninfo`](https://github.com/lightningnetwork/lnd/pull/8813) now accepts
68-
a channel outpoint besides a channel id.
69-
70-
* [Fixed](https://github.com/lightningnetwork/lnd/pull/8823) how we parse the
71-
`--amp` flag when sending a payment specifying the payment request.
72-
7335
## Code Health
7436
## Breaking Changes
7537
## Performance Improvements
7638

77-
* Mission Control Store [improved performance during DB
78-
flushing](https://github.com/lightningnetwork/lnd/pull/8549) stage.
79-
8039
# Technical and Architectural Updates
8140
## BOLT Spec Updates
8241

83-
* Start assuming that all hops used during path-finding and route construction
84-
[support the TLV onion
85-
format](https://github.com/lightningnetwork/lnd/pull/8791).
86-
8742
## Testing
8843
## Database
8944
## Code Health
9045
## Tooling and Documentation
9146

9247
# Contributors (Alphabetical Order)
9348

94-
* Andras Banki-Horvath
95-
* Bufo
96-
* Elle Mouton
97-
* Matheus Degiovani
98-
* Slyghtning
49+
* Yyforyongyu
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# Release Notes
2+
- [Bug Fixes](#bug-fixes)
3+
- [New Features](#new-features)
4+
- [Functional Enhancements](#functional-enhancements)
5+
- [RPC Additions](#rpc-additions)
6+
- [lncli Additions](#lncli-additions)
7+
- [Improvements](#improvements)
8+
- [Functional Updates](#functional-updates)
9+
- [RPC Updates](#rpc-updates)
10+
- [lncli Updates](#lncli-updates)
11+
- [Breaking Changes](#breaking-changes)
12+
- [Performance Improvements](#performance-improvements)
13+
- [Technical and Architectural Updates](#technical-and-architectural-updates)
14+
- [BOLT Spec Updates](#bolt-spec-updates)
15+
- [Testing](#testing)
16+
- [Database](#database)
17+
- [Code Health](#code-health)
18+
- [Tooling and Documentation](#tooling-and-documentation)
19+
20+
# Bug Fixes
21+
22+
* `closedchannels` now [successfully reports](https://github.com/lightningnetwork/lnd/pull/8800)
23+
settled balances even if the delivery address is set to an address that
24+
LND does not control.
25+
26+
* [SendPaymentV2](https://github.com/lightningnetwork/lnd/pull/8734) now cancels
27+
the background payment loop if the user cancels the stream context.
28+
29+
* [Fixed a bug](https://github.com/lightningnetwork/lnd/pull/8822) that caused
30+
LND to read the config only partially and continued with the startup.
31+
32+
# New Features
33+
## Functional Enhancements
34+
## RPC Additions
35+
36+
* The [SendPaymentRequest](https://github.com/lightningnetwork/lnd/pull/8734)
37+
message receives a new flag `cancelable` which indicates if the payment loop
38+
is cancelable. The cancellation can either occur manually by cancelling the
39+
send payment stream context, or automatically at the end of the timeout period
40+
if the user provided `timeout_seconds`.
41+
42+
## lncli Additions
43+
44+
* [Added](https://github.com/lightningnetwork/lnd/pull/8491) the `cltv_expiry`
45+
argument to `addinvoice` and `addholdinvoice`, allowing users to set the
46+
`min_final_cltv_expiry_delta`.
47+
48+
* The [`lncli wallet estimatefeerate`](https://github.com/lightningnetwork/lnd/pull/8730)
49+
command returns the fee rate estimate for on-chain transactions in sat/kw and
50+
sat/vb to achieve a given confirmation target.
51+
52+
# Improvements
53+
## Functional Updates
54+
## RPC Updates
55+
56+
* [`xImportMissionControl`](https://github.com/lightningnetwork/lnd/pull/8779)
57+
now accepts `0` failure amounts.
58+
59+
* [`ChanInfoRequest`](https://github.com/lightningnetwork/lnd/pull/8813)
60+
adds support for channel points.
61+
62+
## lncli Updates
63+
64+
* [`importmc`](https://github.com/lightningnetwork/lnd/pull/8779) now accepts
65+
`0` failure amounts.
66+
67+
* [`getchaninfo`](https://github.com/lightningnetwork/lnd/pull/8813) now accepts
68+
a channel outpoint besides a channel id.
69+
70+
* [Fixed](https://github.com/lightningnetwork/lnd/pull/8823) how we parse the
71+
`--amp` flag when sending a payment specifying the payment request.
72+
73+
## Code Health
74+
## Breaking Changes
75+
## Performance Improvements
76+
77+
* Mission Control Store [improved performance during DB
78+
flushing](https://github.com/lightningnetwork/lnd/pull/8549) stage.
79+
80+
# Technical and Architectural Updates
81+
## BOLT Spec Updates
82+
83+
* Start assuming that all hops used during path-finding and route construction
84+
[support the TLV onion
85+
format](https://github.com/lightningnetwork/lnd/pull/8791).
86+
87+
## Testing
88+
## Database
89+
## Code Health
90+
## Tooling and Documentation
91+
92+
# Contributors (Alphabetical Order)
93+
94+
* Andras Banki-Horvath
95+
* Bufo
96+
* Elle Mouton
97+
* Matheus Degiovani
98+
* Slyghtning

0 commit comments

Comments
 (0)