Skip to content

Commit 82f4ad6

Browse files
release: Update the changelog for point release v24.08.2
Changelog-None.
1 parent d0da54d commit 82f4ad6

File tree

10 files changed

+44
-16
lines changed

10 files changed

+44
-16
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,34 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66

7+
## [24.08.2] - 2024-10-18: "Steel Backed-up Channels"
8+
9+
This point release addresses few crash fixes and includes an enhancement to remember and update channel hints for payments.
10+
11+
### Changed
12+
13+
- pay: Now remembers and updates channel hints across payments ([#7494])
14+
- pay: Discarding an overly long or expensive route does not blacklist channels anymore. ([#7494])
15+
- grpc: Channel type `anchors/even` was added to the grpc bindings. ([#7628])
16+
17+
### Fixed
18+
- gossipd: crash errors with large gossip_store (>4MB) growth on longer-running nodes. ([#7729])
19+
- connectd: crash on erroneous timeout. ([#7736])
20+
- Protocol: we could get confused on restart and not re-transmit our own channel_updates. ([#7737])
21+
- rpc: `listpeerchannels` (and thus, pay) sped up on very large nodes. ([#7679])
22+
- Improved pathfinding speed for large nodes. ([#7726])
23+
24+
25+
[#7494]: https://github.com/ElementsProject/lightning/pull/7494
26+
[#7628]: https://github.com/ElementsProject/lightning/pull/7628
27+
[#7679]: https://github.com/ElementsProject/lightning/pull/7679
28+
[#7726]: https://github.com/ElementsProject/lightning/pull/7726
29+
[#7729]: https://github.com/ElementsProject/lightning/pull/7729
30+
[#7736]: https://github.com/ElementsProject/lightning/pull/7736
31+
[#7737]: https://github.com/ElementsProject/lightning/pull/7737
32+
[24.08.2]: https://github.com/ElementsProject/lightning/releases/tag/v24.08.2
33+
34+
735
## [24.08.1] - 2024-09-16: "Steel Backed-up Channels"
836

937
This hotfix release fixes few crash issues and some other bugs.

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

+1-1
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.08.1"
6+
__version__ = "24.08.2"
77

88
__all__ = [
99
"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 = "24.08.1"
3+
version = "24.08.2"
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__ = "24.08.1"
7+
__version__ = "24.08.2"
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 = "24.08.1"
3+
version = "24.08.2"
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__ = "24.08.1"
1+
__version__ = "24.08.2"
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 = "24.08.1"
3+
version = "24.08.2"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = ["Christian Decker <[email protected]>"]
66
license = "BSD-MIT"

plugins/clnrest/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "clnrest"
3-
version = "24.08.1"
3+
version = "24.08.2"
44
description = "Transforms RPC calls into REST APIs"
55
authors = ["ShahanaFarooqui <[email protected]>"]
66

@@ -10,7 +10,7 @@ json5 = "^0.9.14"
1010
flask = "^2.3.3"
1111
flask-restx = "^1.1.0"
1212
gunicorn = "^21.2.0"
13-
pyln-client = "^24.2"
13+
pyln-client = "^24.8"
1414
flask-socketio = "^5.3.6"
1515
gevent = "^23.9.0.post1"
1616
gevent-websocket = "^0.10.1"

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 = "24.08.1"
3+
version = "24.08.2"
44
description = "Web secure socket proxy"
55
authors = ["ShahanaFarooqui <[email protected]>"]
66

poetry.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)