mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-20 15:44:21 +01:00
CHANGELOG.md: neaten entries.
1. Unbalanced backticks and missing space in bookkeeper line. 2. Rephrase emergency backup to not overpromise. 3. "logging" and "lightnignd" are not correct title, use "Config". 4. JSON-RPC not JSONRPC in one place. 5. Don't include empty EXPERIMENTAL section (I checked, it really was empty!) Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
17
CHANGELOG.md
17
CHANGELOG.md
@@ -15,9 +15,9 @@ This release named by @adi2011.
|
||||
### Added
|
||||
|
||||
- *NEW*: `commando` a new builtin plugin to send/recv peer commands over the lightning network, using runes. ([#5370])
|
||||
- *NEW*: New built-in plugin`bookkeeper` w/ commands `bkpr-listaccountevents`, `bkpr-listbalances, bkpr-listincome, bkpr-channelsapy, bkpr-dumpincomecsv, bkpr-inspect ([#5071])
|
||||
- *NEW*: Static channel backup, to enable smooth fund recovery in case of complete data loss ([#5422])
|
||||
- logging: `log-level=debug:<partial-nodeid>` supported to get debug-level logs for everything about a peer. ([#5349])
|
||||
- *NEW*: New built-in plugin `bookkeeper` w/ commands `bkpr-listaccountevents`, `bkpr-listbalances`, `bkpr-listincome`, `bkpr-channelsapy`, `bkpr-dumpincomecsv`, `bkpr-inspect` ([#5071])
|
||||
- *NEW*: Emergency channel backup ("static backup") which allows us to seek fund recovery from honest peers in case of complete data loss ([#5422])
|
||||
- Config: `log-level=debug:<partial-nodeid>` supported to get debug-level logs for everything about a peer. ([#5349])
|
||||
- JSON-RPC: `connect` use the standard port derivation when the port is not specified. ([#5242])
|
||||
- JSON-RPC: `fetchinvoice` `changes` `amount_msat` ([#5306])
|
||||
- JSON-RPC: Added `mindepth` argument to specify the number of confirmations we require for `fundchannel` and `multifundchannel` ([#5275])
|
||||
@@ -46,7 +46,7 @@ This release named by @adi2011.
|
||||
- `connectd`: give busy peers more time to respond to pings. ([#5347])
|
||||
- `gossipd`: now accepts spam gossip, but squelches it for ([#5239])
|
||||
- gossip: gossip\_store updated to version 10. ([#5239])
|
||||
- logging: `log-file` option specified multiple times opens multiple log files. ([#5281])
|
||||
- Options: `log-file` option specified multiple times opens multiple log files. ([#5281])
|
||||
- JSON-RPC: `plugin start` now assumes relative path to default plugins dir if the path is not found in absolute context. i.e. lightning-cli plugin start my_plugin.py ([#5211])
|
||||
- JSON-RPC: `fundchannel`: now errors if you try to buy a liquidity ad but dont' have `experimental-dual-fund` enabled ([#5389])
|
||||
- JSON-RPC: "\_msat" fields can be raw numbers, not "123msat" strings (please handle both!) ([#5306])
|
||||
@@ -61,7 +61,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
|
||||
- JSON-RPC: `listtransactions` `msat` (use `amount_msat`) ([#5306])
|
||||
- JSON-RPC: checkmessage return an error when the pubkey is not specified and it is unknown in the network graph. ([#5252])
|
||||
- JSON-RPC: "_msat" fields as "123msat" strings (will be only numbers) ([#5306])
|
||||
- JSONRPC: `sendpay` `route` elements `msatoshi` (use `amount_msat`) ([#5306])
|
||||
- JSON-RPC: `sendpay` `route` elements `msatoshi` (use `amount_msat`) ([#5306])
|
||||
- JSON-RPC: `pay`, `decode`, `decodepay`, `getroute`, `listinvoices`, `listpays` and `listsendpays` `msatoshi` fields (use `amount_msat`). ([#5306])
|
||||
- JSON-RPC: `getinfo` `msatoshi_fees_collected` field (use `fees_collected_msat`). ([#5306])
|
||||
- JSON-RPC: `listpeers` `channels`: `msatoshi_to_us`, `msatoshi_to_us_min`, `msatoshi_to_us_max`, `msatoshi_total`, `dust_limit_satoshis`, `our_channel_reserve_satoshis`, `their_channel_reserve_satoshis`, `spendable_msatoshi`, `receivable_msatoshi`, `in_msatoshi_offered`, `in_msatoshi_fulfilled`, `out_msatoshi_offered`, `out_msatoshi_fulfilled`, `max_htlc_value_in_flight_msat` and `htlc_minimum_msat` (use `to_us_msat`, `min_to_us_msat`, `max_to_us_msat`, `total_msat`, `dust_limit_msat`, `our_reserve_msat`, `their_reserve_msat`, `spendable_msat`, `receivable_msat`, `in_offered_msat`, `in_fulfilled_msat`, `out_offered_msat`, `out_fulfilled_msat`, `max_total_htlc_in_msat` and `minimum_htlc_in_msat`). ([#5306])
|
||||
@@ -92,7 +92,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
|
||||
- JSON-RPC: removed `listpeers` `channels` deprecated fields (deprecated v0.10.1) ([#5264])
|
||||
- JSON-RPC: removed `listpeers` `channels` `closer` now omitted, rather than `null` (deprecated v0.10.1) ([#5264])
|
||||
- libhsmd: Removed the `libhsmd_python` wrapper as it was unused ([#5415])
|
||||
- lightningd: removed `enable-autotor-v2-mode` option (deprecated v0.10.1) ([#5264])
|
||||
- Options: removed `enable-autotor-v2-mode` option (deprecated v0.10.1) ([#5264])
|
||||
|
||||
|
||||
### Fixed
|
||||
@@ -113,11 +113,6 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
|
||||
- Upgrade docker base image from Debian buster to bullseye to work with glibc 2.29+ #5276 ([#5278])
|
||||
- docker: The docker images are now built with the rust plugins `cln-grpc` ([#5270])
|
||||
|
||||
|
||||
### EXPERIMENTAL
|
||||
|
||||
- None.
|
||||
|
||||
[#4988]: https://github.com/ElementsProject/lightning/pull/4988
|
||||
[#5062]: https://github.com/ElementsProject/lightning/pull/5062
|
||||
[#5071]: https://github.com/ElementsProject/lightning/pull/5071
|
||||
|
||||
Reference in New Issue
Block a user