Skip to content

Commit 02ca226

Browse files
committed
CHANGELOG.md: Update for 23.11rc1
Update changelog, pyln versions, clnrest version and poetry.lock. Signed-off-by: Peter Neuroth <[email protected]>
1 parent b135ba2 commit 02ca226

File tree

9 files changed

+120
-11
lines changed

9 files changed

+120
-11
lines changed

CHANGELOG.md

+109
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,115 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6+
## [v23.11rc1] - 2023-11-02: "Bitcoin Orangepaper"
7+
8+
This release named by Shahana Farooqui
9+
10+
### Added
11+
12+
- JSON-RPC: `wait` now works for `forwards` infrastructure. ([#6753])
13+
- JSON-RPC: `wait` now works for `sendpays` infrastructure. ([#6753])
14+
- JSON-RPC: `check` now does much more checking on every command (not just basic parameter types). ([#6772])
15+
- `hsmtool`: new command `getemergencyrecover` to extract emergency.recover in bech32 format (clnemerge1...) ([#6773])
16+
- JSON-RPC: `datastoreusage`: returns the total bytes that are stored under a given key. ([#6442])
17+
- JSON-RPC: `decode` can now decode emergency.recover files (clnemerg1...) ([#6773])
18+
- Option: --commit-fee-offset to potentially reduce feerate update disagreements ([#6833])
19+
- Runes: `per=Nsec/min/hour/msec/usec/nsec` for general ratelimiting ([#6617])
20+
- JSON-RPC: `showrunes` new field `last_used` ([#6617])
21+
- JSON-RPC: `listforwards` new parameters `index`, `start` and `limit`. ([#6753])
22+
- JSON-RPC: `listforwards` fields `created_index` (old: `id`) and `updated_index`. ([#6753])
23+
- JSON-RPC: `listsendpays` new parameters `index`, `start` and `limit`. ([#6753])
24+
- JSON-RPC: `sendpay`, `listsendpays`, `delpay` new fields `created_index` (old: `id`) and `updated_index`. ([#6753])
25+
- JSON-RPC: `listinvoices` new field `paid_outpoint` if an invoice is paid onchain. ([#6421])
26+
- JSON-RPC: New `addpsbtoutput` command for creating a PSBT that can receive funds to the on-chain wallet. ([#6676])
27+
- Config: `invoices-onchain-fallback` to automatically add an onchain p2tr address to invoices, and allow that for payment. ([#6421])
28+
- JSON-RPC: `recover` command to force (unused) lightningd node to restart with `--recover` flag. ([#6772])
29+
- Config: `--recover` can take a 32-byte hex string, as well as codex32. ([#6772])
30+
- Config: `--developer` enables developer options and changes default to be "disable deprecated APIs". ([#6311])
31+
- Cln-RPC: Implement send_custom_notification to allow sending custom notifications to other plugins. ([#6135])
32+
- Plugins: plugins can now specify (unknown) even messages we should accept from peers. ([#6689])
33+
- New configurable Content-Security-Policy (CSP) header for clnrest ([#6686])
34+
- New configurable Cross-Origin-Resource-Sharing(CSP) header for clnrest ([#6686])
35+
- hsmd protocol: Added hsmd_check_outpoint and hsmd_lock_outpoint ([#6760])
36+
37+
38+
### Changed
39+
- JSON-RPC time fields now have full nanosecond precision (i.e. 9 decimals not 3): `listfowards` `received_time` `resolved_time` `listpays`/`listsendpays` `created_at`. ([#6617])
40+
- Config: `large-channels` is now the default, wumbology for all. ([#6783])
41+
- JSON-RPC `listpeerchannels`.`inflights` may sometimes not include `scratch_txid` (mandatory -> optional) ([#6824])
42+
- JSON-RPC: `openchannel_update` will now echo back a result if there's a matching inflight record for this open. ([#6824])
43+
- JSON-RPC: `openchannel_signed` will now remember the details of a signed PSBT even if the peer is disconnected. ([#6824])
44+
- cln-plugin: Suppress internal logging handler via `with_logging(false)` ([#6797])
45+
- JSON-RPC: `checkrune` `rate` restriction is slightly stricter (exact division of time like `per`) ([#6710])
46+
- Protocol: use CPFP on peer's commitment tx if we can't broadcast our own. ([#6752])
47+
- Plugins: upgraded clnrest to poetry project. ([#6651])
48+
- Protocol: dual-funding now follows the next-funding-id rules. ([#6824])
49+
- Protocol: we no longer disconnect every time we receive a warning message. ([#6668])
50+
- Protocol: `invoice` no longer explicitly encodes `c` if it's the default (18) ([#6668])
51+
52+
53+
### Deprecated
54+
55+
Note: You should always set `allow-deprecated-apis=false` to test for changes.
56+
57+
58+
59+
### Removed
60+
61+
- Build: `--enable-developer` arg to configure (and DEVELOPER variables): use `./configure --enable-debugbuild` and `developer` setting at runtime. ([#6311])
62+
- JSON-RPC: `dev-sendcustommsg` (use `sendcustommsg`, which was added in v0.10.1) ([#6311])
63+
64+
65+
### Fixed
66+
67+
- Protocol: Some peer disconnects due to update_fee disagreements are avoided. ([#6833])
68+
- Cln-Rest: websocket server notifications are available with restriction of `readonly` runes ([#6749])
69+
- Protocol: Issue splicing with pending / stuck HTLCs fixed. ([#6748])
70+
- Wallet: close change outputs show up immediately in `listfunds` so you can CPFP. ([#6734])
71+
- Restore any missing metadata that resource constrained signers stripped ([#6767])
72+
- JSON-RPC: fix `checkrune` when `method` parameter is the empty string. ([#6759])
73+
- JSON-RPC: `getroute` now documents that it ignores `fuzzpercent`. ([#6697])
74+
- Rune: use runes table `id` instead `runes_uniqueid` from `vars` because it returns incorrect unique id if rune/s migrated from datastore. ([#6715])
75+
- Added docs, testing, and some fixes related to splicing out, insufficent balance handling, and restarting during a splice. ([#6677])
76+
77+
78+
### EXPERIMENTAL
79+
80+
- Fixed anchor spending to be able to use more than one UTXO. ([#6780])
81+
- JSON-RPC: added new dual-funding state `DUALOPEND_OPEN_COMMITTED` ([#6628])
82+
83+
84+
[#6752]: https://github.com/ElementsProject/lightning/pull/6752
85+
[#6749]: https://github.com/ElementsProject/lightning/pull/6749
86+
[#6753]: https://github.com/ElementsProject/lightning/pull/6753
87+
[#6421]: https://github.com/ElementsProject/lightning/pull/6421
88+
[#6689]: https://github.com/ElementsProject/lightning/pull/6689
89+
[#6780]: https://github.com/ElementsProject/lightning/pull/6780
90+
[#6651]: https://github.com/ElementsProject/lightning/pull/6651
91+
[#6697]: https://github.com/ElementsProject/lightning/pull/6697
92+
[#6617]: https://github.com/ElementsProject/lightning/pull/6617
93+
[#6710]: https://github.com/ElementsProject/lightning/pull/6710
94+
[#6767]: https://github.com/ElementsProject/lightning/pull/6767
95+
[#6676]: https://github.com/ElementsProject/lightning/pull/6676
96+
[#6686]: https://github.com/ElementsProject/lightning/pull/6686
97+
[#6628]: https://github.com/ElementsProject/lightning/pull/6628
98+
[#6797]: https://github.com/ElementsProject/lightning/pull/6797
99+
[#6783]: https://github.com/ElementsProject/lightning/pull/6783
100+
[#6772]: https://github.com/ElementsProject/lightning/pull/6772
101+
[#6833]: https://github.com/ElementsProject/lightning/pull/6833
102+
[#6677]: https://github.com/ElementsProject/lightning/pull/6677
103+
[#6668]: https://github.com/ElementsProject/lightning/pull/6668
104+
[#6748]: https://github.com/ElementsProject/lightning/pull/6748
105+
[#6715]: https://github.com/ElementsProject/lightning/pull/6715
106+
[#6824]: https://github.com/ElementsProject/lightning/pull/6824
107+
[#6760]: https://github.com/ElementsProject/lightning/pull/6760
108+
[#6442]: https://github.com/ElementsProject/lightning/pull/6442
109+
[#6759]: https://github.com/ElementsProject/lightning/pull/6759
110+
[#6773]: https://github.com/ElementsProject/lightning/pull/6773
111+
[#6135]: https://github.com/ElementsProject/lightning/pull/6135
112+
[#6311]: https://github.com/ElementsProject/lightning/pull/6311
113+
[#6734]: https://github.com/ElementsProject/lightning/pull/6734
114+
6115

7116
## [23.08.1] - 2023-09-12: "Satoshi's Successor II"
8117

contrib/pyln-client/pyln/client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
44
from .gossmapstats import GossmapStats
55

6-
__version__ = "23.08"
6+
__version__ = "23.11"
77

88
__all__ = [
99
"LightningRpc",

contrib/pyln-client/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-client"
3-
version = "23.08"
3+
version = "23.11"
44
description = "Client library and plugin library for Core Lightning"
55
authors = ["Christian Decker <[email protected]>"]
66
license = "BSD-MIT"

contrib/pyln-proto/pyln/proto/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
55
from .wire import LightningConnection, LightningServerSocket
66

7-
__version__ = "23.08"
7+
__version__ = "23.11"
88

99
__all__ = [
1010
"Invoice",

contrib/pyln-proto/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-proto"
3-
version = "23.08"
3+
version = "23.11"
44
description = "This package implements some of the Lightning Network protocol in pure python. It is intended for protocol testing and some minor tooling only. It is not deemed secure enough to handle any amount of real funds (you have been warned!)."
55
authors = ["Christian Decker <[email protected]>"]
66
license = "BSD-MIT"

contrib/pyln-testing/pyln/testing/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "23.08"
1+
__version__ = "23.11"
22

33
__all__ = [
44
"__version__",

contrib/pyln-testing/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-testing"
3-
version = "23.08"
3+
version = "23.11"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = ["Christian Decker <[email protected]>"]
66
license = "BSD-MIT"

plugins/clnrest/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "clnrest"
3-
version = "23.08"
3+
version = "23.11"
44
description = "Transforms RPC calls into REST APIs"
55
authors = ["ShahanaFarooqui <[email protected]>"]
66

poetry.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)