Skip to content

Commit 7c0bda4

Browse files
authored
Merge branch 'main' into regtest-internal-miner
2 parents cadb4be + d2d1a18 commit 7c0bda4

File tree

32 files changed

+251
-167
lines changed

32 files changed

+251
-167
lines changed

.github/workflows/scripts/release-crates-dry-run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ fi
2323
cargo release version --verbose --execute --no-confirm --allow-branch '*' --workspace --exclude zebrad --exclude zebra-scan --exclude zebra-grpc beta
2424

2525
# Due to a bug in cargo-release, we need to pass exact versions for alpha crates:
26-
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-scan 0.1.0-alpha.6
27-
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-grpc 0.1.0-alpha.4
26+
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-scan 0.1.0-alpha.7
27+
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-grpc 0.1.0-alpha.5
2828

2929
# Update zebrad:
3030
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebrad patch

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ All notable changes to Zebra are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org).
77

8+
## [Zebra 1.7.0](https://github.com/ZcashFoundation/zebra/releases/tag/v1.7.0) - 2024-05-07
9+
10+
In this release we introduce Regtest functionality to Zebra and restored Windows support. Also adjusted our Zebra release interval from 2 weeks to 6 weeks approximately.
11+
12+
### Added
13+
14+
- Preparing for upstream `zcash_client_backend` API changes ([#8425](https://github.com/ZcashFoundation/zebra/pull/8425))
15+
- Regtest support ([#8383](https://github.com/ZcashFoundation/zebra/pull/8383), [#8421](https://github.com/ZcashFoundation/zebra/pull/8421), [#8368](https://github.com/ZcashFoundation/zebra/pull/8368), [#8413](https://github.com/ZcashFoundation/zebra/pull/8413), [#8474](https://github.com/ZcashFoundation/zebra/pull/8474), [#8475](https://github.com/ZcashFoundation/zebra/pull/8475))
16+
- Allow Zebra users to contribute to the P2P network even if behind NAT or firewall ([#8488](https://github.com/ZcashFoundation/zebra/pull/8488))
17+
18+
### Changed
19+
20+
- Adjust estimated release interval to once every 6 weeks and the end of support from 16 to 20 weeks ([#8429](https://github.com/ZcashFoundation/zebra/pull/8429))
21+
22+
### Fixed
23+
24+
- Bump zcash script v0.1.15 and restore Windows support ([#8393](https://github.com/ZcashFoundation/zebra/pull/8393))
25+
- Avoid possibly returning data from different blocks in `z_get_treestate` RPC method ([#8460](https://github.com/ZcashFoundation/zebra/pull/8460))
26+
- Zebra panics with all features and no elasticsearch server available ([#8409](https://github.com/ZcashFoundation/zebra/pull/8409))
27+
28+
### Contributors
29+
30+
Thank you to everyone who contributed to this release, we couldn't make Zebra without you:
31+
@arya2, @oxarbitrage and @upbqdn
32+
33+
834
## [Zebra 1.6.1](https://github.com/ZcashFoundation/zebra/releases/tag/v1.6.1) - 2024-04-15
935

1036
This release adds an OpenAPI specification for Zebra's RPC methods and startup logs about Zebra's storage usage and other database information.

Cargo.lock

+23-24
Original file line numberDiff line numberDiff line change
@@ -1696,7 +1696,7 @@ dependencies = [
16961696
"indexmap 2.2.6",
16971697
"slab",
16981698
"tokio",
1699-
"tokio-util 0.7.10",
1699+
"tokio-util 0.7.11",
17001700
"tracing",
17011701
]
17021702

@@ -1715,7 +1715,7 @@ dependencies = [
17151715
"indexmap 2.2.6",
17161716
"slab",
17171717
"tokio",
1718-
"tokio-util 0.7.10",
1718+
"tokio-util 0.7.11",
17191719
"tracing",
17201720
]
17211721

@@ -3695,7 +3695,7 @@ dependencies = [
36953695
"system-configuration",
36963696
"tokio",
36973697
"tokio-rustls",
3698-
"tokio-util 0.7.10",
3698+
"tokio-util 0.7.11",
36993699
"tower-service",
37003700
"url",
37013701
"wasm-bindgen",
@@ -4669,7 +4669,7 @@ dependencies = [
46694669
"futures-core",
46704670
"pin-project-lite",
46714671
"tokio",
4672-
"tokio-util 0.7.10",
4672+
"tokio-util 0.7.11",
46734673
]
46744674

46754675
[[package]]
@@ -4701,16 +4701,15 @@ dependencies = [
47014701

47024702
[[package]]
47034703
name = "tokio-util"
4704-
version = "0.7.10"
4704+
version = "0.7.11"
47054705
source = "registry+https://github.com/rust-lang/crates.io-index"
4706-
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
4706+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
47074707
dependencies = [
47084708
"bytes",
47094709
"futures-core",
47104710
"futures-sink",
47114711
"pin-project-lite",
47124712
"tokio",
4713-
"tracing",
47144713
]
47154714

47164715
[[package]]
@@ -4875,15 +4874,15 @@ dependencies = [
48754874
"rand 0.8.5",
48764875
"slab",
48774876
"tokio",
4878-
"tokio-util 0.7.10",
4877+
"tokio-util 0.7.11",
48794878
"tower-layer",
48804879
"tower-service",
48814880
"tracing",
48824881
]
48834882

48844883
[[package]]
48854884
name = "tower-batch-control"
4886-
version = "0.2.41-beta.12"
4885+
version = "0.2.41-beta.13"
48874886
dependencies = [
48884887
"color-eyre",
48894888
"ed25519-zebra",
@@ -4895,7 +4894,7 @@ dependencies = [
48954894
"tinyvec",
48964895
"tokio",
48974896
"tokio-test",
4898-
"tokio-util 0.7.10",
4897+
"tokio-util 0.7.11",
48994898
"tower",
49004899
"tower-fallback",
49014900
"tower-test",
@@ -4906,7 +4905,7 @@ dependencies = [
49064905

49074906
[[package]]
49084907
name = "tower-fallback"
4909-
version = "0.2.41-beta.12"
4908+
version = "0.2.41-beta.13"
49104909
dependencies = [
49114910
"futures-core",
49124911
"pin-project",
@@ -5987,7 +5986,7 @@ dependencies = [
59875986

59885987
[[package]]
59895988
name = "zebra-chain"
5990-
version = "1.0.0-beta.36"
5989+
version = "1.0.0-beta.37"
59915990
dependencies = [
59925991
"bitflags 2.5.0",
59935992
"bitflags-serde-legacy",
@@ -6050,7 +6049,7 @@ dependencies = [
60506049

60516050
[[package]]
60526051
name = "zebra-consensus"
6053-
version = "1.0.0-beta.36"
6052+
version = "1.0.0-beta.37"
60546053
dependencies = [
60556054
"bellman",
60566055
"blake2b_simd",
@@ -6096,7 +6095,7 @@ dependencies = [
60966095

60976096
[[package]]
60986097
name = "zebra-grpc"
6099-
version = "0.1.0-alpha.3"
6098+
version = "0.1.0-alpha.4"
61006099
dependencies = [
61016100
"color-eyre",
61026101
"futures-util",
@@ -6118,7 +6117,7 @@ dependencies = [
61186117

61196118
[[package]]
61206119
name = "zebra-network"
6121-
version = "1.0.0-beta.36"
6120+
version = "1.0.0-beta.37"
61226121
dependencies = [
61236122
"bitflags 2.5.0",
61246123
"byteorder",
@@ -6147,7 +6146,7 @@ dependencies = [
61476146
"thiserror",
61486147
"tokio",
61496148
"tokio-stream",
6150-
"tokio-util 0.7.10",
6149+
"tokio-util 0.7.11",
61516150
"toml 0.8.12",
61526151
"tower",
61536152
"tracing",
@@ -6159,7 +6158,7 @@ dependencies = [
61596158

61606159
[[package]]
61616160
name = "zebra-node-services"
6162-
version = "1.0.0-beta.36"
6161+
version = "1.0.0-beta.37"
61636162
dependencies = [
61646163
"color-eyre",
61656164
"jsonrpc-core",
@@ -6172,7 +6171,7 @@ dependencies = [
61726171

61736172
[[package]]
61746173
name = "zebra-rpc"
6175-
version = "1.0.0-beta.36"
6174+
version = "1.0.0-beta.37"
61766175
dependencies = [
61776176
"chrono",
61786177
"futures",
@@ -6203,7 +6202,7 @@ dependencies = [
62036202

62046203
[[package]]
62056204
name = "zebra-scan"
6206-
version = "0.1.0-alpha.5"
6205+
version = "0.1.0-alpha.6"
62076206
dependencies = [
62086207
"bls12_381",
62096208
"chrono",
@@ -6235,7 +6234,7 @@ dependencies = [
62356234

62366235
[[package]]
62376236
name = "zebra-script"
6238-
version = "1.0.0-beta.36"
6237+
version = "1.0.0-beta.37"
62396238
dependencies = [
62406239
"displaydoc",
62416240
"hex",
@@ -6248,7 +6247,7 @@ dependencies = [
62486247

62496248
[[package]]
62506249
name = "zebra-state"
6251-
version = "1.0.0-beta.36"
6250+
version = "1.0.0-beta.37"
62526251
dependencies = [
62536252
"bincode",
62546253
"chrono",
@@ -6293,7 +6292,7 @@ dependencies = [
62936292

62946293
[[package]]
62956294
name = "zebra-test"
6296-
version = "1.0.0-beta.36"
6295+
version = "1.0.0-beta.37"
62976296
dependencies = [
62986297
"color-eyre",
62996298
"futures",
@@ -6321,7 +6320,7 @@ dependencies = [
63216320

63226321
[[package]]
63236322
name = "zebra-utils"
6324-
version = "1.0.0-beta.36"
6323+
version = "1.0.0-beta.37"
63256324
dependencies = [
63266325
"color-eyre",
63276326
"hex",
@@ -6350,7 +6349,7 @@ dependencies = [
63506349

63516350
[[package]]
63526351
name = "zebrad"
6353-
version = "1.6.1"
6352+
version = "1.7.0"
63546353
dependencies = [
63556354
"abscissa_core",
63566355
"atty",

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Zebra is tested with the latest `stable` Rust version. Earlier versions are not
6868
supported or tested. Any Zebra release can start depending on new features in the
6969
latest stable Rust.
7070

71-
Around every 4 weeks, we release a [new Zebra version](https://github.com/ZcashFoundation/zebra/releases).
71+
Around every 6 weeks, we release a [new Zebra version](https://github.com/ZcashFoundation/zebra/releases).
7272

7373
Below are quick summaries for installing the dependencies on your machine.
7474

@@ -185,8 +185,6 @@ There are a few bugs in Zebra that we're still working on fixing:
185185

186186
- 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.
187187

188-
- 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.
189-
190188
- 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).
191189

192190
## Documentation

book/src/dev/release-process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ In general, expect the following release cycle:
9595

9696
* A major release for each network upgrade, whenever there are breaking changes to Zebra (by API, severe bugs or other kind of upgrades)
9797
* Minor releases for significant new Zebra features or severe bug fixes
98-
* A patch release around every 4 weeks
98+
* A patch release around every 6 weeks
9999

100100
This cadence of releases gives eager developers access to new features as soon as they are fully developed and pass through our code review and integration testing processes, while maintaining the stability and reliability of the platform for production users that prefer to receive features after they have been validated by Zcash and other developers that use the pre-release builds.
101101

book/src/user/docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ docker run -d --platform linux/amd64 \
3737
### Build it locally
3838

3939
```shell
40-
git clone --depth 1 --branch v1.6.1 https://github.com/ZcashFoundation/zebra.git
40+
git clone --depth 1 --branch v1.7.0 https://github.com/ZcashFoundation/zebra.git
4141
docker build --file docker/Dockerfile --target runtime --tag zebra:local .
4242
docker run --detach zebra:local
4343
```

book/src/user/install.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To compile Zebra directly from GitHub, or from a GitHub release source archive:
1919
```sh
2020
git clone https://github.com/ZcashFoundation/zebra.git
2121
cd zebra
22-
git checkout v1.6.1
22+
git checkout v1.7.0
2323
```
2424

2525
3. Build and Run `zebrad`
@@ -32,7 +32,7 @@ target/release/zebrad start
3232
### Compiling from git using cargo install
3333

3434
```sh
35-
cargo install --git https://github.com/ZcashFoundation/zebra --tag v1.6.1 zebrad
35+
cargo install --git https://github.com/ZcashFoundation/zebra --tag v1.7.0 zebrad
3636
```
3737

3838
### Compiling on ARM

tower-batch-control/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tower-batch-control"
3-
version = "0.2.41-beta.12"
3+
version = "0.2.41-beta.13"
44
authors = ["Zcash Foundation <[email protected]>", "Tower Maintainers <[email protected]>"]
55
description = "Tower middleware for batch request processing"
66
# # Legal
@@ -27,7 +27,7 @@ futures-core = "0.3.28"
2727
pin-project = "1.1.5"
2828
rayon = "1.10.0"
2929
tokio = { version = "1.37.0", features = ["time", "sync", "tracing", "macros"] }
30-
tokio-util = "0.7.10"
30+
tokio-util = "0.7.11"
3131
tower = { version = "0.4.13", features = ["util", "buffer"] }
3232
tracing = "0.1.39"
3333
tracing-futures = "0.2.5"
@@ -43,7 +43,7 @@ rand = "0.8.5"
4343

4444
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }
4545
tokio-test = "0.4.4"
46-
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.12" }
46+
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.13" }
4747
tower-test = "0.4.0"
4848

49-
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36" }
49+
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37" }

tower-fallback/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tower-fallback"
3-
version = "0.2.41-beta.12"
3+
version = "0.2.41-beta.13"
44
authors = ["Zcash Foundation <[email protected]>"]
55
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."
66
license = "MIT OR Apache-2.0"
@@ -24,4 +24,4 @@ tracing = "0.1.39"
2424
[dev-dependencies]
2525
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }
2626

27-
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36" }
27+
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37" }

zebra-chain/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zebra-chain"
3-
version = "1.0.0-beta.36"
3+
version = "1.0.0-beta.37"
44
authors = ["Zcash Foundation <[email protected]>"]
55
description = "Core Zcash data structures"
66
license = "MIT OR Apache-2.0"
@@ -143,7 +143,7 @@ proptest-derive = { version = "0.4.0", optional = true }
143143
rand = { version = "0.8.5", optional = true }
144144
rand_chacha = { version = "0.3.1", optional = true }
145145

146-
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36", optional = true }
146+
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37", optional = true }
147147

148148
[dev-dependencies]
149149
# Benchmarks
@@ -166,7 +166,7 @@ rand_chacha = "0.3.1"
166166

167167
tokio = { version = "1.37.0", features = ["full", "tracing", "test-util"] }
168168

169-
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.36" }
169+
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.37" }
170170

171171
[[bench]]
172172
name = "block"

zebra-chain/src/parameters.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
//! Typically, consensus parameters are accessed via a function that takes a
1313
//! `Network` and `block::Height`.
1414
15+
pub mod constants;
1516
mod genesis;
1617
mod network;
1718
mod network_upgrade;
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//! Definitions of Zebra chain constants, including:
2+
//! - slow start interval,
3+
//! - slow start shift
4+
5+
use crate::block::Height;
6+
7+
/// An initial period from Genesis to this Height where the block subsidy is gradually incremented. [What is slow-start mining][slow-mining]
8+
///
9+
/// [slow-mining]: https://z.cash/support/faq/#what-is-slow-start-mining
10+
pub const SLOW_START_INTERVAL: Height = Height(20_000);
11+
12+
/// `SlowStartShift()` as described in [protocol specification §7.8][7.8]
13+
///
14+
/// [7.8]: https://zips.z.cash/protocol/protocol.pdf#subsidies
15+
///
16+
/// This calculation is exact, because `SLOW_START_INTERVAL` is divisible by 2.
17+
pub const SLOW_START_SHIFT: Height = Height(SLOW_START_INTERVAL.0 / 2);

0 commit comments

Comments
 (0)