Skip to content

Commit bc190c6

Browse files
committed
chore: release 0.12.6
1 parent 635cc88 commit bc190c6

File tree

39 files changed

+337
-1
lines changed

39 files changed

+337
-1
lines changed

Diff for: CHANGELOG.md

+47
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,52 @@ 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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Bug Fixes
11+
12+
- [signer-gcp] Use default public key format ([#2217](https://github.com/alloy-rs/alloy/issues/2217))
13+
- Drop geth's stderr handle ([#2104](https://github.com/alloy-rs/alloy/issues/2104))
14+
- Debug_executionWitness call ([#2209](https://github.com/alloy-rs/alloy/issues/2209))
15+
- Broken links `eip1559/constants.rs` ([#2190](https://github.com/alloy-rs/alloy/issues/2190))
16+
17+
### Dependencies
18+
19+
- Bump gcloud sdk ([#2218](https://github.com/alloy-rs/alloy/issues/2218))
20+
- Bump once_cell ([#2185](https://github.com/alloy-rs/alloy/issues/2185))
21+
22+
### Features
23+
24+
- [eips] Serde untagged for EIP-7685 `RequestsOrHash` ([#2216](https://github.com/alloy-rs/alloy/issues/2216))
25+
- Define subscription type ([#2203](https://github.com/alloy-rs/alloy/issues/2203))
26+
- [providers] Add multicall batch layer ([#2174](https://github.com/alloy-rs/alloy/issues/2174))
27+
- Add BlobsBundleV2 ([#2206](https://github.com/alloy-rs/alloy/issues/2206))
28+
- [consensus] Add hoodi genesis hash ([#2210](https://github.com/alloy-rs/alloy/issues/2210))
29+
- [`node-bindings`] Anvil typed hardforks ([#2207](https://github.com/alloy-rs/alloy/issues/2207))
30+
- Derive `Serialize` and `Deserialize` for `Recovered<T>` ([#2204](https://github.com/alloy-rs/alloy/issues/2204))
31+
- Add BlobAndProofV2 ([#2202](https://github.com/alloy-rs/alloy/issues/2202))
32+
- `FallbackLayer` transport ([#2135](https://github.com/alloy-rs/alloy/issues/2135))
33+
- Remove poller task indirection ([#2197](https://github.com/alloy-rs/alloy/issues/2197))
34+
- Impl into_transaction TxEnvelope ([#2192](https://github.com/alloy-rs/alloy/issues/2192))
35+
- Add missing U8 conversion ([#2189](https://github.com/alloy-rs/alloy/issues/2189))
36+
- Ad helper append fn ([#2186](https://github.com/alloy-rs/alloy/issues/2186))
37+
- Add `ThrottleLayer` to Transport layers ([#2154](https://github.com/alloy-rs/alloy/issues/2154))
38+
39+
### Miscellaneous Tasks
40+
41+
- [meta] Update CODEOWNERS ([#2213](https://github.com/alloy-rs/alloy/issues/2213))
42+
- [provider] Remove 'latest' channel from heartbeat ([#2198](https://github.com/alloy-rs/alloy/issues/2198))
43+
- Export * from provider ([#2195](https://github.com/alloy-rs/alloy/issues/2195))
44+
45+
### Other
46+
47+
- Add encodable and decodable for `Signed<T>` ([#2193](https://github.com/alloy-rs/alloy/issues/2193))
48+
- Update contributing
49+
50+
### Styling
51+
52+
- Update tx fee comment about Transaction trait ([#2208](https://github.com/alloy-rs/alloy/issues/2208))
53+
854
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
955

1056
### Bug Fixes
@@ -20,6 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2066

2167
### Miscellaneous Tasks
2268

69+
- Release 0.12.5
2370
- Add fromiter helper for stateoverridesbuilder ([#2182](https://github.com/alloy-rs/alloy/issues/2182))
2471
- Add helper to set trace's gas used ([#2180](https://github.com/alloy-rs/alloy/issues/2180))
2572
- Add with capacity helper ([#2183](https://github.com/alloy-rs/alloy/issues/2183))

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.12.5"
6+
version = "0.12.6"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["Alloy Contributors"]

Diff for: crates/alloy/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/consensus-any/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/consensus/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ 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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Dependencies
11+
12+
- Bump once_cell ([#2185](https://github.com/alloy-rs/alloy/issues/2185))
13+
14+
### Features
15+
16+
- [consensus] Add hoodi genesis hash ([#2210](https://github.com/alloy-rs/alloy/issues/2210))
17+
- Derive `Serialize` and `Deserialize` for `Recovered<T>` ([#2204](https://github.com/alloy-rs/alloy/issues/2204))
18+
- Impl into_transaction TxEnvelope ([#2192](https://github.com/alloy-rs/alloy/issues/2192))
19+
- Add missing U8 conversion ([#2189](https://github.com/alloy-rs/alloy/issues/2189))
20+
21+
### Other
22+
23+
- Add encodable and decodable for `Signed<T>` ([#2193](https://github.com/alloy-rs/alloy/issues/2193))
24+
25+
### Styling
26+
27+
- Update tx fee comment about Transaction trait ([#2208](https://github.com/alloy-rs/alloy/issues/2208))
28+
829
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
930

1031
### Features
@@ -13,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1334

1435
### Miscellaneous Tasks
1536

37+
- Release 0.12.5
1638
- Remove associated constant from RlpEcdsaEncodableTx ([#2172](https://github.com/alloy-rs/alloy/issues/2172))
1739
- Impl Hash for Signed ([#2170](https://github.com/alloy-rs/alloy/issues/2170))
1840
- Use default type for receipt ([#2168](https://github.com/alloy-rs/alloy/issues/2168))

Diff for: crates/contract/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- [`contract`] Build signed and usigned txs from CallBuilder ([#2178](https://github.com/alloy-rs/alloy/issues/2178))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 0.12.5
17+
1418
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
1519

1620
### Miscellaneous Tasks

Diff for: crates/eip5792/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/eip7547/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/eips/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,27 @@ 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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Bug Fixes
11+
12+
- Broken links `eip1559/constants.rs` ([#2190](https://github.com/alloy-rs/alloy/issues/2190))
13+
14+
### Features
15+
16+
- [eips] Serde untagged for EIP-7685 `RequestsOrHash` ([#2216](https://github.com/alloy-rs/alloy/issues/2216))
17+
- Add BlobAndProofV2 ([#2202](https://github.com/alloy-rs/alloy/issues/2202))
18+
819
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
920

1021
### Bug Fixes
1122

1223
- Filter out requests with len 1 ([#2167](https://github.com/alloy-rs/alloy/issues/2167))
1324

25+
### Miscellaneous Tasks
26+
27+
- Release 0.12.5
28+
1429
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
1530

1631
### Miscellaneous Tasks

Diff for: crates/genesis/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/json-rpc/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Mock transport instead of provider ([#2173](https://github.com/alloy-rs/alloy/issues/2173))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 0.12.5
17+
1418
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
1519

1620
### Miscellaneous Tasks

Diff for: crates/network-primitives/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/network/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/node-bindings/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ 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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Bug Fixes
11+
12+
- Drop geth's stderr handle ([#2104](https://github.com/alloy-rs/alloy/issues/2104))
13+
14+
### Features
15+
16+
- [`node-bindings`] Anvil typed hardforks ([#2207](https://github.com/alloy-rs/alloy/issues/2207))
17+
18+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
19+
20+
### Miscellaneous Tasks
21+
22+
- Release 0.12.5
23+
824
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
925

1026
### Miscellaneous Tasks

Diff for: crates/provider/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,35 @@ 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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Bug Fixes
11+
12+
- Drop geth's stderr handle ([#2104](https://github.com/alloy-rs/alloy/issues/2104))
13+
- Debug_executionWitness call ([#2209](https://github.com/alloy-rs/alloy/issues/2209))
14+
15+
### Features
16+
17+
- Define subscription type ([#2203](https://github.com/alloy-rs/alloy/issues/2203))
18+
- [providers] Add multicall batch layer ([#2174](https://github.com/alloy-rs/alloy/issues/2174))
19+
- Remove poller task indirection ([#2197](https://github.com/alloy-rs/alloy/issues/2197))
20+
- Add `ThrottleLayer` to Transport layers ([#2154](https://github.com/alloy-rs/alloy/issues/2154))
21+
22+
### Miscellaneous Tasks
23+
24+
- [provider] Remove 'latest' channel from heartbeat ([#2198](https://github.com/alloy-rs/alloy/issues/2198))
25+
- Export * from provider ([#2195](https://github.com/alloy-rs/alloy/issues/2195))
26+
827
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
928

1029
### Features
1130

1231
- Mock transport instead of provider ([#2173](https://github.com/alloy-rs/alloy/issues/2173))
1332

33+
### Miscellaneous Tasks
34+
35+
- Release 0.12.5
36+
1437
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
1538

1639
### Miscellaneous Tasks

Diff for: crates/pubsub/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-client/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,22 @@ 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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Features
11+
12+
- Remove poller task indirection ([#2197](https://github.com/alloy-rs/alloy/issues/2197))
13+
814
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
915

1016
### Features
1117

1218
- Mock transport instead of provider ([#2173](https://github.com/alloy-rs/alloy/issues/2173))
1319

20+
### Miscellaneous Tasks
21+
22+
- Release 0.12.5
23+
1424
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
1525

1626
### Miscellaneous Tasks

Diff for: crates/rpc-types-admin/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-anvil/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-any/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.5
13+
814
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-beacon/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- [`types-beacon`] Derive `TreeHash` for `BidTrace` ([#2175](https://github.com/alloy-rs/alloy/issues/2175))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 0.12.5
17+
1418
## [0.12.4](https://github.com/alloy-rs/alloy/releases/tag/v0.12.4) - 2025-03-07
1519

1620
### Miscellaneous Tasks

0 commit comments

Comments
 (0)