Skip to content

Commit e02f76b

Browse files
committed
CHANGELOG: update for 25.12rc3
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent 377802c commit e02f76b

File tree

10 files changed

+16
-11
lines changed

10 files changed

+16
-11
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v25.12rc2
1+
v25.12rc3

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,11 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
5959

6060
### Fixed
6161

62+
- lightningd: we could miss tx spends which happened in the past blocks when we restarted. ([#8735])
6263
- lightningd: multiple significant speedups for large nodes, especially preventing "freezes" under exceptionally high load. ([#8677])
6364
 - `xpay` will not try to send too many HTLCs through unknown channels (6, as that is Phoenix's limit) unless it has no choice ([#8537])
6465
 - `xpay` fixed clash with simultaneous payments via routehints and blinded paths. ([#8685])
66+
- `xpay`: error messages no longer incorrectly label intermediate channels as "the invoice's route hint". ([#8741])
6567
- JSON-RPC: `signpsbt` no longer crashes if asked to sign an already-signed PSBT with taproot paths. ([#8546])
6668
 - Offers: require peers for blinded paths to have `option_onion_messages`, due to reports of LND not forwarding our blinded payments correctly. ([#8682])
6769
- Protocol: we now re-transmit unseen funding transactions on startup, for more robustness. ([#8546])
@@ -94,6 +96,9 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
9496
- Splicing: Fixed crash when we splice a channel which hasn't been announced yet. ([#8555])
9597
- JSON-RPC: `cancelrecurringinvoice` command to send new "don't expect any more invoice requests" msg to recurring bolt12 invoices. ([#8398])
9698

99+
100+
[#8741]: https://github.com/ElementsProject/lightning/pull/8741
101+
[#8735]: https://github.com/ElementsProject/lightning/pull/8735
97102
[#8702]: https://github.com/ElementsProject/lightning/pull/8702
98103
[#8506]: https://github.com/ElementsProject/lightning/pull/8506
99104
[#8646]: https://github.com/ElementsProject/lightning/pull/8646

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .gossmapstats import GossmapStats
55
from .version import NodeVersion
66

7-
__version__ = "v25.12rc2"
7+
__version__ = "v25.12rc3"
88

99
__all__ = [
1010
"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
[project]
22
name = "pyln-client"
3-
version = "v25.12rc2"
3+
version = "v25.12rc3"
44
description = "Client library and plugin library for Core Lightning"
55
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
66
license = { text = "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__ = "v25.12rc2"
7+
__version__ = "v25.12rc3"
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
[project]
22
name = "pyln-proto"
3-
version = "v25.12rc2"
3+
version = "v25.12rc3"
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 = [
66
{name = "Christian Decker", email = "decker.christian@gmail.com"}

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__ = "v25.12rc2"
1+
__version__ = "v25.12rc3"
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
[project]
22
name = "pyln-testing"
3-
version = "v25.12rc2"
3+
version = "v25.12rc3"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
66
license = { text = "BSD-MIT" }

tools/reckless

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ from urllib.error import HTTPError
2121
import venv
2222

2323

24-
__VERSION__ = 'v25.12rc2'
24+
__VERSION__ = 'v25.12rc3'
2525

2626
logging.basicConfig(
2727
level=logging.INFO,

uv.lock

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

0 commit comments

Comments
 (0)