You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 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])
Copy file name to clipboardExpand all lines: contrib/pyln-proto/pyproject.toml
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[tool.poetry]
2
2
name = "pyln-proto"
3
-
version = "23.08"
3
+
version = "23.11"
4
4
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!)."
0 commit comments