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 dependencies group across 1 directory with 6 updates #1657

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

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group with 6 updates in the / directory:

Package From To
uuid 1.12.0 1.14.0
bytes 1.9.0 1.10.0
owo-colors 4.1.0 4.2.0
rand_chacha 0.3.1 0.9.0
tempfile 3.15.0 3.17.1
uniffi 0.28.3 0.29.0

Updates uuid from 1.12.0 to 1.14.0

Release notes

Sourced from uuid's releases.

v1.14.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.13.2...v1.14.0

v1.13.2

What's Changed

Full Changelog: uuid-rs/uuid@1.13.1...v1.13.2

1.13.1

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.13.0...1.13.1

1.13.0

⚠️ Potential Breakage

This release updates our version of getrandom to 0.3 and rand to 0.9. It is a potentially breaking change for the following users:

no-std users who enable the rng feature

uuid still uses getrandom by default on these platforms. Upgrade your version of getrandom and follow its new docs on configuring a custom backend.

wasm32-unknown-unknown users who enable the rng feature without the js feature

Upgrade your version of getrandom and follow its new docs on configuring a backend.

You'll also need to enable the rng-getrandom or rng-rand feature of uuid to force it to use getrandom as its backend:

[dependencies.uuid]
version = "1.13.0"
- features = ["v4"]
+ features = ["v4", "rng-getrandom"]
[dependencies.getrandom]
</tr></table>

... (truncated)

Commits
  • bf5b0b8 Merge pull request #807 from uuid-rs/cargo/v1.14.0
  • daa0794 prepare for 1.14.0 release
  • 6bd7bc7 Merge pull request #806 from tysen/add-fromstr-impls-to-fmt
  • 5b0ca42 Add FromStr impls to the fmt structs
  • d8871b3 Merge pull request #805 from uuid-rs/cargo/v1.13.2
  • 7044210 prepare for 1.13.2 release
  • 7893ecc Merge pull request #804 from uuid-rs/fix/wasm-no-rng
  • bf28001 update feature docs
  • 920e8b1 add a more descriptive compile error when no rng source is available on wasm
  • 5421417 Merge pull request #799 from uuid-rs/cargo/1.13.1
  • Additional commits viewable in compare view

Updates bytes from 1.9.0 to 1.10.0

Release notes

Sourced from bytes's releases.

Bytes v1.10.0

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)
Changelog

Sourced from bytes's changelog.

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)
Commits
  • e0f3a25 chore: prepare bytes v1.10.0 (#766)
  • 16fd473 Add feature to support platforms without atomic CAS (#467)
  • 71824b0 ci: test AArch64 and run tests instead of build in cross job (#763)
  • 7a87660 Use [lints] to address unexpected_cfgs lint (#762)
  • 3ab876f Try get methods for Buf trait (#753)
  • a1b1208 Disable test_bytes_vec_alloc test on miri (#755)
  • aae4969 Add specialized Buf::chunks_vectored for Take (#617)
  • 103d7bf Remove incorrect guarantee for chunks_vectored (#754)
  • 16cc574 Implement Buf::chunks_vectored for VecDeque\<u8> (#708)
  • 0e9e4fc Expand Buf tests (#747)
  • Additional commits viewable in compare view

Updates owo-colors from 4.1.0 to 4.2.0

Release notes

Sourced from owo-colors's releases.

owo-colors 4.2.0

Added

  • Style::prefix_formatter and Style::suffix_formatter return Display formatters for the prefix and the suffix of a style, respectively.
  • All the *Display types now have an into_styled function that converts those types into a Styled, erasing type parameters.
  • Even more methods are now const.

Changed

  • The Color and DynColor traits are now explicitly marked sealed (i.e. downstream crates cannot implement them).

    These traits were already effectively sealed due to a number of hidden methods that were not part of the API, but they are now explicitly so. In that sense this is not a breaking change, so it's being released under a new minor version rather than a major version.

owo-colors 4.1.1

Added

  • The vast majority of owo-colors is now usable in const contexts.

Fixed

  • Documentation for Stream is now rendered properly. Thanks purplesyringa for the contribution!
  • Replace brittle const-promotion-based unsafe code with safe code. Thanks Manish for the contribution!

Other

For information about earlier versions, see the commit history.

Changelog

Sourced from owo-colors's changelog.

4.2.0 - 2025-02-22

Added

  • Style::prefix_formatter and Style::suffix_formatter return Display formatters for the prefix and the suffix of a style, respectively.
  • All the *Display types now have an into_styled function that converts those types into a Styled, erasing type parameters.
  • Even more methods are now const.

Changed

  • The Color and DynColor traits are now explicitly marked sealed (i.e. downstream crates cannot implement them).

    These traits were already effectively sealed due to a number of hidden methods that were not part of the API, but they are now explicitly so. In that sense this is not a breaking change, so it's being released under a new minor version rather than a major version.

4.1.1 - 2025-02-22

Added

  • The vast majority of owo-colors is now usable in const contexts.

Fixed

  • Documentation for Stream is now rendered properly. Thanks purplesyringa for the contribution!
  • Replace brittle const-promotion-based unsafe code with safe code. Thanks Manish for the contribution!

Other

For information about earlier versions, see the commit history.

Commits
  • 6d12fd4 [owo-colors] version 4.2.0
  • 376c775 prepare release
  • 730073c add StylePrefixFormatter and StyleSuffixFormatter
  • fb62f7a make even more methods const
  • dbc2166 add into_styled to erase type parameters
  • 1ae3d92 explicitly mark Color and DynColor sealed
  • 6198625 make fg and bg const
  • 49a5c83 use a scope guard to reset overrides
  • b039f05 add write permissions
  • a5ccf48 one more fix
  • 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 tempfile from 3.15.0 to 3.17.1

Changelog

Sourced from tempfile's changelog.

3.17.1

  • Fix build with windows-sys 0.52. Unfortunately, we have no CI for older windows-sys versions at the moment...

3.17.0

  • Make sure to use absolute paths in when creating unnamed temporary files (avoids a small race in the "immediate unlink" logic) and in Builder::make_in (when creating temporary files of arbitrary types).
  • Prevent a theoretical crash that could (maybe) happen when a temporary file is created from a drop function run in a TLS destructor. Nobody has actually reported a case of this happening in practice and I have been unable to create this scenario in a test.
  • When reseeding with getrandom, use platform (e.g., CPU) specific randomness sources where possible.
  • Clarify some documentation.
  • Unlink unnamed temporary files on windows immediately when possible instead of waiting for the handle to be closed. We open files with "Unix" semantics, so this is generally possible.

3.16.0

  • Update getrandom to 0.3.0 (thanks to @​paolobarbolini).
  • Allow windows-sys versions 0.59.x in addition to 0.59.0 (thanks @​ErichDonGubler).
  • Improved security documentation (thanks to @​n0toose for collaborating with me on this).
Commits
  • 714a259 chore: release 3.17.1
  • 78309ed fix: cast handle to the windows crate HANDLE (#332)
  • 6e7d167 chore: release 3.17.0
  • 3718075 doc: remove incorrect documentation about windows and open files
  • 461369f feat: delete unnamed temporary files on windows immediately
  • 78d30a2 doc: clarify "inner file will be deleted" documentation (#329)
  • 0fe11c4 doc: document how to "keep" temporary files/dirs after creation (#328)
  • 35e0629 feat: simplify getrandom call (#325)
  • 1e5059f fix: handle TLS deallocation (#324)
  • c7b2e1a chore: simplify reborrow
  • Additional commits viewable in compare view

Updates uniffi from 0.28.3 to 0.29.0

Changelog

Sourced from uniffi's changelog.

v0.29.0 (backend crates: v0.29.0) - (2025-02-06)

⚠️ Breaking Changes ⚠️

We've made a number of breaking changes to fix long standing paper-cuts with UniFFI in multi-crate and procmacro+udl environments.

See the detailed upgrade notes

While no changes are required to foreign code, we apologize for the inconvenience!

You are impacted if you use UniffiCustomTypeConverter to implement "Custom types", or use UDL with types from more than one crate.

  • UniffiCustomTypeConverter has been removed, you must now use the custom_type! macro instead.

  • The UDL syntax for external types has changed. typedef extern MyEnum; has been replaced with typedef enum MyEnum;. [Custom] and [External] are the only supported attributes for a typedef.

  • "remote" types (where UDL can re-export a type defined in a non-UniFFI crate - eg, log::Level) must now use a [Remote] attribute.

  • Various use_udl_*/use_remote_type etc macros have been removed.

Detailed upgrade notes

  • uniffi::generate_component_scaffolding has been removed. It's almost certainly unused as it is behind the wrong feature and undocumented. uniffi::generate_scaffolding does exacly the same thing and is correctly behind the build feature.

What's new?

  • Kotlin and Swift follow Python: Proc-macros exporting an impl Trait for Struct block now has a class inheritance hierarcy to reflect that. #2297, #2363

  • External types work much better, particularly between UDL and proc-macros. (Kotlin external errors do not work - #2392).

  • Swift interfaces are marked as Sendable (#2318)

  • Removed the log dependency and logging statements about FFI calls. These were not really useful to consumers and could have high overhead when lots of FFI calls are made. Instead, the ffi-trace feature can be used to get tracing-style printouts about the FFI.

  • External errors work for Swift and Python. Kotlin does not work - see #2392.

  • Added disable_java_cleaner option for kotlin to allow for Java 8 compatible code

... (truncated)

Commits
  • 76c4749 Merge pull request #2433 from bendk/release-v0.29.x
  • 28ccd34 Add uniffi-internal-macros release-backend-crates list
  • 5a877c8 Merge pull request #2432 from bendk/release-v0.29.x
  • 4746048 chore: Release
  • 180da08 chore: Release
  • 5b8fa52 Bump the Rust version to 1.84.0, but MSR remains the same. (#2422)
  • fb539bb Fixup comments and whitespace in generated Python code. (#2428)
  • 9c83e1d Merge pull request #2418 from jhugman/jhugman/2417-remove-send-from-wasm32-fu...
  • a80080c Add changelog
  • ba621e8 Address reviewer comments
  • 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 dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [uuid](https://github.com/uuid-rs/uuid) | `1.12.0` | `1.14.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.9.0` | `1.10.0` |
| [owo-colors](https://github.com/owo-colors/owo-colors) | `4.1.0` | `4.2.0` |
| [rand_chacha](https://github.com/rust-random/rand) | `0.3.1` | `0.9.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.15.0` | `3.17.1` |
| [uniffi](https://github.com/mozilla/uniffi-rs) | `0.28.3` | `0.29.0` |



Updates `uuid` from 1.12.0 to 1.14.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.12.0...v1.14.0)

Updates `bytes` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.9.0...v1.10.0)

Updates `owo-colors` from 4.1.0 to 4.2.0
- [Release notes](https://github.com/owo-colors/owo-colors/releases)
- [Changelog](https://github.com/owo-colors/owo-colors/blob/main/CHANGELOG.md)
- [Commits](owo-colors/owo-colors@v4.1.0...v4.2.0)

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 `tempfile` from 3.15.0 to 3.17.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.15.0...v3.17.1)

Updates `uniffi` from 0.28.3 to 0.29.0
- [Changelog](https://github.com/mozilla/uniffi-rs/blob/main/CHANGELOG.md)
- [Commits](mozilla/uniffi-rs@v0.28.3...v0.29.0)

---
updated-dependencies:
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: owo-colors
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: rand_chacha
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: uniffi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner February 24, 2025 02:40
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 24, 2025
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