Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [Zebra 4.3](https://github.com/ZcashFoundation/zebra/releases/tag/v4.3) - 2026-03-12
## [Zebra 4.3.0](https://github.com/ZcashFoundation/zebra/releases/tag/v4.3) - 2026-03-12

This release fixes **two important security issues**:

- [CVE-2026-34202: Remote Denial of Service via Crafted V5 Transactions](https://github.com/ZcashFoundation/zebra/security/advisories/GHSA-qp6f-w4r3-h8wg)
- [CVE-2026-34377: Consensus Failure via Crafted V5 Authorization Data](https://github.com/ZcashFoundation/zebra/security/advisories/GHSA-3vmh-33xr-9cqh)

We recommend node operators to update to 4.3.0 as soon as possible. All previous
Zebra versions are vulnerable to these issues.

This release adds support for [ZIP-235](https://zips.z.cash/zip-0235) and
extends the documentation on performance profiling. It also fixes issues with
Expand Down
9 changes: 9 additions & 0 deletions zebra-chain/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [6.0.1] - 2026-03-26

This release fixes an important security issue:

- [CVE-2026-34202: Remote Denial of Service via Crafted V5 Transactions](https://github.com/ZcashFoundation/zebra/security/advisories/GHSA-qp6f-w4r3-h8wg)

The impact of the issue for crate users will depend on the particular usage;
if you use zebra-chain to parse untrusted transactions, a particularly crafted
transaction will raise a panic which will crash your application; you should
update.

### Fixed

- Fixed miner subsidy computation.
Expand Down
7 changes: 7 additions & 0 deletions zebra-consensus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [5.0.1] - 2026-03-25

This release fixes an important security issue:

- [CVE-2026-34377: Consensus Failure via Crafted V5 Authorization Data](https://github.com/ZcashFoundation/zebra/security/advisories/GHSA-3vmh-33xr-9cqh)

The impact of the issue for crate users will depend on the particular usage;
if you use it as a building block for a node, you should update.

### Added

- ZIP-235 support under the `zcash_unstable = "zip235"` flag
Expand Down
Loading