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.39
minijinja dependencies minor 2.8.0 -> 2.10.2
tokio (source) workspace.dependencies minor 1.44.1 -> 1.45.1
uuid dependencies minor 1.16.0 -> 1.17.0

Release Notes

dtolnay/anyhow (anyhow)

v1.0.98

Compare Source

clap-rs/clap (clap)

v4.5.39

Compare Source

Fixes
  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

v4.5.38

Compare Source

Fixes
  • (help) When showing aliases, include leading -- or -

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.10.2

Compare Source

  • Fixed an issue with the function bounds that caused the
    next-generation trait resolver to fail. #​787

v2.10.1

Compare Source

  • Re-release of 2.10.0 because of a broken release process.

v2.10.0

Compare Source

  • Fix incorrect permissions when --output is used in the CLI. #​772
  • Added mj_err_get_debug_info to the C-ABI. #​775
  • Modules now capture their output like they do in Jinja2. This
    means that if you do {% import 'template.j2' as x %} and you
    then render {{ x }} the output of template.j2 is rendered as
    if it was included. #​778
  • Improved compatibility with Jinja2 for slicing. Negative steps
    are now correctly handled. Additionally slicing on bytes now
    correctly handles steps other than 1. #​781

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.45.1: Tokio v1.45.1

Compare Source

1.45.1 (May 24th, 2025)

This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to Instant::now() started failing. This is due to the stabilization of the first time-based metric.

Fixed
  • Disable time-based metrics on wasm32-unknown-unknown (#​7322)

v1.45.0: Tokio v1.45.0

Compare Source

Added
  • metrics: stabilize worker_total_busy_duration, worker_park_count, and worker_unpark_count (#​6899, #​7276)
  • process: add Command::spawn_with (#​7249)
Changed
  • io: do not require Unpin for some trait impls (#​7204)
  • rt: mark runtime::Handle as unwind safe (#​7230)
  • time: revert internal sharding implementation (#​7226)
Unstable
  • rt: remove alt multi-threaded runtime (#​7275)

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)
uuid-rs/uuid (uuid)

v1.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.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.97` -> `1.0.98` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.33` -> `4.5.39` | | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.8.0` -> `2.10.2` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.44.1` -> `1.45.1` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.16.0` -> `1.17.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)) </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.39`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4539---2025-05-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.38...v4.5.39) ##### Fixes - *(help)* Show short flag aliases before long - *(help)* Merge the short and long flag alias lists ### [`v4.5.38`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4538---2025-05-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.37...v4.5.38) ##### Fixes - *(help)* When showing aliases, include leading `--` or `-` ### [`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.10.2`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2102) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.10.1...2.10.2) - Fixed an issue with the function bounds that caused the next-generation trait resolver to fail. [#&#8203;787](https://github.com/mitsuhiko/minijinja/issues/787) ### [`v2.10.1`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2101) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.10.0...2.10.1) - Re-release of 2.10.0 because of a broken release process. ### [`v2.10.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2100) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.9.0...2.10.0) - Fix incorrect permissions when `--output` is used in the CLI. [#&#8203;772](https://github.com/mitsuhiko/minijinja/issues/772) - Added `mj_err_get_debug_info` to the C-ABI. [#&#8203;775](https://github.com/mitsuhiko/minijinja/issues/775) - Modules now capture their output like they do in Jinja2. This means that if you do `{% import 'template.j2' as x %}` and you then render `{{ x }}` the output of `template.j2` is rendered as if it was included. [#&#8203;778](https://github.com/mitsuhiko/minijinja/issues/778) - Improved compatibility with Jinja2 for slicing. Negative steps are now correctly handled. Additionally slicing on bytes now correctly handles steps other than 1. [#&#8203;781](https://github.com/mitsuhiko/minijinja/issues/781) ### [`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.45.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.45.1): Tokio v1.45.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.45.0...tokio-1.45.1) ### 1.45.1 (May 24th, 2025) This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to `Instant::now()` started failing. This is due to the stabilization of the first time-based metric. ##### Fixed - Disable time-based metrics on wasm32-unknown-unknown ([#&#8203;7322]) [#&#8203;7322]: https://github.com/tokio-rs/tokio/pull/7322 ### [`v1.45.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.45.0): Tokio v1.45.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.44.2...tokio-1.45.0) ##### Added - metrics: stabilize `worker_total_busy_duration`, `worker_park_count`, and `worker_unpark_count` ([#&#8203;6899], [#&#8203;7276]) - process: add `Command::spawn_with` ([#&#8203;7249]) ##### Changed - io: do not require `Unpin` for some trait impls ([#&#8203;7204]) - rt: mark `runtime::Handle` as unwind safe ([#&#8203;7230]) - time: revert internal sharding implementation ([#&#8203;7226]) ##### Unstable - rt: remove alt multi-threaded runtime ([#&#8203;7275]) [#&#8203;6899]: https://github.com/tokio-rs/tokio/pull/6899 [#&#8203;7276]: https://github.com/tokio-rs/tokio/pull/7276 [#&#8203;7249]: https://github.com/tokio-rs/tokio/pull/7249 [#&#8203;7204]: https://github.com/tokio-rs/tokio/pull/7204 [#&#8203;7230]: https://github.com/tokio-rs/tokio/pull/7230 [#&#8203;7226]: https://github.com/tokio-rs/tokio/pull/7226 [#&#8203;7275]: https://github.com/tokio-rs/tokio/pull/7275 ### [`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> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.17.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.17.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0) #### What's Changed - Added convenience implementation TryFrom<String> for std by [@&#8203;Nahuel-M](https://github.com/Nahuel-M) in https://github.com/uuid-rs/uuid/pull/819 - Update OSX builds to arm by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/825 - Replace derive(Hash) with manual impl in Uuid by [@&#8203;diopoex](https://github.com/diopoex) in https://github.com/uuid-rs/uuid/pull/824 - Add `wasm32v1-none` Support by [@&#8203;bushrat011899](https://github.com/bushrat011899) in https://github.com/uuid-rs/uuid/pull/828 - Prepare for 1.17.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/829 #### New Contributors - [@&#8203;Nahuel-M](https://github.com/Nahuel-M) made their first contribution in https://github.com/uuid-rs/uuid/pull/819 - [@&#8203;diopoex](https://github.com/diopoex) made their first contribution in https://github.com/uuid-rs/uuid/pull/824 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.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: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
kjuulh force-pushed renovate/all from d53038df4a to 8e8914c387 2025-05-02 02:18:44 +02:00 Compare
kjuulh force-pushed renovate/all from 8e8914c387 to b64e2af2e3 2025-05-02 05:18:46 +02:00 Compare
kjuulh force-pushed renovate/all from b64e2af2e3 to 81a1866ee9 2025-05-03 02:20:43 +02:00 Compare
kjuulh force-pushed renovate/all from 81a1866ee9 to b5dc4c8716 2025-05-03 05:19:22 +02:00 Compare
kjuulh force-pushed renovate/all from b5dc4c8716 to 90ffb1ec39 2025-05-04 02:18:59 +02:00 Compare
kjuulh force-pushed renovate/all from 90ffb1ec39 to e80e64e402 2025-05-04 05:18:11 +02:00 Compare
kjuulh force-pushed renovate/all from e80e64e402 to 2363715aa6 2025-05-05 02:18:40 +02:00 Compare
kjuulh force-pushed renovate/all from 2363715aa6 to bc6569f953 2025-05-05 05:18:19 +02:00 Compare
kjuulh force-pushed renovate/all from bc6569f953 to 3721f15071 2025-05-06 02:18:34 +02:00 Compare
kjuulh force-pushed renovate/all from 3721f15071 to 9868618179 2025-05-07 02:19:52 +02:00 Compare
kjuulh force-pushed renovate/all from 9868618179 to 93cd99440c 2025-05-11 05:18:57 +02:00 Compare
kjuulh force-pushed renovate/all from 93cd99440c to 15619156e0 2025-05-12 02:19:37 +02:00 Compare
kjuulh force-pushed renovate/all from 15619156e0 to 5d8687b6ae 2025-05-12 05:18:14 +02:00 Compare
kjuulh force-pushed renovate/all from 5d8687b6ae to 0c2279739d 2025-05-13 02:19:49 +02:00 Compare
kjuulh force-pushed renovate/all from 0c2279739d to e1bef9a0f8 2025-05-13 05:18:28 +02:00 Compare
kjuulh force-pushed renovate/all from e1bef9a0f8 to 5429aac39b 2025-05-14 02:18:29 +02:00 Compare
kjuulh force-pushed renovate/all from 5429aac39b to 2ddabd8abb 2025-05-14 05:18:53 +02:00 Compare
kjuulh force-pushed renovate/all from 2ddabd8abb to 6bc7912d4a 2025-05-15 02:18:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6bc7912d4a to c43b2ddede 2025-05-15 05:17:29 +02:00 Compare
kjuulh force-pushed renovate/all from c43b2ddede to 47b7a8cc84 2025-05-17 02:18:12 +02:00 Compare
kjuulh force-pushed renovate/all from 47b7a8cc84 to 7bded7e457 2025-05-17 05:18:06 +02:00 Compare
kjuulh force-pushed renovate/all from 7bded7e457 to 2ed0966fe1 2025-05-18 02:18:36 +02:00 Compare
kjuulh force-pushed renovate/all from 2ed0966fe1 to e03312ca1e 2025-05-18 05:18:17 +02:00 Compare
kjuulh force-pushed renovate/all from e03312ca1e to 9fa2b211f3 2025-05-19 02:18:53 +02:00 Compare
kjuulh force-pushed renovate/all from 9fa2b211f3 to d2c2d0ff98 2025-05-19 05:19:42 +02:00 Compare
kjuulh force-pushed renovate/all from d2c2d0ff98 to ea8940b5b5 2025-05-20 02:18:10 +02:00 Compare
kjuulh force-pushed renovate/all from ea8940b5b5 to 0f000f58e9 2025-05-20 05:18:15 +02:00 Compare
kjuulh force-pushed renovate/all from 0f000f58e9 to 5c2404a409 2025-05-21 02:18:51 +02:00 Compare
kjuulh force-pushed renovate/all from 5c2404a409 to 1174972096 2025-05-21 05:17:28 +02:00 Compare
kjuulh force-pushed renovate/all from 1174972096 to 20c5a48e3b 2025-05-22 02:19:53 +02:00 Compare
kjuulh force-pushed renovate/all from 20c5a48e3b to 0b8ada2ee2 2025-05-22 05:18:03 +02:00 Compare
kjuulh force-pushed renovate/all from 0b8ada2ee2 to 594c56688e 2025-05-23 02:18:13 +02:00 Compare
kjuulh force-pushed renovate/all from 594c56688e to 7a84f460fd 2025-05-23 05:19:00 +02:00 Compare
kjuulh force-pushed renovate/all from 7a84f460fd to 045d74d34c 2025-05-25 02:18:52 +02:00 Compare
kjuulh force-pushed renovate/all from 045d74d34c to 7902ff54eb 2025-05-25 05:18:49 +02:00 Compare
kjuulh force-pushed renovate/all from 7902ff54eb to fb0d5499fe 2025-05-26 02:18:53 +02:00 Compare
kjuulh force-pushed renovate/all from fb0d5499fe to bde34e37c4 2025-05-26 05:18:48 +02:00 Compare
kjuulh force-pushed renovate/all from bde34e37c4 to 0bbbe68e0b 2025-05-27 02:18:06 +02:00 Compare
kjuulh force-pushed renovate/all from 0bbbe68e0b to 73da984877 2025-05-27 05:18:05 +02:00 Compare
kjuulh force-pushed renovate/all from 73da984877 to 2fd4535b54 2025-05-28 02:20:32 +02:00 Compare
kjuulh force-pushed renovate/all from 2fd4535b54 to c4ab6169cc 2025-05-28 05:17:43 +02:00 Compare
kjuulh force-pushed renovate/all from c4ab6169cc to aa26401735 2025-05-29 02:18:53 +02:00 Compare
kjuulh force-pushed renovate/all from aa26401735 to 91e4c7d47f 2025-05-29 05:17:53 +02:00 Compare
kjuulh force-pushed renovate/all from 91e4c7d47f to 876a397eaf 2025-05-30 02:19:39 +02:00 Compare
kjuulh force-pushed renovate/all from 876a397eaf to 5d17708d45 2025-05-30 05:18:22 +02:00 Compare
kjuulh force-pushed renovate/all from 5d17708d45 to 4266a852ab 2025-05-31 02:18:54 +02:00 Compare
kjuulh force-pushed renovate/all from 4266a852ab to 1895595c39 2025-05-31 05:18:19 +02:00 Compare
kjuulh force-pushed renovate/all from 1895595c39 to e235c4b679 2025-06-01 02:18:54 +02:00 Compare
kjuulh force-pushed renovate/all from e235c4b679 to 30582a9bad 2025-06-01 05:18:21 +02:00 Compare
kjuulh force-pushed renovate/all from 30582a9bad to 748a7a8058 2025-06-02 02:19:00 +02:00 Compare
kjuulh force-pushed renovate/all from 748a7a8058 to a578f9dc3c 2025-06-02 05:18:29 +02:00 Compare
kjuulh force-pushed renovate/all from a578f9dc3c to d5a8be6b21 2025-06-03 02:18:48 +02:00 Compare
kjuulh force-pushed renovate/all from d5a8be6b21 to 6069830773 2025-06-03 05:18:30 +02:00 Compare
kjuulh force-pushed renovate/all from 6069830773 to c1ca3115d8 2025-06-04 02:19:27 +02:00 Compare
kjuulh force-pushed renovate/all from c1ca3115d8 to ac1b41fbc2 2025-06-04 05:18:08 +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.