Skip to content

Commit

Permalink
meta: Update changelog for 24.08rc2
Browse files Browse the repository at this point in the history
Release candidate 2 for v24.08
  • Loading branch information
ShahanaFarooqui committed Aug 16, 2024
1 parent 9a6325c commit 52f9678
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 15 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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/).


## [24.08rc1] - 2024-08-12: "TO BE ADDED"
## [24.08rc2] - 2024-08-15: "TO BE ADDED"

This release named by @Lagrang3.

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

- protocol: we can now open unannounced channels with LND nodes again. ([#7564])
- plugins: `sql` crash on querying `listpeerchannels` during channel establishment. ([#7578])
- config: whitespace at the end of (most) options is now ignored, not complained about. ([#7251])
- connectd: now should use far less CPU on large nodes. ([#7365])
- lightningd: occasionally we could miss transaction outputs (not telling gossipd, or even onchaind) ([#7567])
Expand All @@ -89,10 +90,13 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
- 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])
- renepay: prune the network by disabling channels we don't like, eg. very low max_htlc. ([#7403])
- renepay: fixed: un-reserve routes that have completed or failed ([#7357])
- renepay: Add a dev parameter representing a constant probability of availability for all channels in the network. ([#7540])
- renepay: add cli option "exclude" to manually disable channels and nodes. ([#7403])



[#7540]: https://github.com/ElementsProject/lightning/pull/7540
[#7578]: https://github.com/ElementsProject/lightning/pull/7578
[#7447]: https://github.com/ElementsProject/lightning/pull/7447
[#7420]: https://github.com/ElementsProject/lightning/pull/7420
[#7418]: https://github.com/ElementsProject/lightning/pull/7418
Expand Down Expand Up @@ -129,7 +133,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
[#7533]: https://github.com/ElementsProject/lightning/pull/7533
[#7567]: https://github.com/ElementsProject/lightning/pull/7567
[#7298]: https://github.com/ElementsProject/lightning/pull/7298
[24.08rc1]: https://github.com/ElementsProject/lightning/releases/tag/v24.08rc1
[24.08rc2]: https://github.com/ElementsProject/lightning/releases/tag/v24.08rc2



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 @@ -3,7 +3,7 @@
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
from .gossmapstats import GossmapStats

__version__ = "24.08rc1"
__version__ = "24.08rc2"

__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 @@
[tool.poetry]
name = "pyln-client"
version = "24.08rc1"
version = "24.08rc2"
description = "Client library and plugin library for Core Lightning"
authors = ["Christian Decker <[email protected]>"]
license = "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__ = "24.08rc1"
__version__ = "24.08rc2"

__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 @@
[tool.poetry]
name = "pyln-proto"
version = "24.08rc1"
version = "24.08rc2"
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 = ["Christian Decker <[email protected]>"]
license = "BSD-MIT"
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__ = "24.08rc1"
__version__ = "24.08rc2"

__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 @@
[tool.poetry]
name = "pyln-testing"
version = "24.08rc1"
version = "24.08rc2"
description = "Test your Core Lightning integration, plugins or whatever you want"
authors = ["Christian Decker <[email protected]>"]
license = "BSD-MIT"
Expand Down
2 changes: 1 addition & 1 deletion plugins/clnrest/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "clnrest"
version = "24.08rc1"
version = "24.08rc2"
description = "Transforms RPC calls into REST APIs"
authors = ["ShahanaFarooqui <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion plugins/wss-proxy/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wss-proxy"
version = "24.08rc1"
version = "24.08rc2"
description = "Web secure socket proxy"
authors = ["ShahanaFarooqui <[email protected]>"]

Expand Down
10 changes: 5 additions & 5 deletions poetry.lock

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

0 comments on commit 52f9678

Please sign in to comment.