Skip to content

Bump the all-updates group across 1 directory with 5 updates#162

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/all-updates-3f4e5b3385
Open

Bump the all-updates group across 1 directory with 5 updates#162
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/all-updates-3f4e5b3385

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 25, 2026

Bumps the all-updates group with 5 updates in the / directory:

Package From To
dhcproto eece41c b0591e0
sentry 0.48.1 0.48.2
sentry-anyhow 0.48.1 0.48.2
nix 0.31.2 0.31.3
prefix-trie 0.8.3 0.9.2

Updates dhcproto from eece41c to b0591e0

Commits

Updates sentry from 0.48.1 to 0.48.2

Release notes

Sourced from sentry's releases.

0.48.2

New Features

  • Added rustls-no-provider feature flag in the sentry crate to allow using the rustls transport with a different crypto provider (#1103).

Fixes

  • Serialize attachment envelope headers as JSON to correctly encode header values (#1109).
  • Use checked arithmetic to handle possible overflows (#1119, #1121, #1122).
Changelog

Sourced from sentry's changelog.

0.48.2

New Features

  • Added rustls-no-provider feature flag in the sentry crate to allow using the rustls transport with a different crypto provider (#1103).

Fixes

  • Serialize attachment envelope headers as JSON to correctly encode header values (#1109).
  • Use checked arithmetic to handle possible overflows (#1119, #1121, #1122).
Commits
  • 8d8e8fc meta(changelog): Update CHANGELOG for version 0.48.2
  • 3899506 release: 0.48.2
  • a9fc8af fix(types): Use checked arithmetic in envelope parsing (#1122)
  • a6ce8b0 feat: introduce rustls-no-provider feature flag (#1103)
  • df88275 fix(ratelimit): Fix clippy::arithmetic_side_effects lint (#1121)
  • d65272b fix: Enable clippy::arithmetic_side_effects lint (#1119)
  • f801a2c build(deps): bump openssl from 0.10.78 to 0.10.79 (#1120)
  • 5dc48f3 chore(meta): Centralize workspace lint config (#1114)
  • 09aceec ref(sentry-panic): PanicInfoPanicHookInfo (#1074)
  • 2bebbd4 fix(types): Serialize attachment headers as JSON (#1109)
  • Additional commits viewable in compare view

Updates sentry-anyhow from 0.48.1 to 0.48.2

Release notes

Sourced from sentry-anyhow's releases.

0.48.2

New Features

  • Added rustls-no-provider feature flag in the sentry crate to allow using the rustls transport with a different crypto provider (#1103).

Fixes

  • Serialize attachment envelope headers as JSON to correctly encode header values (#1109).
  • Use checked arithmetic to handle possible overflows (#1119, #1121, #1122).
Changelog

Sourced from sentry-anyhow's changelog.

0.48.2

New Features

  • Added rustls-no-provider feature flag in the sentry crate to allow using the rustls transport with a different crypto provider (#1103).

Fixes

  • Serialize attachment envelope headers as JSON to correctly encode header values (#1109).
  • Use checked arithmetic to handle possible overflows (#1119, #1121, #1122).
Commits
  • 8d8e8fc meta(changelog): Update CHANGELOG for version 0.48.2
  • 3899506 release: 0.48.2
  • a9fc8af fix(types): Use checked arithmetic in envelope parsing (#1122)
  • a6ce8b0 feat: introduce rustls-no-provider feature flag (#1103)
  • df88275 fix(ratelimit): Fix clippy::arithmetic_side_effects lint (#1121)
  • d65272b fix: Enable clippy::arithmetic_side_effects lint (#1119)
  • f801a2c build(deps): bump openssl from 0.10.78 to 0.10.79 (#1120)
  • 5dc48f3 chore(meta): Centralize workspace lint config (#1114)
  • 09aceec ref(sentry-panic): PanicInfoPanicHookInfo (#1074)
  • 2bebbd4 fix(types): Serialize attachment headers as JSON (#1109)
  • Additional commits viewable in compare view

Updates nix from 0.31.2 to 0.31.3

Changelog

Sourced from nix's changelog.

[0.31.3] - 2026-05-11

Added

  • Enable module ioctl for Cygwin (#2715)
  • Add CLOCK_BOOTTIME/CLOCK_PROCESS_CPUTIME_ID/CLOCK_THREAD_CPUTIME_ID/CLOCK_UPTIME to NetBSD-like platforms (#2716)
  • unistd: add mkfifo for redox (#2749)
  • Added kevent64 support on apple targets: Kqueue::kevent64, KEvent64, and Kevent64Flags. (#2781)

Fixed

  • fix SaFlags_t definition on redox (#2751)
  • Fixed EpollEvent::events() to use from_bits_retain instead of from_bits().unwrap(), preventing panics when the kernel returns unknown epoll flags. (#2783)
  • Fixed KEvent::flags() and KEvent::fflags() to use from_bits_retain instead of from_bits().unwrap(), preventing panics when the kernel returns unknown kqueue flags. (#2784)
Commits
  • b5933ca chore: release v0.31.3
  • 5d6a46e Replace Cirrus CI with more Github Workflows jobs (#2776)
  • 3407489 event: add kevent64 support on apple targets (#2781)
  • fe80fc5 chore: resolve clippy useless_borrows_in_formatting (#2790)
  • 3310fc7 Revert "fix(ci): temporarily disable armv7-unknown-linux-uclibceabihf (#2764)...
  • e3ab917 epoll: use from_bits_retain to avoid panics on unknown flags (#2783)
  • 6c15701 kqueue: use from_bits_retain to avoid panics on unknown flags (#2784)
  • 73028cf fix(ci): enable Hurd target (#2765)
  • 1a680a9 cargo: Remove deprecated package authors field (#2789)
  • 85cff07 docs: add missing changelog entries (#2786)
  • Additional commits viewable in compare view

Updates prefix-trie from 0.8.3 to 0.9.2

Release notes

Sourced from prefix-trie's releases.

0.9.1

What's Changed

  • Add iter_from function to enable paginated output.
  • Implement equality on views (eq_keys and eq_by)
  • Add Eq implementation for PrefixMap
  • Slightly reduce memory footprint (increment number of tiers in allocator from 6 to 7; [1, 2, 4, 8, 16, 24, 32])
  • Benchmark using mutations from RIPE RIS by @​ties in tiborschneider/prefix-trie#28
  • Add IPv6 test cases and data by @​ties in tiborschneider/prefix-trie#30

Bug Fixes

  • Drop values only when needed.
  • Fix memory corruption bug when calling remove_children in deep trees.
  • Fix overflow for obtaining sub-views of maximum prefix length views.
  • Fix mask computation on 32-bit targets.
  • Fix undefined behavior when drop panics in remove_children.

New Contributors

Full Changelog: tiborschneider/prefix-trie@v0.9.0...v0.9.1

0.9.0

What's Changed

  • Migrate to the TreeBitMap implementation by W. Eatherton, Z. Dittia, G. Varghes.
  • ~4x less memory consumption and ~8x performance improvement over v0.8.4, measured on all IPv4 prefixes advertised at AMS-IX.
  • Flexible simultaneous tree traversal algorithms that can be combined arbitrarily.

Migration Notes

  • Prefixes are reconstructed from the tree location and no longer stored. Consequently, information in the host part of an address is no longer maintained. Additionally, the function yields prefixes by value instead of by reference. If you wish to store the host-bits as well, consider constructing a type PrefixMap<P, (P, T)>.
  • Mutable views of the tree can no longer modify the tree structure (to maintain memory safety). This is because one can construct two mutable views pointing to branches within the same multi-bit node.
  • Thanks to bitmaps, set operations can now be chained (as we can define a common interface for them to return their bitmaps).J

Full Changelog: tiborschneider/prefix-trie@v0.8.4...v0.9.0

v0.8.4

What's Changed

New Contributors

Full Changelog: tiborschneider/prefix-trie@v0.8.3...v0.8.4

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

Bumps the all-updates group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [dhcproto](https://github.com/bluecatengineering/dhcproto) | ``eece41c`` | ``b0591e0`` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.48.1` | `0.48.2` |
| [sentry-anyhow](https://github.com/getsentry/sentry-rust) | `0.48.1` | `0.48.2` |
| [nix](https://github.com/nix-rust/nix) | `0.31.2` | `0.31.3` |
| [prefix-trie](https://github.com/tiborschneider/prefix-trie) | `0.8.3` | `0.9.2` |



Updates `dhcproto` from `eece41c` to `b0591e0`
- [Release notes](https://github.com/bluecatengineering/dhcproto/releases)
- [Commits](bluecatengineering/dhcproto@eece41c...b0591e0)

Updates `sentry` from 0.48.1 to 0.48.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.48.1...0.48.2)

Updates `sentry-anyhow` from 0.48.1 to 0.48.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.48.1...0.48.2)

Updates `nix` from 0.31.2 to 0.31.3
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](nix-rust/nix@v0.31.2...v0.31.3)

Updates `prefix-trie` from 0.8.3 to 0.9.2
- [Release notes](https://github.com/tiborschneider/prefix-trie/releases)
- [Commits](https://github.com/tiborschneider/prefix-trie/commits)

---
updated-dependencies:
- dependency-name: dhcproto
  dependency-version: b0591e0904ffaae3fcec192bad5851ed09799ec5
  dependency-type: direct:production
  dependency-group: all-updates
- dependency-name: sentry
  dependency-version: 0.48.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: sentry-anyhow
  dependency-version: 0.48.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: nix
  dependency-version: 0.31.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: prefix-trie
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
...

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 May 25, 2026
@dependabot dependabot Bot requested review from edigaryev and fkorotkov as code owners May 25, 2026 00:08
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