Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions ci/pin-msrv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ cargo update -p tracing-core --precise "0.1.33"
cargo update -p "webpki-roots@1.0.6" --precise "1.0.1"
cargo update -p rayon --precise "1.10.0"
cargo update -p rayon-core --precise "1.12.1"
cargo update -p quote --precise "1.0.41"
cargo update -p syn --precise "2.0.106"
cargo update -p openssl --precise "0.10.73"
cargo update -p openssl-sys --precise "0.9.109"
cargo update -p "getrandom@0.4.2" --precise "0.2.17"
Expand All @@ -48,7 +46,6 @@ cargo update -p futures-core --precise "0.3.31"
cargo update -p futures-io --precise "0.3.31"
cargo update -p futures-sink --precise "0.3.31"
cargo update -p futures-task --precise "0.3.31"
cargo update -p proc-macro2 --precise "1.0.92"
cargo update -p log --precise "0.4.22"
cargo update -p itoa --precise "1.0.11"
cargo update -p anyhow --precise "1.0.86"
Expand All @@ -57,3 +54,9 @@ cargo update -p hyper-util --precise "0.1.6"
cargo update -p pin-project --precise "1.1.5"
cargo update -p pin-project-internal --precise "1.1.5"
cargo update -p "rustls@0.23.37" --precise "0.23.26"

# all pinning required due to `clap` usage in `example_cli`
cargo update -p "clap@4.6.0" --precise "4.5.17"
cargo update -p proc-macro2 --precise "1.0.92"
cargo update -p quote --precise "1.0.41"
cargo update -p syn --precise "2.0.106"
19 changes: 18 additions & 1 deletion crates/chain/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

## [chain-0.23.3]

### Added

- Add new `list_ordered_canonical_txs` method to `TxGraph` that returns canonical transactions in topological order. #2027

### Fixed

- Fixed `ChainPosition` ordering so unconfirmed transactions never seen in mempool appear last instead of first. #2146
- The `Anchor::confirmation_height_upper_bound` impl was missing for `&A`, causing it to fallback to the default impl. #2149
- Previously, assumed-canonical transactions always became unconfirmed even though the transaction may be anchored in the best chain. #2150

### Changed

- Simplified `FullTxOut` ordering to only use essential fields (chain_position, outpoint, spent_by). #2146

## [chain-0.23.2]

### Added
Expand Down Expand Up @@ -85,4 +101,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[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
[chain-0.23.2]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.2
[chain-0.23.2]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.2
[chain-0.23.3]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.3
4 changes: 2 additions & 2 deletions crates/chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk_chain"
version = "0.23.2"
version = "0.23.3"
edition = "2021"
rust-version = "1.63"
homepage = "https://bitcoindevkit.org"
Expand All @@ -17,7 +17,7 @@ workspace = true

[dependencies]
bitcoin = { version = "0.32.0", default-features = false }
bdk_core = { path = "../core", version = "0.6.2", default-features = false }
bdk_core = { path = "../core", version = "0.6.3", default-features = false }
serde = { version = "1", optional = true, features = ["derive", "rc"] }
miniscript = { version = "12.3.1", optional = true, default-features = false }

Expand Down
7 changes: 7 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [core-0.6.3]

### Fixed

- Fix `broken-intra-doc-link` for `KeychainTxOutIndex`. #2155

## [core-0.6.2]

### Added
Expand Down Expand Up @@ -57,3 +63,4 @@ This is because requests now have a `start_time`, instead of specifying a `seen_
[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
[core-0.6.2]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.6.2
[core-0.6.3]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.6.3
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk_core"
version = "0.6.2"
version = "0.6.3"
edition = "2021"
rust-version = "1.63"
homepage = "https://bitcoindevkit.org"
Expand Down
4 changes: 1 addition & 3 deletions crates/core/src/spk_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,7 @@ impl<I> SyncRequestBuilder<I> {
///
/// # Example
///
/// Sync revealed script pubkeys obtained from a
/// [`KeychainTxOutIndex`](../../bdk_chain/indexer/keychain_txout/struct.KeychainTxOutIndex.
/// html).
/// Sync revealed script pubkeys obtained from a [`KeychainTxOutIndex`](https://docs.rs/bdk_chain/latest/bdk_chain/indexer/keychain_txout/struct.KeychainTxOutIndex.html).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay this means we need a patch version bump for bdk_core as well!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I missed it. I updated it to also bump/release bdk_core.

///
/// ```rust
/// # use bdk_chain::spk_client::SyncRequest;
Expand Down
8 changes: 8 additions & 0 deletions crates/esplora/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

## [esplora-0.22.2]

### Fixed

- In `bdk_esplora` now avoids a panic in stop‑gap scan loop by tracking consecutive unused scripts to compute the gap boundary. #2148
- Bump `esplora_client` to `0.12.3` (Therefore replacing `.get_blocks` with `.get_block_infos`). #2148

## [esplora-0.22.1]

### Added
Expand Down Expand Up @@ -45,3 +52,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[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
[esplora-0.22.2]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.22.2
4 changes: 2 additions & 2 deletions crates/esplora/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk_esplora"
version = "0.22.1"
version = "0.22.2"
edition = "2021"
homepage = "https://bitcoindevkit.org"
repository = "https://github.com/bitcoindevkit/bdk"
Expand All @@ -15,7 +15,7 @@ readme = "README.md"
workspace = true

[dependencies]
bdk_core = { path = "../core", version = "0.6.1", default-features = false }
bdk_core = { path = "../core", version = "0.6.3", default-features = false }
esplora-client = { version = "0.12.3", default-features = false }
async-trait = { version = "0.1.66", optional = true }
futures = { version = "0.3.26", optional = true }
Expand Down
Loading