mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
release: Update the changelog for point release v24.08.2
Changelog-None.
This commit is contained in:
parent
2171583d47
commit
4f0f84661e
28
CHANGELOG.md
28
CHANGELOG.md
@ -4,6 +4,34 @@ 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/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
|
||||||
|
## [24.08.2] - 2024-10-18: "Steel Backed-up Channels"
|
||||||
|
|
||||||
|
This point release addresses few crash fixes and includes an enhancement to remember and update channel hints for payments.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- pay: Now remembers and updates channel hints across payments ([#7494])
|
||||||
|
- pay: Discarding an overly long or expensive route does not blacklist channels anymore. ([#7494])
|
||||||
|
- grpc: Channel type `anchors/even` was added to the grpc bindings. ([#7628])
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- gossipd: crash errors with large gossip_store (>4MB) growth on longer-running nodes. ([#7729])
|
||||||
|
- connectd: crash on erroneous timeout. ([#7736])
|
||||||
|
- Protocol: we could get confused on restart and not re-transmit our own channel_updates. ([#7737])
|
||||||
|
- rpc: `listpeerchannels` (and thus, pay) sped up on very large nodes. ([#7679])
|
||||||
|
- Improved pathfinding speed for large nodes. ([#7726])
|
||||||
|
|
||||||
|
|
||||||
|
[#7494]: https://github.com/ElementsProject/lightning/pull/7494
|
||||||
|
[#7628]: https://github.com/ElementsProject/lightning/pull/7628
|
||||||
|
[#7679]: https://github.com/ElementsProject/lightning/pull/7679
|
||||||
|
[#7726]: https://github.com/ElementsProject/lightning/pull/7726
|
||||||
|
[#7729]: https://github.com/ElementsProject/lightning/pull/7729
|
||||||
|
[#7736]: https://github.com/ElementsProject/lightning/pull/7736
|
||||||
|
[#7737]: https://github.com/ElementsProject/lightning/pull/7737
|
||||||
|
[24.08.2]: https://github.com/ElementsProject/lightning/releases/tag/v24.08.2
|
||||||
|
|
||||||
|
|
||||||
## [24.08.1] - 2024-09-16: "Steel Backed-up Channels"
|
## [24.08.1] - 2024-09-16: "Steel Backed-up Channels"
|
||||||
|
|
||||||
This hotfix release fixes few crash issues and some other bugs.
|
This hotfix release fixes few crash issues and some other bugs.
|
||||||
|
@ -3,7 +3,7 @@ from .plugin import Plugin, monkey_patch, RpcException
|
|||||||
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
|
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
|
||||||
from .gossmapstats import GossmapStats
|
from .gossmapstats import GossmapStats
|
||||||
|
|
||||||
__version__ = "24.08.1"
|
__version__ = "24.08.2"
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"LightningRpc",
|
"LightningRpc",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "pyln-client"
|
name = "pyln-client"
|
||||||
version = "24.08.1"
|
version = "24.08.2"
|
||||||
description = "Client library and plugin library for Core Lightning"
|
description = "Client library and plugin library for Core Lightning"
|
||||||
authors = ["Christian Decker <decker.christian@gmail.com>"]
|
authors = ["Christian Decker <decker.christian@gmail.com>"]
|
||||||
license = "BSD-MIT"
|
license = "BSD-MIT"
|
||||||
|
@ -4,7 +4,7 @@ from .invoice import Invoice
|
|||||||
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
|
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
|
||||||
from .wire import LightningConnection, LightningServerSocket
|
from .wire import LightningConnection, LightningServerSocket
|
||||||
|
|
||||||
__version__ = "24.08"
|
__version__ = "24.08.2"
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Invoice",
|
"Invoice",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "pyln-proto"
|
name = "pyln-proto"
|
||||||
version = "24.08"
|
version = "24.08.2"
|
||||||
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!)."
|
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 <decker.christian@gmail.com>"]
|
authors = ["Christian Decker <decker.christian@gmail.com>"]
|
||||||
license = "BSD-MIT"
|
license = "BSD-MIT"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
__version__ = "24.08"
|
__version__ = "24.08.2"
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"__version__",
|
"__version__",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "pyln-testing"
|
name = "pyln-testing"
|
||||||
version = "24.08"
|
version = "24.08.2"
|
||||||
description = "Test your Core Lightning integration, plugins or whatever you want"
|
description = "Test your Core Lightning integration, plugins or whatever you want"
|
||||||
authors = ["Christian Decker <decker.christian@gmail.com>"]
|
authors = ["Christian Decker <decker.christian@gmail.com>"]
|
||||||
license = "BSD-MIT"
|
license = "BSD-MIT"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "clnrest"
|
name = "clnrest"
|
||||||
version = "24.08rc3"
|
version = "24.08.2"
|
||||||
description = "Transforms RPC calls into REST APIs"
|
description = "Transforms RPC calls into REST APIs"
|
||||||
authors = ["ShahanaFarooqui <sfarooqui@blockstream.com>"]
|
authors = ["ShahanaFarooqui <sfarooqui@blockstream.com>"]
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "wss-proxy"
|
name = "wss-proxy"
|
||||||
version = "24.08rc3"
|
version = "24.08.2"
|
||||||
description = "Web secure socket proxy"
|
description = "Web secure socket proxy"
|
||||||
authors = ["ShahanaFarooqui <sfarooqui@blockstream.com>"]
|
authors = ["ShahanaFarooqui <sfarooqui@blockstream.com>"]
|
||||||
|
|
||||||
|
12
poetry.lock
generated
12
poetry.lock
generated
@ -433,7 +433,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clnrest"
|
name = "clnrest"
|
||||||
version = "24.08rc3"
|
version = "24.08.2"
|
||||||
description = "Transforms RPC calls into REST APIs"
|
description = "Transforms RPC calls into REST APIs"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "^3.8"
|
python-versions = "^3.8"
|
||||||
@ -449,7 +449,7 @@ gevent = "^23.9.0.post1"
|
|||||||
gevent-websocket = "^0.10.1"
|
gevent-websocket = "^0.10.1"
|
||||||
gunicorn = "^21.2.0"
|
gunicorn = "^21.2.0"
|
||||||
json5 = "^0.9.14"
|
json5 = "^0.9.14"
|
||||||
pyln-client = "^24.2"
|
pyln-client = "^24.8"
|
||||||
|
|
||||||
[package.source]
|
[package.source]
|
||||||
type = "directory"
|
type = "directory"
|
||||||
@ -1690,7 +1690,7 @@ files = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pyln-client"
|
name = "pyln-client"
|
||||||
version = "24.08.1"
|
version = "24.08.2"
|
||||||
description = "Client library and plugin library for Core Lightning"
|
description = "Client library and plugin library for Core Lightning"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "^3.8"
|
python-versions = "^3.8"
|
||||||
@ -1724,7 +1724,7 @@ url = "contrib/pyln-grpc-proto"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pyln-proto"
|
name = "pyln-proto"
|
||||||
version = "24.08rc3"
|
version = "24.08.2"
|
||||||
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!)."
|
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!)."
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "^3.8"
|
python-versions = "^3.8"
|
||||||
@ -1744,7 +1744,7 @@ url = "contrib/pyln-proto"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pyln-testing"
|
name = "pyln-testing"
|
||||||
version = "24.08"
|
version = "24.08.2"
|
||||||
description = "Test your Core Lightning integration, plugins or whatever you want"
|
description = "Test your Core Lightning integration, plugins or whatever you want"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "^3.8"
|
python-versions = "^3.8"
|
||||||
@ -2289,7 +2289,7 @@ h11 = ">=0.9.0,<1"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wss-proxy"
|
name = "wss-proxy"
|
||||||
version = "24.08rc3"
|
version = "24.08.2"
|
||||||
description = "Web secure socket proxy"
|
description = "Web secure socket proxy"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "^3.8"
|
python-versions = "^3.8"
|
||||||
|
Loading…
Reference in New Issue
Block a user