Skip to content

Commit 000508c

Browse files
committed
doc: Update CHANGELOG.md for v0.10.2rc2
1 parent 3d8293d commit 000508c

File tree

1 file changed

+41
-35
lines changed

1 file changed

+41
-35
lines changed

CHANGELOG.md

Lines changed: 41 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.10.2rc1] - 2021-10-22
7+
## [0.10.2rc2] - 2021-10-31
88

99
### Added
1010

11+
- config: new option --max-dust-htlc-exposure-msat, which limits the total amount of sats to be allowed as dust on a channel ([#4837])
1112
- With `sqlite3` db backend we now use a 60-second busy timer, to allow backup processes like `litestream` to operate safely. ([#4867])
1213
- pay: Payment attempts are now grouped by the pay command that initiated them ([#4567])
1314
- JSON-RPC: `setchannelfee` gives a grace period (`enforcedelay`) before rejecting old-fee payments: default 10 minutes. ([#4806])
@@ -25,6 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2526

2627
### Changed
2728

29+
- pay: The route selection will now use the log-propability-based channel selection to increase success rate and reduce time to completion ([#4771])
30+
- Plugins: `pay` now biases towards larger channels, improving success probability. ([#4771])
2831
- db: removal of old HTLC information and vacuuming shrinks large lightningd.sqlite3 by a factor of 2-3. ([#4850])
2932
- JSON-RPC: `ping` now only works if we have a channel with the peer. ([#4804])
3033
- Protocol: Send regular pings to detect dead connections (particularly for Tor). ([#4804])
@@ -51,6 +54,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
5154

5255
### Fixed
5356

57+
- peer: Fixed a crash when a connection is lost outside of a DB transaction ([#4894])
5458
- We now no longer self-limit the number of file descriptors (which limits the number of channels) in sufficiently modern systems, or where we can access `/proc` or `/dev/fd`. We still self-limit on old systems where we cannot find the list of open files on `/proc` or `/dev/fd`, so if you need > ~4000 channels, upgrade or mount `/proc`. ([#4872])
5559
- errors: Errors returning a `channel_update` no longer return an outdated one. ([#4876])
5660
- pay: `listpays` returns payments orderd by their creation date ([#4567])
@@ -75,53 +79,55 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
7579
- Protocol: Updated onion_message support to match updated draft specification (with backwards compat for old version) ([#4800])
7680
- Anchor output mutual close allow a fee higher than the final commitment transaction (as per lightning-rfc #847) ([#4599])
7781

78-
79-
80-
[#4852]: https://github.com/ElementsProject/lightning/pull/4852
82+
[#4850]: https://github.com/ElementsProject/lightning/pull/4850
83+
[#4599]: https://github.com/ElementsProject/lightning/pull/4599
8184
[#4754]: https://github.com/ElementsProject/lightning/pull/4754
82-
[#4760]: https://github.com/ElementsProject/lightning/pull/4760
83-
[#4830]: https://github.com/ElementsProject/lightning/pull/4830
84-
[#4750]: https://github.com/ElementsProject/lightning/pull/4750
85-
[#4752]: https://github.com/ElementsProject/lightning/pull/4752
86-
[#4554]: https://github.com/ElementsProject/lightning/pull/4554
87-
[#4567]: https://github.com/ElementsProject/lightning/pull/4567
85+
[#4849]: https://github.com/ElementsProject/lightning/pull/4849
8886
[#4730]: https://github.com/ElementsProject/lightning/pull/4730
89-
[#4582]: https://github.com/ElementsProject/lightning/pull/4582
90-
[#4803]: https://github.com/ElementsProject/lightning/pull/4803
87+
[#4876]: https://github.com/ElementsProject/lightning/pull/4876
88+
[#4830]: https://github.com/ElementsProject/lightning/pull/4830
9189
[#4668]: https://github.com/ElementsProject/lightning/pull/4668
92-
[#4731]: https://github.com/ElementsProject/lightning/pull/4731
9390
[#4872]: https://github.com/ElementsProject/lightning/pull/4872
94-
[#4784]: https://github.com/ElementsProject/lightning/pull/4784
95-
[#4754]: https://github.com/ElementsProject/lightning/pull/4754
96-
[#4731]: https://github.com/ElementsProject/lightning/pull/4731
97-
[#4668]: https://github.com/ElementsProject/lightning/pull/4668
98-
[#4567]: https://github.com/ElementsProject/lightning/pull/4567
99-
[#4806]: https://github.com/ElementsProject/lightning/pull/4806
100-
[#4805]: https://github.com/ElementsProject/lightning/pull/4805
101-
[#4876]: https://github.com/ElementsProject/lightning/pull/4876
102-
[#4742]: https://github.com/ElementsProject/lightning/pull/4742
103-
[#4850]: https://github.com/ElementsProject/lightning/pull/4850
10491
[#4616]: https://github.com/ElementsProject/lightning/pull/4616
105-
[#4849]: https://github.com/ElementsProject/lightning/pull/4849
106-
[#4804]: https://github.com/ElementsProject/lightning/pull/4804
107-
[#4599]: https://github.com/ElementsProject/lightning/pull/4599
92+
[#4752]: https://github.com/ElementsProject/lightning/pull/4752
10893
[#4731]: https://github.com/ElementsProject/lightning/pull/4731
109-
[#4599]: https://github.com/ElementsProject/lightning/pull/4599
94+
[#4554]: https://github.com/ElementsProject/lightning/pull/4554
95+
[#4742]: https://github.com/ElementsProject/lightning/pull/4742
96+
[#4803]: https://github.com/ElementsProject/lightning/pull/4803
11097
[#4737]: https://github.com/ElementsProject/lightning/pull/4737
98+
[#4784]: https://github.com/ElementsProject/lightning/pull/4784
99+
[#4852]: https://github.com/ElementsProject/lightning/pull/4852
100+
[#4849]: https://github.com/ElementsProject/lightning/pull/4849
101+
[#4894]: https://github.com/ElementsProject/lightning/pull/4894
102+
[#4837]: https://github.com/ElementsProject/lightning/pull/4837
103+
[#4771]: https://github.com/ElementsProject/lightning/pull/4771
111104
[#4599]: https://github.com/ElementsProject/lightning/pull/4599
112105
[#4599]: https://github.com/ElementsProject/lightning/pull/4599
113-
[#4849]: https://github.com/ElementsProject/lightning/pull/4849
114106
[#4567]: https://github.com/ElementsProject/lightning/pull/4567
115-
[#4599]: https://github.com/ElementsProject/lightning/pull/4599
116-
[#4751]: https://github.com/ElementsProject/lightning/pull/4751
107+
[#4567]: https://github.com/ElementsProject/lightning/pull/4567
108+
[#4804]: https://github.com/ElementsProject/lightning/pull/4804
109+
[#4742]: https://github.com/ElementsProject/lightning/pull/4742
110+
[#4805]: https://github.com/ElementsProject/lightning/pull/4805
111+
[#4750]: https://github.com/ElementsProject/lightning/pull/4750
112+
[#4595]: https://github.com/ElementsProject/lightning/pull/4595
113+
[#4567]: https://github.com/ElementsProject/lightning/pull/4567
117114
[#4763]: https://github.com/ElementsProject/lightning/pull/4763
118-
[#4674]: https://github.com/ElementsProject/lightning/pull/4674
115+
[#4668]: https://github.com/ElementsProject/lightning/pull/4668
116+
[#4806]: https://github.com/ElementsProject/lightning/pull/4806
117+
[#4731]: https://github.com/ElementsProject/lightning/pull/4731
118+
[#4582]: https://github.com/ElementsProject/lightning/pull/4582
119+
[#4771]: https://github.com/ElementsProject/lightning/pull/4771
120+
[#4751]: https://github.com/ElementsProject/lightning/pull/4751
121+
[#4599]: https://github.com/ElementsProject/lightning/pull/4599
119122
[#4804]: https://github.com/ElementsProject/lightning/pull/4804
120-
[#4867]: https://github.com/ElementsProject/lightning/pull/4867
121123
[#4800]: https://github.com/ElementsProject/lightning/pull/4800
122-
[#4595]: https://github.com/ElementsProject/lightning/pull/4595
123-
[#4742]: https://github.com/ElementsProject/lightning/pull/4742
124-
[0.10.2rc1]: https://github.com/ElementsProject/lightning/releases/tag/v0.10.2rc1
124+
[#4754]: https://github.com/ElementsProject/lightning/pull/4754
125+
[#4599]: https://github.com/ElementsProject/lightning/pull/4599
126+
[#4674]: https://github.com/ElementsProject/lightning/pull/4674
127+
[#4731]: https://github.com/ElementsProject/lightning/pull/4731
128+
[#4760]: https://github.com/ElementsProject/lightning/pull/4760
129+
[#4867]: https://github.com/ElementsProject/lightning/pull/4867
130+
[0.10.2rc2]: https://github.com/ElementsProject/lightning/releases/tag/v0.10.2rc2
125131

126132
## [0.10.1] - 2021-08-09: "eltoo: Ethereum Layer Too"
127133

0 commit comments

Comments
 (0)