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

Bump the non-critical group with 7 updates #1819

Merged
merged 1 commit into from
Dec 9, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the non-critical group with 7 updates:

Package From To
anyhow 1.0.93 1.0.94
cargo_metadata 0.19.0 0.19.1
libc 0.2.167 0.2.168
thiserror 2.0.3 2.0.6
time 0.3.36 0.3.37
tokio 1.41.1 1.42.0
which 5.0.0 7.0.0

Updates anyhow from 1.0.93 to 1.0.94

Release notes

Sourced from anyhow's releases.

1.0.94

  • Documentation improvements
Commits
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • 8852dc3 Prevent upload-artifact from causing CI failure
  • See full diff in compare view

Updates cargo_metadata from 0.19.0 to 0.19.1

Changelog

Sourced from cargo_metadata's changelog.

Changelog

Unreleased

  • n/a

Added

  • n/a

Changed

  • Updated dependencies:
    • thiserror from 1.0.31 to 2.0.3
    • derive_builder from 0.12 to 0.20

Removed

  • n/a

Fixed

  • n/a
Commits
  • 8f4c3a8 Merge pull request #276 from sunshowers/fromstr-display
  • e6c0f06 Merge pull request #278 from oli-obk/push-qxuollxmvlzn
  • 61ceb9a Pacify clippy
  • eae17fb Bump msrv to keep in sync with our dependencies
  • 2983f51 add FromStr and Display impls for TargetKind and CrateType
  • 834207b Merge pull request #273 from regexident/update-dependencies
  • 4373396 Update dependencies
  • See full diff 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 thiserror from 2.0.3 to 2.0.6

Release notes

Sourced from thiserror's releases.

2.0.6

  • Suppress deprecation warning on generated From impls (#396)

2.0.5

  • Prevent deprecation warning on generated impl for deprecated type (#394)

2.0.4

  • Eliminate needless_lifetimes clippy lint in generated From impls (#391, thanks @​matt-phylum)
Commits
  • 2075e87 Release 2.0.6
  • e9a9085 Merge pull request #396 from dtolnay/deprecatedfrom
  • 6e8c724 Suppress deprecation warning on generated From impls
  • caf585c Add test of deprecated type in From impl
  • f1f159d Release 2.0.5
  • 366a7b2 Merge pull request #395 from dtolnay/fallback
  • 88a4603 Move fallback expansion to separate module
  • 6712f8c Merge pull request #394 from dtolnay/deprecated
  • 07e7d99 Add "in this derive macro expansion" to missing Display errors
  • 714229d Work around deprecation warning on generated impl for deprecated type
  • Additional commits viewable in compare view

Updates time from 0.3.36 to 0.3.37

Release notes

Sourced from time's releases.

v0.3.37

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.37 [2024-12-03]

Added

  • Time::MAX, equivalent to time!(23:59:59.999999999)
  • [year repr:century] is now supported in format descriptions. When used in conjunction with [year repr:last_two], there is sufficient information to parse a date. Note that with the large-date feature enabled, there is an ambiguity when parsing the two back-to-back.
  • Parsing of strftime-style format descriptions, located at time::format_description::parse_strftime_borrowed and time::format_description::parse_strftime_owned
  • time::util::refresh_tz and time::util::refresh_tz_unchecked, which updates information obtained via the TZ environment variable. This is equivalent to the tzset syscall on Unix-like systems, with and without built-in soundness checks, respectively.
  • Month::length and util::days_in_month, replacing util::days_in_year_month.
  • Expressions are permitted in time::serde::format_description! rather than only paths. This also drastically improves diagnostics when an invalid value is provided.

Changed

  • Obtaining the system UTC offset on Unix-like systems should now succeed when multi-threaded. However, if the TZ environment variable is altered, the program will not be aware of this until time::util::refresh_tz or time::util::refresh_tz_unchecked is called. refresh_tz has the same soundness requirements as obtaining the system UTC offset previously did, with the requirements still being automatically enforced. refresh_tz_unchecked does not enforce these requirements at the expense of being unsafe. Most programs should not need to call either function.

    Due to this change, the time::util::local_offset module has been deprecated in its entirety. The get_soundness and set_soundness functions are now no-ops.

    Note that while calls should succeed, success is not guaranteed in any situation. Downstream users should always be prepared to handle the error case.

Fixed

  • Floating point values are truncated, not rounded, when formatting.
  • RFC3339 allows arbitrary separators between the date and time components.
  • Serialization of negative Durations less than one second is now correct. It previously omitted the negative sign.
  • From<js_sys::Date> for OffsetDateTime now ensures sub-millisecond values are not erroneously returned.
Commits
  • d4e39b3 v0.3.37 release
  • 0943997 Fix CI failure
  • 8b50f04 Update lints
  • 56f1db6 Add Month::length, days_in_month
  • 03bcfe9 Skip formatting some macros, update UI tests
  • 4404638 Permit exprs in serde::format_description!
  • 6b43b44 strftime implementation
  • 98569ff Hide deprecations from docs
  • febf3a1 Obtain local offset in multi-threaded situations
  • 1e19827 Update rstest and rstest_reuse; bump MSRV to 1.67.1 (#716)
  • Additional commits viewable in compare view

Updates tokio from 1.41.1 to 1.42.0

Release notes

Sourced from tokio's releases.

Tokio v1.42.0

1.42.0 (Dec 3rd, 2024)

Added

  • io: add AsyncFd::{try_io, try_io_mut} (#6967)

Fixed

  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#6929)
  • runtime: do not defer yield_now inside block_in_place (#6999)

Changes

  • io: simplify io readiness logic (#6966)

Documented

  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#6791)
  • time: fix a typo in Instant docs (#6982)

#6791: tokio-rs/tokio#6791 #6929: tokio-rs/tokio#6929 #6966: tokio-rs/tokio#6966 #6967: tokio-rs/tokio#6967 #6982: tokio-rs/tokio#6982 #6999: tokio-rs/tokio#6999

Commits

Updates which from 5.0.0 to 7.0.0

Release notes

Sourced from which's releases.

7.0.0

  • Add support to WhichConfig for a user provided closure that will be called whenever a nonfatal error occurs. This technically breaks a few APIs due to the need to add more generics and lifetimes. Most code will compile without changes.

6.0.3

  • Enhance tracing feature with some debug level logs for higher level logic.

6.0.2

  • Add tracing feature which outputs debugging information to the tracing ecosystem.

6.0.1

  • Remove dependency on once_cell for Windows users, replace with std::sync::OnceLock.

6.0.0

  • MSRV is now 1.70
  • Upgraded all dependencies to latest version
Changelog

Sourced from which's changelog.

7.0.0

  • Add support to WhichConfig for a user provided closure that will be called whenever a nonfatal error occurs. This technically breaks a few APIs due to the need to add more generics and lifetimes. Most code will compile without changes.

6.0.3

  • Enhance tracing feature with some debug level logs for higher level logic.

6.0.2

  • Add tracing feature which outputs debugging information to the tracing ecosystem.

6.0.1

  • Remove dependency on once_cell for Windows users, replace with std::sync::OnceLock.

6.0.0

  • MSRV is now 1.70
  • Upgraded all dependencies to latest version
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

Bumps the non-critical group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.94` |
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | `0.19.0` | `0.19.1` |
| [libc](https://github.com/rust-lang/libc) | `0.2.167` | `0.2.168` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.3` | `2.0.6` |
| [time](https://github.com/time-rs/time) | `0.3.36` | `0.3.37` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.1` | `1.42.0` |
| [which](https://github.com/harryfei/which-rs) | `5.0.0` | `7.0.0` |


Updates `anyhow` from 1.0.93 to 1.0.94
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.93...1.0.94)

Updates `cargo_metadata` from 0.19.0 to 0.19.1
- [Release notes](https://github.com/oli-obk/cargo_metadata/releases)
- [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md)
- [Commits](oli-obk/cargo_metadata@0.19.0...0.19.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 `thiserror` from 2.0.3 to 2.0.6
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.3...2.0.6)

Updates `time` from 0.3.36 to 0.3.37
- [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.36...v0.3.37)

Updates `tokio` from 1.41.1 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.41.1...tokio-1.42.0)

Updates `which` from 5.0.0 to 7.0.0
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](harryfei/which-rs@5.0.0...7.0.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: cargo_metadata
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-critical
- dependency-name: which
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: non-critical
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner December 9, 2024 11:21
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 9, 2024
@maciektr maciektr enabled auto-merge December 9, 2024 11:58
@maciektr maciektr added this pull request to the merge queue Dec 9, 2024
Merged via the queue into main with commit 7b11ab7 Dec 9, 2024
22 checks passed
@maciektr maciektr deleted the dependabot/cargo/non-critical-f125c0380f branch December 9, 2024 12:41
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