You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this release, Zebra introduced an additional consensus check on the branch ID of Nu6 transactions
11
+
(which is currently also checked elsewhere; but we believe it's important to check on its own to protect
12
+
against future code changes), along with important refactors and improvements.
13
+
14
+
### Added
15
+
16
+
- An index to track spending transaction ids by spent outpoints and revealed nullifiers ([#8895](https://github.com/ZcashFoundation/zebra/pull/8895))
17
+
- Accessor methods to `zebra-rpc` request/response types ([#9113](https://github.com/ZcashFoundation/zebra/pull/9113))
18
+
-`getblock` RPC method now can return transaction details with verbosity=2 ([#9083](https://github.com/ZcashFoundation/zebra/pull/9083))
19
+
- Serialized NU5 blocks to test vectors ([#9098](https://github.com/ZcashFoundation/zebra/pull/9098))
20
+
21
+
### Changed
22
+
23
+
- Migrated from deprecated `jsonrpc_*` crates to `jsonrpsee` ([#9059](https://github.com/ZcashFoundation/zebra/pull/9059), [#9151](https://github.com/ZcashFoundation/zebra/pull/9151))
24
+
- Optimized checks for coinbase transactions ([#9126](https://github.com/ZcashFoundation/zebra/pull/9126))
25
+
- 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))
26
+
- Allow transactions spending coinbase outputs to have transparent outputs on Regtest ([#9085](https://github.com/ZcashFoundation/zebra/pull/9085))
27
+
28
+
### Fixed
29
+
30
+
- Respond to getblockchaininfo with genesis block when empty state ([#9138](https://github.com/ZcashFoundation/zebra/pull/9138))
31
+
- Verify consensus branch ID in SIGHASH precomputation ([#9139](https://github.com/ZcashFoundation/zebra/pull/9139))
32
+
- More closely match zcashd RPC errors and `getrawtransaction` RPC behaviour ([#9049](https://github.com/ZcashFoundation/zebra/pull/9049))
33
+
- Fixes bugs in the lightwalletd integration tests ([#9052](https://github.com/ZcashFoundation/zebra/pull/9052))
34
+
35
+
### Contributors
36
+
37
+
Thank you to everyone who contributed to this release, we couldn't make Zebra without you:
Copy file name to clipboardExpand all lines: tower-fallback/Cargo.toml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[package]
2
2
name = "tower-fallback"
3
-
version = "0.2.41-beta.20"
3
+
version = "0.2.41-beta.21"
4
4
authors = ["Zcash Foundation <zebra@zfnd.org>"]
5
5
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."
6
6
license = "MIT OR Apache-2.0"
@@ -24,4 +24,4 @@ tracing = { workspace = true }
24
24
[dev-dependencies]
25
25
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
26
26
27
-
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44" }
27
+
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.45" }
0 commit comments