fix(deps): update all dependencies #5

Merged
kjuulh merged 1 commits from renovate/all into main 2025-04-15 02:28:56 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
anyhow workspace.dependencies patch 1.0.96 -> 1.0.98
clap workspace.dependencies patch 4.5.31 -> 4.5.36
minijinja dependencies minor 2.7.0 -> 2.9.0
serde_json dependencies patch 1.0.139 -> 1.0.140
tokio (source) workspace.dependencies minor 1.43.0 -> 1.44.2
uuid workspace.dependencies minor 1.15.1 -> 1.16.0

Release Notes

dtolnay/anyhow (anyhow)

v1.0.98

Compare Source

v1.0.97

Compare Source

  • Documentation improvements
clap-rs/clap (clap)

v4.5.36

Compare Source

Fixes
  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now

v4.5.35

Compare Source

Fixes
  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

v4.5.34

Compare Source

Fixes
  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

v4.5.33

Compare Source

Fixes
  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

v4.5.32

Compare Source

Features
  • Add Error::remove
Documentation
  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional
Internal
  • Update pulldown-cmark
mitsuhiko/minijinja (minijinja)

v2.9.0

Compare Source

  • Do not panic if too large templates (too many lines or too many
    columns) are loaded. The error reporting will be wrong in those
    cases but the templates will load. #​742
  • Fixed a bug that caused unknown method callbacks to not get
    proper error reporting if they cannot find a method. #​743
  • Added merge_maps which is a dynamic version of the context!
    merge feature, and fixed enumeration behavior when non-map objects
    are attempted to be merged. #​745
  • Added mj_value_new_bytes to the C-ABI. #​749
  • Added mj_value_as_bytes to the C-ABI to borrow from strings or
    byte values. #​750
  • Fixed buggy mj_err_get_detail and mj_err_get_template_name. These
    did not work correctly. To fix them the return value now needs to be
    freed. #​754
  • Fix a compilation issue on 32bit systems when AtomicU64 is
    not available in minijinja-contrib. #​755
  • Correctly handle with context and without context for
    imports. #​759
  • The default filter is now also registered as d for Jinja2
    compatibility. #​763
  • The default filter now accepts a second argument to enable lax
    defaulting. #​764
  • Added a striptags filter to the contrib module. #​765
  • Enable pycompat by default for the Python bindings and register
    the default contrib filters and tests. #​767

v2.8.0

Compare Source

  • Added SemiStrict undefined mode that is like strict but allows
    to be checked for truthiness. Additionally an if expression without
    an else block will always produce a silent undefined object that
    never errors for compatibility with Jinja2. #​687
  • Make the trait bounds of ViaDeserialize stricter. Now the type
    can only be constructed if the type implements DeserializeOwned.
    This is not a new requirement for passing the function to
    add_function but bad code will now error earlier for better
    error reporting. #​689
  • Raise MSRV to 1.70.
  • The contrib crate now uses a basic xorrand implementation instead
    of depending on all of the rand module. #​696
  • Added temps, a way to stash away temporary state during rendering. #​697
  • Fixed a bug that caused the random functions in the contrib crate
    to not advance the RNG between calls. #​698
  • Added Environment.undeclared_variables_in_template and
    Environnent.undeclared_variables_in_str to Python binding. #​699
  • Enable loop_controls for Python in-line with the CLI. #​704
  • Fixed a panic when comparing plain objects. #​705
  • Added Object::custom_cmp to allow objects to influence how they
    compare against themselves. This also fixes Python objects in the
    Python binding not to compare correctly. #​707
  • Fixed a bug where undeclared_variables would incorrectly handle
    variables referenced by macros. #​714
  • Fixed a deadlock in the Python binding when multiple threads were
    rendering from the same environment at once. #​717
  • The Python bindings handle __bool__ correctly now for custom
    objects in if-conditions and filters. #​719
  • Fixed a bug where }} caused a syntax error in expressions with
    open parentheses, braces or brackets. #​723
  • Added State::known_variables to return a list of known variables
    and Environment::globals. #​724
  • Fixed an issue with undeclared variables not handling caller. #​725
  • Removed unnecessary Filters and Tests traits. They remain as
    hidden aliases to Function. #​726
  • Fixed a bug that caused implicit string concatenation to not correctly
    handle escapes. #​728
  • Implemented constant folding in the code generator. #​731
  • Improved error reporting for bad loop recursion calls. #​734
  • The engine now uses smaller integers to represent columns, line numbers
    and addresses. This cuts down on the memory usage needed for debug
    information. #​735
  • Added load_from_path to python. #​736
  • Added JavaScript bindings. #​737
serde-rs/json (serde_json)

v1.0.140

Compare Source

  • Documentation improvements
tokio-rs/tokio (tokio)

v1.44.2: Tokio v1.44.2

Compare Source

This release fixes a soundness issue in the broadcast channel. The channel
accepts values that are Send but !Sync. Previously, the channel called
clone() on these values without synchronizing. This release fixes the channel
by synchronizing calls to .clone() (Thanks Austin Bonander for finding and
reporting the issue).

Fixed
  • sync: synchronize clone() call in broadcast channel (#​7232)

v1.44.1: Tokio v1.44.1

Compare Source

1.44.1 (March 13th, 2025)

Fixed
  • rt: skip defer queue in block_in_place context (#​7216)

v1.44.0: Tokio v1.44.0

Compare Source

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #​7172.

Added
  • coop: add task::coop module (#​7116)
  • process: add Command::get_kill_on_drop() (#​7086)
  • sync: add broadcast::Sender::closed (#​6685, #​7090)
  • sync: add broadcast::WeakSender (#​7100)
  • sync: add oneshot::Receiver::is_empty() (#​7153)
  • sync: add oneshot::Receiver::is_terminated() (#​7152)
Fixed
  • fs: empty reads on File should not start a background read (#​7139)
  • process: calling start_kill on exited child should not fail (#​7160)
  • signal: fix CTRL_CLOSE, CTRL_LOGOFF, CTRL_SHUTDOWN on windows (#​7122)
  • sync: properly handle panic during mpsc drop (#​7094)
Changes
  • runtime: clean up magic number in registration set (#​7112)
  • coop: make coop yield using waker defer strategy (#​7185)
  • macros: make select! budget-aware (#​7164)
  • net: panic when passing a blocking socket to from_std (#​7166)
  • io: clean up buffer casts (#​7142)
Changes to unstable APIs
  • rt: add before and after task poll callbacks (#​7120)
  • tracing: make the task tracing API unstable public (#​6972)
Documented
  • docs: fix nesting of sections in top-level docs (#​7159)
  • fs: rename symlink and hardlink parameter names (#​7143)
  • io: swap reader/writer in simplex doc test (#​7176)
  • macros: docs about select! alternatives (#​7110)
  • net: rename the argument for send_to (#​7146)
  • process: add example for reading Child stdout (#​7141)
  • process: clarify Child::kill behavior (#​7162)
  • process: fix grammar of the ChildStdin struct doc comment (#​7192)
  • runtime: consistently use worker_threads instead of core_threads (#​7186)

v1.43.1

Compare Source

uuid-rs/uuid (uuid)

v1.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 | |---|---|---|---| | [anyhow](https://github.com/dtolnay/anyhow) | workspace.dependencies | patch | `1.0.96` -> `1.0.98` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.31` -> `4.5.36` | | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.7.0` -> `2.9.0` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.139` -> `1.0.140` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.43.0` -> `1.44.2` | | [uuid](https://github.com/uuid-rs/uuid) | workspace.dependencies | minor | `1.15.1` -> `1.16.0` | --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`v1.0.98`](https://github.com/dtolnay/anyhow/releases/tag/1.0.98) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.97...1.0.98) - Add [`self.into_boxed_dyn_error()`](https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.into_boxed_dyn_error) and [`self.reallocate_into_boxed_dyn_error_without_backtrace()`](https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.reallocate_into_boxed_dyn_error_without_backtrace) methods for anyhow::Error ([#&#8203;415](https://github.com/dtolnay/anyhow/issues/415)) ### [`v1.0.97`](https://github.com/dtolnay/anyhow/releases/tag/1.0.97) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.96...1.0.97) - Documentation improvements </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.36`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4536---2025-04-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.35...v4.5.36) ##### Fixes - *(help)* Revert 4.5.35's "Don't leave space for shorts if there are none" for now ### [`v4.5.35`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4535---2025-04-01) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.34...v4.5.35) ##### Fixes - *(help)* Align positionals and flags when put in the same `help_heading` - *(help)* Don't leave space for shorts if there are none ### [`v4.5.34`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4534---2025-03-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.33...v4.5.34) ##### Fixes - *(help)* Don't add extra blank lines with `flatten_help(true)` and subcommands without arguments ### [`v4.5.33`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4533---2025-03-26) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.32...v4.5.33) ##### Fixes - *(error)* When showing the usage of a suggestion for an unknown argument, don't show the group ### [`v4.5.32`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4532---2025-03-10) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.31...v4.5.32) ##### Features - Add `Error::remove` ##### Documentation - *(cookbook)* Switch from `humantime` to `jiff` - *(tutorial)* Better cover required vs optional ##### Internal - Update `pulldown-cmark` </details> <details> <summary>mitsuhiko/minijinja (minijinja)</summary> ### [`v2.9.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#290) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.8.0...2.9.0) - Do not panic if too large templates (too many lines or too many columns) are loaded. The error reporting will be wrong in those cases but the templates will load. [#&#8203;742](https://github.com/mitsuhiko/minijinja/issues/742) - Fixed a bug that caused unknown method callbacks to not get proper error reporting if they cannot find a method. [#&#8203;743](https://github.com/mitsuhiko/minijinja/issues/743) - Added `merge_maps` which is a dynamic version of the `context!` merge feature, and fixed enumeration behavior when non-map objects are attempted to be merged. [#&#8203;745](https://github.com/mitsuhiko/minijinja/issues/745) - Added `mj_value_new_bytes` to the C-ABI. [#&#8203;749](https://github.com/mitsuhiko/minijinja/issues/749) - Added `mj_value_as_bytes` to the C-ABI to borrow from strings or byte values. [#&#8203;750](https://github.com/mitsuhiko/minijinja/issues/750) - Fixed buggy `mj_err_get_detail` and `mj_err_get_template_name`. These did not work correctly. To fix them the return value now needs to be freed. [#&#8203;754](https://github.com/mitsuhiko/minijinja/issues/754) - Fix a compilation issue on 32bit systems when `AtomicU64` is not available in minijinja-contrib. [#&#8203;755](https://github.com/mitsuhiko/minijinja/issues/755) - Correctly handle `with context` and `without context` for imports. [#&#8203;759](https://github.com/mitsuhiko/minijinja/issues/759) - The `default` filter is now also registered as `d` for Jinja2 compatibility. [#&#8203;763](https://github.com/mitsuhiko/minijinja/issues/763) - The `default` filter now accepts a second argument to enable lax defaulting. [#&#8203;764](https://github.com/mitsuhiko/minijinja/issues/764) - Added a `striptags` filter to the contrib module. [#&#8203;765](https://github.com/mitsuhiko/minijinja/issues/765) - Enable `pycompat` by default for the Python bindings and register the default contrib filters and tests. [#&#8203;767](https://github.com/mitsuhiko/minijinja/issues/767) ### [`v2.8.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#280) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.7.0...2.8.0) - Added `SemiStrict` undefined mode that is like strict but allows to be checked for truthiness. Additionally an if expression without an else block will always produce a silent undefined object that never errors for compatibility with Jinja2. [#&#8203;687](https://github.com/mitsuhiko/minijinja/issues/687) - Make the trait bounds of `ViaDeserialize` stricter. Now the type can only be constructed if the type implements `DeserializeOwned`. This is not a new requirement for passing the function to `add_function` but bad code will now error earlier for better error reporting. [#&#8203;689](https://github.com/mitsuhiko/minijinja/issues/689) - Raise MSRV to 1.70. - The contrib crate now uses a basic xorrand implementation instead of depending on all of the `rand` module. [#&#8203;696](https://github.com/mitsuhiko/minijinja/issues/696) - Added temps, a way to stash away temporary state during rendering. [#&#8203;697](https://github.com/mitsuhiko/minijinja/issues/697) - Fixed a bug that caused the random functions in the contrib crate to not advance the RNG between calls. [#&#8203;698](https://github.com/mitsuhiko/minijinja/issues/698) - Added `Environment.undeclared_variables_in_template` and `Environnent.undeclared_variables_in_str` to Python binding. [#&#8203;699](https://github.com/mitsuhiko/minijinja/issues/699) - Enable `loop_controls` for Python in-line with the CLI. [#&#8203;704](https://github.com/mitsuhiko/minijinja/issues/704) - Fixed a panic when comparing plain objects. [#&#8203;705](https://github.com/mitsuhiko/minijinja/issues/705) - Added `Object::custom_cmp` to allow objects to influence how they compare against themselves. This also fixes Python objects in the Python binding not to compare correctly. [#&#8203;707](https://github.com/mitsuhiko/minijinja/issues/707) - Fixed a bug where `undeclared_variables` would incorrectly handle variables referenced by macros. [#&#8203;714](https://github.com/mitsuhiko/minijinja/issues/714) - Fixed a deadlock in the Python binding when multiple threads were rendering from the same environment at once. [#&#8203;717](https://github.com/mitsuhiko/minijinja/issues/717) - The Python bindings handle `__bool__` correctly now for custom objects in if-conditions and filters. [#&#8203;719](https://github.com/mitsuhiko/minijinja/issues/719) - Fixed a bug where `}}` caused a syntax error in expressions with open parentheses, braces or brackets. [#&#8203;723](https://github.com/mitsuhiko/minijinja/issues/723) - Added `State::known_variables` to return a list of known variables and `Environment::globals`. [#&#8203;724](https://github.com/mitsuhiko/minijinja/issues/724) - Fixed an issue with undeclared variables not handling `caller`. [#&#8203;725](https://github.com/mitsuhiko/minijinja/issues/725) - Removed unnecessary `Filters` and `Tests` traits. They remain as hidden aliases to `Function`. [#&#8203;726](https://github.com/mitsuhiko/minijinja/issues/726) - Fixed a bug that caused implicit string concatenation to not correctly handle escapes. [#&#8203;728](https://github.com/mitsuhiko/minijinja/issues/728) - Implemented constant folding in the code generator. [#&#8203;731](https://github.com/mitsuhiko/minijinja/issues/731) - Improved error reporting for bad loop recursion calls. [#&#8203;734](https://github.com/mitsuhiko/minijinja/issues/734) - The engine now uses smaller integers to represent columns, line numbers and addresses. This cuts down on the memory usage needed for debug information. [#&#8203;735](https://github.com/mitsuhiko/minijinja/issues/735) - Added `load_from_path` to python. [#&#8203;736](https://github.com/mitsuhiko/minijinja/issues/736) - Added JavaScript bindings. [#&#8203;737](https://github.com/mitsuhiko/minijinja/issues/737) </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.140`](https://github.com/serde-rs/json/releases/tag/v1.0.140) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.139...v1.0.140) - Documentation improvements </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.44.2`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.44.2): Tokio v1.44.2 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.44.1...tokio-1.44.2) This release fixes a soundness issue in the broadcast channel. The channel accepts values that are `Send` but `!Sync`. Previously, the channel called `clone()` on these values without synchronizing. This release fixes the channel by synchronizing calls to `.clone()` (Thanks Austin Bonander for finding and reporting the issue). ##### Fixed - sync: synchronize `clone()` call in broadcast channel ([#&#8203;7232]) [#&#8203;7232]: https://github.com/tokio-rs/tokio/pull/7232 ### [`v1.44.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.44.1): Tokio v1.44.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.44.0...tokio-1.44.1) ### 1.44.1 (March 13th, 2025) ##### Fixed - rt: skip defer queue in `block_in_place` context ([#&#8203;7216]) [#&#8203;7216]: https://github.com/tokio-rs/tokio/pull/7216 ### [`v1.44.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.44.0): Tokio v1.44.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.43.1...tokio-1.44.0) ### 1.44.0 (March 7th, 2025) This release changes the `from_std` method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on [#&#8203;7172]. ##### Added - coop: add `task::coop` module ([#&#8203;7116]) - process: add `Command::get_kill_on_drop()` ([#&#8203;7086]) - sync: add `broadcast::Sender::closed` ([#&#8203;6685], [#&#8203;7090]) - sync: add `broadcast::WeakSender` ([#&#8203;7100]) - sync: add `oneshot::Receiver::is_empty()` ([#&#8203;7153]) - sync: add `oneshot::Receiver::is_terminated()` ([#&#8203;7152]) ##### Fixed - fs: empty reads on `File` should not start a background read ([#&#8203;7139]) - process: calling `start_kill` on exited child should not fail ([#&#8203;7160]) - signal: fix `CTRL_CLOSE`, `CTRL_LOGOFF`, `CTRL_SHUTDOWN` on windows ([#&#8203;7122]) - sync: properly handle panic during mpsc drop ([#&#8203;7094]) ##### Changes - runtime: clean up magic number in registration set ([#&#8203;7112]) - coop: make coop yield using waker defer strategy ([#&#8203;7185]) - macros: make `select!` budget-aware ([#&#8203;7164]) - net: panic when passing a blocking socket to `from_std` ([#&#8203;7166]) - io: clean up buffer casts ([#&#8203;7142]) ##### Changes to unstable APIs - rt: add before and after task poll callbacks ([#&#8203;7120]) - tracing: make the task tracing API unstable public ([#&#8203;6972]) ##### Documented - docs: fix nesting of sections in top-level docs ([#&#8203;7159]) - fs: rename symlink and hardlink parameter names ([#&#8203;7143]) - io: swap reader/writer in simplex doc test ([#&#8203;7176]) - macros: docs about `select!` alternatives ([#&#8203;7110]) - net: rename the argument for `send_to` ([#&#8203;7146]) - process: add example for reading `Child` stdout ([#&#8203;7141]) - process: clarify `Child::kill` behavior ([#&#8203;7162]) - process: fix grammar of the `ChildStdin` struct doc comment ([#&#8203;7192]) - runtime: consistently use `worker_threads` instead of `core_threads` ([#&#8203;7186]) [#&#8203;6685]: https://github.com/tokio-rs/tokio/pull/6685 [#&#8203;6972]: https://github.com/tokio-rs/tokio/pull/6972 [#&#8203;7086]: https://github.com/tokio-rs/tokio/pull/7086 [#&#8203;7090]: https://github.com/tokio-rs/tokio/pull/7090 [#&#8203;7094]: https://github.com/tokio-rs/tokio/pull/7094 [#&#8203;7100]: https://github.com/tokio-rs/tokio/pull/7100 [#&#8203;7110]: https://github.com/tokio-rs/tokio/pull/7110 [#&#8203;7112]: https://github.com/tokio-rs/tokio/pull/7112 [#&#8203;7116]: https://github.com/tokio-rs/tokio/pull/7116 [#&#8203;7120]: https://github.com/tokio-rs/tokio/pull/7120 [#&#8203;7122]: https://github.com/tokio-rs/tokio/pull/7122 [#&#8203;7139]: https://github.com/tokio-rs/tokio/pull/7139 [#&#8203;7141]: https://github.com/tokio-rs/tokio/pull/7141 [#&#8203;7142]: https://github.com/tokio-rs/tokio/pull/7142 [#&#8203;7143]: https://github.com/tokio-rs/tokio/pull/7143 [#&#8203;7146]: https://github.com/tokio-rs/tokio/pull/7146 [#&#8203;7152]: https://github.com/tokio-rs/tokio/pull/7152 [#&#8203;7153]: https://github.com/tokio-rs/tokio/pull/7153 [#&#8203;7159]: https://github.com/tokio-rs/tokio/pull/7159 [#&#8203;7160]: https://github.com/tokio-rs/tokio/pull/7160 [#&#8203;7162]: https://github.com/tokio-rs/tokio/pull/7162 [#&#8203;7164]: https://github.com/tokio-rs/tokio/pull/7164 [#&#8203;7166]: https://github.com/tokio-rs/tokio/pull/7166 [#&#8203;7172]: https://github.com/tokio-rs/tokio/pull/7172 [#&#8203;7176]: https://github.com/tokio-rs/tokio/pull/7176 [#&#8203;7185]: https://github.com/tokio-rs/tokio/pull/7185 [#&#8203;7186]: https://github.com/tokio-rs/tokio/pull/7186 [#&#8203;7192]: https://github.com/tokio-rs/tokio/pull/7192 ### [`v1.43.1`](https://github.com/tokio-rs/tokio/compare/tokio-1.43.0...tokio-1.43.1) [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.43.0...tokio-1.43.1) </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.16.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.16.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0) #### What's Changed - Mark `Uuid::new_v8` const by [@&#8203;tguichaoua](https://github.com/tguichaoua) in https://github.com/uuid-rs/uuid/pull/815 - Prepare for 1.16.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/817 #### New Contributors - [@&#8203;tguichaoua](https://github.com/tguichaoua) made their first contribution in https://github.com/uuid-rs/uuid/pull/815 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI0MC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-03 06:37:38 +01:00
kjuulh scheduled this pull request to auto merge when all checks succeed 2025-03-03 06:37:39 +01:00
kjuulh changed title from chore(deps): update rust crate anyhow to v1.0.97 to chore(deps): update all dependencies 2025-03-04 02:43:38 +01:00
kjuulh force-pushed renovate/all from ea260b6823 to 7883cfa908 2025-03-04 02:43:40 +01:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2025-03-25 23:55:06 +01:00
kjuulh force-pushed renovate/all from 7883cfa908 to b0f66f9463 2025-03-25 23:55:06 +01:00 Compare
kjuulh force-pushed renovate/all from b0f66f9463 to 80b36016cd 2025-03-26 21:04:04 +01:00 Compare
kjuulh force-pushed renovate/all from 80b36016cd to f9ad9b3382 2025-03-26 21:37:12 +01:00 Compare
kjuulh force-pushed renovate/all from f9ad9b3382 to cced055f25 2025-03-26 22:07:45 +01:00 Compare
kjuulh force-pushed renovate/all from cced055f25 to 5a40ff8397 2025-03-26 22:36:57 +01:00 Compare
kjuulh force-pushed renovate/all from 5a40ff8397 to 41d6522918 2025-03-26 23:07:14 +01:00 Compare
kjuulh force-pushed renovate/all from 41d6522918 to e27b56eb4b 2025-03-26 23:37:53 +01:00 Compare
kjuulh force-pushed renovate/all from e27b56eb4b to ab9bdccb3f 2025-03-27 00:09:00 +01:00 Compare
kjuulh force-pushed renovate/all from ab9bdccb3f to 585a02315b 2025-03-27 00:39:16 +01:00 Compare
kjuulh force-pushed renovate/all from 585a02315b to f568a037ce 2025-03-27 01:08:15 +01:00 Compare
kjuulh force-pushed renovate/all from f568a037ce to abbdeeb3ec 2025-03-27 01:36:00 +01:00 Compare
kjuulh force-pushed renovate/all from abbdeeb3ec to ba89d398ba 2025-03-27 02:04:48 +01:00 Compare
kjuulh force-pushed renovate/all from ba89d398ba to 1124cc5318 2025-03-27 02:33:11 +01:00 Compare
kjuulh force-pushed renovate/all from 1124cc5318 to 514c5751dc 2025-03-27 03:04:14 +01:00 Compare
kjuulh force-pushed renovate/all from 514c5751dc to 0f7f369955 2025-03-27 03:36:56 +01:00 Compare
kjuulh force-pushed renovate/all from 0f7f369955 to f22eabaf94 2025-03-27 04:08:31 +01:00 Compare
kjuulh force-pushed renovate/all from f22eabaf94 to 85cd00197d 2025-03-27 04:38:13 +01:00 Compare
kjuulh force-pushed renovate/all from 85cd00197d to 64bc282d1e 2025-03-27 05:11:09 +01:00 Compare
kjuulh force-pushed renovate/all from 64bc282d1e to d2c619429a 2025-03-27 05:42:14 +01:00 Compare
kjuulh force-pushed renovate/all from d2c619429a to 83150db56f 2025-03-27 06:12:30 +01:00 Compare
kjuulh force-pushed renovate/all from 83150db56f to 32af92726d 2025-03-27 06:40:44 +01:00 Compare
kjuulh force-pushed renovate/all from 32af92726d to 1918c90de8 2025-03-27 07:10:16 +01:00 Compare
kjuulh force-pushed renovate/all from 1918c90de8 to 3c382d4314 2025-03-27 07:38:55 +01:00 Compare
kjuulh force-pushed renovate/all from 3c382d4314 to 4976f35ae3 2025-03-27 08:07:55 +01:00 Compare
kjuulh force-pushed renovate/all from 4976f35ae3 to 610c8cecb1 2025-03-27 08:36:31 +01:00 Compare
kjuulh force-pushed renovate/all from 610c8cecb1 to 5f01f967e2 2025-03-27 09:05:21 +01:00 Compare
kjuulh force-pushed renovate/all from 5f01f967e2 to f6f131884b 2025-03-27 09:33:42 +01:00 Compare
kjuulh force-pushed renovate/all from f6f131884b to ded74d7d3b 2025-03-27 10:03:04 +01:00 Compare
kjuulh force-pushed renovate/all from ded74d7d3b to 189bef57b7 2025-03-27 10:27:25 +01:00 Compare
kjuulh force-pushed renovate/all from 189bef57b7 to e6bf18eb8f 2025-03-27 11:02:46 +01:00 Compare
kjuulh force-pushed renovate/all from e6bf18eb8f to e4370a805d 2025-03-27 11:31:29 +01:00 Compare
kjuulh force-pushed renovate/all from e4370a805d to 67690f4794 2025-03-27 12:00:37 +01:00 Compare
kjuulh force-pushed renovate/all from 67690f4794 to fa2cb90644 2025-03-27 12:29:39 +01:00 Compare
kjuulh force-pushed renovate/all from fa2cb90644 to 1b09d71dae 2025-03-27 12:59:32 +01:00 Compare
kjuulh force-pushed renovate/all from 1b09d71dae to dd3d65d8a1 2025-03-27 13:48:02 +01:00 Compare
kjuulh force-pushed renovate/all from dd3d65d8a1 to a312473c3f 2025-03-27 14:24:44 +01:00 Compare
kjuulh force-pushed renovate/all from a312473c3f to f9d972999d 2025-03-27 14:55:01 +01:00 Compare
kjuulh force-pushed renovate/all from f9d972999d to b26346580b 2025-03-27 15:28:00 +01:00 Compare
kjuulh force-pushed renovate/all from b26346580b to 69836ce02b 2025-03-27 16:03:35 +01:00 Compare
kjuulh force-pushed renovate/all from 69836ce02b to 34c50a0780 2025-03-27 16:32:28 +01:00 Compare
kjuulh force-pushed renovate/all from 34c50a0780 to 474c97259d 2025-03-27 17:02:23 +01:00 Compare
kjuulh force-pushed renovate/all from 474c97259d to 636b7e3e10 2025-03-27 17:33:04 +01:00 Compare
kjuulh force-pushed renovate/all from 636b7e3e10 to 81570b21a0 2025-03-27 18:04:19 +01:00 Compare
kjuulh force-pushed renovate/all from 81570b21a0 to 96b9552149 2025-03-27 18:35:09 +01:00 Compare
kjuulh force-pushed renovate/all from 96b9552149 to d73155576a 2025-03-27 19:05:07 +01:00 Compare
kjuulh force-pushed renovate/all from d73155576a to 2bc5b6d5d2 2025-03-27 19:33:28 +01:00 Compare
kjuulh force-pushed renovate/all from 2bc5b6d5d2 to 6265b2e222 2025-03-27 20:02:43 +01:00 Compare
kjuulh force-pushed renovate/all from 6265b2e222 to 6d6fb60eeb 2025-03-27 20:31:09 +01:00 Compare
kjuulh force-pushed renovate/all from 6d6fb60eeb to 5336f48999 2025-03-27 21:01:04 +01:00 Compare
kjuulh force-pushed renovate/all from 5336f48999 to 059717bd3a 2025-03-27 21:29:36 +01:00 Compare
kjuulh force-pushed renovate/all from 059717bd3a to cccd38ef42 2025-03-27 22:00:15 +01:00 Compare
kjuulh force-pushed renovate/all from cccd38ef42 to 540621af65 2025-03-28 23:28:43 +01:00 Compare
kjuulh force-pushed renovate/all from 540621af65 to 7ae2defbb8 2025-03-29 02:23:12 +01:00 Compare
kjuulh force-pushed renovate/all from 7ae2defbb8 to 6f54b62255 2025-03-29 05:23:51 +01:00 Compare
kjuulh force-pushed renovate/all from 6f54b62255 to dd4353d3a6 2025-03-30 05:24:54 +02:00 Compare
kjuulh force-pushed renovate/all from dd4353d3a6 to 39b00aa1bf 2025-03-31 02:22:44 +02:00 Compare
kjuulh force-pushed renovate/all from 39b00aa1bf to 03ddc64e31 2025-03-31 05:23:13 +02:00 Compare
kjuulh force-pushed renovate/all from 03ddc64e31 to 2e96f1da1a 2025-04-01 02:24:19 +02:00 Compare
kjuulh force-pushed renovate/all from 2e96f1da1a to dbb53651cc 2025-04-02 02:27:37 +02:00 Compare
kjuulh force-pushed renovate/all from dbb53651cc to 2d756c574d 2025-04-02 05:24:02 +02:00 Compare
kjuulh force-pushed renovate/all from 2d756c574d to f421a51c1c 2025-04-03 02:26:18 +02:00 Compare
kjuulh force-pushed renovate/all from f421a51c1c to ccb4d1ab32 2025-04-03 05:23:16 +02:00 Compare
kjuulh force-pushed renovate/all from ccb4d1ab32 to f253320171 2025-04-04 02:23:54 +02:00 Compare
kjuulh force-pushed renovate/all from f253320171 to 103ab165b0 2025-04-04 05:23:02 +02:00 Compare
kjuulh force-pushed renovate/all from 103ab165b0 to afe7c24b4c 2025-04-05 02:24:07 +02:00 Compare
kjuulh force-pushed renovate/all from afe7c24b4c to 5818188771 2025-04-05 05:24:09 +02:00 Compare
kjuulh force-pushed renovate/all from 5818188771 to ee0ac2fdf8 2025-04-06 02:25:21 +02:00 Compare
kjuulh force-pushed renovate/all from ee0ac2fdf8 to a3aacbd942 2025-04-06 05:25:41 +02:00 Compare
kjuulh force-pushed renovate/all from a3aacbd942 to afcc86ee93 2025-04-07 02:25:05 +02:00 Compare
kjuulh force-pushed renovate/all from afcc86ee93 to 8bb5a35354 2025-04-07 05:23:25 +02:00 Compare
kjuulh force-pushed renovate/all from 8bb5a35354 to 3967e1f2dd 2025-04-08 02:24:41 +02:00 Compare
kjuulh force-pushed renovate/all from 3967e1f2dd to 7defafdd54 2025-04-08 05:24:22 +02:00 Compare
kjuulh force-pushed renovate/all from 7defafdd54 to a1aad5b46e 2025-04-09 02:24:57 +02:00 Compare
kjuulh force-pushed renovate/all from a1aad5b46e to fc612b4457 2025-04-09 05:23:43 +02:00 Compare
kjuulh force-pushed renovate/all from fc612b4457 to 7ffd14783e 2025-04-10 02:25:28 +02:00 Compare
kjuulh force-pushed renovate/all from 7ffd14783e to e7b760703c 2025-04-10 05:23:54 +02:00 Compare
kjuulh force-pushed renovate/all from e7b760703c to 7c1432ada1 2025-04-11 02:25:04 +02:00 Compare
kjuulh force-pushed renovate/all from 7c1432ada1 to ed2fa2cef8 2025-04-11 05:24:22 +02:00 Compare
kjuulh force-pushed renovate/all from ed2fa2cef8 to c6332fa148 2025-04-12 02:27:52 +02:00 Compare
kjuulh force-pushed renovate/all from c6332fa148 to 93f9a38066 2025-04-12 05:25:29 +02:00 Compare
kjuulh force-pushed renovate/all from 93f9a38066 to 178080e7d9 2025-04-13 02:26:08 +02:00 Compare
kjuulh force-pushed renovate/all from 178080e7d9 to e2a91da450 2025-04-13 05:24:42 +02:00 Compare
kjuulh force-pushed renovate/all from e2a91da450 to cfcdde0b6f 2025-04-14 02:24:16 +02:00 Compare
kjuulh force-pushed renovate/all from cfcdde0b6f to fa68f18cc3 2025-04-14 05:25:53 +02:00 Compare
kjuulh force-pushed renovate/all from fa68f18cc3 to b3d6862195 2025-04-15 02:28:20 +02:00 Compare
kjuulh merged commit b3d6862195 into main 2025-04-15 02:28:56 +02: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/forest#5
No description provided.