Skip to content

Commit cc07f9a

Browse files
committed
v24.11rc4: hopefully the final Release Candidate
Signed-off-by: Rusty Russell <[email protected]>
1 parent 1adbd70 commit cc07f9a

File tree

13 files changed

+22
-18
lines changed

13 files changed

+22
-18
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.11rc1
1+
24.11rc4

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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-
## [24.11rc3] - 2024-12-02: "The lightning-dev Mailing List"
6+
## [24.11rc4] - 2024-12-02: "The lightning-dev Mailing List"
77

88
This release named by Dusty Daemon.
99

@@ -15,6 +15,7 @@ This release named by Dusty Daemon.
1515
- JSON-RPC: `fetchinvoice` allows setting invreq_metadata via `payer_metadata` parameter. ([#7786])
1616
- hsmtool: generatehsm can run non-interactive, taking options on the cmdline. ([#7102])
1717
- Plugins: `pay` now has tracing support for various payment steps. ([#7803])
18+
- Plugins: new notification `onionmessage_forward_fail`.
1819
- JSON-RPC: `exposesecret` command for encouraging hsm_secret backups. ([#7647])
1920
- JSON-RPC: `listpays` has `index`, `start` and `limit` parameters for listing control. ([#7385])
2021
- Plugins: bookkeeper has a new RPC `bkpr-editdescriptionbypaymentid` which will update the description for any event with matching payment_id ([#7604])
@@ -45,6 +46,7 @@ This release named by Dusty Daemon.
4546
- Startup: reconnecting to peers at startup should be significantly faster (dependent on machine speed). ([#7630])
4647
- Protocol: we remember the last successful address we connected to for important peers. ([#7630])
4748
- Protocol: Gossipd requests a full sync from a random peer every hour. ([#7768])
49+
- JSON-RPC: `injectonionmessage` API simplified and documented.
4850
- JSON-RPC: Improved error messaging for splice commands. ([#7719])
4951
- JSON-RPC: built-in plugins can now be stopped using "plugin stop". ([#7799])
5052
- Wallet: Taproot addresses are used for unilateral-close change addresses. ([#7800])
@@ -99,6 +101,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
99101
- lightningd: no longer crash if a plugin dies during lightningd startup. ([#7673])
100102
- cln-plugin: Change default log level filter back to INFO ([#7668])
101103
- Logging: removed bogus "**BROKEN** plugin-topology: DEPRECATED API USED: listchannels.include_private" message. ([#7663])
104+
- Logging: When DEBUG printing first tx depth, we printed the wrong value ([#7910])
102105
- Documentation: schemas: Make description in `Wait(any)invoiceResponse` optional to handle BOLT12 ([#7667])
103106
- Fixed intermittant bug where hsmd (particularly, but also lightningd) could use 100% CPU. ([#7661])
104107
- Docker image created via github actions correctly reads the tag available on the HEAD. ([#7625])
@@ -176,7 +179,8 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
176179
[#7890]: https://github.com/ElementsProject/lightning/pull/7890
177180
[#7797]: https://github.com/ElementsProject/lightning/pull/7797
178181
[#7892]: https://github.com/ElementsProject/lightning/pull/7892
179-
[24.11rc3]: https://github.com/ElementsProject/lightning/releases/tag/v24.11rc3
182+
[#7910]: https://github.com/ElementsProject/lightning/pull/7910
183+
[24.11rc4]: https://github.com/ElementsProject/lightning/releases/tag/v24.11rc4
180184

181185

182186
## [24.08.2] - 2024-10-18: "Steel Backed-up Channels"

contrib/msggen/msggen/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15032,7 +15032,7 @@
1503215032
"port": 19735
1503315033
}
1503415034
],
15035-
"version": "v24.11rc1",
15035+
"version": "v24.11rc4",
1503615036
"blockheight": 110,
1503715037
"network": "regtest",
1503815038
"fees_collected_msat": 0,

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

Lines changed: 1 addition & 1 deletion
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__ = "24.11rc1"
6+
__version__ = "24.11rc4"
77

88
__all__ = [
99
"LightningRpc",

contrib/pyln-client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-client"
3-
version = "24.11rc1"
3+
version = "24.11rc4"
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

Lines changed: 1 addition & 1 deletion
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__ = "24.11rc1"
7+
__version__ = "24.11rc4"
88

99
__all__ = [
1010
"Invoice",

contrib/pyln-proto/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-proto"
3-
version = "24.11rc1"
3+
version = "24.11rc4"
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "24.11rc1"
1+
__version__ = "24.11rc4"
22

33
__all__ = [
44
"__version__",

contrib/pyln-testing/pyproject.toml

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

doc/schemas/lightning-getinfo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
"port": 19735
411411
}
412412
],
413-
"version": "v24.11rc1",
413+
"version": "v24.11rc4",
414414
"blockheight": 110,
415415
"network": "regtest",
416416
"fees_collected_msat": 0,

plugins/clnrest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "clnrest"
3-
version = "24.11rc1"
3+
version = "24.11rc4"
44
description = "Transforms RPC calls into REST APIs"
55
authors = ["ShahanaFarooqui <[email protected]>"]
66

plugins/wss-proxy/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wss-proxy"
3-
version = "24.11rc1"
3+
version = "24.11rc4"
44
description = "Web secure socket proxy"
55
authors = ["ShahanaFarooqui <[email protected]>"]
66

poetry.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)