]> Untitled Git - bdk/commitdiff
chore(bdk-chain): bump to `0.23.1`, update `CHANGELOG`
authorLeonardo Lima <oleonardolima@users.noreply.github.com>
Thu, 31 Jul 2025 14:51:34 +0000 (11:51 -0300)
committerLeonardo Lima <oleonardolima@users.noreply.github.com>
Tue, 5 Aug 2025 20:00:54 +0000 (17:00 -0300)
chore(bdk-core): bump to `bdk-core` `0.6.1` and update `CHANGELOG`

chore(bdk-testenv): bump to `bdk-testenv` `0.13.1` and update `CHANGELOG`

chore(bdk-filestore): bump to `0.21.1` and update `CHANGELOG`

chore(bitcoind-rpc): bump to `0.21.0` and update `CHANGELOG`

chore(bdk-electrum): bump to `0.23.1` and update `CHANGELOG`

chore(bdk-esplora): bump to `0.22.1` and update `CHANGELOG`

14 files changed:
crates/bitcoind_rpc/CHANGELOG.md
crates/bitcoind_rpc/Cargo.toml
crates/chain/CHANGELOG.md
crates/chain/Cargo.toml
crates/core/CHANGELOG.md
crates/core/Cargo.toml
crates/electrum/CHANGELOG.md
crates/electrum/Cargo.toml
crates/esplora/CHANGELOG.md
crates/esplora/Cargo.toml
crates/file_store/CHANGELOG.md
crates/file_store/Cargo.toml
crates/testenv/CHANGELOG.md
crates/testenv/Cargo.toml

index 39160dd7d3b023c586dffa7f5632e36a195e9945..0bad8d9cc94b5e26ba2d2f5ce7a378c81be8c70e 100644 (file)
@@ -7,6 +7,21 @@ Contributors do not need to change this file but do need to add changelog detail
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [bitcoind_rpc-0.21.0]
+
+### Added
+
+- Introduce usage of `cfg_attr(coverage_nightly)` in order to not consider tests under coverage. #1986
+
+### Changed
+
+- deps: bump bdk_core to 0.6.1
+
+### Fixed
+
+- Some mempool transactions not being emitted at all, it was fixed by simplifying the emitter, and replaced the avoid-re-emission-logic with a new one that emits all mempool transactions. #1988
+- Use the `getrawmempool` without verbose, as a more performant method. `Emitter::mempool` method now requires the `std` feature. A non-std version of this is added: `Emitter::mempool_at` #1988
+
 ## [bitcoind_rpc-0.20.0]
 
 ### Changed
@@ -38,3 +53,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 [bitcoind_rpc-0.18.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.18.0
 [bitcoind_rpc-0.19.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.19.0
 [bitcoind_rpc-0.20.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.20.0
+[bitcoind_rpc-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.21.0
\ No newline at end of file
index 5cb6c21dfed70330a2c404ae11cf59235c465dad..bdece98001b0b6de454c3468c0de686b56ccae01 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "bdk_bitcoind_rpc"
-version = "0.20.0"
+version = "0.21.0"
 edition = "2021"
 rust-version = "1.63"
 homepage = "https://bitcoindevkit.org"
@@ -18,7 +18,7 @@ workspace = true
 [dependencies]
 bitcoin = { version = "0.32.0", default-features = false }
 bitcoincore-rpc = { version = "0.19.0" }
-bdk_core = { path = "../core", version = "0.6.0", default-features = false }
+bdk_core = { path = "../core", version = "0.6.1", default-features = false }
 
 [dev-dependencies]
 bdk_bitcoind_rpc = { path = "." }
index 935b834068d3afc5790df64603beac42703a837c..1648651a84b8367f8ffc3f5ea65e4849e103f76a 100644 (file)
@@ -7,6 +7,23 @@ Contributors do not need to change this file but do need to add changelog detail
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [chain-0.23.1]
+
+### Added
+
+- Add new tests covering excluded bounds and the `SpkTxOutIndex::outputs_in_range` #1897
+- Add new `reindex_tx_graph` benchmark, and unit test to cover `spk_cache` behavior #1968
+- Add new `TxGraph::get_last_evicted` method #1977
+
+### Changed
+
+- Improve API docs, fixed parameter names to match the function or struct definition, and correct some spelling mistakes. #1968
+- `KeychainTxOutIndex::apply_changeset` restores spk_cache before last revealed #1993
+- deps: bump bdk_core to 0.6.1
+
+### Fixed
+- During canonicalization, exclude coinbase transactions when considering txs that are anchored in stale blocks #1976
+
 ## [chain-0.23.0]
 
 ### Added
@@ -57,3 +74,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 [chain-0.21.1]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.21.1
 [chain-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.22.0
 [chain-0.23.0]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.0
+[chain-0.23.1]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.1
\ No newline at end of file
index 76b1b3ce0c5ba7519726554909402add0723100b..e482a379dd209de6216a4db8b2d456b96a8ff7e3 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "bdk_chain"
-version = "0.23.0"
+version = "0.23.1"
 edition = "2021"
 rust-version = "1.63"
 homepage = "https://bitcoindevkit.org"
@@ -17,7 +17,7 @@ workspace = true
 
 [dependencies]
 bitcoin = { version = "0.32.0", default-features = false }
-bdk_core = { path = "../core", version = "0.6.0", default-features = false }
+bdk_core = { path = "../core", version = "0.6.1", default-features = false }
 serde = { version = "1", optional = true, features = ["derive", "rc"] }
 miniscript = { version = "12.3.1", optional = true, default-features = false }
 
index 9b24b15b3aae3eaff7871035a82bc40d70186055..aec660ad630d9e4ee660cefbd17011a859ac460b 100644 (file)
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## Unreleased
 
+## [core-0.6.1]
+
+### Changed
+
+- Fix `clippy` warnings for `SpkItem` on `spk_client` #1990
+
 ## [core-0.6.0]
 
 ### Added
@@ -43,3 +49,4 @@ This is because requests now have a `start_time`, instead of specifying a `seen_
 [core-0.4.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.4.1
 [core-0.5.0]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.5.0
 [core-0.6.0]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.6.0
+[core-0.6.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.6.1
index 72db5f06e8157f5cc6191e5e535dd343fd18dc84..217996a1305677b9af9de610bc75e0652670e9f9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "bdk_core"
-version = "0.6.0"
+version = "0.6.1"
 edition = "2021"
 rust-version = "1.63"
 homepage = "https://bitcoindevkit.org"
index 3746b21e1b5fa0370709ece494702b041d7a12c9..73ab3a40b2f03a1a1c59e76e4b90155d30cb1372 100644 (file)
@@ -7,6 +7,22 @@ Contributors do not need to change this file but do need to add changelog detail
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [electrum-0.23.1]
+
+### Added
+- Introduce usage of `cfg_attr(coverage_nightly)` in order to not consider tests under coverage. #1986
+
+### Changed
+
+- Add transaction anchor cache to prevent redundant network calls. #1957
+- Batch Merkle Proof, script history, and header requests. #1957
+- Fix `clippy` warnings on electrum-client batch call #1990
+- deps: bump bdk_core to 0.6.1
+- deps: bump electrum-client to 0.24.0
+
+### Fixed
+- Removed all `unwrap()`s and `expect()`s from `bdk_electrum_client.rs` #1981
+
 ## [electrum-0.23.0]
 
 ### Changed
@@ -44,3 +60,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 [electrum-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.21.0
 [electrum-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.22.0
 [electrum-0.23.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.23.0
+[electrum-0.23.1]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.23.1
index c37eee642666de9e93014cc6442798a25eeb140f..7ad0d6c3de93a60402e0ae4d21230419c23f5c2f 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "bdk_electrum"
-version = "0.23.0"
+version = "0.23.1"
 edition = "2021"
 homepage = "https://bitcoindevkit.org"
 repository = "https://github.com/bitcoindevkit/bdk"
@@ -13,7 +13,7 @@ readme = "README.md"
 workspace = true
 
 [dependencies]
-bdk_core = { path = "../core", version = "0.6.0" }
+bdk_core = { path = "../core", version = "0.6.1" }
 electrum-client = { version = "0.24.0", features = [ "proxy" ], default-features = false }
 
 [dev-dependencies]
index ad56569a1a59d75722c5f4fe577f3561630c3436..1f246b0f0c6110bc43a7c885301cf7555724fd1f 100644 (file)
@@ -7,6 +7,18 @@ Contributors do not need to change this file but do need to add changelog detail
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [esplora-0.22.1]
+
+### Added
+- Introduce usage of `cfg_attr(coverage_nightly)` in order to not consider tests under coverage. #1986
+
+### Changed
+- deps: bump `esplora-client` to 0.12.1
+- deps: bump `bdk_core` to 0.6.1
+
+### Fixed
+- Esplora `chain_update` returns early with `esplora_client::Error::HeaderHashNotFound` if no point of agreement is found in the local checkpoint #1971
+
 ## [esplora-0.22.0]
 
 ### Changed
@@ -32,3 +44,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 [esplora-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.20.1
 [esplora-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.21.0
 [esplora-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.22.0
+[esplora-0.22.1]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.22.1
index 05dea8a02cceeb51cee8b0a66627297c53225af6..e4c553f77c0060b6cbc513d83061111ca8873030 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "bdk_esplora"
-version = "0.22.0"
+version = "0.22.1"
 edition = "2021"
 homepage = "https://bitcoindevkit.org"
 repository = "https://github.com/bitcoindevkit/bdk"
@@ -15,8 +15,8 @@ readme = "README.md"
 workspace = true
 
 [dependencies]
-bdk_core = { path = "../core", version = "0.6.0", default-features = false }
-esplora-client = { version = "0.12.0", default-features = false }
+bdk_core = { path = "../core", version = "0.6.1", default-features = false }
+esplora-client = { version = "0.12.1", default-features = false }
 async-trait = { version = "0.1.66", optional = true }
 futures = { version = "0.3.26", optional = true }
 
index 46f5bb7668b7048766e0dfae6ded91329c53fcc4..c0ef2687d8e3450f6747b5cd091160dab4e5f89a 100644 (file)
@@ -7,6 +7,17 @@ Contributors do not need to change this file but do need to add changelog detail
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [file_store-0.21.1]
+
+### Added
+
+- Introduce usage of `cfg_attr(coverage_nightly)` in order to not consider tests under coverage. #1986
+
+### Changed
+
+- Fix `clippy` formatting warnings for `StoreError` and test assertions #1990
+- Bump `bdk_core` to `0.6.1`
+
 ## [file_store-0.21.0]
 
 ### Changed
@@ -49,3 +60,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 [file_store-0.19.0]: https://github.com/bitcoindevkit/bdk/releases/tag/file_store-0.19.0
 [file_store-0.20.0]: https://github.com/bitcoindevkit/bdk/releases/tag/file_store-0.20.0
 [file_store-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/file_store-0.21.0
+[file_store-0.21.1]: https://github.com/bitcoindevkit/bdk/releases/tag/file_store-0.21.1
index da20bfbe25b767ed79da049bcc74b6468fb06107..4b0ace93503e2ec660498c786440b5ff49433e8b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "bdk_file_store"
-version = "0.21.0"
+version = "0.21.1"
 edition = "2021"
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/bitcoindevkit/bdk"
@@ -14,7 +14,7 @@ readme = "README.md"
 workspace = true
 
 [dependencies]
-bdk_core = { path = "../core", version = "0.6.0", features = ["serde"]}
+bdk_core = { path = "../core", version = "0.6.1", features = ["serde"]}
 bincode = { version = "1" }
 serde = { version = "1", features = ["derive"] }
 
index d0e1f362b434930baf9f3613bbda72e9b8dc25f6..908b707e6f52048f9619e9e12a65232518616db3 100644 (file)
@@ -7,6 +7,13 @@ Contributors do not need to change this file but do need to add changelog detail
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [testenv-0.13.1]
+
+### Changed
+
+- Introduce usage of `cfg_attr(coverage_nightly)` in order to not consider tests under coverage. #1986
+- deps: bump `bdk_chain` to 0.23.1
+
 ## [testenv-0.13.0]
 
 ### Changed
@@ -28,3 +35,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 [testenv-0.11.1]: https://github.com/bitcoindevkit/bdk/releases/tag/testenv-0.11.1
 [testenv-0.12.0]: https://github.com/bitcoindevkit/bdk/releases/tag/testenv-0.12.0
 [testenv-0.13.0]: https://github.com/bitcoindevkit/bdk/releases/tag/testenv-0.13.0
+[testenv-0.13.1]: https://github.com/bitcoindevkit/bdk/releases/tag/testenv-0.13.1
index 8c02bf645e51cef05ae65c3fbac3e6c184b4eae1..eff58a41c7096b53efa772b1632766f332d29445 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "bdk_testenv"
-version = "0.13.0"
+version = "0.13.1"
 edition = "2021"
 rust-version = "1.63"
 homepage = "https://bitcoindevkit.org"
@@ -16,7 +16,7 @@ readme = "README.md"
 workspace = true
 
 [dependencies]
-bdk_chain = { path = "../chain", version = "0.23.0", default-features = false }
+bdk_chain = { path = "../chain", version = "0.23.1", default-features = false }
 electrsd = { version = "0.28.0", features = [ "legacy" ], default-features = false }
 
 [dev-dependencies]