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
- core: notify plugins when a log line is emitted. ([#6990])
24
36
- Config: new log level `trace` where we moved the very noisiest `debug` logs. ([#7280])
25
37
- Added a new configuration for clnrest plugin to change the default Swagger UI path from `/` to custom url. ([#7256])
@@ -40,6 +52,7 @@ This release named by @USERNAME.
40
52
- Documentation: Merged `example_json_request` and `example_json_response` in a single `json_examples` array to maintain the request and its corresponding response together. ([#7181])
41
53
- Documentation: great documentation rewrite, all reference pages now generated from the fully-tested JSON schemas and include examples. ([#6995])
42
54
- JSON-RPC: `stop` and `recover` now return a JSON object (not a raw string!) like every other command does. ([#6995])
55
+
- pay: Payments are more robust for nodes that are currently syncing. ([#7190])
43
56
44
57
45
58
### Deprecated
@@ -74,6 +87,11 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
74
87
- Fixed crash in pay plugin caused by parsing uncommitted dual open channels ([#7235])
75
88
- Plugins: `clnrest` now correctly self-disables if Python not present at all. ([#7211])
76
89
- lightningd: slow memory leak when using plugin hooks fixed (introduced in v23.11) ([#7192])
90
+
- Plugins: the recovery plugin is less noisy. ([#7116])
91
+
- Plugins: RenePay: Handles htlc_max correctly for local channels. ([#7159])
92
+
- offers: Fix blinded paths in invoices - use node_id and set final node's CLTV delta. ([#7311])
93
+
- Plugins: The recover plugin now avoids trying to recover closed channels. ([#7216])
94
+
- Gossmap: Avoid adding redundant channel announcements to the gossip_store. ([#7330])
77
95
78
96
79
97
### EXPERIMENTAL
@@ -83,6 +101,22 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
Copy file name to clipboardExpand all lines: contrib/pyln-proto/pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
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 = "24.05rc1"
3
+
version = "24.05rc2"
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