diff --git a/.github/workflows/scripts/release-crates-dry-run.sh b/.github/workflows/scripts/release-crates-dry-run.sh index cbae0ca35c3..df18df580f9 100755 --- a/.github/workflows/scripts/release-crates-dry-run.sh +++ b/.github/workflows/scripts/release-crates-dry-run.sh @@ -23,8 +23,8 @@ fi cargo release version --verbose --execute --no-confirm --allow-branch '*' --workspace --exclude zebrad --exclude zebra-scan --exclude zebra-grpc beta # Due to a bug in cargo-release, we need to pass exact versions for alpha crates: -cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-scan 0.1.0-alpha.5 -cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-grpc 0.1.0-alpha.3 +cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-scan 0.1.0-alpha.6 +cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-grpc 0.1.0-alpha.4 # Update zebrad: cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebrad patch diff --git a/CHANGELOG.md b/CHANGELOG.md index bddc43ed7b8..c7be5e94216 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,19 +5,34 @@ All notable changes to Zebra are documented in this file. 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). -## Unreleased +## [Zebra 1.6.1](https://github.com/ZcashFoundation/zebra/releases/tag/v1.6.1) - 2024-04-15 -### Added -- `zebra_chain::Network` methods: - - `b58_pubkey_address_prefix`, `b58_script_address_prefix`, `num_funding_streams` +This release adds an OpenAPI specification for Zebra's RPC methods and startup logs about Zebra's storage usage and other database information. + +It also includes: +- Bug fixes and improved error messages for some zebra-scan gRPC methods +- A performance improvement in Zebra's `getblock` RPC method + +### Added + +- Log database information such as storage usage on startup and shutdown ([#8336](https://github.com/ZcashFoundation/zebra/pull/8336), [#8389](https://github.com/ZcashFoundation/zebra/pull/8389)) +- OpenAPI specification for Zebra's RPC methods ([#8342](https://github.com/ZcashFoundation/zebra/pull/8342)) +- Add block times to output of getblock RPC method when called with `verbosity = 2` ([#8384](https://github.com/ZcashFoundation/zebra/pull/8384)) ### Changed -- Functions that take a `zebra_chain::Network` as an argument have been moved to be methods of `Network`, including - - `zebra_chain::parameters`: - - `genesis::genesis_hash`, `NetworkUpgrade::activation_list`, `NetworkUpgrade::is_max_block_time_enforced`, - - `zebra_chain::work::difficulty::ExpandedDifficulty::target_difficutly_limit` - - `zebra_consensus::height_for_first_halving` - - `zebra_consensus::checkpoint::CheckpointList::new` (now `Network::checkpoint_list`) + +- Removed `Copy` trait impl for `Network` ([#8354](https://github.com/ZcashFoundation/zebra/pull/8354)) +- Refactored code for network consensus parameters to `Network` methods ([#8340](https://github.com/ZcashFoundation/zebra/pull/8340)) + +### Fixed + +- Improve zebra-scan gRPC method errors and add timeout to scan service to avoid hanging ([#8318](https://github.com/ZcashFoundation/zebra/pull/8318)) +- Await state service requests in `getblock` method in parallel ([#8376](https://github.com/ZcashFoundation/zebra/pull/8376)) + +### Contributors + +Thank you to everyone who contributed to this release, we couldn't make Zebra without you: +@arya2, @elijahhampton, @gustavovalverde, @idky137, @mpguerra, @oxarbitrage, @upbqdn and @zancas ## [Zebra 1.6.0](https://github.com/ZcashFoundation/zebra/releases/tag/v1.6.0) - 2024-02-23 diff --git a/Cargo.lock b/Cargo.lock index ba093886ee7..a78acb4fb1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4812,7 +4812,7 @@ dependencies = [ [[package]] name = "tower-batch-control" -version = "0.2.41-beta.11" +version = "0.2.41-beta.12" dependencies = [ "color-eyre", "ed25519-zebra", @@ -4835,7 +4835,7 @@ dependencies = [ [[package]] name = "tower-fallback" -version = "0.2.41-beta.11" +version = "0.2.41-beta.12" dependencies = [ "futures-core", "pin-project", @@ -5825,7 +5825,7 @@ dependencies = [ [[package]] name = "zebra-chain" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "bitflags 2.4.2", "bitflags-serde-legacy", @@ -5887,7 +5887,7 @@ dependencies = [ [[package]] name = "zebra-consensus" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "bellman", "blake2b_simd", @@ -5933,7 +5933,7 @@ dependencies = [ [[package]] name = "zebra-grpc" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" dependencies = [ "color-eyre", "futures-util", @@ -5955,7 +5955,7 @@ dependencies = [ [[package]] name = "zebra-network" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "bitflags 2.4.2", "byteorder", @@ -5996,7 +5996,7 @@ dependencies = [ [[package]] name = "zebra-node-services" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "color-eyre", "jsonrpc-core", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "zebra-rpc" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "chrono", "futures", @@ -6040,7 +6040,7 @@ dependencies = [ [[package]] name = "zebra-scan" -version = "0.1.0-alpha.4" +version = "0.1.0-alpha.5" dependencies = [ "bls12_381", "chrono", @@ -6072,7 +6072,7 @@ dependencies = [ [[package]] name = "zebra-script" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "displaydoc", "hex", @@ -6085,7 +6085,7 @@ dependencies = [ [[package]] name = "zebra-state" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "bincode", "chrono", @@ -6130,7 +6130,7 @@ dependencies = [ [[package]] name = "zebra-test" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "color-eyre", "futures", @@ -6158,7 +6158,7 @@ dependencies = [ [[package]] name = "zebra-utils" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" dependencies = [ "color-eyre", "hex", @@ -6187,7 +6187,7 @@ dependencies = [ [[package]] name = "zebrad" -version = "1.6.0" +version = "1.6.1" dependencies = [ "abscissa_core", "atty", diff --git a/README.md b/README.md index a07298a0564..f2c3f05973f 100644 --- a/README.md +++ b/README.md @@ -185,9 +185,9 @@ There are a few bugs in Zebra that we're still working on fixing: - Block download and verification sometimes times out during Zebra's initial sync [#5709](https://github.com/ZcashFoundation/zebra/issues/5709). The full sync still finishes reasonably quickly. -- No Windows support [#3801](https://github.com/ZcashFoundation/zebra/issues/3801). We used to test with Windows Server 2019, but not any more; see the issue for details. +- No Windows support [#3801](https://github.com/ZcashFoundation/zebra/issues/3801). We used to test with Windows Server 2019, but not any more; `zcash_script` has recently been updated to compile with MSVC, we're now waiting on a `zcash_script` release and dependency update, see the issue for details. -- Experimental Tor support is disabled until [Zebra upgrades to the latest `arti-client`](https://github.com/ZcashFoundation/zebra/issues/5492). This happened due to a Rust dependency conflict, which could only be resolved by `arti` upgrading to a version of `x25519-dalek` with the dependency fix. +- Experimental Tor support is disabled until Zebra upgrades to the latest `arti-client`. This happened due to a Rust dependency conflict ([#5492](https://github.com/ZcashFoundation/zebra/issues/5492)) and is still an issue due to [another dependency conflict](https://github.com/ZcashFoundation/zebra/issues/8328#issuecomment-1969989648). ## Documentation diff --git a/book/src/user/docker.md b/book/src/user/docker.md index 4dc7a60d754..02065d782c3 100644 --- a/book/src/user/docker.md +++ b/book/src/user/docker.md @@ -37,7 +37,7 @@ docker run -d --platform linux/amd64 \ ### Build it locally ```shell -git clone --depth 1 --branch v1.6.0 https://github.com/ZcashFoundation/zebra.git +git clone --depth 1 --branch v1.6.1 https://github.com/ZcashFoundation/zebra.git docker build --file docker/Dockerfile --target runtime --tag zebra:local . docker run --detach zebra:local ``` diff --git a/book/src/user/install.md b/book/src/user/install.md index a3d22362862..038984cb1b7 100644 --- a/book/src/user/install.md +++ b/book/src/user/install.md @@ -19,7 +19,7 @@ To compile Zebra directly from GitHub, or from a GitHub release source archive: ```sh git clone https://github.com/ZcashFoundation/zebra.git cd zebra -git checkout v1.6.0 +git checkout v1.6.1 ``` 3. Build and Run `zebrad` @@ -32,7 +32,7 @@ target/release/zebrad start ### Compiling from git using cargo install ```sh -cargo install --git https://github.com/ZcashFoundation/zebra --tag v1.6.0 zebrad +cargo install --git https://github.com/ZcashFoundation/zebra --tag v1.6.1 zebrad ``` ### Compiling on ARM diff --git a/tower-batch-control/Cargo.toml b/tower-batch-control/Cargo.toml index c21fc13a860..559a9367c3c 100644 --- a/tower-batch-control/Cargo.toml +++ b/tower-batch-control/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-batch-control" -version = "0.2.41-beta.11" +version = "0.2.41-beta.12" authors = ["Zcash Foundation ", "Tower Maintainers "] description = "Tower middleware for batch request processing" # # Legal @@ -43,7 +43,7 @@ rand = "0.8.5" tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] } tokio-test = "0.4.4" -tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.11" } +tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.12" } tower-test = "0.4.0" -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35" } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36" } diff --git a/tower-fallback/Cargo.toml b/tower-fallback/Cargo.toml index c26c9c3d424..db4b6dceb21 100644 --- a/tower-fallback/Cargo.toml +++ b/tower-fallback/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-fallback" -version = "0.2.41-beta.11" +version = "0.2.41-beta.12" authors = ["Zcash Foundation "] description = "A Tower service combinator that sends requests to a first service, then retries processing on a second fallback service if the first service errors." license = "MIT OR Apache-2.0" @@ -24,4 +24,4 @@ tracing = "0.1.39" [dev-dependencies] tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35" } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36" } diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index ce18f9f9344..b8e7b05b3d3 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-chain" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation "] description = "Core Zcash data structures" license = "MIT OR Apache-2.0" @@ -143,7 +143,7 @@ proptest-derive = { version = "0.4.0", optional = true } rand = { version = "0.8.5", optional = true } rand_chacha = { version = "0.3.1", optional = true } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35", optional = true } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36", optional = true } [dev-dependencies] # Benchmarks @@ -166,7 +166,7 @@ rand_chacha = "0.3.1" tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35" } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36" } [[bench]] name = "block" diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index e2a0a645c3b..d5ba9deb22b 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-consensus" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation "] description = "Implementation of Zcash consensus checks" license = "MIT OR Apache-2.0" @@ -63,13 +63,13 @@ orchard = "0.6.0" zcash_proofs = { version = "0.13.0-rc.1", features = ["multicore" ] } wagyu-zcash-parameters = "0.2.0" -tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.11" } -tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.11" } +tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.12" } +tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.12" } -zebra-script = { path = "../zebra-script", version = "1.0.0-beta.35" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.35" } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35" } +zebra-script = { path = "../zebra-script", version = "1.0.0-beta.36" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.36" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.36" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36" } # prod feature progress-bar howudoin = { version = "0.1.2", optional = true } @@ -94,6 +94,6 @@ tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] } tracing-error = "0.2.0" tracing-subscriber = "0.3.18" -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36" } diff --git a/zebra-grpc/Cargo.toml b/zebra-grpc/Cargo.toml index 6c714ac4252..8dec86b9e1b 100644 --- a/zebra-grpc/Cargo.toml +++ b/zebra-grpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-grpc" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" authors = ["Zcash Foundation "] description = "Zebra gRPC interface" license = "MIT OR Apache-2.0" @@ -28,8 +28,8 @@ color-eyre = "0.6.3" zcash_primitives = { version = "0.13.0-rc.1" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.35", features = ["shielded-scan"] } -zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.35" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.36", features = ["shielded-scan"] } +zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.36" } [build-dependencies] tonic-build = "0.11.0" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index d5215a1b596..9bf9ff45a7a 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-network" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation ", "Tower Maintainers "] description = "Networking code for Zebra" # # Legal @@ -83,7 +83,7 @@ howudoin = { version = "0.1.2", optional = true } proptest = { version = "1.4.0", optional = true } proptest-derive = { version = "0.4.0", optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["async-error"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["async-error"] } [dev-dependencies] proptest = "1.4.0" diff --git a/zebra-node-services/Cargo.toml b/zebra-node-services/Cargo.toml index dc67538fc24..2dbe7d11615 100644 --- a/zebra-node-services/Cargo.toml +++ b/zebra-node-services/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-node-services" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation "] description = "The interfaces of some Zebra node services" license = "MIT OR Apache-2.0" @@ -37,7 +37,7 @@ rpc-client = [ shielded-scan = ["tokio"] [dependencies] -zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.35" } +zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.36" } # Optional dependencies diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 0f5b210c96d..7686dc3d6cc 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-rpc" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation "] description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface" license = "MIT OR Apache-2.0" @@ -72,12 +72,12 @@ zcash_address = { version = "0.3.1", optional = true } # Test-only feature proptest-impl proptest = { version = "1.4.0", optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["json-conversion"] } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.35" } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.35" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.35" } -zebra-script = { path = "../zebra-script", version = "1.0.0-beta.35" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["json-conversion"] } +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.36" } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.36" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.36" } +zebra-script = { path = "../zebra-script", version = "1.0.0-beta.36" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.36" } [dev-dependencies] insta = { version = "1.36.1", features = ["redactions", "json", "ron"] } @@ -87,9 +87,9 @@ proptest = "1.4.0" thiserror = "1.0.58" tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35", features = ["proptest-impl"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.36", features = ["proptest-impl"] } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.35" } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.36" } diff --git a/zebra-scan/Cargo.toml b/zebra-scan/Cargo.toml index 9e2eaf840e2..6dfcd824562 100644 --- a/zebra-scan/Cargo.toml +++ b/zebra-scan/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-scan" -version = "0.1.0-alpha.4" +version = "0.1.0-alpha.5" authors = ["Zcash Foundation "] description = "Shielded transaction scanner for the Zcash blockchain" license = "MIT OR Apache-2.0" @@ -54,10 +54,10 @@ futures = "0.3.30" zcash_client_backend = "0.10.0-rc.1" zcash_primitives = "0.13.0-rc.1" -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["shielded-scan"] } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35", features = ["shielded-scan"] } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.35", features = ["shielded-scan"] } -zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.2" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["shielded-scan"] } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.36", features = ["shielded-scan"] } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.36", features = ["shielded-scan"] } +zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.3" } chrono = { version = "0.4.34", default-features = false, features = ["clock", "std", "serde"] } @@ -72,7 +72,7 @@ jubjub = { version = "0.10.0", optional = true } rand = { version = "0.8.5", optional = true } zcash_note_encryption = { version = "0.4.0", optional = true } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.35", optional = true } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.36", optional = true } [dev-dependencies] insta = { version = "1.36.1", features = ["ron", "redactions"] } @@ -87,5 +87,5 @@ jubjub = "0.10.0" rand = "0.8.5" zcash_note_encryption = "0.4.0" -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.35" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.36" } diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index d005a2e3839..9e95e1797e7 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-script" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation "] description = "Zebra script verification wrapping zcashd's zcash_script library" license = "MIT OR Apache-2.0" @@ -17,7 +17,7 @@ categories = ["api-bindings", "cryptography::cryptocurrencies"] [dependencies] zcash_script = "0.1.14" -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36" } thiserror = "1.0.58" displaydoc = "0.2.4" @@ -25,4 +25,4 @@ displaydoc = "0.2.4" [dev-dependencies] hex = "0.4.3" lazy_static = "1.4.0" -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.35" } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.36" } diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index e817d735ac5..816a0bc13e1 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-state" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation "] description = "State contextual verification and storage code for Zebra" license = "MIT OR Apache-2.0" @@ -77,13 +77,13 @@ tracing = "0.1.39" elasticsearch = { version = "8.5.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true } serde_json = { version = "1.0.113", package = "serde_json", optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["async-error"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["async-error"] } # prod feature progress-bar howudoin = { version = "0.1.2", optional = true } # test feature proptest-impl -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35", optional = true } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36", optional = true } proptest = { version = "1.4.0", optional = true } proptest-derive = { version = "0.4.0", optional = true } @@ -108,5 +108,5 @@ jubjub = "0.10.0" tokio = { version = "1.36.0", features = ["full", "tracing", "test-util"] } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.35" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36" } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index 4b563c4b6a8..41f1097f43e 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-test" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation "] description = "Test harnesses and test vectors for Zebra" license = "MIT OR Apache-2.0" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index ff9f0ec1f9b..343da462de8 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-utils" -version = "1.0.0-beta.35" +version = "1.0.0-beta.36" authors = ["Zcash Foundation "] description = "Developer tools for Zebra maintenance and testing" license = "MIT OR Apache-2.0" @@ -100,12 +100,12 @@ tracing-error = "0.2.0" tracing-subscriber = "0.3.18" thiserror = "1.0.58" -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.35" } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.36" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36" } zebra-scan = { path = "../zebra-scan", version = "0.1.0-alpha.4", optional = true } # These crates are needed for the block-template-to-proposal binary -zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.35", optional = true } +zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.36", optional = true } # These crates are needed for the zebra-checkpoints binary itertools = { version = "0.12.1", optional = true } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 33f60752784..17114cb36ca 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -1,7 +1,7 @@ [package] # Crate metadata name = "zebrad" -version = "1.6.0" +version = "1.6.1" authors = ["Zcash Foundation "] description = "The Zcash Foundation's independent, consensus-compatible implementation of a Zcash node" license = "MIT OR Apache-2.0" @@ -158,18 +158,18 @@ test_sync_past_mandatory_checkpoint_mainnet = [] test_sync_past_mandatory_checkpoint_testnet = [] [dependencies] -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35" } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.35" } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.35" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.35" } -zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.35" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36" } +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.36" } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.36" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.36" } +zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.36" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.36" } # Experimental shielded-scan feature zebra-scan = { path = "../zebra-scan", version = "0.1.0-alpha.4", optional = true } # Required for crates.io publishing, but it's only used in tests -zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.35", optional = true } +zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.36", optional = true } abscissa_core = "0.7.0" clap = { version = "4.5.3", features = ["cargo"] } @@ -280,16 +280,16 @@ proptest-derive = "0.4.0" # enable span traces and track caller in tests color-eyre = { version = "0.6.3" } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.35", features = ["proptest-impl"] } -zebra-scan = { path = "../zebra-scan", version = "0.1.0-alpha.4", features = ["proptest-impl"] } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.35", features = ["proptest-impl"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.36", features = ["proptest-impl"] } +zebra-scan = { path = "../zebra-scan", version = "0.1.0-alpha.5", features = ["proptest-impl"] } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.36", features = ["proptest-impl"] } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.35", features = ["rpc-client"] } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.36", features = ["rpc-client"] } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.35" } -zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.2" } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.36" } +zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.3" } # Used by the checkpoint generation tests via the zebra-checkpoints feature # (the binaries in this crate won't be built unless their features are enabled). @@ -300,4 +300,4 @@ zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.2" } # When `-Z bindeps` is stabilised, enable this binary dependency instead: # https://github.com/rust-lang/cargo/issues/9096 # zebra-utils { path = "../zebra-utils", artifact = "bin:zebra-checkpoints" } -zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.35" } +zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.36" } diff --git a/zebrad/src/components/sync/end_of_support.rs b/zebrad/src/components/sync/end_of_support.rs index f534f04753b..55654bd683d 100644 --- a/zebrad/src/components/sync/end_of_support.rs +++ b/zebrad/src/components/sync/end_of_support.rs @@ -13,7 +13,7 @@ use zebra_chain::{ use crate::application::release_version; /// The estimated height that this release will be published. -pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_413_000; +pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_471_000; /// The maximum number of days after `ESTIMATED_RELEASE_HEIGHT` where a Zebra server will run /// without halting.