Skip to content

Commit 427c4c5

Browse files
meta: update changelog for 25.02
Changelog-None
1 parent ac596c8 commit 427c4c5

File tree

12 files changed

+22
-16
lines changed

12 files changed

+22
-16
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.02rc3
1+
25.02

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ 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-
## [25.02rc3] - 2025-02-27:
6+
## [25.02] - 2025-03-04: "Onion Packet Filler Accreditation"
7+
8+
This release named by @s373nZ.
79

810
### Added
911

@@ -62,6 +64,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
6264
- gossmap: Don't crash on ZFS while reading `gossip_store`. ([#8053])
6365
- lightningd: Tell plugins our bolt12 features (so our bolt12 invoices explicitly allow MPP). ([#8059])
6466
- lightningd: Allow more time for plugin startup so slow nodes don't time out on startup. ([#8060])
67+
- lightningd: Fixed onchaind crash when seeing unrelated txs (usually when catching up with old closes.) ([#8137])
6568
- `xpay`: Corrected the CLTV values in blinded paths which sometimes caused spurious failures. ([#8121])
6669
- Protocol: We now renegotiate an interrupted close, even if we don't need it, instead of sending an error. ([#8116])
6770
- bcli: `getblockfrompeer` no longer requests the block from the first peer only. ([#8069])
@@ -72,6 +75,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
7275
- Offers: `decode` for bolt12 invoices "features" field renamed to "invoice_features" (as documentation said.) ([#8059])
7376
- JSON-RPC: `xpay` will refuse to make a 0msat payment (0msat invoice, partial payment, or manually-set on amountless invoice). ([#8024])
7477
- JSON-RPC: `getroutes` will refuse, not crash, if asked to find a route for 0msat. ([#8024])
78+
- Blinded paths: offline peers no longer selected. ([#8138])
7579
- build: Fixed linking against libsodium on macOS. ([#7908])
7680
- Fixes Postgres driver availability for arm64 and arm32 Docker images. ([#7921])
7781
- xpay: xpay no longer logs "Got command" at info level. ([#7933])
@@ -84,6 +88,8 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
8488
- onchaind: Correctly collect our own (delayed) funds if we have a unilateral close when we are still offering a lease. ([#8111])
8589

8690

91+
[#8138]: https://github.com/ElementsProject/lightning/pull/8138
92+
[#8137]: https://github.com/ElementsProject/lightning/pull/8137
8793
[#8111]: https://github.com/ElementsProject/lightning/pull/8111
8894
[#8121]: https://github.com/ElementsProject/lightning/pull/8121
8995
[#8116]: https://github.com/ElementsProject/lightning/pull/8116
@@ -128,7 +134,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
128134
[#7942]: https://github.com/ElementsProject/lightning/pull/7942
129135
[#7772]: https://github.com/ElementsProject/lightning/pull/7772
130136
[#8060]: https://github.com/ElementsProject/lightning/pull/8060
131-
[25.02rc3]: https://github.com/ElementsProject/lightning/releases/tag/v25.02rc3
137+
[25.02]: https://github.com/ElementsProject/lightning/releases/tag/v25.02
132138

133139

134140
## [24.11.1] - 2024-12-16: "The lightning-dev Mailing List II"

contrib/msggen/msggen/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15376,7 +15376,7 @@
1537615376
"port": 19735
1537715377
}
1537815378
],
15379-
"version": "v25.02rc3",
15379+
"version": "v25.02",
1538015380
"blockheight": 110,
1538115381
"network": "regtest",
1538215382
"fees_collected_msat": 0,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .gossmapstats import GossmapStats
55
from .version import NodeVersion, VersionSpec
66

7-
__version__ = "25.02rc3"
7+
__version__ = "25.02"
88

99
__all__ = [
1010
"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 = "25.02rc3"
3+
version = "25.02"
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__ = "25.02rc3"
7+
__version__ = "25.02"
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 = "25.02rc3"
3+
version = "25.02"
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__ = "25.02rc3"
1+
__version__ = "25.02"
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 = "25.02rc3"
3+
version = "25.02"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
"port": 19735
411411
}
412412
],
413-
"version": "v25.02rc3",
413+
"version": "v25.02",
414414
"blockheight": 110,
415415
"network": "regtest",
416416
"fees_collected_msat": 0,

plugins/wss-proxy/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wss-proxy"
3-
version = "25.02rc3"
3+
version = "25.02"
44
description = "Web secure socket proxy"
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)