Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 10, 2025

Bumps the pointercrate group with 10 updates:

Package From To
governor 0.10.0 0.10.1
bytemuck 1.23.1 1.23.2
cc 1.2.31 1.2.32
event-listener 5.4.0 5.4.1
h2 0.4.11 0.4.12
rustversion 1.0.21 1.0.22
signal-hook-registry 1.4.5 1.4.6
slab 0.4.10 0.4.11
socket2 0.5.10 0.6.0
zerovec 0.11.2 0.11.4

Updates governor from 0.10.0 to 0.10.1

Commits
  • 6025d5f Merge pull request #278 from boinkor-net/release/governor/0.10.1
  • bf4d561 Update changelog for the release
  • 0de0726 Release 0.10.1 🎉🎉
  • c68a93c Merge pull request #276 from boinkor-net/no-more-crates-io-creds
  • 6c0087d Delete now-superseded release workflows
  • e76fe9a chore: Update release_to_crates_io.yml in governor
  • 48b5250 chore: Update release_pr_for_crates_io.yml in governor
  • f781a44 Merge pull request #277 from boinkor-net/push-tolxmqwvvvkz
  • 0510610 Fix feature combinations for the jitter mod
  • 80d08c4 Explicitly return an anonymous lifetime
  • Additional commits viewable in compare view

Updates bytemuck from 1.23.1 to 1.23.2

Changelog

Sourced from bytemuck's changelog.

1.23.2

  • bump derive minimum version.
Commits
  • c069a2f chore: Release bytemuck version 1.23.2
  • 8b48ef3 .
  • 7fef8d9 bump derive minimum version. should be a semver patch effect.
  • 2524f62 chore: Release bytemuck_derive version 1.10.1
  • c4873c9 .
  • 374df78 Make the Pod/NoUninit derive macros use assert! to check size equality,...
  • 6633a51 Fix a typo (#319)
  • 1c9e7ba chore: Release bytemuck_derive version 1.10.0
  • 5e58cf7 changelog
  • 0e11472 add support for deriving NoUninit on enums with fields (#292)
  • See full diff in compare view

Updates cc from 1.2.31 to 1.2.32

Changelog

Sourced from cc's changelog.

1.2.32 - 2025-08-08

Fixed

  • fix new clippy lint introduced in rust 1.89.0 (#1509)

Other

  • clarify cargo default if no rerun emitted (#1508)
  • extract compile_objects_sequential (#1507)
  • Windows find_tools: add support for finding Clang (#1506)
  • Add m68k-unknown-linux-gnu cross-compile target (#1505)
Commits

Updates event-listener from 5.4.0 to 5.4.1

Release notes

Sourced from event-listener's releases.

v5.4.1

  • Fix a copy-paste error in wait_timeout docs (#152)
Changelog

Sourced from event-listener's changelog.

Version 5.4.1

  • Fix a copy-paste error in wait_timeout docs (#152)
Commits
  • 0c18ca2 v5.4.1
  • 56d87b4 Update criterion requirement from 0.6 to 0.7 (#156)
  • 810a6db Update criterion requirement from 0.5 to 0.6 (#153)
  • 91a936e Fix doctest on WASM
  • 323da40 Fix clippy::mem_replace_option_with_some warning
  • 29e15c0 ci: Re-enable WASM test
  • a8aefba Merge pull request #152 from JamesHallowell/fix-wait-timeout-docs
  • 9870df3 Minor amendment to wait_timeout docs
  • 51ae140 ci: Use reusable workflows for fmt and security_audit
  • See full diff in compare view

Updates h2 from 0.4.11 to 0.4.12

Release notes

Sourced from h2's releases.

v0.4.12

What's Changed

Full Changelog: hyperium/h2@v0.4.11...v0.4.12

Changelog

Sourced from h2's changelog.

0.4.12 (August 5, 2025)

  • Fix default limits on max stored reset streams and duration to more reasonable values.
Commits

Updates rustversion from 1.0.21 to 1.0.22

Release notes

Sourced from rustversion's releases.

1.0.22

  • Turn off clippy incompatible_msrv in rustversion-conditional code (#63)
Commits

Updates signal-hook-registry from 1.4.5 to 1.4.6

Changelog

Sourced from signal-hook-registry's changelog.

signal-hook-registry-1.4.6

  • Reword/improve the safety requirements docs for register (#178).

signal-hook-1.3.18

  • Release the special-case removal of AIX for top-level signal-hook too (#169, #176).

signal-hook-async-std-0.3.0

  • Bump async-std to 0.2 (#172).
Commits

Updates slab from 0.4.10 to 0.4.11

Release notes

Sourced from slab's releases.

v0.4.11

  • Fix Slab::get_disjoint_mut out of bounds (#152)
Changelog

Sourced from slab's changelog.

0.4.11 (August 8, 2025)

  • Fix Slab::get_disjoint_mut out of bounds (#152)
Commits

Updates socket2 from 0.5.10 to 0.6.0

Changelog

Sourced from socket2's changelog.

0.6.0

Breaking changes

All IPv4 methods now have a _v4 suffix, IPv6 uses _v6. TCP methods have a tcp_ prefix (looked better than a suffix).

Furthermore we removed all types from external libraries (i.e. libc or windows-sys) from the public API, allowing us to update those without breaking the API.

  • Renamed Socket::freebind_ipv6 to freebind_v6 (rust-lang/socket2#592).
  • Renamed Socket::freebind to freebind_v4 (rust-lang/socket2#592).
  • Renamed Socket::original_dst to original_dst_v4 (rust-lang/socket2#592).
  • Renamed Socket::original_dst_ipv6 to original_dst_v6 (rust-lang/socket2#592).
  • Bump MSRV to 1.70 (rust-lang/socket2#597).
  • Use c_int from std::ffi instead of from libc (rust-lang/socket2#599, rust-lang/socket2#595).
  • SockAddr's methods now accept/return SockAddrStorage instead of sockaddr_storage/SOCKADDR_STORAGE (rust-lang/socket2#576):
    • new
    • try_init
    • as_ptr
    • as_storage
  • Add SockFilter, wrapper around libc::sock_filter, argument to Socket::attach_filter (rust-lang/socket2#581).
  • Various renames of TCP methods on Socket (rust-lang/socket2#592):
    • keepalive_time -> tcp_keepalive_time
    • keepalive_interval -> tcp_keepalive_interval
    • keepalive_retries -> tcp_keepalive_retries
    • nodelay -> tcp_nodelay
    • set_nodelay -> tcp_set_nodelay
    • tcp_mss -> mss
    • tcp_set_mss -> set_mss
    • tcp_cork -> cork
    • tcp_set_cork -> set_cork
    • tcp_quickack -> quickack
    • tcp_set_quickack -> set_quickack
    • thin_linear_timeouts -> tcp_thin_linear_timeouts.

Non-breaking changes

... (truncated)

Commits

Updates zerovec from 0.11.2 to 0.11.4

Changelog

Sourced from zerovec's changelog.

Changelog

Unreleased

  • Components
    • General
    • icu_calendar
      • Fix und-SA-u-ca-islamic (unicode-org#6736)
  • Data model and providers
    • ...
  • FFI
    • icu_capi
      • All C++ enums now default to a valid value; which is the Default impl where there is one, and some semi-logical value otherwise. This has changed defaults in some cases and may cause a behavioral change for people relying on C++ default constructors. (unicode-org#6692)
  • Utils
    • yoke
      • Add four map_with_cart methods to yoke::Yoke, similar to Yoke::map_project but additionally providing a reference to the cart. (unicode-org#6781)

icu4x 2.0.x

Several crates have had patch releases in the 2.0 stream:

  • icu_calendar
    • (2.0.1) Fix chinese day-of-year (unicode-org#6567)
    • (2.0.2) Respect -u-fw keyword in WeekInformation (unicode-org#6615)
    • (2.0.3) Fix extended year for Roc/Ethiopic (unicode-org#6721)
    • (2.0.3) Fix treatment of None era code for Gregorian (unicode-org#6794)
  • icu_properties, icu_properties_data
    • (2.0.1) Fix a visibility bug in compiled data (unicode-org#6580)
  • icu_provider_baked
    • (2.0.1) Fix an issue where a single-locale data generation would skip fallback (unicode-org#6582)
  • icu_capi
    • (2.0.1) Rename string-methods on DecomposingNormalizer to match those on ComposingNormalizer (unicode-org#6594)
    • (2.0.1) Add DataProvider constructors in JS and Dart (unicode-org#6596)
    • (2.0.1) Fix TimeZoneVariant constructor (unicode-org#6610)
    • (2.0.2) Add Locale::set_unicode_extension (unicode-org#6636)
  • icu_datetime_data, icu_time_data, icu_provider_source
    • (2.0.1) Update to tzdb 2025b
  • ixdtf
    • (0.6.0) Add UTF16 handling (unicode-org#6577)
    • (0.6.0) Add TimeZoneParser::parse_identifier for TimeZoneRecord (unicode-org#6584)
    • (0.6.0) Reject empty durations when parsing ISO8601 durations (unicode-org#6718)
    • (0.6.0) Handle ambiguous time parsing with MonthDay and YearMonth in ixdtf (unicode-org#6717)
    • (0.6.1) Fix is_valid_month_day argument ordering bug (unicode-org#6756)
    • (0.6.2) Offset must have a sign (#6763)
    • (0.6.2) Correctly handle ambiguous annotations (#6776)
  • zerovec:
    • (0.11.3) Make VZV::Default work with non-default index (unicode-org#6661)
    • (0.11.3) Make ZeroVec.iter().collect() faster (unicode-org#6764)

... (truncated)

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Aug 10, 2025
@stadust
Copy link
Owner

stadust commented Aug 10, 2025

@dependabot rebase

Bumps the pointercrate group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [governor](https://github.com/boinkor-net/governor) | `0.10.0` | `0.10.1` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.23.1` | `1.23.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.31` | `1.2.32` |
| [event-listener](https://github.com/smol-rs/event-listener) | `5.4.0` | `5.4.1` |
| [h2](https://github.com/hyperium/h2) | `0.4.11` | `0.4.12` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.21` | `1.0.22` |
| [signal-hook-registry](https://github.com/vorner/signal-hook) | `1.4.5` | `1.4.6` |
| [slab](https://github.com/tokio-rs/slab) | `0.4.10` | `0.4.11` |
| [socket2](https://github.com/rust-lang/socket2) | `0.5.10` | `0.6.0` |
| [zerovec](https://github.com/unicode-org/icu4x) | `0.11.2` | `0.11.4` |


Updates `governor` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/boinkor-net/governor/releases)
- [Changelog](https://github.com/boinkor-net/governor/blob/master/release.toml)
- [Commits](boinkor-net/governor@v0.10.0...v0.10.1)

Updates `bytemuck` from 1.23.1 to 1.23.2
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.23.1...v1.23.2)

Updates `cc` from 1.2.31 to 1.2.32
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.31...cc-v1.2.32)

Updates `event-listener` from 5.4.0 to 5.4.1
- [Release notes](https://github.com/smol-rs/event-listener/releases)
- [Changelog](https://github.com/smol-rs/event-listener/blob/master/CHANGELOG.md)
- [Commits](smol-rs/event-listener@v5.4.0...v5.4.1)

Updates `h2` from 0.4.11 to 0.4.12
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.4.11...v0.4.12)

Updates `rustversion` from 1.0.21 to 1.0.22
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.21...1.0.22)

Updates `signal-hook-registry` from 1.4.5 to 1.4.6
- [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md)
- [Commits](vorner/signal-hook@registry-v1.4.5...registry-v1.4.6)

Updates `slab` from 0.4.10 to 0.4.11
- [Release notes](https://github.com/tokio-rs/slab/releases)
- [Changelog](https://github.com/tokio-rs/slab/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/slab@v0.4.10...v0.4.11)

Updates `socket2` from 0.5.10 to 0.6.0
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/socket2/commits)

Updates `zerovec` from 0.11.2 to 0.11.4
- [Release notes](https://github.com/unicode-org/icu4x/releases)
- [Changelog](https://github.com/unicode-org/icu4x/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unicode-org/icu4x/commits/ind/zerovec@0.11.4)

---
updated-dependencies:
- dependency-name: governor
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: bytemuck
  dependency-version: 1.23.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: cc
  dependency-version: 1.2.32
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: event-listener
  dependency-version: 5.4.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: h2
  dependency-version: 0.4.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: rustversion
  dependency-version: 1.0.22
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: signal-hook-registry
  dependency-version: 1.4.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: slab
  dependency-version: 0.4.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: socket2
  dependency-version: 0.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: zerovec
  dependency-version: 0.11.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/pointercrate-816175d47e branch from da1cc96 to 25cb1b2 Compare August 10, 2025 19:18
@stadust stadust merged commit 9e8473e into master Aug 10, 2025
2 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/pointercrate-816175d47e branch August 10, 2025 19:43
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.

2 participants