Skip to content

Commit

Permalink
CHANGELOG.md: Update for 23.11rc1
Browse files Browse the repository at this point in the history
Update changelog, pyln versions, clnrest version and poetry.lock.

Signed-off-by: Peter Neuroth <[email protected]>
  • Loading branch information
nepet committed Nov 2, 2023
1 parent f004952 commit 7710b1c
Show file tree
Hide file tree
Showing 9 changed files with 130 additions and 11 deletions.
119 changes: 119 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"

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__ = "23.08"
__version__ = "23.11"

__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 = "23.08"
version = "23.11"
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__ = "23.08"
__version__ = "23.11"

__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 = "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 <[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__ = "23.08"
__version__ = "23.11"

__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 = "23.08"
version = "23.11"
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 = "23.08"
version = "23.11"
description = "Transforms RPC calls into REST APIs"
authors = ["ShahanaFarooqui <[email protected]>"]

Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

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

0 comments on commit 7710b1c

Please sign in to comment.