Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
25.09
25.09.1
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,44 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [25.09.1] - 2025-10-15: "Hot Wallet Guardian II"

Several important fixes, please upgrade!

### Added

- added verification of GPG keys for the bitcoin and litecoin tarballs. ([#8429])

### Changed

- lightningd: we defer deletion of old htlcs on channel close, to avoid pausing for a long time (we clean them on startup) ([#8563])
- 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])
- Dockerfile: improve build time and reduce image size ([#8429])

### Fixed

- JSON-RPC: `listchainmoves` could contain bogus duplicate entries after 25.09 bookkeeper migration. ([#8574])
- bookkeeper: failed reload of rebalances on restart. ([#8562])
- fixed compilation on all target architectures; each had their own bugs (poetry, missing packages...). ([#8429])
- fixed cargo cross compilation. it was mistakenly using QEMU before. ([#8429])
- fixed CPU compatibility bug described in issue 8456 ([#8429])
- lightningd: potential crash when we receive a malformed onion complain from our first peer when using sendonion / injectpaymentonion. ([#8597])
- db: migration from v25.09 on a reasonable size account database could take almost infinite time. ([#8587])
- pyln-testing: restore compatibility with pre-25.09 CLN versions. ([#8539])
- build: we now build on MacOS without errors on the latest Command Line Tools (macOS 15 SDK). ([#8599])
- build: fix build with -O2 on 32 bit arm (armhf). ([#8599])

[#8563]: https://github.com/ElementsProject/lightning/pull/8563
[#8562]: https://github.com/ElementsProject/lightning/pull/8562
[#8574]: https://github.com/ElementsProject/lightning/pull/8574
[#8429]: https://github.com/ElementsProject/lightning/pull/8429
[#8566]: https://github.com/ElementsProject/lightning/pull/8566
[#8587]: https://github.com/ElementsProject/lightning/pull/8587
[#8597]: https://github.com/ElementsProject/lightning/pull/8597
[#8539]: https://github.com/ElementsProject/lightning/pull/8539
[#8599]: https://github.com/ElementsProject/lightning/pull/8599
[25.09.1]: https://github.com/ElementsProject/lightning/releases/tag/v25.09.1

## [25.09] - 2025-09-01: "Hot Wallet Guardian"

This release named by @king-11.
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-client/pyln/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .gossmapstats import GossmapStats
from .version import NodeVersion

__version__ = "25.09"
__version__ = "25.09.1"

__all__ = [
"LightningRpc",
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-client/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyln-client"
version = "25.09"
version = "25.09.1"
description = "Client library and plugin library for Core Lightning"
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
license = { text = "BSD-MIT" }
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-proto/pyln/proto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
from .wire import LightningConnection, LightningServerSocket

__version__ = "25.09"
__version__ = "25.09.1"

__all__ = [
"Invoice",
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-proto/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyln-proto"
version = "25.09"
version = "25.09.1"
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!)."
authors = [
{name = "Christian Decker", email = "decker.christian@gmail.com"}
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-testing/pyln/testing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "25.09"
__version__ = "25.09.1"

__all__ = [
"__version__",
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-testing/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyln-testing"
version = "25.09"
version = "25.09.1"
description = "Test your Core Lightning integration, plugins or whatever you want"
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
license = { text = "BSD-MIT" }
Expand Down
2 changes: 1 addition & 1 deletion tools/reckless
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from urllib.error import HTTPError
import venv


__VERSION__ = '25.09'
__VERSION__ = '25.09.1'

logging.basicConfig(
level=logging.INFO,
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading