@@ -6,6 +6,18 @@ Scripts received as part of an upfront shutdown script [are now properly
6
6
sanitized] ( https://github.com/lightningnetwork/lnd/pull/5369 ) to ensure
7
7
widespread relay of potential cooperative channel closures.
8
8
9
+ ## Wallet Unlocking
10
+
11
+ [ A new flag has been added] ( https://github.com/lightningnetwork/lnd/pull/5457 )
12
+ to permit users to set the new password file config while at the same time,
13
+ allowing ` lnd ` to start up and accept new wallet initialization/creation via the
14
+ RPC interface. The new wallet-unlock-allow-create option instructs lnd to not
15
+ fail if no wallet exists yet but instead spin up its unlocker RPC as it would
16
+ without the wallet-unlock-password-file being present. This is not recommended
17
+ for auto-provisioned or high-security systems because the wallet creation RPC
18
+ is unauthenticated and an attacker could inject a seed while lnd is in that
19
+ state.
20
+
9
21
## RPC Server
10
22
11
23
[ The ` Shutdown ` command will now return an
@@ -19,6 +31,11 @@ New clients connecting/disconnecting to the transaction subscription stream
19
31
set] ( https://github.com/lightningnetwork/lnd/pull/5200 ) for the ` SendCoins ` RPC
20
32
call.
21
33
34
+ [ The ` abandonchannel ` RPC call can now be used without the ` dev ` build
35
+ tag] ( https://github.com/lightningnetwork/lnd/pull/5335 ) . A new flag
36
+ ` --i_know_what_i_am_doing ` must be specified when using the call without the
37
+ ` dev ` build tag active.
38
+
22
39
## Integration Test Improvements
23
40
24
41
[ A bug has been fixed in the ` testChannelForceClosure `
@@ -38,6 +55,7 @@ default](https://github.com/lightningnetwork/lnd/pull/5399) for all routine
38
55
builds.
39
56
40
57
## Deadline Aware in Anchor Sweeping
58
+
41
59
Anchor sweeping is now [ deadline
42
60
aware] ( https://github.com/lightningnetwork/lnd/pull/5148 ) . Previously, all
43
61
anchor sweepings use a default conf target of 6, which is likely to cause
@@ -56,4 +74,46 @@ reverted](https://github.com/lightningnetwork/lnd/pull/5404) as it
56
74
introduced a regression that would cause payment failure due to mismatching
57
75
heights.
58
76
77
+ [ A bug has been fixed that would previously cause any HTLCs settled using the
78
+ ` HltcInteceptor ` API calls to always be re-forwarded on start
79
+ up] ( https://github.com/lightningnetwork/lnd/pull/5280 ) .
80
+
81
+ [ A bug has been fixed in the parameter parsing for the ` lncli ` PSBT funding
82
+ call] ( https://github.com/lightningnetwork/lnd/pull/5441 ) . Prior to this bug
83
+ fix, the sat/vb param was ignored due to a default value for ` conf_target ` .
84
+
85
+ [ A bug has been fixed that would prevent nodes that had anchor channels opening
86
+ from accepting any new inbound "legacy"
87
+ channels] ( https://github.com/lightningnetwork/lnd/pull/5428 ) .
88
+
89
+ [ A bug has been fixed cause an ` lncli ` command to fail with on opaque error
90
+ when the referenced TLS cert file doesn't
91
+ exist] ( https://github.com/lightningnetwork/lnd/pull/5416 ) .
92
+
93
+ [ When ` lnd ` receives an HTLC failure message sourced from a private channel,
94
+ we'll now properly apply the update to the internal hop hints using during path
95
+ finding] ( https://github.com/lightningnetwork/lnd/pull/5332 ) .
96
+
97
+ [ A regression has been fixed that caused ` keysend ` payments on the "legacy" RPC
98
+ server to fail due to newly added AMP
99
+ logic] ( https://github.com/lightningnetwork/lnd/pull/5419 ) .
100
+
101
+
59
102
# Contributors (Alphabetical Order)
103
+
104
+ bluetegu
105
+ Bjarne Magnussen
106
+ Carla Kirk-Cohen
107
+ Carsten Otto
108
+ ErikEk
109
+ Eugene Seigel
110
+ de6df1re
111
+ Joost Jager
112
+ Juan Pablo Civile
113
+ Linus Curiel Xanon
114
+ Olaoluwa Osuntokun
115
+ Oliver Gugger
116
+ Randy McMillan
117
+ Vincent Woo
118
+ Wilmer Paulino
119
+ Yong Yu
0 commit comments