Skip to content

Commit e6398e5

Browse files
committed
CHANGELOG.md: update for 24.11.1 release, update other versions.
Signed-off-by: Rusty Russell <[email protected]>
1 parent 145fdf2 commit e6398e5

File tree

13 files changed

+45
-16
lines changed

13 files changed

+45
-16
lines changed

.version

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

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,35 @@ 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.11.1] - 2024-12-16: "The lightning-dev Mailing List II"
7+
8+
Minor fixes, particularly for xpay users.
9+
10+
### Changed
11+
12+
- JSON-RPC: `xpay` now gives the same JSON success return as documented by `pay` when `xpay-handle-pay` is set. ([#7938], [#7952])
13+
- JSON-RPC: With `xpay-handle-pay` set, xpay will now be used even if `pay` uses maxfeeprecent or exemptfee parameters (e.g. Zeus) ([#7942])
14+
- JSON-RPC: `xpay` now populates more fields, so `listsendpays` and `listpays` show `destination` and `amount_msat` fields for xpay payments. ([#7941])
15+
- Logging: we no longer suppress DEBUG messages from subdaemons. ([#7935])
16+
17+
### Fixed
18+
19+
- JSON-RPC: xpay now works through unannounced channels. ([#7937])
20+
- lightning-cli: fix "malformed response" bug ([#7924])
21+
- Plugins: `xpay` no longer logs "Got command" at info level. ([#7933])
22+
- Build: Alpine/OpenBSD compilation fix ([#7940])
23+
24+
[#7942]: https://github.com/ElementsProject/lightning/pull/7942
25+
[#7933]: https://github.com/ElementsProject/lightning/pull/7933
26+
[#7941]: https://github.com/ElementsProject/lightning/pull/7941
27+
[#7937]: https://github.com/ElementsProject/lightning/pull/7937
28+
[#7924]: https://github.com/ElementsProject/lightning/pull/7924
29+
[#7935]: https://github.com/ElementsProject/lightning/pull/7935
30+
[#7938]: https://github.com/ElementsProject/lightning/pull/7938
31+
[#7940]: https://github.com/ElementsProject/lightning/pull/7940
32+
[#7952]: https://github.com/ElementsProject/lightning/pull/7952
33+
[24.11.1]: https://github.com/ElementsProject/lightning/releases/tag/v24.11.1
34+
635
## [24.11] - 2024-12-09: "The lightning-dev Mailing List"
736

837
This release named by Dusty Daemon.

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.11",
15035+
"version": "v24.11.1",
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.11"
6+
__version__ = "24.11.1"
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.11"
3+
version = "24.11.1"
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.11"
7+
__version__ = "24.11.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
[tool.poetry]
22
name = "pyln-proto"
3-
version = "24.11"
3+
version = "24.11.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 = ["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.11"
1+
__version__ = "24.11.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
[tool.poetry]
22
name = "pyln-testing"
3-
version = "24.11"
3+
version = "24.11.1"
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.11",
413+
"version": "v24.11.1",
414414
"blockheight": 110,
415415
"network": "regtest",
416416
"fees_collected_msat": 0,

0 commit comments

Comments
 (0)