diff --git a/CHANGELOG.md b/CHANGELOG.md index f12c495bb75..43c189f398b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,39 @@ 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). +## [Zebra 2.2.0](https://github.com/ZcashFoundation/zebra/releases/tag/v2.2.0) - 2025-02-03 + +In this release, Zebra introduced an additional consensus check on the branch ID of Nu6 transactions +(which is currently also checked elsewhere; but we believe it's important to check on its own to protect +against future code changes), along with important refactors and improvements. + +### Added + +- An index to track spending transaction ids by spent outpoints and revealed nullifiers ([#8895](https://github.com/ZcashFoundation/zebra/pull/8895)) +- Accessor methods to `zebra-rpc` request/response types ([#9113](https://github.com/ZcashFoundation/zebra/pull/9113)) +- `getblock` RPC method now can return transaction details with verbosity=2 ([#9083](https://github.com/ZcashFoundation/zebra/pull/9083)) +- Serialized NU5 blocks to test vectors ([#9098](https://github.com/ZcashFoundation/zebra/pull/9098)) + +### Changed + +- Migrated from deprecated `jsonrpc_*` crates to `jsonrpsee` ([#9059](https://github.com/ZcashFoundation/zebra/pull/9059), [#9151](https://github.com/ZcashFoundation/zebra/pull/9151)) +- Optimized checks for coinbase transactions ([#9126](https://github.com/ZcashFoundation/zebra/pull/9126)) +- Avoid re-verifying transactions in blocks if those transactions are in the mempool ([#8951](https://github.com/ZcashFoundation/zebra/pull/8951), [#9118](https://github.com/ZcashFoundation/zebra/pull/9118)) +- Allow transactions spending coinbase outputs to have transparent outputs on Regtest ([#9085](https://github.com/ZcashFoundation/zebra/pull/9085)) + +### Fixed + +- Respond to getblockchaininfo with genesis block when empty state ([#9138](https://github.com/ZcashFoundation/zebra/pull/9138)) +- Verify consensus branch ID in SIGHASH precomputation ([#9139](https://github.com/ZcashFoundation/zebra/pull/9139)) +- More closely match zcashd RPC errors and `getrawtransaction` RPC behaviour ([#9049](https://github.com/ZcashFoundation/zebra/pull/9049)) +- Fixes bugs in the lightwalletd integration tests ([#9052](https://github.com/ZcashFoundation/zebra/pull/9052)) + +### Contributors + +Thank you to everyone who contributed to this release, we couldn't make Zebra without you: +@Fallengirl, @arya2, @conradoplg, @elijahhampton, @futreall, @gustavovalverde, @idky137, @mpguerra, @oxarbitrage, @rex4539, @rootdiae, @sandakersmann and @upbqdn + + ## [Zebra 2.1.0](https://github.com/ZcashFoundation/zebra/releases/tag/v2.1.0) - 2024-12-06 This release adds a check to verify that V5 transactions in the mempool have the correct consensus branch ID; diff --git a/Cargo.lock b/Cargo.lock index 11dcdfaa92c..0d4b5a3719b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4888,7 +4888,7 @@ dependencies = [ [[package]] name = "tower-batch-control" -version = "0.2.41-beta.20" +version = "0.2.41-beta.21" dependencies = [ "color-eyre", "ed25519-zebra", @@ -4911,7 +4911,7 @@ dependencies = [ [[package]] name = "tower-fallback" -version = "0.2.41-beta.20" +version = "0.2.41-beta.21" dependencies = [ "futures-core", "pin-project", @@ -5969,7 +5969,7 @@ dependencies = [ [[package]] name = "zebra-chain" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "bitflags 2.8.0", "bitflags-serde-legacy", @@ -6034,7 +6034,7 @@ dependencies = [ [[package]] name = "zebra-consensus" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "bellman", "blake2b_simd", @@ -6080,7 +6080,7 @@ dependencies = [ [[package]] name = "zebra-grpc" -version = "0.1.0-alpha.11" +version = "0.1.0-alpha.12" dependencies = [ "color-eyre", "futures-util", @@ -6102,7 +6102,7 @@ dependencies = [ [[package]] name = "zebra-network" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "bitflags 2.8.0", "byteorder", @@ -6143,7 +6143,7 @@ dependencies = [ [[package]] name = "zebra-node-services" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "color-eyre", "jsonrpsee-types", @@ -6156,7 +6156,7 @@ dependencies = [ [[package]] name = "zebra-rpc" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "base64 0.22.1", "chrono", @@ -6197,7 +6197,7 @@ dependencies = [ [[package]] name = "zebra-scan" -version = "0.1.0-alpha.13" +version = "0.1.0-alpha.14" dependencies = [ "bls12_381", "chrono", @@ -6243,7 +6243,7 @@ dependencies = [ [[package]] name = "zebra-script" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "hex", "lazy_static", @@ -6255,7 +6255,7 @@ dependencies = [ [[package]] name = "zebra-state" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "bincode", "chrono", @@ -6301,7 +6301,7 @@ dependencies = [ [[package]] name = "zebra-test" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "color-eyre", "futures", @@ -6329,7 +6329,7 @@ dependencies = [ [[package]] name = "zebra-utils" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" dependencies = [ "color-eyre", "hex", @@ -6360,7 +6360,7 @@ dependencies = [ [[package]] name = "zebrad" -version = "2.1.1" +version = "2.2.0" dependencies = [ "abscissa_core", "atty", diff --git a/book/src/user/docker.md b/book/src/user/docker.md index bee81533175..1349ee6b322 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 v2.1.1 https://github.com/ZcashFoundation/zebra.git +git clone --depth 1 --branch v2.2.0 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 f9e0b03c5c9..272a99cba7a 100644 --- a/book/src/user/install.md +++ b/book/src/user/install.md @@ -76,7 +76,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 v2.1.1 +git checkout v2.2.0 ``` 3. Build and Run `zebrad` @@ -89,7 +89,7 @@ target/release/zebrad start ### Compiling from git using cargo install ```sh -cargo install --git https://github.com/ZcashFoundation/zebra --tag v2.1.1 zebrad +cargo install --git https://github.com/ZcashFoundation/zebra --tag v2.2.0 zebrad ``` ### Compiling on ARM diff --git a/tower-batch-control/Cargo.toml b/tower-batch-control/Cargo.toml index 631c22d68d8..90cfae1fc3e 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.20" +version = "0.2.41-beta.21" authors = ["Zcash Foundation ", "Tower Maintainers "] description = "Tower middleware for batch request processing" # # Legal @@ -43,10 +43,10 @@ rand = { workspace = true } tokio = { workspace = true, features = ["full", "tracing", "test-util"] } tokio-test = { workspace = true } -tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.20" } +tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.21" } tower-test = { workspace = true } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44" } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.45" } [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } diff --git a/tower-fallback/Cargo.toml b/tower-fallback/Cargo.toml index c291bfa6f15..745574c898b 100644 --- a/tower-fallback/Cargo.toml +++ b/tower-fallback/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-fallback" -version = "0.2.41-beta.20" +version = "0.2.41-beta.21" 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 = { workspace = true } [dev-dependencies] tokio = { workspace = true, features = ["full", "tracing", "test-util"] } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44" } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.45" } diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index f8b9c6c69a1..fb4833027d3 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-chain" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" authors = ["Zcash Foundation "] description = "Core Zcash data structures" license = "MIT OR Apache-2.0" @@ -145,7 +145,7 @@ proptest-derive = { workspace = true, optional = true } rand = { workspace = true, optional = true } rand_chacha = { workspace = true, optional = true } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44", optional = true } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.45", optional = true } [dev-dependencies] # Benchmarks @@ -168,7 +168,7 @@ rand_chacha = { workspace = true } tokio = { workspace = true, features = ["full", "tracing", "test-util"] } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44" } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.45" } [[bench]] name = "block" diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index ba2dd14e8d6..7fe94c1b380 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-consensus" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" authors = ["Zcash Foundation "] description = "Implementation of Zcash consensus checks" license = "MIT OR Apache-2.0" @@ -63,13 +63,13 @@ orchard.workspace = true zcash_proofs = { workspace = true, features = ["multicore" ] } wagyu-zcash-parameters = { workspace = true } -tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.20" } -tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.20" } +tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.21" } +tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.21" } -zebra-script = { path = "../zebra-script", version = "1.0.0-beta.44" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.44" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.44" } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44" } +zebra-script = { path = "../zebra-script", version = "1.0.0-beta.45" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.45" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.45" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45" } # prod feature progress-bar howudoin = { workspace = true, optional = true } @@ -94,6 +94,6 @@ tokio = { workspace = true, features = ["full", "tracing", "test-util"] } tracing-error = { workspace = true } tracing-subscriber = { workspace = true } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.44", features = ["proptest-impl"] } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44", features = ["proptest-impl"] } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.45", features = ["proptest-impl"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45", features = ["proptest-impl"] } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.45" } diff --git a/zebra-grpc/Cargo.toml b/zebra-grpc/Cargo.toml index dfb9a0cff8a..ad696e03482 100644 --- a/zebra-grpc/Cargo.toml +++ b/zebra-grpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-grpc" -version = "0.1.0-alpha.11" +version = "0.1.0-alpha.12" authors = ["Zcash Foundation "] description = "Zebra gRPC interface" license = "MIT OR Apache-2.0" @@ -28,8 +28,8 @@ color-eyre = { workspace = true } zcash_primitives.workspace = true -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.44", features = ["shielded-scan"] } -zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.44" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.45", features = ["shielded-scan"] } +zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.45" } [build-dependencies] tonic-build = { workspace = true } diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index c74f2d35149..69d41648286 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-network" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" authors = ["Zcash Foundation ", "Tower Maintainers "] description = "Networking code for Zebra" # # Legal @@ -83,7 +83,7 @@ howudoin = { workspace = true, optional = true } proptest = { workspace = true, optional = true } proptest-derive = { workspace = true, optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44", features = ["async-error"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45", features = ["async-error"] } [dev-dependencies] proptest = { workspace = true } diff --git a/zebra-node-services/Cargo.toml b/zebra-node-services/Cargo.toml index 93dd206121f..ce9e48100f3 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.44" +version = "1.0.0-beta.45" 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 = [] [dependencies] -zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.44" } +zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.45" } # Optional dependencies diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 188b6c32048..463b9288c69 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-rpc" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" authors = ["Zcash Foundation "] description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface" license = "MIT OR Apache-2.0" @@ -97,16 +97,16 @@ zcash_address = { workspace = true, optional = true} # Test-only feature proptest-impl proptest = { workspace = true, optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44", features = [ +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45", features = [ "json-conversion", ] } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.44" } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.44" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.44", features = [ +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.45" } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.45" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.45", features = [ "rpc-client", ] } -zebra-script = { path = "../zebra-script", version = "1.0.0-beta.44" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.44" } +zebra-script = { path = "../zebra-script", version = "1.0.0-beta.45" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.45" } [build-dependencies] tonic-build = { workspace = true, optional = true } @@ -119,17 +119,17 @@ proptest = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["full", "tracing", "test-util"] } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44", features = [ +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45", features = [ "proptest-impl", ] } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.44", features = [ +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.45", features = [ "proptest-impl", ] } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.44", features = [ +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.45", features = [ "proptest-impl", ] } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.44", features = [ +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.45", features = [ "proptest-impl", ] } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.44" } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.45" } diff --git a/zebra-scan/Cargo.toml b/zebra-scan/Cargo.toml index fedb26f74ff..bdc1f40f870 100644 --- a/zebra-scan/Cargo.toml +++ b/zebra-scan/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-scan" -version = "0.1.0-alpha.13" +version = "0.1.0-alpha.14" authors = ["Zcash Foundation "] description = "Shielded transaction scanner for the Zcash blockchain" license = "MIT OR Apache-2.0" @@ -77,11 +77,11 @@ zcash_primitives.workspace = true zcash_address.workspace = true sapling-crypto.workspace = true -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44", features = ["shielded-scan"] } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.44", features = ["shielded-scan"] } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.44", features = ["shielded-scan"] } -zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.11" } -zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.44" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45", features = ["shielded-scan"] } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.45", features = ["shielded-scan"] } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.45", features = ["shielded-scan"] } +zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.12" } +zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.45" } chrono = { workspace = true, features = ["clock", "std", "serde"] } @@ -96,7 +96,7 @@ jubjub = { workspace = true, optional = true } rand = { workspace = true, optional = true } zcash_note_encryption = { workspace = true, optional = true } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.44", optional = true } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.45", optional = true } # zebra-scanner binary dependencies tracing-subscriber = { workspace = true, features = ["env-filter"] } @@ -107,7 +107,7 @@ serde_json = { workspace = true } jsonrpc = { workspace = true, optional = true } hex = { workspace = true, optional = true } -zebrad = { path = "../zebrad", version = "2.1.1" } +zebrad = { path = "../zebrad", version = "2.2.0" } [dev-dependencies] insta = { workspace = true, features = ["ron", "redactions"] } @@ -125,5 +125,5 @@ zcash_note_encryption = { workspace = true } toml = { workspace = true } tonic = { workspace = true } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.44", features = ["proptest-impl"] } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.44" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.45", features = ["proptest-impl"] } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.45" } diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index df20563dc6f..1813b7c2629 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-script" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" authors = ["Zcash Foundation "] description = "Zebra script verification wrapping zcashd's zcash_script library" license = "MIT OR Apache-2.0" @@ -16,11 +16,11 @@ categories = ["api-bindings", "cryptography::cryptocurrencies"] [dependencies] zcash_script = { workspace = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45" } thiserror = { workspace = true } [dev-dependencies] hex = { workspace = true } lazy_static = { workspace = true } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.44" } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.45" } diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index cd46a0c5f7b..2b62be81751 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-state" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" authors = ["Zcash Foundation "] description = "State contextual verification and storage code for Zebra" license = "MIT OR Apache-2.0" @@ -81,13 +81,13 @@ tracing = { workspace = true } elasticsearch = { workspace = true, features = ["rustls-tls"], optional = true } serde_json = { workspace = true, optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44", features = ["async-error"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45", features = ["async-error"] } # prod feature progress-bar howudoin = { workspace = true, optional = true } # test feature proptest-impl -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44", optional = true } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.45", optional = true } proptest = { workspace = true, optional = true } proptest-derive = { workspace = true, optional = true } @@ -112,5 +112,5 @@ jubjub = { workspace = true } tokio = { workspace = true, features = ["full", "tracing", "test-util"] } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44", features = ["proptest-impl"] } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45", features = ["proptest-impl"] } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.45" } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index b436ee57fe7..10c455d5b49 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-test" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" 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 0ff1d14f5aa..eef1f4397a3 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-utils" -version = "1.0.0-beta.44" +version = "1.0.0-beta.45" authors = ["Zcash Foundation "] description = "Developer tools for Zebra maintenance and testing" license = "MIT OR Apache-2.0" @@ -94,11 +94,11 @@ tracing-error = { workspace = true } tracing-subscriber = { workspace = true } thiserror = { workspace = true } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.44" } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.45" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45" } # These crates are needed for the block-template-to-proposal binary -zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.44", optional = true } +zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.45", optional = true } # These crates are needed for the zebra-checkpoints binary itertools = { workspace = true, optional = true } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 5493deddf4f..832a3a4cfb5 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -1,7 +1,7 @@ [package] # Crate metadata name = "zebrad" -version = "2.1.1" +version = "2.2.0" authors = ["Zcash Foundation "] description = "The Zcash Foundation's independent, consensus-compatible implementation of a Zcash node" license = "MIT OR Apache-2.0" @@ -159,15 +159,15 @@ test_sync_past_mandatory_checkpoint_mainnet = [] test_sync_past_mandatory_checkpoint_testnet = [] [dependencies] -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44" } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.44" } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.44" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.44", features = ["rpc-client"] } -zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.44" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.44" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45" } +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.45" } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.45" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.45", features = ["rpc-client"] } +zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.45" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.45" } # Required for crates.io publishing, but it's only used in tests -zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.44", optional = true } +zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.45", optional = true } abscissa_core = { workspace = true } clap = { workspace = true, features = ["cargo"] } @@ -281,13 +281,13 @@ proptest-derive = { workspace = true } # enable span traces and track caller in tests color-eyre = { workspace = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.44", features = ["proptest-impl"] } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.44", features = ["proptest-impl"] } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.44", features = ["proptest-impl"] } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.44", features = ["proptest-impl"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.45", features = ["proptest-impl"] } +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.45", features = ["proptest-impl"] } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.45", features = ["proptest-impl"] } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.45", features = ["proptest-impl"] } -zebra-test = { path = "../zebra-test", version = "1.0.0-beta.44" } -zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.11" } +zebra-test = { path = "../zebra-test", version = "1.0.0-beta.45" } +zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.12" } # 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). @@ -298,7 +298,7 @@ zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.11" } # 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.44" } +zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.45" } [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } diff --git a/zebrad/src/components/sync/end_of_support.rs b/zebrad/src/components/sync/end_of_support.rs index 284c266fb6c..9fa98425531 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_742_000; +pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_809_400; /// The maximum number of days after `ESTIMATED_RELEASE_HEIGHT` where a Zebra server will run /// without halting.