Skip to content

Commit 2ad1086

Browse files
madelinevibesShahanaFarooqui
authored andcommitted
Meta: Adding changelog and version update for 25.09.1
1 parent 1a69907 commit 2ad1086

File tree

10 files changed

+49
-11
lines changed

10 files changed

+49
-11
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.09
1+
25.09.1

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,44 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6+
## [25.09.1] - 2025-10-15: "Hot Wallet Guardian II"
7+
8+
Several important fixes, please upgrade!
9+
10+
### Added
11+
12+
- added verification of GPG keys for the bitcoin and litecoin tarballs. ([#8429])
13+
14+
### Changed
15+
16+
- lightningd: we defer deletion of old htlcs on channel close, to avoid pausing for a long time (we clean them on startup) ([#8563])
17+
- gossipd: add gossip_store recovery for filesystems which do not synchronize read and write (e.g. ZFS on Linux), by disabling mmap reads and rewriting the last records. ([#8566])
18+
- Dockerfile: improve build time and reduce image size ([#8429])
19+
20+
### Fixed
21+
22+
- JSON-RPC: `listchainmoves` could contain bogus duplicate entries after 25.09 bookkeeper migration. ([#8574])
23+
- bookkeeper: failed reload of rebalances on restart. ([#8562])
24+
- fixed compilation on all target architectures; each had their own bugs (poetry, missing packages...). ([#8429])
25+
- fixed cargo cross compilation. it was mistakenly using QEMU before. ([#8429])
26+
- fixed CPU compatibility bug described in issue 8456 ([#8429])
27+
- lightningd: potential crash when we receive a malformed onion complain from our first peer when using sendonion / injectpaymentonion. ([#8597])
28+
- db: migration from v25.09 on a reasonable size account database could take almost infinite time. ([#8587])
29+
- pyln-testing: restore compatibility with pre-25.09 CLN versions. ([#8539])
30+
- build: we now build on MacOS without errors on the latest Command Line Tools (macOS 15 SDK). ([#8599])
31+
- build: fix build with -O2 on 32 bit arm (armhf). ([#8599])
32+
33+
[#8563]: https://github.com/ElementsProject/lightning/pull/8563
34+
[#8562]: https://github.com/ElementsProject/lightning/pull/8562
35+
[#8574]: https://github.com/ElementsProject/lightning/pull/8574
36+
[#8429]: https://github.com/ElementsProject/lightning/pull/8429
37+
[#8566]: https://github.com/ElementsProject/lightning/pull/8566
38+
[#8587]: https://github.com/ElementsProject/lightning/pull/8587
39+
[#8597]: https://github.com/ElementsProject/lightning/pull/8597
40+
[#8539]: https://github.com/ElementsProject/lightning/pull/8539
41+
[#8599]: https://github.com/ElementsProject/lightning/pull/8599
42+
[25.09.1]: https://github.com/ElementsProject/lightning/releases/tag/v25.09.1
43+
644
## [25.09] - 2025-09-01: "Hot Wallet Guardian"
745

846
This release named by @king-11.

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__ = "25.09"
7+
__version__ = "25.09.1"
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 = "25.09"
3+
version = "25.09.1"
44
description = "Client library and plugin library for Core Lightning"
55
authors = [{ name = "Christian Decker", email = "[email protected]" }]
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__ = "25.09"
7+
__version__ = "25.09.1"
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 = "25.09"
3+
version = "25.09.1"
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 = "[email protected]"}

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__ = "25.09"
1+
__version__ = "25.09.1"
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 = "25.09"
3+
version = "25.09.1"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = [{ name = "Christian Decker", email = "[email protected]" }]
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__ = '25.09'
24+
__VERSION__ = '25.09.1'
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)