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

build(deps): bump the rust-dependencies group with 10 updates #646

Merged
merged 1 commit into from
Nov 11, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 11, 2024

Bumps the rust-dependencies group with 10 updates:

Package From To
tokio 1.41.0 1.41.1
thiserror 1.0.67 2.0.3
anyhow 1.0.92 1.0.93
url 2.5.2 2.5.3
libc 0.2.161 0.2.162
tuic v1.3.2 v1.3.4
tuic-quinn v1.3.2 v1.3.4
security-framework 3.0.0 3.0.1
tempfile 3.13.0 3.14.0
serial_test 3.1.1 3.2.0

Updates tokio from 1.41.0 to 1.41.1

Release notes

Sourced from tokio's releases.

Tokio v1.41.1

1.41.1 (Nov 7th, 2024)

Fixed

  • metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • net: display net requirement for net::UdpSocket in docs (#6938)
  • net: fix typo in TcpStream internal comment (#6944)

#6957: tokio-rs/tokio#6957 #6938: tokio-rs/tokio#6938 #6944: tokio-rs/tokio#6944

Commits
  • bb7ca75 chore: prepare Tokio v1.41.1 (#6959)
  • 4a34b77 metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • 8897885 docs: fix mismatched backticks in CONTRIBUTING.md (#6951)
  • 0dbdd19 ci: update cargo-check-external-types to 0.1.13 (#6949)
  • 94e55c0 net: fix typo in TcpStream internal comment (#6944)
  • 4468f27 metrics: fixed flaky worker_steal_count test (#6932)
  • 070a825 metrics: removed race condition from global_queue_depth_multi_thread test (#6...
  • 946401c net: display net requirement for net::UdpSocket in docs (#6938)
  • 0c01fd2 ci: use patched version of cargo-check-external-types to fix CI failure (#6937)
  • ebe2416 ci: use cargo deny (#6931)
  • See full diff in compare view

Updates thiserror from 1.0.67 to 2.0.3

Release notes

Sourced from thiserror's releases.

2.0.3

  • Support the same Path field being repeated in both Debug and Display representation in error message (#383)
  • Improve error message when a format trait used in error message is not implemented by some field (#384)

2.0.2

  • Fix hang on invalid input inside #[error(...)] attribute (#382)

2.0.1

  • Support errors that contain a dynamically sized final field (#375)
  • Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)

2.0.0

Breaking changes

  • Referencing keyword-named fields by a raw identifier like {r#type} inside a format string is no longer accepted; simply use the unraw name like {type} (#347)

    This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.

    #[derive(Error, Debug)]
    #[error("... {type} ...")]  // Before: {r#type}
    pub struct Error {
        pub r#type: Type,
    }
  • Trait bounds are no longer inferred on fields whose value is shadowed by an explicit named argument in a format message (#345)

    // Before: impl<T: Octal> Display for Error<T>
    // After: impl<T> Display for Error<T>
    #[derive(Error, Debug)]
    #[error("{thing:o}", thing = "...")]
    pub struct Error<T> {
        thing: T,
    }
  • Tuple structs and tuple variants can no longer use numerical {0} {1} access at the same time as supplying extra positional arguments for a format message, as this makes it ambiguous whether the number refers to a tuple field vs a different positional arg (#354)

    #[derive(Error, Debug)]
    #[error("ambiguous: {0} {}", $N)]
    //                  ^^^ Not allowed, use #[error("... {0} {n}", n = $N)]
    pub struct TupleError(i32);
  • Code containing invocations of thiserror's derive(Error) must now have a direct dependency on the thiserror crate regardless of the error data structure's contents (#368, #369, #370, #372)

Features

... (truncated)

Commits
  • 15fd26e Release 2.0.3
  • 7046023 Simplify how has_bonus_display is accumulated
  • 9cc1d0b Merge pull request #384 from dtolnay/nowrap
  • 1d040f3 Use Var wrapper only for Pointer formatting
  • 6a6132d Extend no-display ui test to cover another fmt trait
  • a061beb Merge pull request #383 from dtolnay/both
  • 6388293 Support Display and Debug of same path in error message
  • dc0359e Defer binding_value construction
  • 520343e Add test of Debug and Display of paths
  • 49be39d Release 2.0.2
  • Additional commits viewable in compare view

Updates anyhow from 1.0.92 to 1.0.93

Release notes

Sourced from anyhow's releases.

1.0.93

  • Update dev-dependencies to thiserror v2
Commits
  • 713bda9 Release 1.0.93
  • f91c247 Merge pull request #391 from dtolnay/thiserror
  • 2a3901c Isolate old rustc version tests from needing anyhow dev-dependencies in lockfile
  • 3ca2cdd Update dev-dependencies to thiserror v2
  • See full diff in compare view

Updates url from 2.5.2 to 2.5.3

Release notes

Sourced from url's releases.

v2.5.3

What's Changed

New Contributors

Full Changelog: servo/rust-url@v2.5.2...v2.5.3

Commits

Updates libc from 0.2.161 to 0.2.162

Release notes

Sourced from libc's releases.

0.2.162

Added

Fixed

Other

Changelog

Sourced from libc's changelog.

0.2.162 - 2024-11-07

Added

Fixed

Other

Commits
  • b8c255c chore: release v0.2.162
  • acb0c19 Merge pull request #4020 from tgross35/backport-collard-greens
  • 33a772c feat: add ioctl flags in linux/if_tun.h
  • a3ca238 freebsd adding CLOSE_RANGE_CLOEXEC flag
  • 8c88d9a armv7-unknown-freebsd: fix test errors regarding __gregset_t
  • c0c9391 Fix the build on armv7-unknown-freebsd
  • d435e9b Merge pull request #4006 from tgross35/backport-spinach
  • 7ee37b9 Merge pull request #4017 from tgross35/backport-watercress
  • 073c7b4 Fix definition of FIODGNAME on 32-bit FreeBSD
  • 255b039 Fix size of struct kinfo_file on 32-bit FreeBSD
  • Additional commits viewable in compare view

Updates tuic from v1.3.2 to v1.3.4

Release notes

Sourced from tuic's releases.

v1.3.4

🐛 Bug Fixes

  • Udp session reuse
  • Wrong logic of udp timeout

⚙️ Miscellaneous Tasks

  • Update macos runner to macos-13
  • Release 1.3.4

v1.3.3

🚀 Features

  • Add livetime for udp session

🐛 Bug Fixes

  • Solve memory leak #31 by using Weak

🚜 Refactor

  • Make config's loglevel only affect tuic

🎨 Styling

  • Cargo fmt

🛠️ Builds

  • Longer dependabot interval
  • (deps) Bump the rust-dependencies group with 4 updates (#29)
  • (deps) Bump the rust-dependencies group with 3 updates (#30)

⚙️ Miscellaneous Tasks

  • Replace anyhow with eyre
  • Upgrade rust toolchain
  • Adjust ctrl_c handler
  • Release 1.3.3
Commits

Updates tuic-quinn from v1.3.2 to v1.3.4

Release notes

Sourced from tuic-quinn's releases.

v1.3.4

🐛 Bug Fixes

  • Udp session reuse
  • Wrong logic of udp timeout

⚙️ Miscellaneous Tasks

  • Update macos runner to macos-13
  • Release 1.3.4

v1.3.3

🚀 Features

  • Add livetime for udp session

🐛 Bug Fixes

  • Solve memory leak #31 by using Weak

🚜 Refactor

  • Make config's loglevel only affect tuic

🎨 Styling

  • Cargo fmt

🛠️ Builds

  • Longer dependabot interval
  • (deps) Bump the rust-dependencies group with 4 updates (#29)
  • (deps) Bump the rust-dependencies group with 3 updates (#30)

⚙️ Miscellaneous Tasks

  • Replace anyhow with eyre
  • Upgrade rust toolchain
  • Adjust ctrl_c handler
  • Release 1.3.3
Commits

Updates security-framework from 3.0.0 to 3.0.1

Commits

Updates tempfile from 3.13.0 to 3.14.0

Changelog

Sourced from tempfile's changelog.

3.14.0

  • Make the wasip2 target work (requires tempfile's "nightly" feature to be enabled). #305.
  • Allow older windows-sys versions #304.
Commits

Updates serial_test from 3.1.1 to 3.2.0

Release notes

Sourced from serial_test's releases.

v3.2.0

What's Changed

New Contributors

Full Changelog: palfrey/serial_test@v3.1.1...v3.2.0

Commits
  • 3ac9744 3.2.0
  • 51259ef Merge pull request #120 from palfrey/strip-default-features
  • 27178a2 Add some missing features
  • 5aefac5 Strip down the required features for various libraries
  • 3c50af8 Merge pull request #119 from palfrey/fix-default-features
  • c280409 default_features -> default-features
  • 6229fac Merge pull request #118 from palfrey/proc-macro-update
  • f6435ab Downgrade env_logger requirements
  • a41fa22 Run build/test with updated packages
  • 8de7c1f Added new workflow step to update dependencies
  • Additional commits viewable 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 rust-dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.0` | `1.41.1` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.67` | `2.0.3` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.92` | `1.0.93` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.3` |
| [libc](https://github.com/rust-lang/libc) | `0.2.161` | `0.2.162` |
| [tuic](https://github.com/Itsusinn/tuic) | `v1.3.2` | `v1.3.4` |
| [tuic-quinn](https://github.com/Itsusinn/tuic) | `v1.3.2` | `v1.3.4` |
| [security-framework](https://github.com/kornelski/rust-security-framework) | `3.0.0` | `3.0.1` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.13.0` | `3.14.0` |
| [serial_test](https://github.com/palfrey/serial_test) | `3.1.1` | `3.2.0` |


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

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

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

Updates `url` from 2.5.2 to 2.5.3
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.2...v2.5.3)

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

Updates `tuic` from v1.3.2 to v1.3.4
- [Release notes](https://github.com/Itsusinn/tuic/releases)
- [Commits](Itsusinn/tuic@dea187c...333f80d)

Updates `tuic-quinn` from v1.3.2 to v1.3.4
- [Release notes](https://github.com/Itsusinn/tuic/releases)
- [Commits](Itsusinn/tuic@dea187c...333f80d)

Updates `security-framework` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/kornelski/rust-security-framework/releases)
- [Commits](kornelski/rust-security-framework@v3.0.0...v3.0.1)

Updates `tempfile` from 3.13.0 to 3.14.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.13.0...v3.14.0)

Updates `serial_test` from 3.1.1 to 3.2.0
- [Release notes](https://github.com/palfrey/serial_test/releases)
- [Commits](palfrey/serial_test@v3.1.1...v3.2.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: tuic
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: tuic-quinn
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: security-framework
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: serial_test
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
...

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 Nov 11, 2024
@ibigbug ibigbug merged commit 5f2306a into master Nov 11, 2024
25 of 26 checks passed
@ibigbug ibigbug deleted the dependabot/cargo/rust-dependencies-dcf10eb5b7 branch November 11, 2024 02:34
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