Browse Source

debian: Added changelog for v0.7.3

ppa-prep
Christian Decker 5 years ago
parent
commit
88e8c39bc8
  1. 4
      Makefile
  2. 43
      debian/changelog

4
Makefile

@ -1,6 +1,6 @@
#! /usr/bin/make #! /usr/bin/make
VERSION_NAME=Channel to the Moon VERSION_NAME=Bitcoin's Proof of Stake
VERSION=0.9.0-1 VERSION=0.7.3
ifeq ($(VERSION),) ifeq ($(VERSION),)
$(error "ERROR: git is required for generating version information") $(error "ERROR: git is required for generating version information")

43
debian/changelog

@ -1,3 +1,46 @@
lightningd (0.7.3) stable; urgency=low
* Added (DB): lightningd now supports different SQL backends, instead of the default which is sqlite3. Adds a PostgresSQL driver
* Added (elements): Add support of Liquid-BTC on elements
* Added (JSON API): `close` now accepts an optional parameter `destination`, to which the to-local output will be sent.
* Added (JSON API): `txprepare` and `withdraw` now accept an optional parameter `utxos`, a list of utxos to include in the prepared transaction
* Added (JSON API): `listfunds` now lists a blockheight for confirmed transactions, and has `connected` and `state` fields for channels, like `listpeers`.
* Added (JSON API): `fundchannel_start` now includes field `scriptpubkey`
* Added (JSON API): New method `listtransactions`
* Added (JSON API): `signmessage` will now create a signature from your node on a message; `checkmessage` will verify it.
* Added (JSON API): `fundchannel_start` now accepts an optional parameter `close_to`, the address to which these channel funds should be sent to on close. Returns `using_close_to` if will use.
* Added (Plugin): new notifications `sendpay_success` and `sendpay_failure`.
* Added (Protocol): nodes now announce features in `node_announcement` broadcasts.
* Added (Protocol): we now offer `option_gossip_queries_ex` for finegrained gossip control.
* Added (Protocol): we now retransmit `funding_locked` upon reconnection while closing if there was no update
* Added (Protocol): no longer ask for `initial_routing_sync` (only affects ancient peers).
* Added (bolt11): support for parsing feature bits (field `9`).
* Added (Wallet): we now support the encryption of the BIP32 master seed (a.k.a. `hsm_secret`).
* Added (pylightning): includes implementation of handshake protocol
* Changed (Build): Now requires [`gettext`](https://www.gnu.org/software/gettext/)
* Changed (JSON API): The parameter `exclude` of `getroute` now also support node-id.
* Changed (JSON API): `txprepare` now uses `outputs` as parameter other than `destination` and `satoshi`
* Changed (JSON API): `fundchannel_cancel` is extended to work before funding broadcast.
* Changed (JSON API): `pay` can exclude error nodes if the failcode of `sendpay` has the NODE bit set
* Changed (JSON API): The `plugin` command now returns on error. A timeout of 20 seconds is added to `start` and `startdir` subcommands at the end of which the plugin is errored if it did not complete the handshake with `lightningd`.
* Changed (JSON API): The `plugin` command does not allow to start static plugins after `lightningd` startup anymore.
* Changed (Protocol): We now push our own gossip to all peers, independent of their filter.
* Changed (Protocol): Now follows spec in responses to short channel id queries on unknown chainhashes
* Changed (Tor): We default now with autotor to generate if possible temporary ED25519-V3 onions. You can use new option `enable-autotor-v2-mode` to fallback to V2 RSA1024 mode.
* Deprecated (JSON API): `fundchannel` now uses `amount` as the parameter name to replace `satoshi`
* Deprecated (JSON API): `fundchannel_start` now uses `amount` as the parameter name to replace `satoshi`
* Deprecated (JSON API): `listpeers` and `listnodes` fields `localfeatures` and `globalfeatures` (now just `features`).
* Deprecated (Plugin): `peer_connected` hook fields `localfeatures` and `globalfeatures` (now just `features`).
* Removed (JSON API): `short_channel_id` parameters in JSON commands with `:` separators (deprecated since 0.7.0).
* Removed (JSON API): `description` parameters in `pay` and `sendpay` (deprecated since 0.7.0).
* Removed (JSON API): `description` output field in `waitsendpay` and `sendpay` (deprecated since 0.7.0).
* Removed (JSON API): `listpayments` (deprecated since 0.7.0).
* Fixed Fixed bogus "Bad commit_sig signature" which caused channel closures when reconnecting after updating fees under simultaneous bidirectional traffic.
* Fixed Relative `--lightning_dir` is now working again.
* Fixed (Build): MacOS now builds again (missing pwritev).
-- Christian Decker <decker.christian@gmail.com> Tue, 05 Nov 2019 23:00:00 +0100
lightningd (0.7.2-1) stable; urgency=low lightningd (0.7.2-1) stable; urgency=low
* JSON API: a new command `plugin` allows one to manage plugins without restarting `lightningd`. * JSON API: a new command `plugin` allows one to manage plugins without restarting `lightningd`.
* Plugin: a new boolean field can be added to a plugin manifest, `dynamic`. It allows a plugin to tell if it can be started or stopped "on-the-fly". * Plugin: a new boolean field can be added to a plugin manifest, `dynamic`. It allows a plugin to tell if it can be started or stopped "on-the-fly".

Loading…
Cancel
Save