Skip to content

Commit 52f9678

Browse files
meta: Update changelog for 24.08rc2
Release candidate 2 for v24.08
1 parent 9a6325c commit 52f9678

File tree

10 files changed

+19
-15
lines changed

10 files changed

+19
-15
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.08rc1] - 2024-08-12: "TO BE ADDED"
7+
## [24.08rc2] - 2024-08-15: "TO BE ADDED"
88

99
This release named by @Lagrang3.
1010

@@ -68,6 +68,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
6868
### Fixed
6969

7070
- protocol: we can now open unannounced channels with LND nodes again. ([#7564])
71+
- plugins: `sql` crash on querying `listpeerchannels` during channel establishment. ([#7578])
7172
- config: whitespace at the end of (most) options is now ignored, not complained about. ([#7251])
7273
- connectd: now should use far less CPU on large nodes. ([#7365])
7374
- lightningd: occasionally we could miss transaction outputs (not telling gossipd, or even onchaind) ([#7567])
@@ -89,10 +90,13 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
8990
- offers: fixed: fetchinvoice tries all blinded paths until one is usable, and handles case where we have to route more than one hop to reach the entry point. ([#7456])
9091
- renepay: prune the network by disabling channels we don't like, eg. very low max_htlc. ([#7403])
9192
- renepay: fixed: un-reserve routes that have completed or failed ([#7357])
93+
- renepay: Add a dev parameter representing a constant probability of availability for all channels in the network. ([#7540])
9294
- renepay: add cli option "exclude" to manually disable channels and nodes. ([#7403])
9395

9496

9597

98+
[#7540]: https://github.com/ElementsProject/lightning/pull/7540
99+
[#7578]: https://github.com/ElementsProject/lightning/pull/7578
96100
[#7447]: https://github.com/ElementsProject/lightning/pull/7447
97101
[#7420]: https://github.com/ElementsProject/lightning/pull/7420
98102
[#7418]: https://github.com/ElementsProject/lightning/pull/7418
@@ -129,7 +133,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
129133
[#7533]: https://github.com/ElementsProject/lightning/pull/7533
130134
[#7567]: https://github.com/ElementsProject/lightning/pull/7567
131135
[#7298]: https://github.com/ElementsProject/lightning/pull/7298
132-
[24.08rc1]: https://github.com/ElementsProject/lightning/releases/tag/v24.08rc1
136+
[24.08rc2]: https://github.com/ElementsProject/lightning/releases/tag/v24.08rc2
133137

134138

135139

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.08rc1"
6+
__version__ = "24.08rc2"
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.08rc1"
3+
version = "24.08rc2"
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.08rc1"
7+
__version__ = "24.08rc2"
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.08rc1"
3+
version = "24.08rc2"
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.08rc1"
1+
__version__ = "24.08rc2"
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.08rc1"
3+
version = "24.08rc2"
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

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

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.08rc1"
3+
version = "24.08rc2"
44
description = "Web secure socket proxy"
55
authors = ["ShahanaFarooqui <[email protected]>"]
66

poetry.lock

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

0 commit comments

Comments
 (0)