Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the cargo group with 6 updates #1564

Merged
merged 1 commit into from
Dec 16, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

Bumps the cargo group with 6 updates:

Package From To
chrono 0.4.38 0.4.39
crossbeam-channel 0.5.13 0.5.14
zbus 5.1.1 5.2.0
fern 0.7.0 0.7.1
libc 0.2.167 0.2.168
serde 1.0.215 1.0.216

Updates chrono from 0.4.38 to 0.4.39

Release notes

Sourced from chrono's releases.

0.4.39

What's Changed

Commits

Updates crossbeam-channel from 0.5.13 to 0.5.14

Release notes

Sourced from crossbeam-channel's releases.

crossbeam-channel 0.5.14

  • Fix stack overflow when sending large value to unbounded channel. (#1146, #1147)
  • Add Select::new_biased function. (#1150)
  • Remove inefficient spinning. (#1154)
  • Suppress buggy clippy::zero_repeat_side_effects lint in macro generated code. (#1123)
Commits
  • ccd83ac Prepare for the next release
  • 54988eb Calculate layout in const context
  • 761d0b6 Port #1146 & #1147 to deque::Injector and queue::SegQueue
  • 8144fbb Remove optimistic spinning from Context::wait_until
  • a92f6c4 Bump peter-evans/create-pull-request from 5 to 7 (#1153)
  • 66d41a9 channel: Add new_biased constructor for biased channel selection (#1150)
  • d0d0a80 CachePadded: Use 128-byte alignment on arm64ec
  • f757eef Add comment about fixed rustc bug
  • 71d8bb0 ci: Update minimum tested Rust version to 1.63
  • 5092a9b ci: Clean up no_atomic.sh
  • Additional commits viewable in compare view

Updates zbus from 5.1.1 to 5.2.0

Release notes

Sourced from zbus's releases.

🔖 zbus 5.2.0

  • ⚡️ Optimizations:
    • Don't use proxies in connection code. This allows LTO to remove the proxy-side code from the binary if the users isn't directly using proxy APIs. On busd, this reduces the binary size by 200KB.
    • Disable docs in fdo interface introspection. These interfaces are well-known and documented (in the spec itself), so we don't need to provide the docs in the introspection data at runtime.
    • interface now allows disabling docs in introspection. Introspection strings are part of the binary and can have an impact on the binary size. This change allows to disable the addition of docs in the introspection for cases where there interface is well-known/well-documented. For example, combined with the following change of using this in the zbus::fdo interfaces, this will allow busd binary to shed 26 KB.
    • Avoid some formatting at runtime in interface macro. Add values already known to the introspection XML at compile time. This also removes about 500 bytes from busd binary size.
  • 🚩 Add gvariant feature flag to zbus_macros. It's just a proxy feature for zvariant and only needed to fix the build in the root workspace when building with --features gvariant. #1125.
  • ⬆️ Update tokio-vsock to 0.6.
  • 🔊 Skip self in an instrumented method.
  • 🔥 Drop now unused sink feature of futures-util.
Commits
  • e60691b Merge pull request #1175 from zeenix/zb-rel-5.2
  • fdd15f3 🔖 zb,zm: Release 5.2.0
  • 487065b ⬆️ micro: Update serde to v1.0.216 (#1174)
  • 0e6d83e ⬆️ micro: Update chrono to v0.4.39 (#1173)
  • 588978b ⬆️ micro: Update clap to v4.5.23 (#1171)
  • 2e4667b ⬆️ micro: Update clap to v4.5.22 (#1169)
  • 6f18398 ⬆️ micro: Update JamesIves/github-pages-deploy-action action to v4.7.2 (#1168)
  • 4cc9526 Merge pull request #1148 from Spindel/zvariant-nan-decoders
  • 0d2704f Merge pull request #1167 from dbus2/renovate/tokio-1.x-lockfile
  • 6ea4a02 ⬆️ Update tokio to v1.42.0
  • Additional commits viewable in compare view

Updates fern from 0.7.0 to 0.7.1

Changelog

Sourced from fern's changelog.

0.7.1 (2024-12-15)

Commits

Updates libc from 0.2.167 to 0.2.168

Release notes

Sourced from libc's releases.

0.2.168

Added

Deprecated

  • FreeBSD: Deprecate the CAP_UNUSED* and CAP_ALL* constants (#4183)

Fixed

  • Make the Debug implementation for unions opaque (#4176)

Other

Changelog

Sourced from libc's changelog.

0.2.168 - 2024-12-09

Added

Deprecated

  • FreeBSD: Deprecate the CAP_UNUSED* and CAP_ALL* constants (#4183)

Fixed

  • Make the Debug implementation for unions opaque (#4176)

Other

Commits
  • e6082ef chore: release v0.2.168
  • 26b5337 Merge pull request #4190 from tgross35/backport-ci-artifacts
  • 4344e54 ci: Upload artifacts created by libc-test
  • abe73ab Merge pull request #4187 from tgross35/backport-romanesco
  • 1e2da75 adding POSIX memccpy and mempcpy GNU extension.
  • 7457aa1 fix: make Debug impl for unions opaque
  • 8592ff9 Lift IFA_* constants from linux/gnu to linux
  • 069c923 Test(semver/linux): Add missing PF_* constants
  • 05768aa Docs(linux): Add docs for PF_* constants
  • 0e89233 Feat(linux): Add new process flags
  • Additional commits viewable in compare view

Updates serde from 1.0.215 to 1.0.216

Release notes

Sourced from serde's releases.

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)
Commits
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • 9497463 Mark all generated trait impls as #[automatically_derived]
  • 46e9ecf Merge pull request #2866 from tdittr/mark-visitors-as-generated
  • e9c399c Mark generated impl de::Visitor blocks as #[automatically_derived]
  • b9dbfcb Switch out fnv in favor of foldhash in test
  • c270e27 Use BuildHasher instead of Hasher in collection macros
  • 0307f60 Resolve question_mark clippy lint in build script
  • See full diff in compare view

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

Bumps the cargo group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.13` | `0.5.14` |
| [zbus](https://github.com/dbus2/zbus) | `5.1.1` | `5.2.0` |
| [fern](https://github.com/daboross/fern) | `0.7.0` | `0.7.1` |
| [libc](https://github.com/rust-lang/libc) | `0.2.167` | `0.2.168` |
| [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.216` |


Updates `chrono` from 0.4.38 to 0.4.39
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.38...v0.4.39)

Updates `crossbeam-channel` from 0.5.13 to 0.5.14
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-channel-0.5.13...crossbeam-channel-0.5.14)

Updates `zbus` from 5.1.1 to 5.2.0
- [Release notes](https://github.com/dbus2/zbus/releases)
- [Commits](dbus2/zbus@zbus-5.1.1...zbus-5.2.0)

Updates `fern` from 0.7.0 to 0.7.1
- [Release notes](https://github.com/daboross/fern/releases)
- [Changelog](https://github.com/daboross/fern/blob/main/CHANGELOG.md)
- [Commits](daboross/fern@fern-0.7.0...fern-0.7.1)

Updates `libc` from 0.2.167 to 0.2.168
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.168/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.167...0.2.168)

Updates `serde` from 1.0.215 to 1.0.216
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.216)

---
updated-dependencies:
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: crossbeam-channel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: zbus
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: fern
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 16, 2024
@hrkfdn hrkfdn merged commit e89f540 into main Dec 16, 2024
5 checks passed
@hrkfdn hrkfdn deleted the dependabot/cargo/cargo-537ff272ce branch December 16, 2024 07: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.

1 participant