fix(deps): update all dependencies #50

Open
kjuulh wants to merge 1 commits from renovate/all into main
Owner

This PR contains the following updates:

Package Type Update Change
anyhow workspace.dependencies patch 1.0.97 -> 1.0.98
clap workspace.dependencies patch 4.5.33 -> 4.5.37
minijinja dependencies minor 2.8.0 -> 2.9.0
tokio (source) workspace.dependencies patch 1.44.1 -> 1.44.2

Release Notes

dtolnay/anyhow (anyhow)

v1.0.98

Compare Source

clap-rs/clap (clap)

v4.5.37

Compare Source

Features
  • Added ArgMatches::try_clear_id()

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
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
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)

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.97` -> `1.0.98` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.33` -> `4.5.37` | | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.8.0` -> `2.9.0` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | patch | `1.44.1` -> `1.44.2` | --- ### 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)) </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.37`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4537---2025-04-18) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.36...v4.5.37) ##### Features - Added `ArgMatches::try_clear_id()` ### [`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 </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) </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 </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTguMSIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-27 02:59:25 +01:00
kjuulh changed title from chore(deps): update rust crate clap to v4.5.34 to fix(deps): update all dependencies 2025-04-01 02:18:15 +02:00
kjuulh force-pushed renovate/all from 22aa67154f to 85c9463e3c 2025-04-01 02:18:16 +02:00 Compare
kjuulh force-pushed renovate/all from 85c9463e3c to 301d23c5cb 2025-04-01 05:18:27 +02:00 Compare
kjuulh force-pushed renovate/all from 301d23c5cb to 185206f5c7 2025-04-02 02:20:28 +02:00 Compare
kjuulh force-pushed renovate/all from 185206f5c7 to 5e9af650d5 2025-04-06 02:18:26 +02:00 Compare
kjuulh force-pushed renovate/all from 5e9af650d5 to 235a06d7f8 2025-04-06 05:19:08 +02:00 Compare
kjuulh force-pushed renovate/all from 235a06d7f8 to 2c90b101dd 2025-04-07 02:18:55 +02:00 Compare
kjuulh force-pushed renovate/all from 2c90b101dd to 1aa22ef908 2025-04-07 05:17:58 +02:00 Compare
kjuulh force-pushed renovate/all from 1aa22ef908 to 159515b2f6 2025-04-08 02:18:48 +02:00 Compare
kjuulh force-pushed renovate/all from 159515b2f6 to 0616231cdc 2025-04-08 05:18:57 +02:00 Compare
kjuulh force-pushed renovate/all from 0616231cdc to 96c0b38a15 2025-04-09 02:19:03 +02:00 Compare
kjuulh force-pushed renovate/all from 96c0b38a15 to 78d0c9e47b 2025-04-09 05:18:18 +02:00 Compare
kjuulh force-pushed renovate/all from 78d0c9e47b to bf25f715ce 2025-04-10 02:19:11 +02:00 Compare
kjuulh force-pushed renovate/all from bf25f715ce to 69fccc313b 2025-04-10 05:18:19 +02:00 Compare
kjuulh force-pushed renovate/all from 69fccc313b to 335834cabf 2025-04-11 02:19:03 +02:00 Compare
kjuulh force-pushed renovate/all from 335834cabf to 8f20dc448b 2025-04-11 05:18:44 +02:00 Compare
kjuulh force-pushed renovate/all from 8f20dc448b to a287f92080 2025-04-12 02:20:48 +02:00 Compare
kjuulh force-pushed renovate/all from a287f92080 to a1d614c7e9 2025-04-12 05:19:15 +02:00 Compare
kjuulh force-pushed renovate/all from a1d614c7e9 to 1e84f48f73 2025-04-13 02:20:13 +02:00 Compare
kjuulh force-pushed renovate/all from 1e84f48f73 to c863f76fe5 2025-04-13 05:18:49 +02:00 Compare
kjuulh force-pushed renovate/all from c863f76fe5 to 37175cc819 2025-04-14 02:18:24 +02:00 Compare
kjuulh force-pushed renovate/all from 37175cc819 to 99ebc7c8f1 2025-04-14 05:19:15 +02:00 Compare
kjuulh force-pushed renovate/all from 99ebc7c8f1 to 4bb9eccb40 2025-04-19 02:19:14 +02:00 Compare
kjuulh force-pushed renovate/all from 4bb9eccb40 to 1e542a29c5 2025-04-19 05:19:16 +02:00 Compare
kjuulh force-pushed renovate/all from 1e542a29c5 to b10c79bf65 2025-04-20 02:18:47 +02:00 Compare
kjuulh force-pushed renovate/all from b10c79bf65 to c1cd9ec87c 2025-04-20 05:18:19 +02:00 Compare
kjuulh force-pushed renovate/all from c1cd9ec87c to 2a7d83457b 2025-04-21 02:19:07 +02:00 Compare
kjuulh force-pushed renovate/all from 2a7d83457b to 97d6a0e3db 2025-04-21 05:17:55 +02:00 Compare
kjuulh force-pushed renovate/all from 97d6a0e3db to c8c7a1f7f5 2025-04-22 02:20:47 +02:00 Compare
kjuulh force-pushed renovate/all from c8c7a1f7f5 to 2c8e460324 2025-04-22 05:18:50 +02:00 Compare
kjuulh force-pushed renovate/all from 2c8e460324 to e13721f35f 2025-04-23 02:20:10 +02:00 Compare
kjuulh force-pushed renovate/all from e13721f35f to a58c074d3b 2025-04-23 05:19:25 +02:00 Compare
kjuulh force-pushed renovate/all from a58c074d3b to 4aef5657e0 2025-04-24 02:18:29 +02:00 Compare
kjuulh force-pushed renovate/all from 4aef5657e0 to c39f6d860b 2025-04-24 05:18:36 +02:00 Compare
kjuulh force-pushed renovate/all from c39f6d860b to 5d18378f5d 2025-04-25 02:19:40 +02:00 Compare
kjuulh force-pushed renovate/all from 5d18378f5d to 2735d9f092 2025-04-25 05:18:40 +02:00 Compare
kjuulh force-pushed renovate/all from 2735d9f092 to a096d52fa2 2025-04-26 02:20:17 +02:00 Compare
kjuulh force-pushed renovate/all from a096d52fa2 to 3cf76863cb 2025-04-26 05:19:13 +02:00 Compare
kjuulh force-pushed renovate/all from 3cf76863cb to 633150b405 2025-04-27 02:18:20 +02:00 Compare
kjuulh force-pushed renovate/all from 633150b405 to 395d7aedd1 2025-04-27 05:18:30 +02:00 Compare
kjuulh force-pushed renovate/all from 395d7aedd1 to 31a82ee007 2025-04-28 02:19:39 +02:00 Compare
kjuulh force-pushed renovate/all from 31a82ee007 to 12a966504f 2025-04-28 05:19:21 +02:00 Compare
kjuulh force-pushed renovate/all from 12a966504f to 0dbf01715d 2025-04-29 02:19:58 +02:00 Compare
kjuulh force-pushed renovate/all from 0dbf01715d to 4e0787b973 2025-04-29 05:19:58 +02:00 Compare
kjuulh force-pushed renovate/all from 4e0787b973 to 57249e16d7 2025-04-30 02:20:31 +02:00 Compare
kjuulh force-pushed renovate/all from 57249e16d7 to ba5ceadca5 2025-04-30 05:19:01 +02:00 Compare
kjuulh force-pushed renovate/all from ba5ceadca5 to 33028f0971 2025-05-01 02:18:53 +02:00 Compare
kjuulh force-pushed renovate/all from 33028f0971 to d53038df4a 2025-05-01 05:18:22 +02:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all:renovate/all
git checkout renovate/all
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/cuddle-clusters#50
No description provided.