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 rust group across 1 directory with 10 updates #429

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Feb 1, 2025

Bumps the rust group with 10 updates in the / directory:

Package From To
bitflags 2.6.0 2.8.0
log 0.4.22 0.4.25
rand_chacha 0.3.1 0.9.0
tokio 1.42.0 1.43.0
uuid 1.11.0 1.12.1
picky-asn1-der 0.5.1 0.5.2
picky-asn1-x509 0.14.1 0.14.3
rustls 0.23.20 0.23.22
cbindgen 0.27.0 0.28.0
tempfile 3.14.0 3.16.0

Updates bitflags from 2.6.0 to 2.8.0

Release notes

Sourced from bitflags's releases.

2.8.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.7.0...2.8.0

2.7.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.6.0...2.7.0

Changelog

Sourced from bitflags's changelog.

2.8.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.7.0...2.8.0

2.7.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.6.0...2.7.0

Commits
  • e20af86 Merge pull request #432 from bitflags/cargo/2.8.0
  • ba41e4b prepare for 2.8.0 release
  • 89be927 Merge pull request #431 from bitflags/feat/bitflags-match
  • fcfdfd0 finalize bitflags_match
  • 8d829b6 Merge pull request #423 from YuniqueUnic/main
  • b544b58 feat(bitflags): Enhance the functionality and flexibility of the `bitflags_ma...
  • b41a9e8 refactor(match): 重命名 bitflag 匹配宏并优化相关文档
  • 04502cf Merge branch 'bitflags:main' into main
  • 10b9fd3 Merge pull request #430 from bitflags/cargo/2.7.0
  • 137485a prepare for 2.7.0 release
  • Additional commits viewable in compare view

Updates log from 0.4.22 to 0.4.25

Release notes

Sourced from log's releases.

0.4.25

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

0.4.24 (yanked)

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

0.4.23 (yanked)

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.22...0.4.23

Changelog

Sourced from log's changelog.

[0.4.25] - 2025-01-14

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

[0.4.24] - 2025-01-11

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

[0.4.23] - 2025-01-10 (yanked)

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.22...0.4.23

Commits
  • 22be810 Merge pull request #663 from rust-lang/cargo/0.4.25
  • 0279730 prepare for 0.4.25 release
  • 4099bcb Merge pull request #662 from rust-lang/fix/cargo-features
  • 36e7e3f revert loosening of kv cargo features
  • 2282191 Merge pull request #660 from rust-lang/cargo/0.4.24
  • 2994f0a prepare for 0.4.24 release
  • 5fcb50e Merge pull request #659 from rust-lang/fix/feature-builds
  • 29fe9e6 fix up feature activation
  • b1824f2 use cargo hack in CI to test all feature combinations
  • e6b643d Merge pull request #656 from rust-lang/cargo/0.4.23
  • Additional commits viewable in compare view

Updates rand_chacha from 0.3.1 to 0.9.0

Release notes

Sourced from rand_chacha's releases.

0.9.0

Upgrade guide

See https://rust-random.github.io/book/update-0.9.html

Changelog

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

API changes: RNGs

  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)

API changes: Sequences

  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)

API changes: Distributions: renames

  • Rename module rand::distributions to rand::distr (#1470)
  • Rename distribution Standard to StandardUniform (#1526)

... (truncated)

Changelog

Sourced from rand_chacha's changelog.

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

API changes: RNGs

  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)

API changes: Sequences

  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)

API changes: Distributions: renames

  • Rename module rand::distributions to rand::distr (#1470)
  • Rename distribution Standard to StandardUniform (#1526)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#1548)
  • Rename trait distr::DistString -> distr::SampleString (#1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#1548)

... (truncated)

Commits

Updates tokio from 1.42.0 to 1.43.0

Release notes

Sourced from tokio's releases.

Tokio v1.43.0

1.43.0 (Jan 8th, 2025)

Added

  • net: add UdpSocket::peek methods (#7068)
  • net: add support for Haiku OS (#7042)
  • process: add Command::into_std() (#7014)
  • signal: add SignalKind::info on illumos (#6995)
  • signal: add support for realtime signals on illumos (#7029)

Fixed

  • io: don't call set_len before initializing vector in Blocking (#7054)
  • macros: suppress clippy::needless_return in #[tokio::main] (#6874)
  • runtime: fix thread parking on WebAssembly (#7041)

Changes

  • chore: use unsync loads for unsync_load (#7073)
  • io: use Buf::put_bytes in Repeat read impl (#7055)
  • task: drop the join waker of a task eagerly (#6986)

Changes to unstable APIs

  • metrics: improve flexibility of H2Histogram Configuration (#6963)
  • taskdump: add accessor methods for backtrace (#6975)

Documented

  • io: clarify ReadBuf::uninit allows initialized buffers as well (#7053)
  • net: fix ambiguity in TcpStream::try_write_vectored docs (#7067)
  • runtime: fix LocalRuntime doc links (#7074)
  • sync: extend documentation for watch::Receiver::wait_for (#7038)
  • sync: fix typos in OnceCell docs (#7047)

#6874: tokio-rs/tokio#6874 #6963: tokio-rs/tokio#6963 #6975: tokio-rs/tokio#6975 #6986: tokio-rs/tokio#6986 #6995: tokio-rs/tokio#6995 #7014: tokio-rs/tokio#7014 #7029: tokio-rs/tokio#7029 #7038: tokio-rs/tokio#7038 #7041: tokio-rs/tokio#7041 #7042: tokio-rs/tokio#7042 #7047: tokio-rs/tokio#7047 #7053: tokio-rs/tokio#7053 #7054: tokio-rs/tokio#7054 #7055: tokio-rs/tokio#7055

... (truncated)

Commits
  • 5f3296d chore: prepare Tokio v1.43.0 (#7079)
  • cc974a6 chore: prepare tokio-macros v2.5.0 (#7078)
  • 15495fd metrics: improve flexibility of H2Histogram Configuration (#6963)
  • ad41834 io: don't call set_len before initializing vector in Blocking (#7054)
  • bd3e857 runtime: move is_join_waker_set assertion in unset_waker (#7072)
  • 15f7366 runtime: fix LocalRuntime doc links (#7074)
  • fd2048d ci: split miri jobs into unit and integration tests (#7071)
  • e8f3915 chore: use unsync loads for unsync_load (#7073)
  • 67f1277 net: fix ambiguity in TcpStream::try_write_vectored docs (#7067)
  • 463502c io: clarify ReadBuf::uninit allows initialized buffers as well (#7053)
  • Additional commits viewable in compare view

Updates uuid from 1.11.0 to 1.12.1

Release notes

Sourced from uuid's releases.

1.12.1

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.12.0...1.12.1

1.12.0

⚠️ Possible Breakage

This release includes additional PartialEq implementations on Uuid, which can break inference in some cases.

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.11.1...1.12.0

1.11.1

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.11.0...1.11.1

Commits
  • 70831d2 Merge pull request #791 from uuid-rs/cargo/1.12.1
  • ddb8785 prepare for 1.12.1 release
  • 3a0a378 Merge pull request #790 from uuid-rs/chore/fewer-shifts
  • 62da97b remove sketchy benches
  • 7a96ae2 restore parens
  • cfc627b reduce bitshifts in from_u64_pair
  • 4c785e5 Merge pull request #788 from Vrtgs/main
  • 70efa18 Merge pull request #789 from cstyles/fix-links-to-namespaces
  • 2a28bc5 Fix links to namespaces in documentation
  • 5d629ce use inherint to_be_bytes and to_le_bytes methods, rather than reimplementing ...
  • Additional commits viewable in compare view

Updates picky-asn1-der from 0.5.1 to 0.5.2

Commits
  • 6ddd694 chore(release): prepare for publishing (#340)
  • 1834c04 fix: symlinks to license files in packages (#339)
  • c1547b1 chore(release): prepare for publishing (#338)
  • dfb5aba ci: automate crate publishing (#337)
  • eaa43c3 feat(picky-asn1-x509): add ContentInfo in pkcs7 module (#334)
  • c077c72 feat(picky-asn1-x509): add enveloped-data oid (#335)
  • c33cf22 feat(picky-asn1-x509): AesAuthEncParams::new method (#336)
  • bf23ce4 ci: fix max-page-size=16384 for Android builds (#333)
  • c1f0762 chore(release): prepare for Devolutions.Picky 2024.12.10.0
  • df495ca build: support 16 KB page sizes on Android
  • Additional commits viewable in compare view

Updates picky-asn1-x509 from 0.14.1 to 0.14.3

Commits
  • 6ddd694 chore(release): prepare for publishing (#340)
  • 1834c04 fix: symlinks to license files in packages (#339)
  • c1547b1 chore(release): prepare for publishing (#338)
  • dfb5aba ci: automate crate publishing (#337)
  • eaa43c3 feat(picky-asn1-x509): add ContentInfo in pkcs7 module (#334)
  • c077c72 feat(picky-asn1-x509): add enveloped-data oid (#335)
  • c33cf22 feat(picky-asn1-x509): AesAuthEncParams::new method (#336)
  • bf23ce4 ci: fix max-page-size=16384 for Android builds (#333)
  • c1f0762 chore(release): prepare for Devolutions.Picky 2024.12.10.0
  • df495ca build: support 16 KB page sizes on Android
  • Additional commits viewable in compare view

Updates rustls from 0.23.20 to 0.23.22

Commits
  • 784b873 Further defend ChunkVecBuffer::prefix_used invariant
  • 200d566 Re-privatize ChunkVecBuffer::consume() and defend misuse
  • a5d8a6b Detect ChunkVecBuffer::consume larger than length
  • d978e2f chore(deps): update rust crate x509-parser to 0.17
  • 43c2336 Detect illegal HRR if X25519 offered as secondary kx
  • 2551558 Increase accuracy of when to include second keyshare
  • 50d1acd Add X25519MLKEM768 to features documentation
  • bf663b6 Move crypto::aws_lc_rs::pq docs into manual
  • e883143 Bump rustls 0.23.22, rustls-post-quantum 0.2.2
  • c7a86de Add post-quantum key exchange algorithm to defaults
  • Additional commits viewable in compare view

Updates cbindgen from 0.27.0 to 0.28.0

Release notes

Sourced from cbindgen's releases.

0.28.0

Changelog

Sourced from cbindgen's changelog.

0.28.0

  * Parse unsafe attributes in https://github.com/mozilla/cbindgen/pull/1020
  * Fix local override of enum prefix-with-name by jsgf in https://github.com/mozilla/cbindgen/pull/1006
  * Add rename-all=prefix in https://github.com/mozilla/cbindgen/pull/1021
  * ir: add support for UnsafeCell and SyncUnsafeCell by alekitto in https://github.com/mozilla/cbindgen/pull/1003
  * Implement mangling for arrays in https://github.com/mozilla/cbindgen/pull/1022
  * Fix: Ignore `CARGO_BUILD_TARGET` in tests by bryango in https://github.com/mozilla/cbindgen/pull/1010
  * Newline for each field for constexpr field constants by youknowone in https://github.com/mozilla/cbindgen/pull/988
  * Fix clippy warnings by youknowone in https://github.com/mozilla/cbindgen/pull/1026
  * Add aarch64/arm64 to CI by NickeZ in https://github.com/mozilla/cbindgen/pull/1036
  * Add `unstable_ir` feature flag that makes the ir pub by heesooy in https://github.com/mozilla/cbindgen/pull/1011
  * Support generated a symbols file by TheElectronWill in https://github.com/mozilla/cbindgen/pull/916
Commits

Bumps the rust group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bitflags](https://github.com/bitflags/bitflags) | `2.6.0` | `2.8.0` |
| [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.25` |
| [rand_chacha](https://github.com/rust-random/rand) | `0.3.1` | `0.9.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.42.0` | `1.43.0` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.11.0` | `1.12.1` |
| [picky-asn1-der](https://github.com/Devolutions/picky-rs) | `0.5.1` | `0.5.2` |
| [picky-asn1-x509](https://github.com/Devolutions/picky-rs) | `0.14.1` | `0.14.3` |
| [rustls](https://github.com/rustls/rustls) | `0.23.20` | `0.23.22` |
| [cbindgen](https://github.com/mozilla/cbindgen) | `0.27.0` | `0.28.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.14.0` | `3.16.0` |



Updates `bitflags` from 2.6.0 to 2.8.0
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.6.0...2.8.0)

Updates `log` from 0.4.22 to 0.4.25
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.22...0.4.25)

Updates `rand_chacha` from 0.3.1 to 0.9.0
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@rand_chacha-0.3.1...0.9.0)

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

Updates `uuid` from 1.11.0 to 1.12.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.11.0...1.12.1)

Updates `picky-asn1-der` from 0.5.1 to 0.5.2
- [Changelog](https://github.com/Devolutions/picky-rs/blob/master/release.toml)
- [Commits](Devolutions/picky-rs@picky-asn1-der-0.5.1...picky-asn1-der-v0.5.2)

Updates `picky-asn1-x509` from 0.14.1 to 0.14.3
- [Changelog](https://github.com/Devolutions/picky-rs/blob/master/release.toml)
- [Commits](Devolutions/picky-rs@picky-asn1-x509-0.14.1...picky-asn1-x509-v0.14.3)

Updates `rustls` from 0.23.20 to 0.23.22
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.20...v/0.23.22)

Updates `cbindgen` from 0.27.0 to 0.28.0
- [Release notes](https://github.com/mozilla/cbindgen/releases)
- [Changelog](https://github.com/mozilla/cbindgen/blob/master/CHANGES)
- [Commits](mozilla/cbindgen@v0.27.0...0.28.0)

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

---
updated-dependencies:
- dependency-name: bitflags
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rand_chacha
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: picky-asn1-der
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: picky-asn1-x509
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rustls
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: cbindgen
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 1, 2025
Copy link
Author

dependabot bot commented on behalf of github Feb 1, 2025

Dependabot tried to add @codingllama, @rosstimothy and @zmb3 as reviewers to this PR, but received the following error from GitHub:

POST https://api.github.com/repos/ulfox/teleport/pulls/429/requested_reviewers: 422 - Reviews may only be requested from collaborators. One or more of the users or teams you specified is not a collaborator of the ulfox/teleport repository. // See: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request

@dependabot dependabot bot added the rust Pull requests that update Rust code label Feb 1, 2025
Copy link
Author

dependabot bot commented on behalf of github Feb 1, 2025

The following labels could not be found: no-changelog.

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