Skip to content

chore(deps): bump the cargo-weekly group across 1 directory with 5 updates#514

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-weekly-773f0800a9
Closed

chore(deps): bump the cargo-weekly group across 1 directory with 5 updates#514
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-weekly-773f0800a9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 26, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo-weekly group with 5 updates in the / directory:

Package From To
alloy 2.0.5 2.1.0
getrandom 0.4.2 0.4.3
rusqlite 0.40.0 0.40.1
time 0.3.47 0.3.49
zeroize 1.8.2 1.9.0

Updates alloy from 2.0.5 to 2.1.0

Release notes

Sourced from alloy's releases.

v2.1.0

What's Changed

New Contributors

Full Changelog: alloy-rs/alloy@v2.0.5...v2.1.0

Changelog

Sourced from alloy's changelog.

2.1.0 - 2026-06-16

Bug Fixes

  • [txpool] Checksum address map keys for tx pool (#4039)
  • Skip exp claim serialization in JWT if none (#4032)
  • [rpc-client] Include IPC path in metadata errors (#4016)
  • [rpc-types-engine] Support positional testing build block requests (#4014)
  • [signer-local] Return missing mnemonic phrase error (#4009)
  • [transport-http] Preserve JSON-RPC errors from non-2xx (#4006)

Dependencies

  • [deps] Bump alloy-eip7928 to 0.4 (#4011)

Documentation

  • [rpc-types-eth] Clarify block header docs (#3998)
  • [rpc-types-engine] Document ExecutionPayloadV4 fields (#4012)
  • [rpc-types-engine] Include ExecutionPayloadV4 in docs (#4008)

Features

  • [rpc-beacon-type] Extend ssz decoding to SignedBeaconBlock (#4029)
  • Provider::watch_canonical_logs_from (#4022)
  • [provider] Add anvil_dump_state_with_history to AnvilApi (#4025)
  • [engine] Add SSZ for payload bodies (#4026)
  • Add ssz encoding and decoding to Payload Envelopes (#4024)
  • [consensus] Add generic indexed value helper (#4005)
  • Provider::watch_blocks_from and Provider::watch_canonical_blocks_from (#3722)

Miscellaneous Tasks

  • Release 2.1.0
  • Group weekly dependabot updates (#4035)
  • Fixed amsterdam docs and sequence in chain config (#4021)
  • Replaced typed tx with consensus tx in build_typed_simulate_tx… (#4015)
  • Added target_gas_limit to payload attributes v4 (#3980)

Other

  • Ignore proc-macro-error2 advisory (#4030)
  • Avoid caching pending tx snapshots by hash (#4001)
  • Update CODEOWNERS (#4004)
Commits
  • 68e909d chore: release 2.1.0
  • 9c449d0 chore: release 2.1.0
  • c5f3058 fix(txpool): checksum address map keys for tx pool (#4039)
  • 1a9c4d4 chore(deps): bump alloy-eip7928 to 0.4 (#4011)
  • 6d665a6 chore: group weekly dependabot updates (#4035)
  • df681af fix: skip exp claim serialization in JWT if none (#4032)
  • 6977a95 feat(rpc-beacon-type): extend ssz decoding to SignedBeaconBlock (#4029)
  • f700f88 ci: ignore proc-macro-error2 advisory (#4030)
  • 16f7a80 feat: Provider::watch_canonical_logs_from (#4022)
  • f3df589 chore: fixed amsterdam docs and sequence in chain config (#4021)
  • Additional commits viewable in compare view

Updates getrandom from 0.4.2 to 0.4.3

Changelog

Sourced from getrandom's changelog.

0.4.3 - 2026-06-17

Added

  • wasm64-unknown-unknown target support for wasm_js backend #848

Changed

  • Drop wasip2 and wasip3 dependencies in favor of manual bindings #830

#830: rust-random/getrandom#830 #848: rust-random/getrandom#848

Commits

Updates rusqlite from 0.40.0 to 0.40.1

Release notes

Sourced from rusqlite's releases.

0.40.1

What's Changed

  • Fix clippy warnings #1852
  • Bump bundled SQLite version to 3.53.2 #1853
  • Bump hashlink version #1855
  • Fix SQL injection when SAVEPOINT name is tainted #1854

Full Changelog: rusqlite/rusqlite@v0.40.0...v0.40.1

Commits

Updates time from 0.3.47 to 0.3.49

Release notes

Sourced from time's releases.

v0.3.49

See the changelog for details.

v0.3.48

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.49 [2026-06-13]

Fixed

  • Due to a long-standing bug in the Rust compiler, v0.3.48 caused a number of crates to stop compiling. A patch has been added that avoids triggering the bug.

0.3.48 [2026-06-12] [YANKED]

Security

  • The number of digits parsed by [subsecond digits:1+] is capped at 32 to avoid parsing unbounded user input. Digits after the 9th have no semantic meaning.
  • Explicitly specify #[repr] for Weekday. The value of the variants is relied upon in multiple locations for soundness. The practical effect of this change is nothing, as Rust has always mapped C-like enums to 0..N in memory.

Compatibility

  • Non-UTF-8 formatting and parsing is deprecated without replacement. It is recommended to only format and parse valid UTF-8.
  • format_description::parse is deprecated. It is recommended to use format_description::parse_borrowed::<3> or format_description::parse_owned::<3>.

Added

  • All types in the unit module have a generic parameter, though this is currently not used for much. Usage will be expanded in the future.
  • Comparisons between types in the unit module and the generic Unit type are permitted.
  • Support for rand 0.10
  • Version 3 format descriptions
    • Only UTF-8 is supported. As a side effect of this, [ignore] requires that the remaining input not begin mid-codepoint.
    • Representation is deliberately opaque to allow for arbitrary changes going forward.
    • format:false is supported on [optional] components. This is not possible in version 1 and version 2 format descriptions due to API compatibility.
    • The time::serde::format_description! macro uses a new, clearer syntax for version 3.
      • time::serde::format_description!(mod foo [Date] = "[year]-[month]-[day]");
      • Unlike version 1 and version 2 format descriptions, the type is not automatically brought into scope. You must import it yourself.
    • Nonsensical combinations of modifiers are rejected. For example, you cannot specify case-sensitivity when parsing a numerical month.
    • [year] defaults to range:standard
    • Components and modifiers are case sensitive (and always lowercase).

Changed

  • The convert module has been renamed to unit.

Fixed

... (truncated)

Commits
  • ff8683c v0.3.49 release
  • f189886 fix: resolve E0119 trait coherence error in rustc >= 1.95.0
  • 5d8737c v0.3.48 release
  • 1bfca87 Use widen instead of extend in sys code
  • c57284f fix: return error instead of panicking on truncated strftime padding modifier
  • a74f35f Use v3 format descriptions for serde defaults
  • 96ff36c Allow eliding serde format description version
  • edc58b1 Permit duplicates in v1/v2 in permit_modifiers!
  • a838f69 Bump codecov action
  • f2f99f8 Fix unused warning
  • Additional commits viewable in compare view

Updates zeroize from 1.8.2 to 1.9.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the cargo-weekly group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [alloy](https://github.com/alloy-rs/alloy) | `2.0.5` | `2.1.0` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.4.2` | `0.4.3` |
| [rusqlite](https://github.com/rusqlite/rusqlite) | `0.40.0` | `0.40.1` |
| [time](https://github.com/time-rs/time) | `0.3.47` | `0.3.49` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.8.2` | `1.9.0` |



Updates `alloy` from 2.0.5 to 2.1.0
- [Release notes](https://github.com/alloy-rs/alloy/releases)
- [Changelog](https://github.com/alloy-rs/alloy/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/alloy@v2.0.5...v2.1.0)

Updates `getrandom` from 0.4.2 to 0.4.3
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.4.2...v0.4.3)

Updates `rusqlite` from 0.40.0 to 0.40.1
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](rusqlite/rusqlite@v0.40.0...v0.40.1)

Updates `time` from 0.3.47 to 0.3.49
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.47...v0.3.49)

Updates `zeroize` from 1.8.2 to 1.9.0
- [Commits](RustCrypto/utils@zeroize-v1.8.2...zeroize-v1.9.0)

---
updated-dependencies:
- dependency-name: alloy
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-weekly
- dependency-name: getrandom
  dependency-version: 0.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-weekly
- dependency-name: rusqlite
  dependency-version: 0.40.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-weekly
- dependency-name: time
  dependency-version: 0.3.49
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-weekly
- dependency-name: zeroize
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-weekly
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 26, 2026
@github-actions

Copy link
Copy Markdown
Contributor

⚠️ Changelog not found.

A changelog entry is required before merging.

Add changelog

@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedgetrandom@​0.4.2 ⏵ 0.4.38110093100100
Updatedalloy@​2.0.5 ⏵ 2.1.010010093100100
Updatedrusqlite@​0.40.0 ⏵ 0.40.110010093100100
Updatedtime@​0.3.47 ⏵ 0.3.5110010093100100
Updatedzeroize@​1.8.2 ⏵ 1.9.010010093100100

View full report

@dependabot @github

dependabot Bot commented on behalf of github Jul 10, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 10, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/cargo-weekly-773f0800a9 branch July 10, 2026 18:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants