From 7710b1c4163a00c485af6dae5b2113d3e68505f4 Mon Sep 17 00:00:00 2001 From: Peter Neuroth Date: Thu, 2 Nov 2023 08:41:59 +0100 Subject: [PATCH] CHANGELOG.md: Update for 23.11rc1 Update changelog, pyln versions, clnrest version and poetry.lock. Signed-off-by: Peter Neuroth --- CHANGELOG.md | 119 ++++++++++++++++++ contrib/pyln-client/pyln/client/__init__.py | 2 +- contrib/pyln-client/pyproject.toml | 2 +- contrib/pyln-proto/pyln/proto/__init__.py | 2 +- contrib/pyln-proto/pyproject.toml | 2 +- contrib/pyln-testing/pyln/testing/__init__.py | 2 +- contrib/pyln-testing/pyproject.toml | 2 +- plugins/clnrest/pyproject.toml | 2 +- poetry.lock | 8 +- 9 files changed, 130 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 022175bb5bf6..50d58045b499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,125 @@ 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/). +## [v23.11rc1] - 2023-11-02: "Bitcoin Orangepaper" + +This release named by Shahana Farooqui + +### Added + + - JSON-RPC: `wait` now works for `sendpays` infrastructure. ([#6753]) + - JSON-RPC: `wait` now works for `forwards` infrastructure. ([#6753]) + - JSON-RPC: `check` now does much more checking on every command (not just basic parameter types). ([#6772]) + - Added option --commit-fee-offset to potentially reduce feerate update disagreements ([#6833]) + - runes: `per=Nsec/min/hour/msec/usec/nsec` for general ratelimiting ([#6617]) + - JSON-RPC: `addpsbtoutput` command for creating a PSBT that can receive funds to the on-chain wallet. ([#6676]) + - JSON-RPC: `datastoreusage`: returns the total bytes that are stored under a given key. ([#6442]) + - cln-plugin: Implement send_custom_notification to allow sending custom notifications to other plugins. ([#6135]) + - JSON-RPC: `listforwards` new parameters `index`, `start` and `limit`. ([#6753]) + - JSON-RPC: `listforwards` fields `created_index` (old: `id`) and `updated_index`. ([#6753]) + - JSON-RPC: `listsendpays` new parameters `index`, `start` and `limit`. ([#6753]) + - JSON-RPC: `sendpay`, `listsendpays`, `delpay` new fields `created_index` (old: `id`) and `updated_index`. ([#6753]) + - `hsmtool`: new command `getemergencyrecover` to extract emergency.recover in bech32 format ([#6773]) + - JSON-RPC: `decode` can now decide emergency.recover files ([#6773]) + - JSON-RPC: `recover` command to force (unused) lightningd node to restart with `--recover` flag. ([#6772]) + - Config: `--recover` can take a 32-byte hex string, as well as codex32. ([#6772]) + - JSON-RPC: `listinvoices` new field `paid_outpoint` if an invoice is paid onchain. ([#6421]) + - Config: `invoices-onchain-fallback` to automatically add an onchain p2tr address to invoices, and allow that for payment. ([#6421]) + - hsmd protocol: Added hsmd_check_outpoint and hsmd_lock_outpoint ([#6760]) + - Plugins: plugins can now specify (unknown) even messages we should accept from peers. ([#6689]) + - Config: `--developer` enables developer options and changes default to be "disable deprecated APIs". ([#6311]) + - JSON-RPC: `showrunes` new field `last_used` ([#6617]) + - New configurable Content-Security-Policy (CSP) header for clnrest ([#6686]) + - New configurable Cross-Origin-Resource-Sharing(CSP) header for clnrest ([#6686]) + + +### Changed + + - Config: `large-channels` is now the default, wumbology for all. ([#6783]) + - cln-plugin: Suppress internal logging handler via `with_logging(false)` ([#6797]) + - JSON-RPC: `checkrune` `rate` restriction is slightly stricter (exact division of time like `per`) ([#6710]) + - Upgraded clnrest to poetry project. ([#6651]) + - JSON-RPC time fields now have full nanosecond precision (i.e. 9 decimals not 3): `listfowards` `received_time` `resolved_time` `listpays`/`listsendpays` `created_at`. ([#6617]) + - Protocol: `invoice` no longer explicitly encodes `c` if it's the default (18) ([#6668]) + - Protocol: we no longer disconnect every time we receive a warning message. ([#6668]) + + +### Deprecated + +Note: You should always set `allow-deprecated-apis=false` to test for changes. + + + +### Removed + + - build: `--enable-developer` arg to configure (and DEVELOPER variables): use `./configure --enable-debugbuild` and `developer` setting at runtime. ([#6311]) + - `dev-sendcustommsg` (use `sendcustommsg`, which was added in v0.10.1) ([#6311]) + + +### Fixed + + - Some peer disconnects due to update_fee disagreements are avoided. ([#6833]) + - websocket server notifications are available with ([#6749]) + - Issue splicing with pending / stuck HTLCs fixed. ([#6748]) + - wallet: close change outputs show up immediately in `listfunds` so you can CPFP. ([#6734]) + - Restore any missing metadata that resource constrained signers stripped ([#6767]) + - fix `checkrune` when `method` parameter is the empty string. ([#6759]) + - JSON-RPC: `getroute` now documents that it ignores `fuzzpercent`. ([#6697]) + - rune: use runes table `id` instead `runes_uniqueid` from `vars` because it returns incorrect unique id if rune/s migrated from datastore. ([#6715]) + - Added docs, testing, and some fixes related to splicing out, insufficent balance handling, and restarting during a splice. ([#6677]) + + +### EXPERIMENTAL + + - Fixed anchor spending to be able to use more than one UTXO. ([#6780]) + - JSON-RPC: added new dual-funding state `DUALOPEND_OPEN_COMMITTED` ([#6628]) + + +[#6442]: https://github.com/ElementsProject/lightning/pull/6442 +[#6617]: https://github.com/ElementsProject/lightning/pull/6617 +[#6760]: https://github.com/ElementsProject/lightning/pull/6760 +[#6710]: https://github.com/ElementsProject/lightning/pull/6710 +[#6753]: https://github.com/ElementsProject/lightning/pull/6753 +[#6311]: https://github.com/ElementsProject/lightning/pull/6311 +[#6689]: https://github.com/ElementsProject/lightning/pull/6689 +[#6617]: https://github.com/ElementsProject/lightning/pull/6617 +[#6421]: https://github.com/ElementsProject/lightning/pull/6421 +[#6753]: https://github.com/ElementsProject/lightning/pull/6753 +[#6780]: https://github.com/ElementsProject/lightning/pull/6780 +[#6651]: https://github.com/ElementsProject/lightning/pull/6651 +[#6753]: https://github.com/ElementsProject/lightning/pull/6753 +[#6772]: https://github.com/ElementsProject/lightning/pull/6772 +[#6421]: https://github.com/ElementsProject/lightning/pull/6421 +[#6797]: https://github.com/ElementsProject/lightning/pull/6797 +[#6773]: https://github.com/ElementsProject/lightning/pull/6773 +[#6715]: https://github.com/ElementsProject/lightning/pull/6715 +[#6833]: https://github.com/ElementsProject/lightning/pull/6833 +[#6767]: https://github.com/ElementsProject/lightning/pull/6767 +[#6749]: https://github.com/ElementsProject/lightning/pull/6749 +[#6759]: https://github.com/ElementsProject/lightning/pull/6759 +[#6773]: https://github.com/ElementsProject/lightning/pull/6773 +[#6748]: https://github.com/ElementsProject/lightning/pull/6748 +[#6697]: https://github.com/ElementsProject/lightning/pull/6697 +[#6668]: https://github.com/ElementsProject/lightning/pull/6668 +[#6734]: https://github.com/ElementsProject/lightning/pull/6734 +[#6686]: https://github.com/ElementsProject/lightning/pull/6686 +[#6135]: https://github.com/ElementsProject/lightning/pull/6135 +[#6753]: https://github.com/ElementsProject/lightning/pull/6753 +[#6628]: https://github.com/ElementsProject/lightning/pull/6628 +[#6617]: https://github.com/ElementsProject/lightning/pull/6617 +[#6772]: https://github.com/ElementsProject/lightning/pull/6772 +[#6772]: https://github.com/ElementsProject/lightning/pull/6772 +[#6676]: https://github.com/ElementsProject/lightning/pull/6676 +[#6753]: https://github.com/ElementsProject/lightning/pull/6753 +[#6833]: https://github.com/ElementsProject/lightning/pull/6833 +[#6311]: https://github.com/ElementsProject/lightning/pull/6311 +[#6686]: https://github.com/ElementsProject/lightning/pull/6686 +[#6783]: https://github.com/ElementsProject/lightning/pull/6783 +[#6311]: https://github.com/ElementsProject/lightning/pull/6311 +[#6668]: https://github.com/ElementsProject/lightning/pull/6668 +[#6677]: https://github.com/ElementsProject/lightning/pull/6677 +[#6753]: https://github.com/ElementsProject/lightning/pull/6753 + ## [23.08.1] - 2023-09-12: "Satoshi's Successor II" diff --git a/contrib/pyln-client/pyln/client/__init__.py b/contrib/pyln-client/pyln/client/__init__.py index ee0023bcfc20..36ca27e272e5 100644 --- a/contrib/pyln-client/pyln/client/__init__.py +++ b/contrib/pyln-client/pyln/client/__init__.py @@ -3,7 +3,7 @@ from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits from .gossmapstats import GossmapStats -__version__ = "23.08" +__version__ = "23.11" __all__ = [ "LightningRpc", diff --git a/contrib/pyln-client/pyproject.toml b/contrib/pyln-client/pyproject.toml index c729fbae2746..e1ef3d3ad4e7 100644 --- a/contrib/pyln-client/pyproject.toml +++ b/contrib/pyln-client/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-client" -version = "23.08" +version = "23.11" description = "Client library and plugin library for Core Lightning" authors = ["Christian Decker "] license = "BSD-MIT" diff --git a/contrib/pyln-proto/pyln/proto/__init__.py b/contrib/pyln-proto/pyln/proto/__init__.py index 709db757ad28..332f49564831 100644 --- a/contrib/pyln-proto/pyln/proto/__init__.py +++ b/contrib/pyln-proto/pyln/proto/__init__.py @@ -4,7 +4,7 @@ from .onion import OnionPayload, TlvPayload, LegacyOnionPayload from .wire import LightningConnection, LightningServerSocket -__version__ = "23.08" +__version__ = "23.11" __all__ = [ "Invoice", diff --git a/contrib/pyln-proto/pyproject.toml b/contrib/pyln-proto/pyproject.toml index 8beb5c1b8ff2..3f4bb74b1f21 100644 --- a/contrib/pyln-proto/pyproject.toml +++ b/contrib/pyln-proto/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-proto" -version = "23.08" +version = "23.11" 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 "] license = "BSD-MIT" diff --git a/contrib/pyln-testing/pyln/testing/__init__.py b/contrib/pyln-testing/pyln/testing/__init__.py index e84f312e5afe..1b6207511657 100644 --- a/contrib/pyln-testing/pyln/testing/__init__.py +++ b/contrib/pyln-testing/pyln/testing/__init__.py @@ -1,4 +1,4 @@ -__version__ = "23.08" +__version__ = "23.11" __all__ = [ "__version__", diff --git a/contrib/pyln-testing/pyproject.toml b/contrib/pyln-testing/pyproject.toml index b991ba276ce1..9c798e6a289e 100644 --- a/contrib/pyln-testing/pyproject.toml +++ b/contrib/pyln-testing/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-testing" -version = "23.08" +version = "23.11" description = "Test your Core Lightning integration, plugins or whatever you want" authors = ["Christian Decker "] license = "BSD-MIT" diff --git a/plugins/clnrest/pyproject.toml b/plugins/clnrest/pyproject.toml index d861e7f9fdfb..56546eaf2c45 100644 --- a/plugins/clnrest/pyproject.toml +++ b/plugins/clnrest/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clnrest" -version = "23.08" +version = "23.11" description = "Transforms RPC calls into REST APIs" authors = ["ShahanaFarooqui "] diff --git a/poetry.lock b/poetry.lock index 60fb45b18584..e28731edfd3f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -438,7 +438,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "clnrest" -version = "23.08" +version = "23.11" description = "Transforms RPC calls into REST APIs" optional = false python-versions = "^3.8" @@ -1679,7 +1679,7 @@ files = [ [[package]] name = "pyln-client" -version = "23.08" +version = "23.11" description = "Client library and plugin library for Core Lightning" optional = false python-versions = "^3.8" @@ -1710,7 +1710,7 @@ protobuf3 = "*" [[package]] name = "pyln-proto" -version = "23.08" +version = "23.11" 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 python-versions = "^3.8" @@ -1730,7 +1730,7 @@ url = "contrib/pyln-proto" [[package]] name = "pyln-testing" -version = "23.08" +version = "23.11" description = "Test your Core Lightning integration, plugins or whatever you want" optional = false python-versions = "^3.8"