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 patches group with 15 updates #1190

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 patches group with 15 updates:

Package From To
chrono 0.4.38 0.4.39
proptest-derive 0.5.0 0.5.1
psl 2.1.66 2.1.70
serde 1.0.215 1.0.216
thiserror 2.0.6 2.0.7
bstr 1.11.0 1.11.1
cc 1.2.3 1.2.4
crossbeam-channel 0.5.13 0.5.14
crossbeam-deque 0.8.5 0.8.6
crossbeam-utils 0.8.20 0.8.21
libc 0.2.167 0.2.168
quanta 0.12.3 0.12.4
redox_syscall 0.5.7 0.5.8
semver 1.0.23 1.0.24
serde_derive 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 proptest-derive from 0.5.0 to 0.5.1

Changelog

Sourced from proptest-derive's changelog.

0.5.1

New Additions

  • proptest::strategy::Union and proptest::strategy::TupleUnion now work with weighted strategies even if the sum of the weights overflows a u32.

  • Added SIGNALING_NAN strategy to generate signalling NaNs if supported by the platform. Note that this is not included in ANY.

Bug Fixes

  • Fixed values produced via prop_recursive() not shrinking from the recursive to the non-recursive case.

  • Fix that QUIET_NAN would generate signalling NaNs on most platforms on Rust 1.24.0 and later.

Commits
  • 39875e2 Version 0.5.1.
  • 20cd398 Update floating-support for Rust 1.24.0's new from_bits implementation.
  • 6dee486 Fix Recursive not shrinking to non-recursive case.
  • b107e3f Version 0.5.0.
  • 9a84f3e Remove the long-deprecated Singleton alias.
  • 2ad1d5b Clarify role of arbitrary.
  • dd09a1a Remove char::ANY.
  • 8404588 Merge pull request #40 from Centril/feature/recursion-improvements
  • da677e9 fix bug in osstring_invalid_string (windows)
  • add17f2 document changes to .prop_recursive(..)
  • Additional commits viewable in compare view

Updates psl from 2.1.66 to 2.1.70

Commits

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

Updates thiserror from 2.0.6 to 2.0.7

Release notes

Sourced from thiserror's releases.

2.0.7

  • Work around conflict with #[deny(clippy::allow_attributes)] (#397, thanks @​zertosh)
Commits
  • 9c0f2d2 Release 2.0.7
  • 2deec96 Merge pull request 397 from zertosh/from_allow_expect
  • 100d916 Avoid associating #[from] with lint allow
  • 485c2b7 Reword spurious errors comment
  • See full diff in compare view

Updates bstr from 1.11.0 to 1.11.1

Commits

Updates cc from 1.2.3 to 1.2.4

Release notes

Sourced from cc's releases.

cc-v1.2.4

Other

  • Add support for C/C++ compiler for Neutrino QNX: qcc (#1319)
  • use -maix64 instead of -m64 (#1307)
Changelog

Sourced from cc's changelog.

1.2.4 - 2024-12-13

Other

  • Add support for C/C++ compiler for Neutrino QNX: qcc (#1319)
  • use -maix64 instead of -m64 (#1307)
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 crossbeam-deque from 0.8.5 to 0.8.6

Release notes

Sourced from crossbeam-deque's releases.

crossbeam-deque 0.8.6

  • Fix stack overflow when pushing large value to Injector. (#1146, #1147, #1159)
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 crossbeam-utils from 0.8.20 to 0.8.21

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.21

  • Improve implementation of CachePadded. (#1152)
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 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 quanta from 0.12.3 to 0.12.4

Changelog

Sourced from quanta's changelog.

[0.12.4] - 2024-12-13

Fixed

  • Updated WASM support to work in WebWorkers. (#107)
Commits
  • 67e9f61 chore: Release quanta version 0.12.4
  • 0e204fe update changelog
  • e5b973b update MSRV to 1.70 + WASM CI tests
  • d1e11f0 fix: use global() to get performance API on wasm32-unknown-unknown (#107)
  • 64e4d80 Don't expose tests module.
  • 79e5aea docs: fix typo {windows => window}.performance.now (#105)
  • See full diff in compare view

Updates redox_syscall from 0.5.7 to 0.5.8

Updates semver from 1.0.23 to 1.0.24

Release notes

Sourced from semver's releases.

1.0.24

  • Optimize Ord impls for semver::Prerelease and semver::BuildMetadata (#328, thanks @​Eh2406)
Commits
  • 6f4069d Release 1.0.24
  • d03aba3 Touch up PR 328
  • 238757d Merge pull request #328 from Eh2406/master
  • 75856ef faster Ord when Eq
  • 89504eb Prevent upload-artifact step from causing CI failure
  • d1b17a9 Upload CI Cargo.lock for reproducing failures
  • 4ea60ae Resolve doc_lazy_continuation clippy lint
  • f96f9d8 Merge pull request #319 from dtolnay/docsrs
  • fc5c98d Rely on docs.rs to define --cfg=docsrs by default
  • See full diff in compare view

Updates serde_derive from 1.0.215 to 1.0.216

Release notes

Sourced from serde_derive'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 patches group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [proptest-derive](https://github.com/proptest-rs/proptest) | `0.5.0` | `0.5.1` |
| [psl](https://github.com/addr-rs/psl) | `2.1.66` | `2.1.70` |
| [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.216` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.6` | `2.0.7` |
| [bstr](https://github.com/BurntSushi/bstr) | `1.11.0` | `1.11.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.3` | `1.2.4` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.13` | `0.5.14` |
| [crossbeam-deque](https://github.com/crossbeam-rs/crossbeam) | `0.8.5` | `0.8.6` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.20` | `0.8.21` |
| [libc](https://github.com/rust-lang/libc) | `0.2.167` | `0.2.168` |
| [quanta](https://github.com/metrics-rs/quanta) | `0.12.3` | `0.12.4` |
| redox_syscall | `0.5.7` | `0.5.8` |
| [semver](https://github.com/dtolnay/semver) | `1.0.23` | `1.0.24` |
| [serde_derive](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 `proptest-derive` from 0.5.0 to 0.5.1
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/0.5.1/CHANGELOG.md)
- [Commits](proptest-rs/proptest@proptest-derive-0.5.0...0.5.1)

Updates `psl` from 2.1.66 to 2.1.70
- [Release notes](https://github.com/addr-rs/psl/releases)
- [Commits](addr-rs/psl@v2.1.66...v2.1.70)

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)

Updates `thiserror` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.6...2.0.7)

Updates `bstr` from 1.11.0 to 1.11.1
- [Commits](BurntSushi/bstr@1.11.0...1.11.1)

Updates `cc` from 1.2.3 to 1.2.4
- [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.3...cc-v1.2.4)

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 `crossbeam-deque` from 0.8.5 to 0.8.6
- [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-deque-0.8.5...crossbeam-deque-0.8.6)

Updates `crossbeam-utils` from 0.8.20 to 0.8.21
- [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-utils-0.8.20...crossbeam-utils-0.8.21)

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 `quanta` from 0.12.3 to 0.12.4
- [Changelog](https://github.com/metrics-rs/quanta/blob/main/CHANGELOG.md)
- [Commits](metrics-rs/quanta@v0.12.3...v0.12.4)

Updates `redox_syscall` from 0.5.7 to 0.5.8

Updates `semver` from 1.0.23 to 1.0.24
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.23...1.0.24)

Updates `serde_derive` 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: patches
- dependency-name: proptest-derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: psl
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: bstr
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: crossbeam-channel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: crossbeam-deque
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: crossbeam-utils
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: quanta
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: redox_syscall
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: semver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patches
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added domain: deps Anything related to dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog labels Dec 16, 2024
@jszwedko jszwedko added this pull request to the merge queue Dec 16, 2024
Merged via the queue into main with commit acae0e7 Dec 16, 2024
19 checks passed
@jszwedko jszwedko deleted the dependabot/cargo/patches-76e1554c21 branch December 16, 2024 15:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
domain: deps Anything related to dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant