Skip to content

Commit 733be61

Browse files
authored
chore(release): finalize changelogs and end-of-support height for v6.1.0 (#11000)
* chore(release): finalize changelogs and end-of-support height for v6.1.0 * docs(changelog): tower-fallback 0.2.43 — the FallbackPolicy change is additive The new type parameter defaults to OnError, so Fallback<S1, S2> and Fallback::new are unchanged; cargo-semver-checks confirms it is not a breaking change.
1 parent 729bbaa commit 733be61

6 files changed

Lines changed: 30 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ 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-
## [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

tower-fallback/CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ All notable changes to this project will be 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/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

zebra-chain/CHANGELOG.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@ All notable changes to this project will be 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/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

zebra-rpc/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ All notable changes to this project will be 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/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

zebra-state/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be 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/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [10.1.1] - 2026-07-17
99

1010
### Security
1111

zebrad/src/components/sync/end_of_support.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use zebra_chain::{
1313
use 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.

0 commit comments

Comments
 (0)