File tree Expand file tree Collapse file tree
zebrad/src/components/sync Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,14 @@ All notable changes to Zebra are documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org ) .
77
8- ## [ Unreleased]
8+ ## [ Zebra 6.1.0] ( https://github.com/ZcashFoundation/zebra/releases/tag/v6.1.0 ) - 2026-07-17
9+
10+ ### Added
11+
12+ - Added the ` getstandardfee ` RPC, a parameterless method returning the
13+ recommended standard fee per logical action (the ZIP-317 marginal fee, 5000
14+ zatoshis) with a ` version ` field for future dynamic fee estimation
15+ ([ #10717 ] ( https://github.com/ZcashFoundation/zebra/pull/10717 ) ).
916
1017### Security
1118
@@ -73,10 +80,6 @@ and this project adheres to [Semantic Versioning](https://semver.org).
7380
7481### Added
7582
76- - Added the ` getstandardfee ` RPC, a parameterless method returning the
77- recommended standard fee per logical action (the ZIP-317 marginal fee, 5000
78- zatoshis) with a ` version ` field for future dynamic fee estimation
79- ([ #10717 ] ( https://github.com/ZcashFoundation/zebra/pull/10717 ) )
8083- Support for the NU6.3 "Ironwood" shielded pool and v6 transaction format,
8184 activating on Testnet at height 4,134,000. The consensus parameters (v6 version
8285 group ID, consensus branch ID, and Testnet activation height) match
Original file line number Diff line number Diff line change @@ -5,12 +5,16 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## [ Unreleased ]
8+ ## [ 0.2.43 ] - 2026-07-17
99
1010### Added
1111
12- - Added ` Fallback::new_with_policy() ` for selecting fallback behavior based on
13- the first service's result.
12+ - ` Fallback::new_with_policy ` , which selects fallback behavior using a ` FallbackPolicy ` .
13+ - ` FallbackPolicy ` trait with an ` OnError ` implementation matching the default
14+ fall-back-on-error behavior.
15+ - ` Fallback ` and ` future::ResponseFuture ` gained an optional fallback-policy type
16+ parameter that defaults to ` OnError ` , so existing ` Fallback<S1, S2> ` uses and
17+ ` Fallback::new ` are unchanged.
1418
1519## [ 0.2.42] - 2026-07-10
1620
Original file line number Diff line number Diff line change @@ -5,18 +5,19 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## [ Unreleased]
9-
10- ### Security
11-
12- - Computing ` transaction::Transaction::value_balance ` no longer clones the entire UTXO map per
13- call (GHSA-4g24 -549m-hp75).
8+ ## [ 11.2.0] - 2026-07-17
149
1510### Added
1611
1712- ` block::Header::{SERIALIZED_SIZE, REGTEST_SERIALIZED_SIZE, serialized_size} `
13+ - ` transaction::zip317::MARGINAL_FEE `
1814- ` work::equihash::Solution::{SERIALIZED_SIZE, REGTEST_SERIALIZED_SIZE, serialized_size} `
1915
16+ ### Security
17+
18+ - Computing ` transaction::Transaction::value_balance ` no longer clones the entire UTXO map per
19+ call (GHSA-4g24 -549m-hp75).
20+
2021## [ 11.1.0] - 2026-07-10
2122
2223### Added
Original file line number Diff line number Diff line change @@ -5,7 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## [ Unreleased]
8+ ## [ 12.0.0] - 2026-07-17
9+
10+ ### Added
11+
12+ - ` methods::RpcServer::get_standard_fee ` , the ` getstandardfee ` RPC returning the ZIP-317
13+ marginal fee ([ #10717 ] ( https://github.com/ZcashFoundation/zebra/pull/10717 ) ).
914
1015### Fixed
1116
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## [ Unreleased ]
8+ ## [ 10.1.1 ] - 2026-07-17
99
1010### Security
1111
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ use zebra_chain::{
1313use crate :: application:: release_version;
1414
1515/// The estimated height that this release will be published.
16- pub const ESTIMATED_RELEASE_HEIGHT : u32 = 3_408_000 ;
16+ pub const ESTIMATED_RELEASE_HEIGHT : u32 = 3_417_000 ;
1717
1818/// The maximum number of days after `ESTIMATED_RELEASE_HEIGHT` where a Zebra server will run
1919/// without halting.
You can’t perform that action at this time.
0 commit comments