chore(deps): update all dependencies #9

Merged
kjuulh merged 1 commits from renovate/all into main 2025-02-06 06:38:13 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
clap workspace.dependencies patch 4.5.24 -> 4.5.28
uuid dependencies minor 1.11.0 -> 1.13.1

Release Notes

clap-rs/clap (clap)

v4.5.28

Compare Source

Features
  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

v4.5.27

Compare Source

Documentation
  • Iterate on tutorials and reference based on feedback

v4.5.26

Compare Source

Fixes
  • (error) Reduce binary size with the suggestions feature

v4.5.25

Compare Source

Fixes
  • (help) Reduce binary size
uuid-rs/uuid (uuid)

v1.13.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1

v1.13.0

Compare Source

⚠️ 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]
version = "0.3"

If you're on wasm32-unknown-unknown and using the js feature of uuid you shouldn't see any breakage. We've kept this behavior by vendoring in getrandom's web-based backend when the js feature is enabled.

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0

v1.12.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1

v1.12.0

Compare Source

⚠️ Possible Breakage

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

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0

v1.11.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.24` -> `4.5.28` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.11.0` -> `1.13.1` | --- ### Release Notes <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.28`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4528---2025-02-03) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.27...v4.5.28) ##### Features - *(derive)* Unstable support for full markdown syntax for doc comments, enabled with `unstable-markdown` ### [`v4.5.27`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4527---2025-01-20) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.26...v4.5.27) ##### Documentation - Iterate on tutorials and reference based on feedback ### [`v4.5.26`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4526---2025-01-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.25...v4.5.26) ##### Fixes - *(error)* Reduce binary size with the `suggestions` feature ### [`v4.5.25`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4525---2025-01-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.24...v4.5.25) ##### Fixes - *(help)* Reduce binary size </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.13.1`](https://github.com/uuid-rs/uuid/releases/tag/1.13.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1) #### What's Changed - Fix `wasm32` with `atomics` by [@&#8203;bushrat011899](https://github.com/bushrat011899) in https://github.com/uuid-rs/uuid/pull/797 - Prepare for 1.13.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/799 #### New Contributors - [@&#8203;bushrat011899](https://github.com/bushrat011899) made their first contribution in https://github.com/uuid-rs/uuid/pull/797 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1 ### [`v1.13.0`](https://github.com/uuid-rs/uuid/releases/tag/1.13.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0) #### :warning: 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](https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend) 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](https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend) 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: ```diff [dependencies.uuid] version = "1.13.0" - features = ["v4"] + features = ["v4", "rng-getrandom"] [dependencies.getrandom] version = "0.3" ``` If you're on `wasm32-unknown-unknown` and using the `js` feature of `uuid` you shouldn't see any breakage. We've kept this behavior by vendoring in `getrandom`'s web-based backend when the `js` feature is enabled. #### What's Changed - Update `getrandom` to `0.3` and `rand` to `0.9` by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/793 - Support forcing `getrandom` on `wasm32-unknown-unknown` without JavaScript by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/794 - Prepare for 1.13.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/795 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0 ### [`v1.12.1`](https://github.com/uuid-rs/uuid/releases/tag/1.12.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1) #### What's Changed - Fix links to namespaces in documentation by [@&#8203;cstyles](https://github.com/cstyles) in https://github.com/uuid-rs/uuid/pull/789 - use inherent to_be_bytes and to_le_bytes methods by [@&#8203;Vrtgs](https://github.com/Vrtgs) in https://github.com/uuid-rs/uuid/pull/788 - Reduce bitshifts in from_u64\_pair by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/790 - prepare for 1.12.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/791 #### New Contributors - [@&#8203;cstyles](https://github.com/cstyles) made their first contribution in https://github.com/uuid-rs/uuid/pull/789 - [@&#8203;Vrtgs](https://github.com/Vrtgs) made their first contribution in https://github.com/uuid-rs/uuid/pull/788 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1 ### [`v1.12.0`](https://github.com/uuid-rs/uuid/releases/tag/1.12.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0) #### :warning: Possible Breakage This release includes additional `PartialEq` implementations on `Uuid`, which can break inference in some cases. #### What's Changed - feat: Add `NonZeroUuid` type for optimized `Option<Uuid>` representation by [@&#8203;ab22593k](https://github.com/ab22593k) in https://github.com/uuid-rs/uuid/pull/779 - Finalize `NonNilUuid` by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/783 - Prepare for 1.12.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/784 #### New Contributors - [@&#8203;ab22593k](https://github.com/ab22593k) made their first contribution in https://github.com/uuid-rs/uuid/pull/779 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0 ### [`v1.11.1`](https://github.com/uuid-rs/uuid/releases/tag/1.11.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1) #### What's Changed - Finish cut off docs by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/777 - Fix links in CONTRIBUTING.md by [@&#8203;jacobggman](https://github.com/jacobggman) in https://github.com/uuid-rs/uuid/pull/778 - Update rust toolchain before building by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/781 - Prepare for 1.11.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/782 #### New Contributors - [@&#8203;jacobggman](https://github.com/jacobggman) made their first contribution in https://github.com/uuid-rs/uuid/pull/778 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-01-10 02:35:09 +01:00
chore(deps): update rust crate clap to v4.5.26
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
891d8e7916
kjuulh changed title from chore(deps): update rust crate clap to v4.5.26 to chore(deps): update all dependencies 2025-01-10 06:34:09 +01:00
kjuulh force-pushed renovate/all from 891d8e7916 to d128eab811 2025-01-10 06:34:09 +01:00 Compare
kjuulh force-pushed renovate/all from d128eab811 to 19298738bb 2025-01-11 02:33:21 +01:00 Compare
kjuulh force-pushed renovate/all from 19298738bb to d2c14054f0 2025-01-11 06:33:37 +01:00 Compare
kjuulh force-pushed renovate/all from d2c14054f0 to 451496c7f9 2025-01-12 02:35:38 +01:00 Compare
kjuulh force-pushed renovate/all from 451496c7f9 to cc61a20d07 2025-01-12 06:34:13 +01:00 Compare
kjuulh force-pushed renovate/all from cc61a20d07 to 328af6decf 2025-01-13 02:38:34 +01:00 Compare
kjuulh force-pushed renovate/all from 328af6decf to 2704c51717 2025-01-13 06:36:22 +01:00 Compare
kjuulh force-pushed renovate/all from 2704c51717 to 72af2e9e23 2025-01-14 02:35:11 +01:00 Compare
kjuulh force-pushed renovate/all from 72af2e9e23 to 7d832c3f53 2025-01-14 06:34:37 +01:00 Compare
kjuulh force-pushed renovate/all from 7d832c3f53 to a7c1564cfd 2025-01-15 02:45:14 +01:00 Compare
kjuulh force-pushed renovate/all from a7c1564cfd to 11d70ed3ea 2025-01-21 02:39:48 +01:00 Compare
kjuulh force-pushed renovate/all from 11d70ed3ea to d9d399512c 2025-01-21 06:42:23 +01:00 Compare
kjuulh force-pushed renovate/all from d9d399512c to f539f6644e 2025-01-22 02:39:51 +01:00 Compare
kjuulh force-pushed renovate/all from f539f6644e to 44665ffd5e 2025-01-22 06:37:25 +01:00 Compare
kjuulh force-pushed renovate/all from 44665ffd5e to 1cac8a0466 2025-01-23 02:38:30 +01:00 Compare
kjuulh force-pushed renovate/all from 1cac8a0466 to 0a956e9d1a 2025-01-23 06:38:19 +01:00 Compare
kjuulh force-pushed renovate/all from 0a956e9d1a to 46217bd7d0 2025-01-24 02:44:37 +01:00 Compare
kjuulh force-pushed renovate/all from 46217bd7d0 to 70ea9e02b9 2025-01-24 06:42:38 +01:00 Compare
kjuulh force-pushed renovate/all from 70ea9e02b9 to 74829c7c6f 2025-01-25 02:41:00 +01:00 Compare
kjuulh force-pushed renovate/all from 74829c7c6f to 83f6bffa83 2025-01-25 06:38:44 +01:00 Compare
kjuulh force-pushed renovate/all from 83f6bffa83 to b6a6c90252 2025-01-26 02:44:21 +01:00 Compare
kjuulh force-pushed renovate/all from b6a6c90252 to 7efc418aa7 2025-01-26 06:38:59 +01:00 Compare
kjuulh force-pushed renovate/all from 7efc418aa7 to 949d8a45ed 2025-01-27 02:43:50 +01:00 Compare
kjuulh force-pushed renovate/all from 949d8a45ed to 9b182de8a2 2025-01-27 06:39:20 +01:00 Compare
kjuulh force-pushed renovate/all from 9b182de8a2 to cd2a729110 2025-01-28 02:38:49 +01:00 Compare
kjuulh force-pushed renovate/all from cd2a729110 to 50d38487db 2025-01-28 06:39:18 +01:00 Compare
kjuulh force-pushed renovate/all from 50d38487db to 3a75d86502 2025-01-29 02:45:09 +01:00 Compare
kjuulh force-pushed renovate/all from 3a75d86502 to 7601016f4c 2025-01-29 06:42:37 +01:00 Compare
kjuulh force-pushed renovate/all from 7601016f4c to 3efebc7a7b 2025-01-30 02:46:17 +01:00 Compare
kjuulh force-pushed renovate/all from 3efebc7a7b to 104a521069 2025-01-30 06:48:58 +01:00 Compare
kjuulh force-pushed renovate/all from 104a521069 to 44bda5500f 2025-01-31 02:42:25 +01:00 Compare
kjuulh force-pushed renovate/all from 44bda5500f to a27fe7bcde 2025-01-31 06:39:42 +01:00 Compare
kjuulh force-pushed renovate/all from a27fe7bcde to 4053533839 2025-02-01 02:39:20 +01:00 Compare
kjuulh force-pushed renovate/all from 4053533839 to da7b4ed5fc 2025-02-01 06:41:43 +01:00 Compare
kjuulh force-pushed renovate/all from da7b4ed5fc to 4df2f0d586 2025-02-02 02:40:51 +01:00 Compare
kjuulh force-pushed renovate/all from 4df2f0d586 to 3cdcd2aa31 2025-02-02 06:37:31 +01:00 Compare
kjuulh force-pushed renovate/all from 3cdcd2aa31 to dbcfd5b50c 2025-02-03 02:38:20 +01:00 Compare
kjuulh force-pushed renovate/all from dbcfd5b50c to 2fdb95975f 2025-02-03 06:37:14 +01:00 Compare
kjuulh force-pushed renovate/all from 2fdb95975f to 8c770dfa4b 2025-02-04 02:42:49 +01:00 Compare
kjuulh force-pushed renovate/all from 8c770dfa4b to 6b5a79b5b6 2025-02-04 06:41:11 +01:00 Compare
kjuulh force-pushed renovate/all from 6b5a79b5b6 to 9fb15824ef 2025-02-05 02:40:46 +01:00 Compare
kjuulh force-pushed renovate/all from 9fb15824ef to 34ee17bc03 2025-02-05 06:44:40 +01:00 Compare
kjuulh force-pushed renovate/all from 34ee17bc03 to 0ac50ae854 2025-02-06 02:41:52 +01:00 Compare
kjuulh merged commit 0ac50ae854 into main 2025-02-06 06:38:13 +01:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/graphql-schema#9
No description provided.