This is a maintenance release of eclair, which includes several improvements and bug fixes, including:
- a fix for an unnecessary check on outgoing HTLCs that caused interoperability issues with c-lightning
- additional BOLT compliance checks
- the ability to specify payment request expiries from the API
We strongly recommend that users upgrade their nodes.
Verifying signatures
You will need gpg
and our release signing key 7A73FE77DE2C4027. Note that you can get it:
- from our website: https://acinq.co/pgp/drouinf.asc
- from github user @sstone, a committer on eclair: https://api.github.com/users/sstone/gpg_keys
To import our signing key:
$ gpg --import drouinf.asc
To verify the release file checksums and signatures:
$ gpg -d SHA256SUMS.asc > SHA256SUMS.stripped
$ sha256sum -c SHA256SUMS.stripped
Upgrading
This release is compatible with Eclair v0.2-beta4
. You don't need to close your channels, just stop eclair, upgrade and restart.
Change log
- Check when relay fee is insufficient (#634)
- Add api call to update channel relay fees (#620)
- Adding ability to set expiry when creating a new invoice (#632)
- Add missing BOLT 2 checks (fixes #613) (#618)
- Routing: remove final CLTV expiry check on outgoing HTLCs (#627)
- Complete commit logs
Thank you @btcontract @n1bor !