xplorfin / lnurlauth

Canonical lnurl auth implementation
MIT License
15 stars 2 forks source link

Update module github.com/btcsuite/btcd to v0.24.0 [SECURITY] #73

Open renovate[bot] opened 1 month ago

renovate[bot] commented 1 month ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/btcsuite/btcd v0.21.0-beta -> v0.24.0 age adoption passing confidence

GitHub Vulnerability Alerts

CVE-2022-44797

btcd before 0.23.2, as used in Lightning Labs lnd before 0.15.2-beta and other Bitcoin-related products, mishandles witness size checking.

Specific Go Packages Affected

github.com/btcsuite/btcd/wire

CVE-2024-34478

btcd before 0.24.0 does not correctly implement the consensus rules outlined in BIP 68 and BIP 112, making it susceptible to consensus failures. Specifically, it uses the transaction version as a signed integer when it is supposed to be treated as unsigned. There can be a chain split and loss of funds.


Release Notes

btcsuite/btcd (github.com/btcsuite/btcd) ### [`v0.24.0`](https://togithub.com/btcsuite/btcd/releases/tag/v0.24.0): btcd v0.24.0 [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.23.4...v0.24.0) This release is a major release that includes several general bug fixes, **security bug fixes** (please update!), and also a series of performance improvements that dramatically reduce the time for initial block download from ~45 hours+ to around 6 hours! With this release,`btcd` now also supports BIP 155 and has gained support for pruning (`--prune=MiB`). ### Verifying the Release In order to verify the release, you'll need to have `gpg` or `gpg2` installed on your system. Once you've obtained a copy (and hopefully verified that as well), you'll first need to import the keys that have signed this release if you haven't done so already: curl https://raw.githubusercontent.com/lightningnetwork/lnd/master/scripts/keys/roasbeef.asc | gpg --import Once you have the required PGP keys, you can verify the release (assuming `manifest-roasbeef-v0.24.0.sig` and `manifest-v0.24.0.txt` are in the current directory) with: gpg --verify manifest-roasbeef-v0.24.0.sig manifest-v0.24.0.txt You should see the following if the verification was successful: gpg: Signature made Sat Dec 30 17:11:22 2023 PST gpg: using RSA key 60A1FA7DA5BFF08BDCBBE7903BBD59E99B280306 gpg: Good signature from "Olaoluwa Osuntokun " [ultimate] That will verify the signature of the manifest file, which ensures integrity and authenticity of the archive you've downloaded locally containing the binaries. Next, depending on your operating system, you should then re-compute the `sha256` hash of the archive with `shasum -a 256 `, compare it with the corresponding one in the manifest file, and ensure they match *exactly*. ### What's Changed - Musig2: Update to 1.0.0.rc2 by [@​sputn1ck](https://togithub.com/sputn1ck) in [https://github.com/btcsuite/btcd/pull/1913](https://togithub.com/btcsuite/btcd/pull/1913) - btcec/schnorr/musig2: fix BenchmarkPartialVerify by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1920](https://togithub.com/btcsuite/btcd/pull/1920) - base58: fix decoding issue by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1923](https://togithub.com/btcsuite/btcd/pull/1923) - Update Docker documentation towards building your own image by [@​guiand888](https://togithub.com/guiand888) in [https://github.com/btcsuite/btcd/pull/1925](https://togithub.com/btcsuite/btcd/pull/1925) - chainhash: JSON marshal hash as string by [@​ffranr](https://togithub.com/ffranr) in [https://github.com/btcsuite/btcd/pull/1932](https://togithub.com/btcsuite/btcd/pull/1932) - Update Dockerfile to Alpine 3.16 by [@​guiand888](https://togithub.com/guiand888) in [https://github.com/btcsuite/btcd/pull/1924](https://togithub.com/btcsuite/btcd/pull/1924) - Fix memory leak in connmanager by [@​hxw](https://togithub.com/hxw) in [https://github.com/btcsuite/btcd/pull/1576](https://togithub.com/btcsuite/btcd/pull/1576) - Update mining.md by [@​jagottsicher](https://togithub.com/jagottsicher) in [https://github.com/btcsuite/btcd/pull/1938](https://togithub.com/btcsuite/btcd/pull/1938) - Sighash taproot keyspend bug fix by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1941](https://togithub.com/btcsuite/btcd/pull/1941) - btcutil/psbt: export helper functions, fix/add encoding of unknown fields by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1942](https://togithub.com/btcsuite/btcd/pull/1942) - docs: Update Go version as per the Readme. by [@​hristog](https://togithub.com/hristog) in [https://github.com/btcsuite/btcd/pull/1944](https://togithub.com/btcsuite/btcd/pull/1944) - txscript: Fix typo in IsUnspendable() comment by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1945](https://togithub.com/btcsuite/btcd/pull/1945) - txscript: allow script builder capacity to be specified by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1954](https://togithub.com/btcsuite/btcd/pull/1954) - Export MakeScritpNum, AsSmallInt, and IsSmallInt by [@​martonp](https://togithub.com/martonp) in [https://github.com/btcsuite/btcd/pull/1956](https://togithub.com/btcsuite/btcd/pull/1956) - chainhash: JSON Unmarshal hash from appropriate string. by [@​LindenWang01](https://togithub.com/LindenWang01) in [https://github.com/btcsuite/btcd/pull/1952](https://togithub.com/btcsuite/btcd/pull/1952) - psbt: add verification method for utxo data by [@​ziggie1984](https://togithub.com/ziggie1984) in [https://github.com/btcsuite/btcd/pull/1964](https://togithub.com/btcsuite/btcd/pull/1964) - txscript: fix typos by [@​hieblmi](https://togithub.com/hieblmi) in [https://github.com/btcsuite/btcd/pull/1957](https://togithub.com/btcsuite/btcd/pull/1957) - chaincfg: Update checkpoints by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1968](https://togithub.com/btcsuite/btcd/pull/1968) - btcd: Add memory profiling flag by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1953](https://togithub.com/btcsuite/btcd/pull/1953) - blockchain: Use slices when fetching utxos by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1972](https://togithub.com/btcsuite/btcd/pull/1972) - main: Update README.md's minimum go version by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1977](https://togithub.com/btcsuite/btcd/pull/1977) - Add wire.Outpoint parser from string by [@​GeorgeTsagk](https://togithub.com/GeorgeTsagk) in [https://github.com/btcsuite/btcd/pull/1879](https://togithub.com/btcsuite/btcd/pull/1879) - multi: Run gofmt on the entire repository by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1981](https://togithub.com/btcsuite/btcd/pull/1981) - blockchain+chaincfg: disable retargeting for regtest by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1985](https://togithub.com/btcsuite/btcd/pull/1985) - multi: remove repetitive the by [@​cuishuang](https://togithub.com/cuishuang) in [https://github.com/btcsuite/btcd/pull/1998](https://togithub.com/btcsuite/btcd/pull/1998) - blockchain: refactor and export header validation checks by [@​Crypt-iQ](https://togithub.com/Crypt-iQ) in [https://github.com/btcsuite/btcd/pull/1931](https://togithub.com/btcsuite/btcd/pull/1931) - btcutil: format BTC amounts with trailing zeroes by [@​C-Otto](https://togithub.com/C-Otto) in [https://github.com/btcsuite/btcd/pull/1996](https://togithub.com/btcsuite/btcd/pull/1996) - musig2: fix early nonce gen option by [@​sputn1ck](https://togithub.com/sputn1ck) in [https://github.com/btcsuite/btcd/pull/2003](https://togithub.com/btcsuite/btcd/pull/2003) - fix: missing sighashtype when finalizing taproot keyspend signature by [@​0xEclair](https://togithub.com/0xEclair) in [https://github.com/btcsuite/btcd/pull/2006](https://togithub.com/btcsuite/btcd/pull/2006) - Add address field (rpc client & server) by [@​lindlof](https://togithub.com/lindlof) in [https://github.com/btcsuite/btcd/pull/1969](https://togithub.com/btcsuite/btcd/pull/1969) - schnorr: correct rfc reference in docs by [@​wydengyre](https://togithub.com/wydengyre) in [https://github.com/btcsuite/btcd/pull/2016](https://togithub.com/btcsuite/btcd/pull/2016) - blockchain, integration, mining, main: Rolling merkle root calculation by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1979](https://togithub.com/btcsuite/btcd/pull/1979) - schnorr: bip-340 compliant verification by [@​wydengyre](https://togithub.com/wydengyre) in [https://github.com/btcsuite/btcd/pull/2018](https://togithub.com/btcsuite/btcd/pull/2018) - txscript/engine: add execution StepCallback by [@​halseth](https://togithub.com/halseth) in [https://github.com/btcsuite/btcd/pull/1980](https://togithub.com/btcsuite/btcd/pull/1980) - schnorr: bip-340 compliant signing by [@​wydengyre](https://togithub.com/wydengyre) in [https://github.com/btcsuite/btcd/pull/2022](https://togithub.com/btcsuite/btcd/pull/2022) - main, wire, blockchain, indexers, ffldb: Add pruning by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1971](https://togithub.com/btcsuite/btcd/pull/1971) - chainhash: add support to legacy-marshaled hashes by [@​Beerosagos](https://togithub.com/Beerosagos) in [https://github.com/btcsuite/btcd/pull/2025](https://togithub.com/btcsuite/btcd/pull/2025) - rpcclient: catch shutdown signal when sending RPC requests by [@​yyforyongyu](https://togithub.com/yyforyongyu) in [https://github.com/btcsuite/btcd/pull/2028](https://togithub.com/btcsuite/btcd/pull/2028) - integration: add test to check prune status by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/2043](https://togithub.com/btcsuite/btcd/pull/2043) - fix: typos in sighash.go by [@​kevinheavey](https://togithub.com/kevinheavey) in [https://github.com/btcsuite/btcd/pull/2047](https://togithub.com/btcsuite/btcd/pull/2047) - Update LICENSE by [@​davidcardenasus](https://togithub.com/davidcardenasus) in [https://github.com/btcsuite/btcd/pull/2045](https://togithub.com/btcsuite/btcd/pull/2045) - blockchain: export CheckSerializedHeight by [@​Crypt-iQ](https://togithub.com/Crypt-iQ) in [https://github.com/btcsuite/btcd/pull/2051](https://togithub.com/btcsuite/btcd/pull/2051) - fix: default forward port by [@​0xEclair](https://togithub.com/0xEclair) in [https://github.com/btcsuite/btcd/pull/2038](https://togithub.com/btcsuite/btcd/pull/2038) - Added tests for FutureGetBestBlockHashResult.Receive by [@​ClaytonNorthey92](https://togithub.com/ClaytonNorthey92) in [https://github.com/btcsuite/btcd/pull/2048](https://togithub.com/btcsuite/btcd/pull/2048) - Added test for client.GetChainTxStatsAsync() in rpcclient. by [@​ClaytonNorthey92](https://togithub.com/ClaytonNorthey92) in [https://github.com/btcsuite/btcd/pull/2049](https://togithub.com/btcsuite/btcd/pull/2049) - added tests for GetBestBlockHashAsync by [@​ClaytonNorthey92](https://togithub.com/ClaytonNorthey92) in [https://github.com/btcsuite/btcd/pull/2057](https://togithub.com/btcsuite/btcd/pull/2057) - blockchain, btcjson: Implement getchaintips rpc call by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1918](https://togithub.com/btcsuite/btcd/pull/1918) - Fix typos by [@​xiaolou86](https://togithub.com/xiaolou86) in [https://github.com/btcsuite/btcd/pull/2064](https://togithub.com/btcsuite/btcd/pull/2064) - Fix typos on signature.go by [@​EvanTedesco](https://togithub.com/EvanTedesco) in [https://github.com/btcsuite/btcd/pull/2065](https://togithub.com/btcsuite/btcd/pull/2065) - schnorr: simplify some signing math by [@​wydengyre](https://togithub.com/wydengyre) in [https://github.com/btcsuite/btcd/pull/2042](https://togithub.com/btcsuite/btcd/pull/2042) - Correct comments in singature.go by [@​jcvernaleo](https://togithub.com/jcvernaleo) in [https://github.com/btcsuite/btcd/pull/2067](https://togithub.com/btcsuite/btcd/pull/2067) - blockchain: Add ancestor optimization to finding Ancestor by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1688](https://togithub.com/btcsuite/btcd/pull/1688) - Update petertodd seed DNS to .net by [@​petertodd](https://togithub.com/petertodd) in [https://github.com/btcsuite/btcd/pull/2069](https://togithub.com/btcsuite/btcd/pull/2069) - wire, netsync: change isSyncCandidate behavior by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/2035](https://togithub.com/btcsuite/btcd/pull/2035) - make: add install and release-install goals by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1890](https://togithub.com/btcsuite/btcd/pull/1890) - chainhash, wire, btcutil, main: Memory efficient txhash by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1978](https://togithub.com/btcsuite/btcd/pull/1978) - blockchain, cmd, netsync, main: Add utxocache by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1955](https://togithub.com/btcsuite/btcd/pull/1955) - btcutil: update to chaincfg/chainhash/v1.1.0 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/2072](https://togithub.com/btcsuite/btcd/pull/2072) - fix: enhance code comments by [@​threewebcode](https://togithub.com/threewebcode) in [https://github.com/btcsuite/btcd/pull/2074](https://togithub.com/btcsuite/btcd/pull/2074) - multi: update main package and btcutil to chainhash/v1.1.0, use optimized dsha256 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/2075](https://togithub.com/btcsuite/btcd/pull/2075) - doc: correct comments by [@​bodhi-crypo](https://togithub.com/bodhi-crypo) in [https://github.com/btcsuite/btcd/pull/2076](https://togithub.com/btcsuite/btcd/pull/2076) - rpctest: integration test harness fixes by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/2071](https://togithub.com/btcsuite/btcd/pull/2071) - btcutil: reuse serialized tx during TxHash by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/2081](https://togithub.com/btcsuite/btcd/pull/2081) - wire: only borrow/return binaryFreeList buffers at the message level by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/2073](https://togithub.com/btcsuite/btcd/pull/2073) - build: create btcd v0.24 release branch by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/2082](https://togithub.com/btcsuite/btcd/pull/2082) #### New Contributors - [@​guiand888](https://togithub.com/guiand888) made their first contribution in [https://github.com/btcsuite/btcd/pull/1925](https://togithub.com/btcsuite/btcd/pull/1925) - [@​hxw](https://togithub.com/hxw) made their first contribution in [https://github.com/btcsuite/btcd/pull/1576](https://togithub.com/btcsuite/btcd/pull/1576) - [@​jagottsicher](https://togithub.com/jagottsicher) made their first contribution in [https://github.com/btcsuite/btcd/pull/1938](https://togithub.com/btcsuite/btcd/pull/1938) - [@​hristog](https://togithub.com/hristog) made their first contribution in [https://github.com/btcsuite/btcd/pull/1944](https://togithub.com/btcsuite/btcd/pull/1944) - [@​martonp](https://togithub.com/martonp) made their first contribution in [https://github.com/btcsuite/btcd/pull/1956](https://togithub.com/btcsuite/btcd/pull/1956) - [@​LindenWang01](https://togithub.com/LindenWang01) made their first contribution in [https://github.com/btcsuite/btcd/pull/1952](https://togithub.com/btcsuite/btcd/pull/1952) - [@​ziggie1984](https://togithub.com/ziggie1984) made their first contribution in [https://github.com/btcsuite/btcd/pull/1964](https://togithub.com/btcsuite/btcd/pull/1964) - [@​hieblmi](https://togithub.com/hieblmi) made their first contribution in [https://github.com/btcsuite/btcd/pull/1957](https://togithub.com/btcsuite/btcd/pull/1957) - [@​GeorgeTsagk](https://togithub.com/GeorgeTsagk) made their first contribution in [https://github.com/btcsuite/btcd/pull/1879](https://togithub.com/btcsuite/btcd/pull/1879) - [@​cuishuang](https://togithub.com/cuishuang) made their first contribution in [https://github.com/btcsuite/btcd/pull/1998](https://togithub.com/btcsuite/btcd/pull/1998) - [@​C-Otto](https://togithub.com/C-Otto) made their first contribution in [https://github.com/btcsuite/btcd/pull/1996](https://togithub.com/btcsuite/btcd/pull/1996) - [@​0xEclair](https://togithub.com/0xEclair) made their first contribution in [https://github.com/btcsuite/btcd/pull/2006](https://togithub.com/btcsuite/btcd/pull/2006) - [@​wydengyre](https://togithub.com/wydengyre) made their first contribution in [https://github.com/btcsuite/btcd/pull/2016](https://togithub.com/btcsuite/btcd/pull/2016) - [@​Beerosagos](https://togithub.com/Beerosagos) made their first contribution in [https://github.com/btcsuite/btcd/pull/2025](https://togithub.com/btcsuite/btcd/pull/2025) - [@​kevinheavey](https://togithub.com/kevinheavey) made their first contribution in [https://github.com/btcsuite/btcd/pull/2047](https://togithub.com/btcsuite/btcd/pull/2047) - [@​davidcardenasus](https://togithub.com/davidcardenasus) made their first contribution in [https://github.com/btcsuite/btcd/pull/2045](https://togithub.com/btcsuite/btcd/pull/2045) - [@​ClaytonNorthey92](https://togithub.com/ClaytonNorthey92) made their first contribution in [https://github.com/btcsuite/btcd/pull/2048](https://togithub.com/btcsuite/btcd/pull/2048) - [@​xiaolou86](https://togithub.com/xiaolou86) made their first contribution in [https://github.com/btcsuite/btcd/pull/2064](https://togithub.com/btcsuite/btcd/pull/2064) - [@​EvanTedesco](https://togithub.com/EvanTedesco) made their first contribution in [https://github.com/btcsuite/btcd/pull/2065](https://togithub.com/btcsuite/btcd/pull/2065) - [@​petertodd](https://togithub.com/petertodd) made their first contribution in [https://github.com/btcsuite/btcd/pull/2069](https://togithub.com/btcsuite/btcd/pull/2069) - [@​threewebcode](https://togithub.com/threewebcode) made their first contribution in [https://github.com/btcsuite/btcd/pull/2074](https://togithub.com/btcsuite/btcd/pull/2074) - [@​bodhi-crypo](https://togithub.com/bodhi-crypo) made their first contribution in [https://github.com/btcsuite/btcd/pull/2076](https://togithub.com/btcsuite/btcd/pull/2076) **Full Changelog**: https://github.com/btcsuite/btcd/compare/v0.23.4...v0.24.0 ### [`v0.23.4`](https://togithub.com/btcsuite/btcd/compare/v0.23.3...v0.23.4) [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.23.3...v0.23.4) ### [`v0.23.3`](https://togithub.com/btcsuite/btcd/releases/tag/v0.23.3): btcd v0.23.3 [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.23.2...v0.23.3) ### Verifying the Release In order to verify the release, you'll need to have `gpg` or `gpg2` installed on your system. Once you've obtained a copy (and hopefully verified that as well), you'll first need to import the keys that have signed this release if you haven't done so already: curl https://raw.githubusercontent.com/lightningnetwork/lnd/master/scripts/keys/guggero.asc | gpg --import Once you have the required PGP keys, you can verify the release (assuming `manifest-guggero-v0.23.3.sig` and `manifest-v0.23.3.txt` are in the current directory) with: gpg --verify manifest-guggero-v0.23.3.sig manifest-v0.23.3.txt You should see the following if the verification was successful: gpg: Signature made Di 01 Nov 2022 14:00:20 CET gpg: using RSA key F4FC70F07310028424EFC20A8E4256593F177720 gpg: Good signature from "Oliver Gugger " [ultimate] That will verify the signature of the manifest file, which ensures integrity and authenticity of the archive you've downloaded locally containing the binaries. Next, depending on your operating system, you should then re-compute the `sha256` hash of the archive with `shasum -a 256 `, compare it with the corresponding one in the manifest file, and ensure they match *exactly*. #### What's Changed - Fixed ban bug that doesn't print numTxns by [@​l0k18](https://togithub.com/l0k18) in [https://github.com/btcsuite/btcd/pull/1900](https://togithub.com/btcsuite/btcd/pull/1900) - btcec/schnorr/musig2: update to musig 1.0.0 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1894](https://togithub.com/btcsuite/btcd/pull/1894) - wire: increase max witness items per input by [@​ellemouton](https://togithub.com/ellemouton) in [https://github.com/btcsuite/btcd/pull/1907](https://togithub.com/btcsuite/btcd/pull/1907) - build: bump version to v0.23.3 by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1908](https://togithub.com/btcsuite/btcd/pull/1908) #### New Contributors - [@​l0k18](https://togithub.com/l0k18) made their first contribution in [https://github.com/btcsuite/btcd/pull/1900](https://togithub.com/btcsuite/btcd/pull/1900) **Full Changelog**: https://github.com/btcsuite/btcd/compare/v0.23.2...v0.23.3 ### [`v0.23.2`](https://togithub.com/btcsuite/btcd/releases/tag/v0.23.2): btcd v0.23.2 [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.23.1...v0.23.2) #### What's Changed - MuSig2: Catch up to 0.4.0 by [@​sputn1ck](https://togithub.com/sputn1ck) in [https://github.com/btcsuite/btcd/pull/1865](https://togithub.com/btcsuite/btcd/pull/1865) - Bump btcd version in btcutil package by [@​darioush](https://togithub.com/darioush) in [https://github.com/btcsuite/btcd/pull/1866](https://togithub.com/btcsuite/btcd/pull/1866) - doc: fix Tor hidden service setup link by [@​shyba](https://togithub.com/shyba) in [https://github.com/btcsuite/btcd/pull/1883](https://togithub.com/btcsuite/btcd/pull/1883) - build: bump golang base image version to 1.17 by [@​tochicool](https://togithub.com/tochicool) in [https://github.com/btcsuite/btcd/pull/1882](https://togithub.com/btcsuite/btcd/pull/1882) - wire: remove erroneous witness size check in wire parsing by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1896](https://togithub.com/btcsuite/btcd/pull/1896) - build: bump version to v0.23.2 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1898](https://togithub.com/btcsuite/btcd/pull/1898) #### New Contributors - [@​sputn1ck](https://togithub.com/sputn1ck) made their first contribution in [https://github.com/btcsuite/btcd/pull/1865](https://togithub.com/btcsuite/btcd/pull/1865) - [@​darioush](https://togithub.com/darioush) made their first contribution in [https://github.com/btcsuite/btcd/pull/1866](https://togithub.com/btcsuite/btcd/pull/1866) - [@​shyba](https://togithub.com/shyba) made their first contribution in [https://github.com/btcsuite/btcd/pull/1883](https://togithub.com/btcsuite/btcd/pull/1883) - [@​tochicool](https://togithub.com/tochicool) made their first contribution in [https://github.com/btcsuite/btcd/pull/1882](https://togithub.com/btcsuite/btcd/pull/1882) **Full Changelog**: https://github.com/btcsuite/btcd/compare/v0.23.1...v0.23.2 ### [`v0.23.1`](https://togithub.com/btcsuite/btcd/releases/tag/v0.23.1): btcd v0.23.1-beta [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.23.0...v0.23.1) #### What's Changed - btcjson: Update WalletCreateFundedPsbtOpts.FeeRate type by [@​gnasr](https://togithub.com/gnasr) in [https://github.com/btcsuite/btcd/pull/1729](https://togithub.com/btcsuite/btcd/pull/1729) - rpcserverhelp: Remove extra period for gettxout--synopsis by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1733](https://togithub.com/btcsuite/btcd/pull/1733) - mempool: export isDust for use in other projects by [@​Crypt-iQ](https://togithub.com/Crypt-iQ) in [https://github.com/btcsuite/btcd/pull/1739](https://togithub.com/btcsuite/btcd/pull/1739) - Switch irc to libera.chat by [@​jcvernaleo](https://togithub.com/jcvernaleo) in [https://github.com/btcsuite/btcd/pull/1725](https://togithub.com/btcsuite/btcd/pull/1725) - rpcclient: Export symbols needed for custom commands by [@​JeremyRand](https://togithub.com/JeremyRand) in [https://github.com/btcsuite/btcd/pull/1457](https://togithub.com/btcsuite/btcd/pull/1457) - btcec: check if recovered pk is at point of infinity by [@​MariusVanDerWijden](https://togithub.com/MariusVanDerWijden) in [https://github.com/btcsuite/btcd/pull/1750](https://togithub.com/btcsuite/btcd/pull/1750) - mempool: introduce GetDustThreshold to export dust limit calculation by [@​Crypt-iQ](https://togithub.com/Crypt-iQ) in [https://github.com/btcsuite/btcd/pull/1742](https://togithub.com/btcsuite/btcd/pull/1742) - build: bump min Go version to 1.16.8 add Go 1.17.1 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1753](https://togithub.com/btcsuite/btcd/pull/1753) - Upgraded the docker version to 1.16 by [@​naveensrinivasan](https://togithub.com/naveensrinivasan) in [https://github.com/btcsuite/btcd/pull/1755](https://togithub.com/btcsuite/btcd/pull/1755) - peer+server: add new config option to optionally disable stall detection by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1752](https://togithub.com/btcsuite/btcd/pull/1752) - addrmgr: make KnownAddress methods thread-safe by [@​chappjc](https://togithub.com/chappjc) in [https://github.com/btcsuite/btcd/pull/1763](https://togithub.com/btcsuite/btcd/pull/1763) - comment improvement by [@​pyh4](https://togithub.com/pyh4) in [https://github.com/btcsuite/btcd/pull/1762](https://togithub.com/btcsuite/btcd/pull/1762) - Included permissions for GitHub action by [@​naveensrinivasan](https://togithub.com/naveensrinivasan) in [https://github.com/btcsuite/btcd/pull/1756](https://togithub.com/btcsuite/btcd/pull/1756) - connmgr: Fix stale comment in TestRemovePendingConnection by [@​sloorush](https://togithub.com/sloorush) in [https://github.com/btcsuite/btcd/pull/1749](https://togithub.com/btcsuite/btcd/pull/1749) - rpcclient: Add retry with backoffs to HTTP POST requests by [@​3nprob](https://togithub.com/3nprob) in [https://github.com/btcsuite/btcd/pull/1743](https://togithub.com/btcsuite/btcd/pull/1743) - txscript: backport tokenizer from dcrd by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1769](https://togithub.com/btcsuite/btcd/pull/1769) - go.mod, go.sum: Update goleveldb by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1770](https://togithub.com/btcsuite/btcd/pull/1770) - reduce redundant memory allocation - resolves [#​1699](https://togithub.com/btcsuite/btcd/issues/1699) by [@​ziollek](https://togithub.com/ziollek) in [https://github.com/btcsuite/btcd/pull/1759](https://togithub.com/btcsuite/btcd/pull/1759) - rpcclient+rpcserver+integration: GetNetworkHashPS3 must be float64 by [@​mattbajorek](https://togithub.com/mattbajorek) in [https://github.com/btcsuite/btcd/pull/1778](https://togithub.com/btcsuite/btcd/pull/1778) - multi: move the btcutil repo into btcd as a sub-module by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1785](https://togithub.com/btcsuite/btcd/pull/1785) - btcutil: update modules to replace to top-level btcd repo by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1788](https://togithub.com/btcsuite/btcd/pull/1788) - chaincfg+blockchain: abstract/refactor BIP 9 version bits implementation to work w/ BIP 8 block heights by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1700](https://togithub.com/btcsuite/btcd/pull/1700) - btcec: create new btcec/v2 module that type aliases into the dcrec module by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1773](https://togithub.com/btcsuite/btcd/pull/1773) - btcec/v2: create new schnorr package for BIP-340, move existing ecdsa implementation into new ecdsa package by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1777](https://togithub.com/btcsuite/btcd/pull/1777) - build: update to btcec v2.1.0 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1801](https://togithub.com/btcsuite/btcd/pull/1801) - build: retract bogus tags from btcd fork by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1805](https://togithub.com/btcsuite/btcd/pull/1805) - mempool/estimatefee: Fix negative index bug by [@​kcalvinalvin](https://togithub.com/kcalvinalvin) in [https://github.com/btcsuite/btcd/pull/1813](https://togithub.com/btcsuite/btcd/pull/1813) - Replace github.com/btcsuite/goleveldb imports with github.com/syndtr/goleveldb by [@​anupcshan](https://togithub.com/anupcshan) in [https://github.com/btcsuite/btcd/pull/1780](https://togithub.com/btcsuite/btcd/pull/1780) - Remove circular dependency issue between `btcec/v2` and main package by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1823](https://togithub.com/btcsuite/btcd/pull/1823) - Fixes coveralls coverage report by [@​vpereira01](https://togithub.com/vpereira01) in [https://github.com/btcsuite/btcd/pull/1814](https://togithub.com/btcsuite/btcd/pull/1814) - Update LICENSE by [@​MarnixCroes](https://togithub.com/MarnixCroes) in [https://github.com/btcsuite/btcd/pull/1809](https://togithub.com/btcsuite/btcd/pull/1809) - build: update to btcec/v2.1.1 and chaincfg/chainhash/v1.00 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1824](https://togithub.com/btcsuite/btcd/pull/1824) - multi: implement BIP 341 and 342 a.k.a complete taproot and tapscript consensus verification logic by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1787](https://togithub.com/btcsuite/btcd/pull/1787) - build: update to btcec/v2.1.3 and chaincfg/chainhash v1.0.1 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1831](https://togithub.com/btcsuite/btcd/pull/1831) - blockchain: demote BIP 9 log statements by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1832](https://togithub.com/btcsuite/btcd/pull/1832) - psbt: allow empty bip32 derivation path by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1834](https://togithub.com/btcsuite/btcd/pull/1834) - Revert "reduce redundant memory allocatio - resolves [#​1699](https://togithub.com/btcsuite/btcd/issues/1699)" by [@​Crypt-iQ](https://togithub.com/Crypt-iQ) in [https://github.com/btcsuite/btcd/pull/1804](https://togithub.com/btcsuite/btcd/pull/1804) - Default to JSONRPC 1.0 if the rpcVersion empty by [@​jsfour](https://togithub.com/jsfour) in [https://github.com/btcsuite/btcd/pull/1837](https://togithub.com/btcsuite/btcd/pull/1837) - btcjson: Update fields in GetNetworkInfoResult by [@​dekokun](https://togithub.com/dekokun) in [https://github.com/btcsuite/btcd/pull/1800](https://togithub.com/btcsuite/btcd/pull/1800) - harden daemon on OpenBSD by [@​timkuijsten](https://togithub.com/timkuijsten) in [https://github.com/btcsuite/btcd/pull/1815](https://togithub.com/btcsuite/btcd/pull/1815) - rpctest: ensure rpclisten is set to an available port by [@​arshbot](https://togithub.com/arshbot) in [https://github.com/btcsuite/btcd/pull/1806](https://togithub.com/btcsuite/btcd/pull/1806) - btcjson: add addresstype arg to getnewaddress by [@​chappjc](https://togithub.com/chappjc) in [https://github.com/btcsuite/btcd/pull/1776](https://togithub.com/btcsuite/btcd/pull/1776) - chaincfg: use lower custom activation threshold for regtest+simnet by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1838](https://togithub.com/btcsuite/btcd/pull/1838) - rpcclient: add getzmqnotifications RPC by [@​torkelrogstad](https://togithub.com/torkelrogstad) in [https://github.com/btcsuite/btcd/pull/1810](https://togithub.com/btcsuite/btcd/pull/1810) - btcd: don't override explicitly set GOGC by [@​anupcshan](https://togithub.com/anupcshan) in [https://github.com/btcsuite/btcd/pull/1782](https://togithub.com/btcsuite/btcd/pull/1782) - Adds GH workflow to build docker images on version tags by [@​vpereira01](https://togithub.com/vpereira01) in [https://github.com/btcsuite/btcd/pull/1830](https://togithub.com/btcsuite/btcd/pull/1830) - multi: implement BIP-155 addrv2 support by [@​Crypt-iQ](https://togithub.com/Crypt-iQ) in [https://github.com/btcsuite/btcd/pull/1812](https://togithub.com/btcsuite/btcd/pull/1812) - psbt: always use non witness serialization format by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1842](https://togithub.com/btcsuite/btcd/pull/1842) - btcec/schnorr/musig2: add new musig2 implementation based on musig2 draft BIP by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1820](https://togithub.com/btcsuite/btcd/pull/1820) - fuzz: add ParsePubKey fuzzer by [@​odeke-em](https://togithub.com/odeke-em) in [https://github.com/btcsuite/btcd/pull/1854](https://togithub.com/btcsuite/btcd/pull/1854) - psbt: add support for new Taproot fields by [@​guggero](https://togithub.com/guggero) in [https://github.com/btcsuite/btcd/pull/1847](https://togithub.com/btcsuite/btcd/pull/1847) - rpcclient: fix crash in http retry handler by [@​bhandras](https://togithub.com/bhandras) in [https://github.com/btcsuite/btcd/pull/1856](https://togithub.com/btcsuite/btcd/pull/1856) - mempool: export checkStandardness func by [@​ellemouton](https://togithub.com/ellemouton) in [https://github.com/btcsuite/btcd/pull/1840](https://togithub.com/btcsuite/btcd/pull/1840) - build: bump version to v0.23 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1860](https://togithub.com/btcsuite/btcd/pull/1860) - rpcclient: add getnewaddresstype and revert breaking change by [@​chappjc](https://togithub.com/chappjc) in [https://github.com/btcsuite/btcd/pull/1844](https://togithub.com/btcsuite/btcd/pull/1844) - rpcclient: fix missing return by [@​bhandras](https://togithub.com/bhandras) in [https://github.com/btcsuite/btcd/pull/1862](https://togithub.com/btcsuite/btcd/pull/1862) - build: bump version to v0.23.1 by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1863](https://togithub.com/btcsuite/btcd/pull/1863) #### New Contributors - [@​gnasr](https://togithub.com/gnasr) made their first contribution in [https://github.com/btcsuite/btcd/pull/1729](https://togithub.com/btcsuite/btcd/pull/1729) - [@​MariusVanDerWijden](https://togithub.com/MariusVanDerWijden) made their first contribution in [https://github.com/btcsuite/btcd/pull/1750](https://togithub.com/btcsuite/btcd/pull/1750) - [@​naveensrinivasan](https://togithub.com/naveensrinivasan) made their first contribution in [https://github.com/btcsuite/btcd/pull/1755](https://togithub.com/btcsuite/btcd/pull/1755) - [@​chappjc](https://togithub.com/chappjc) made their first contribution in [https://github.com/btcsuite/btcd/pull/1763](https://togithub.com/btcsuite/btcd/pull/1763) - [@​pyh4](https://togithub.com/pyh4) made their first contribution in [https://github.com/btcsuite/btcd/pull/1762](https://togithub.com/btcsuite/btcd/pull/1762) - [@​sloorush](https://togithub.com/sloorush) made their first contribution in [https://github.com/btcsuite/btcd/pull/1749](https://togithub.com/btcsuite/btcd/pull/1749) - [@​3nprob](https://togithub.com/3nprob) made their first contribution in [https://github.com/btcsuite/btcd/pull/1743](https://togithub.com/btcsuite/btcd/pull/1743) - [@​ziollek](https://togithub.com/ziollek) made their first contribution in [https://github.com/btcsuite/btcd/pull/1759](https://togithub.com/btcsuite/btcd/pull/1759) - [@​mattbajorek](https://togithub.com/mattbajorek) made their first contribution in [https://github.com/btcsuite/btcd/pull/1778](https://togithub.com/btcsuite/btcd/pull/1778) - [@​anupcshan](https://togithub.com/anupcshan) made their first contribution in [https://github.com/btcsuite/btcd/pull/1780](https://togithub.com/btcsuite/btcd/pull/1780) - [@​vpereira01](https://togithub.com/vpereira01) made their first contribution in [https://github.com/btcsuite/btcd/pull/1814](https://togithub.com/btcsuite/btcd/pull/1814) - [@​MarnixCroes](https://togithub.com/MarnixCroes) made their first contribution in [https://github.com/btcsuite/btcd/pull/1809](https://togithub.com/btcsuite/btcd/pull/1809) - [@​jsfour](https://togithub.com/jsfour) made their first contribution in [https://github.com/btcsuite/btcd/pull/1837](https://togithub.com/btcsuite/btcd/pull/1837) - [@​dekokun](https://togithub.com/dekokun) made their first contribution in [https://github.com/btcsuite/btcd/pull/1800](https://togithub.com/btcsuite/btcd/pull/1800) - [@​timkuijsten](https://togithub.com/timkuijsten) made their first contribution in [https://github.com/btcsuite/btcd/pull/1815](https://togithub.com/btcsuite/btcd/pull/1815) - [@​arshbot](https://togithub.com/arshbot) made their first contribution in [https://github.com/btcsuite/btcd/pull/1806](https://togithub.com/btcsuite/btcd/pull/1806) - [@​odeke-em](https://togithub.com/odeke-em) made their first contribution in [https://github.com/btcsuite/btcd/pull/1854](https://togithub.com/btcsuite/btcd/pull/1854) - [@​bhandras](https://togithub.com/bhandras) made their first contribution in [https://github.com/btcsuite/btcd/pull/1856](https://togithub.com/btcsuite/btcd/pull/1856) - [@​ellemouton](https://togithub.com/ellemouton) made their first contribution in [https://github.com/btcsuite/btcd/pull/1840](https://togithub.com/btcsuite/btcd/pull/1840) **Full Changelog**: https://github.com/btcsuite/btcd/compare/v0.22.0-beta...v0.23.1 ### [`v0.23.0`](https://togithub.com/btcsuite/btcd/compare/v0.22.3...v0.23.0) [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.22.3...v0.23.0) ### [`v0.22.3`](https://togithub.com/btcsuite/btcd/compare/v0.22.2...v0.22.3) [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.22.2...v0.22.3) ### [`v0.22.2`](https://togithub.com/btcsuite/btcd/releases/tag/v0.22.2): btcd v0.22.2 [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.22.1...v0.22.2) #### What's Changed - \[release-v0.22.1] multi: Switch to chaincfg/chainhash module. by [@​davecgh](https://togithub.com/davecgh) in [https://github.com/btcsuite/btcd/pull/1851](https://togithub.com/btcsuite/btcd/pull/1851) - release: create release branch for v0.22.2 to backport block parsing issue by [@​Roasbeef](https://togithub.com/Roasbeef) in [https://github.com/btcsuite/btcd/pull/1901](https://togithub.com/btcsuite/btcd/pull/1901) **Full Changelog**: https://github.com/btcsuite/btcd/compare/v0.22.1...v0.22.2 ### [`v0.22.1`](https://togithub.com/btcsuite/btcd/compare/v0.21.0-beta...v0.22.1) [Compare Source](https://togithub.com/btcsuite/btcd/compare/v0.21.0-beta...v0.22.1)

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] commented 1 month ago

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: downloading github.com/localtunnel/go-localtunnel v0.0.0-20170326223115-8a804488f275
go: downloading github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading github.com/pkg/browser v0.0.0-20210621091255-c198bc921a84
go: downloading github.com/urfave/cli/v2 v2.3.0
go: downloading golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
go: downloading github.com/stretchr/testify v1.7.0
go: downloading github.com/xplorfin/netutils v0.45.0
go: downloading golang.org/x/net v0.0.0-20210614182718-04defd469f4e
go: downloading github.com/btcsuite/btcd v0.24.0
go: downloading github.com/fiatjaf/go-lnurl v1.3.1
go: downloading github.com/brianvoe/gofakeit/v5 v5.11.2
go: downloading github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
go: downloading golang.org/x/sys v0.0.0-20210514084401-e8d321eab015
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
go: downloading github.com/fasthttp/router v1.4.0
go: downloading github.com/integralist/go-findroot v0.0.0-20160518114804-ac90681525dc
go: downloading github.com/jarcoal/httpmock v1.0.8
go: downloading github.com/valyala/fasthttp v1.28.0
go: downloading github.com/xplorfin/filet v0.3.0
go: downloading github.com/yudai/gojsondiff v1.0.0
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: downloading github.com/tidwall/gjson v1.6.0
go: downloading github.com/savsgio/gotils v0.0.0-20210617111740-97865ed5a873
go: downloading github.com/valyala/bytebufferpool v1.0.0
go: downloading github.com/andybalholm/brotli v1.0.2
go: downloading github.com/klauspost/compress v1.12.2
go: downloading github.com/spf13/afero v1.6.0
go: downloading github.com/jpillora/backoff v1.0.0
go: downloading github.com/EDDYCJY/fake-useragent v0.2.0
go: downloading github.com/sergi/go-diff v1.1.0
go: downloading github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: downloading github.com/tidwall/match v1.0.1
go: downloading github.com/tidwall/pretty v1.0.0
go: downloading golang.org/x/text v0.3.6
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: downloading github.com/PuerkitoBio/goquery v1.6.1
go: downloading github.com/andybalholm/cascadia v1.1.0
go: downloading github.com/btcsuite/btcd v0.24.2
go: github.com/xplorfin/lnurlauth/integration imports
    github.com/btcsuite/btcd/btcec: cannot find module providing package github.com/btcsuite/btcd/btcec