fix(deps): update all dependencies #19

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.95 -> 1.0.98
clap workspace.dependencies patch 4.5.26 -> 4.5.37
nodrift dependencies patch 0.3.0 -> 0.3.4
rand (source) dependencies minor 0.8.5 -> 0.9.0
tokio (source) workspace.dependencies minor 1.43.0 -> 1.44.2
uuid dependencies minor 1.12.0 -> 1.16.0

Release Notes

dtolnay/anyhow (anyhow)

v1.0.98

Compare Source

v1.0.97

Compare Source

  • Documentation improvements

v1.0.96

Compare Source

  • Documentation improvements
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

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

v4.5.31

Compare Source

Features
  • Add ValueParserFactory for Saturating<T>

v4.5.30

Compare Source

Fixes
  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

v4.5.29

Compare Source

Fixes
  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

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
rust-random/rand (rand)

v0.9.1

Compare Source

Security and unsafe
  • Revise "not a crypto library" policy again (#​1565)
  • Remove zerocopy dependency from rand (#​1579)
Fixes
  • Fix feature simd_support for recent nightly rust (#​1586)
Changes
  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#​1623), reverting an undocumented change (#​1382) to the previous release.
Additions
  • Add rand::distr::Alphabetic distribution. (#​1587)
  • Re-export rand_core (#​1604)

v0.9.0

Compare Source

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
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)
API changes: Distributions
  • Relax Sized bound on Distribution<T> for &D (#​1278)
  • Remove impl of Distribution<Option<T>> for StandardUniform (#​1526)
  • Let distribution StandardUniform support all NonZero* types (#​1332)
  • Fns {Uniform, UniformSampler}::{new, new_inclusive} return a Result (instead of potentially panicking) (#​1229)
  • Distribution Uniform implements TryFrom instead of From for ranges (#​1229)
  • Add UniformUsize (#​1487)
  • Remove support for generating isize and usize values with StandardUniform, Uniform (except via UniformUsize) and Fill and usage as a WeightedAliasIndex weight (#​1487)
  • Add impl DistString for distributions Slice<char> and Uniform<char> (#​1315)
  • Add fn Slice::num_choices (#​1402)
  • Add fn p() for distribution Bernoulli to access probability (#​1481)
API changes: Weighted distributions
  • Add pub module rand::distr::weighted, moving WeightedIndex there (#​1548)
  • Add trait weighted::Weight, allowing WeightedIndex to trap overflow (#​1353)
  • Add fns weight, weights, total_weight to distribution WeightedIndex (#​1420)
  • Rename enum WeightedError to weighted::Error, revising variants (#​1382) and mark as #[non_exhaustive] (#​1480)
API changes: SIMD
  • Switch to std::simd, expand SIMD & docs (#​1239)
Reproducibility-breaking changes
  • Make ReseedingRng::reseed discard remaining data from the last block generated (#​1379)
  • Change fn SmallRng::seed_from_u64 implementation (#​1203)
  • Allow UniformFloat::new samples and UniformFloat::sample_single to yield high (#​1462)
  • Fix portability of distribution Slice (#​1469)
  • Make Uniform for usize portable via UniformUsize (#​1487)
  • Fix IndexdRandom::choose_multiple_weighted for very small seeds and optimize for large input length / low memory (#​1530)
Reproducibility-breaking optimisations
  • Optimize fn sample_floyd, affecting output of rand::seq::index::sample and rand::seq::SliceRandom::choose_multiple (#​1277)
  • New, faster algorithms for IteratorRandom::choose and choose_stable (#​1268)
  • New, faster algorithms for SliceRandom::shuffle and partial_shuffle (#​1272)
  • Optimize distribution Uniform: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; #​1287)
  • Optimize fn sample_single_inclusive for floats (+~20% perf) (#​1289)
Other optimisations
  • Improve SmallRng initialization performance (#​1482)
  • Optimise SIMD widening multiply (#​1247)
Other
Documentation
  • Improve ThreadRng related docs (#​1257)
  • Docs: enable experimental --generate-link-to-definition feature (#​1327)
  • Better doc of crate features, use doc_auto_cfg (#​1411, #​1450)
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

v1.15.1

Compare Source

What's Changed

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

v1.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0

v1.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0

v1.13.2

Compare Source

What's Changed

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

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


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.95` -> `1.0.98` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.26` -> `4.5.37` | | [nodrift](https://crates.io/crates/nodrift) | dependencies | patch | `0.3.0` -> `0.3.4` | | [rand](https://rust-random.github.io/book) ([source](https://github.com/rust-random/rand)) | dependencies | minor | `0.8.5` -> `0.9.0` | | [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) | dependencies | minor | `1.12.0` -> `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 ### [`v1.0.96`](https://github.com/dtolnay/anyhow/releases/tag/1.0.96) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.95...1.0.96) - Documentation improvements </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 ### [`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` ### [`v4.5.31`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4531---2025-02-24) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.30...v4.5.31) ##### Features - Add `ValueParserFactory` for `Saturating<T>` ### [`v4.5.30`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4530---2025-02-17) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.29...v4.5.30) ##### Fixes - *(assert)* Allow `num_args(0..=1)` to be used with `SetTrue` - *(assert)* Clean up rendering of `takes_values` assertions ### [`v4.5.29`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4529---2025-02-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.28...v4.5.29) ##### Fixes - Change `ArgMatches::args_present` so not-present flags are considered not-present (matching the documentation) ### [`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 </details> <details> <summary>rust-random/rand (rand)</summary> ### [`v0.9.1`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#091---2025-04-17) [Compare Source](https://github.com/rust-random/rand/compare/0.9.0...0.9.1) ##### Security and unsafe - Revise "not a crypto library" policy again ([#&#8203;1565](https://github.com/rust-random/rand/issues/1565)) - Remove `zerocopy` dependency from `rand` ([#&#8203;1579](https://github.com/rust-random/rand/issues/1579)) ##### Fixes - Fix feature `simd_support` for recent nightly rust ([#&#8203;1586](https://github.com/rust-random/rand/issues/1586)) ##### Changes - Allow `fn rand::seq::index::sample_weighted` and `fn IndexedRandom::choose_multiple_weighted` to return fewer than `amount` results ([#&#8203;1623](https://github.com/rust-random/rand/issues/1623)), reverting an undocumented change ([#&#8203;1382](https://github.com/rust-random/rand/issues/1382)) to the previous release. ##### Additions - Add `rand::distr::Alphabetic` distribution. ([#&#8203;1587](https://github.com/rust-random/rand/issues/1587)) - Re-export `rand_core` ([#&#8203;1604](https://github.com/rust-random/rand/issues/1604)) ### [`v0.9.0`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#090---2025-01-27) [Compare Source](https://github.com/rust-random/rand/compare/0.8.5...0.9.0) ##### Security and unsafe - Policy: "rand is not a crypto library" ([#&#8203;1514](https://github.com/rust-random/rand/issues/1514)) - Remove fork-protection from `ReseedingRng` and `ThreadRng`. Instead, it is recommended to call `ThreadRng::reseed` on fork. ([#&#8203;1379](https://github.com/rust-random/rand/issues/1379)) - Use `zerocopy` to replace some `unsafe` code ([#&#8203;1349](https://github.com/rust-random/rand/issues/1349), [#&#8203;1393](https://github.com/rust-random/rand/issues/1393), [#&#8203;1446](https://github.com/rust-random/rand/issues/1446), [#&#8203;1502](https://github.com/rust-random/rand/issues/1502)) ##### Dependencies - Bump the MSRV to 1.63.0 ([#&#8203;1207](https://github.com/rust-random/rand/issues/1207), [#&#8203;1246](https://github.com/rust-random/rand/issues/1246), [#&#8203;1269](https://github.com/rust-random/rand/issues/1269), [#&#8203;1341](https://github.com/rust-random/rand/issues/1341), [#&#8203;1416](https://github.com/rust-random/rand/issues/1416), [#&#8203;1536](https://github.com/rust-random/rand/issues/1536)); note that 1.60.0 may work for dependents when using `--ignore-rust-version` - Update to `rand_core` v0.9.0 ([#&#8203;1558](https://github.com/rust-random/rand/issues/1558)) ##### Features - Support `std` feature without `getrandom` or `rand_chacha` ([#&#8203;1354](https://github.com/rust-random/rand/issues/1354)) - Enable feature `small_rng` by default ([#&#8203;1455](https://github.com/rust-random/rand/issues/1455)) - Remove implicit feature `rand_chacha`; use `std_rng` instead. ([#&#8203;1473](https://github.com/rust-random/rand/issues/1473)) - Rename feature `serde1` to `serde` ([#&#8203;1477](https://github.com/rust-random/rand/issues/1477)) - Rename feature `getrandom` to `os_rng` ([#&#8203;1537](https://github.com/rust-random/rand/issues/1537)) - Add feature `thread_rng` ([#&#8203;1547](https://github.com/rust-random/rand/issues/1547)) ##### API changes: rand_core traits - Add fn `RngCore::read_adapter` implementing `std::io::Read` ([#&#8203;1267](https://github.com/rust-random/rand/issues/1267)) - Add trait `CryptoBlockRng: BlockRngCore`; make `trait CryptoRng: RngCore` ([#&#8203;1273](https://github.com/rust-random/rand/issues/1273)) - Add traits `TryRngCore`, `TryCryptoRng` ([#&#8203;1424](https://github.com/rust-random/rand/issues/1424), [#&#8203;1499](https://github.com/rust-random/rand/issues/1499)) - Rename `fn SeedableRng::from_rng` -> `try_from_rng` and add infallible variant `fn from_rng` ([#&#8203;1424](https://github.com/rust-random/rand/issues/1424)) - Rename `fn SeedableRng::from_entropy` -> `from_os_rng` and add fallible variant `fn try_from_os_rng` ([#&#8203;1424](https://github.com/rust-random/rand/issues/1424)) - Add bounds `Clone` and `AsRef` to associated type `SeedableRng::Seed` ([#&#8203;1491](https://github.com/rust-random/rand/issues/1491)) ##### API changes: Rng trait and top-level fns - Rename fn `rand::thread_rng()` to `rand::rng()` and remove from the prelude ([#&#8203;1506](https://github.com/rust-random/rand/issues/1506)) - Remove fn `rand::random()` from the prelude ([#&#8203;1506](https://github.com/rust-random/rand/issues/1506)) - Add top-level fns `random_iter`, `random_range`, `random_bool`, `random_ratio`, `fill` ([#&#8203;1488](https://github.com/rust-random/rand/issues/1488)) - Re-introduce fn `Rng::gen_iter` as `random_iter` ([#&#8203;1305](https://github.com/rust-random/rand/issues/1305), [#&#8203;1500](https://github.com/rust-random/rand/issues/1500)) - Rename fn `Rng::gen` to `random` to avoid conflict with the new `gen` keyword in Rust 2024 ([#&#8203;1438](https://github.com/rust-random/rand/issues/1438)) - Rename fns `Rng::gen_range` to `random_range`, `gen_bool` to `random_bool`, `gen_ratio` to `random_ratio` ([#&#8203;1505](https://github.com/rust-random/rand/issues/1505)) - Annotate panicking methods with `#[track_caller]` ([#&#8203;1442](https://github.com/rust-random/rand/issues/1442), [#&#8203;1447](https://github.com/rust-random/rand/issues/1447)) ##### API changes: RNGs - Fix `<SmallRng as SeedableRng>::Seed` size to 256 bits ([#&#8203;1455](https://github.com/rust-random/rand/issues/1455)) - Remove first parameter (`rng`) of `ReseedingRng::new` ([#&#8203;1533](https://github.com/rust-random/rand/issues/1533)) ##### API changes: Sequences - Split trait `SliceRandom` into `IndexedRandom`, `IndexedMutRandom`, `SliceRandom` ([#&#8203;1382](https://github.com/rust-random/rand/issues/1382)) - Add `IndexedRandom::choose_multiple_array`, `index::sample_array` ([#&#8203;1453](https://github.com/rust-random/rand/issues/1453), [#&#8203;1469](https://github.com/rust-random/rand/issues/1469)) ##### API changes: Distributions: renames - Rename module `rand::distributions` to `rand::distr` ([#&#8203;1470](https://github.com/rust-random/rand/issues/1470)) - Rename distribution `Standard` to `StandardUniform` ([#&#8203;1526](https://github.com/rust-random/rand/issues/1526)) - Move `distr::Slice` -> `distr::slice::Choose`, `distr::EmptySlice` -> `distr::slice::Empty` ([#&#8203;1548](https://github.com/rust-random/rand/issues/1548)) - Rename trait `distr::DistString` -> `distr::SampleString` ([#&#8203;1548](https://github.com/rust-random/rand/issues/1548)) - Rename `distr::DistIter` -> `distr::Iter`, `distr::DistMap` -> `distr::Map` ([#&#8203;1548](https://github.com/rust-random/rand/issues/1548)) ##### API changes: Distributions - Relax `Sized` bound on `Distribution<T> for &D` ([#&#8203;1278](https://github.com/rust-random/rand/issues/1278)) - Remove impl of `Distribution<Option<T>>` for `StandardUniform` ([#&#8203;1526](https://github.com/rust-random/rand/issues/1526)) - Let distribution `StandardUniform` support all `NonZero*` types ([#&#8203;1332](https://github.com/rust-random/rand/issues/1332)) - Fns `{Uniform, UniformSampler}::{new, new_inclusive}` return a `Result` (instead of potentially panicking) ([#&#8203;1229](https://github.com/rust-random/rand/issues/1229)) - Distribution `Uniform` implements `TryFrom` instead of `From` for ranges ([#&#8203;1229](https://github.com/rust-random/rand/issues/1229)) - Add `UniformUsize` ([#&#8203;1487](https://github.com/rust-random/rand/issues/1487)) - Remove support for generating `isize` and `usize` values with `StandardUniform`, `Uniform` (except via `UniformUsize`) and `Fill` and usage as a `WeightedAliasIndex` weight ([#&#8203;1487](https://github.com/rust-random/rand/issues/1487)) - Add impl `DistString` for distributions `Slice<char>` and `Uniform<char>` ([#&#8203;1315](https://github.com/rust-random/rand/issues/1315)) - Add fn `Slice::num_choices` ([#&#8203;1402](https://github.com/rust-random/rand/issues/1402)) - Add fn `p()` for distribution `Bernoulli` to access probability ([#&#8203;1481](https://github.com/rust-random/rand/issues/1481)) ##### API changes: Weighted distributions - Add `pub` module `rand::distr::weighted`, moving `WeightedIndex` there ([#&#8203;1548](https://github.com/rust-random/rand/issues/1548)) - Add trait `weighted::Weight`, allowing `WeightedIndex` to trap overflow ([#&#8203;1353](https://github.com/rust-random/rand/issues/1353)) - Add fns `weight, weights, total_weight` to distribution `WeightedIndex` ([#&#8203;1420](https://github.com/rust-random/rand/issues/1420)) - Rename enum `WeightedError` to `weighted::Error`, revising variants ([#&#8203;1382](https://github.com/rust-random/rand/issues/1382)) and mark as `#[non_exhaustive]` ([#&#8203;1480](https://github.com/rust-random/rand/issues/1480)) ##### API changes: SIMD - Switch to `std::simd`, expand SIMD & docs ([#&#8203;1239](https://github.com/rust-random/rand/issues/1239)) ##### Reproducibility-breaking changes - Make `ReseedingRng::reseed` discard remaining data from the last block generated ([#&#8203;1379](https://github.com/rust-random/rand/issues/1379)) - Change fn `SmallRng::seed_from_u64` implementation ([#&#8203;1203](https://github.com/rust-random/rand/issues/1203)) - Allow `UniformFloat::new` samples and `UniformFloat::sample_single` to yield `high` ([#&#8203;1462](https://github.com/rust-random/rand/issues/1462)) - Fix portability of distribution `Slice` ([#&#8203;1469](https://github.com/rust-random/rand/issues/1469)) - Make `Uniform` for `usize` portable via `UniformUsize` ([#&#8203;1487](https://github.com/rust-random/rand/issues/1487)) - Fix `IndexdRandom::choose_multiple_weighted` for very small seeds and optimize for large input length / low memory ([#&#8203;1530](https://github.com/rust-random/rand/issues/1530)) ##### Reproducibility-breaking optimisations - Optimize fn `sample_floyd`, affecting output of `rand::seq::index::sample` and `rand::seq::SliceRandom::choose_multiple` ([#&#8203;1277](https://github.com/rust-random/rand/issues/1277)) - New, faster algorithms for `IteratorRandom::choose` and `choose_stable` ([#&#8203;1268](https://github.com/rust-random/rand/issues/1268)) - New, faster algorithms for `SliceRandom::shuffle` and `partial_shuffle` ([#&#8203;1272](https://github.com/rust-random/rand/issues/1272)) - Optimize distribution `Uniform`: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; [#&#8203;1287](https://github.com/rust-random/rand/issues/1287)) - Optimize fn `sample_single_inclusive` for floats (+~20% perf) ([#&#8203;1289](https://github.com/rust-random/rand/issues/1289)) ##### Other optimisations - Improve `SmallRng` initialization performance ([#&#8203;1482](https://github.com/rust-random/rand/issues/1482)) - Optimise SIMD widening multiply ([#&#8203;1247](https://github.com/rust-random/rand/issues/1247)) ##### Other - Add `Cargo.lock.msrv` file ([#&#8203;1275](https://github.com/rust-random/rand/issues/1275)) - Reformat with `rustfmt` and enforce ([#&#8203;1448](https://github.com/rust-random/rand/issues/1448)) - Apply Clippy suggestions and enforce ([#&#8203;1448](https://github.com/rust-random/rand/issues/1448), [#&#8203;1474](https://github.com/rust-random/rand/issues/1474)) - Move all benchmarks to new `benches` crate ([#&#8203;1329](https://github.com/rust-random/rand/issues/1329), [#&#8203;1439](https://github.com/rust-random/rand/issues/1439)) and migrate to Criterion ([#&#8203;1490](https://github.com/rust-random/rand/issues/1490)) ##### Documentation - Improve `ThreadRng` related docs ([#&#8203;1257](https://github.com/rust-random/rand/issues/1257)) - Docs: enable experimental `--generate-link-to-definition` feature ([#&#8203;1327](https://github.com/rust-random/rand/issues/1327)) - Better doc of crate features, use `doc_auto_cfg` ([#&#8203;1411](https://github.com/rust-random/rand/issues/1411), [#&#8203;1450](https://github.com/rust-random/rand/issues/1450)) </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 ### [`v1.15.1`](https://github.com/uuid-rs/uuid/releases/tag/v1.15.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1) #### What's Changed - Guarantee v7 timestamp will never overflow by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/811 - Prepare for 1.15.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/812 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1 ### [`v1.15.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.15.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0) #### What's Changed - Add a manual `Debug` implementation for NonNilUUid by [@&#8203;rick-de-water](https://github.com/rick-de-water) in https://github.com/uuid-rs/uuid/pull/808 - Support higher precision, shiftable timestamps in V7 UUIDs by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/809 - Prepare for 1.15.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/810 #### New Contributors - [@&#8203;rick-de-water](https://github.com/rick-de-water) made their first contribution in https://github.com/uuid-rs/uuid/pull/808 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0 ### [`v1.14.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.14.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0) #### What's Changed - Add FromStr impls to the fmt structs by [@&#8203;tysen](https://github.com/tysen) in https://github.com/uuid-rs/uuid/pull/806 - Prepare for 1.14.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/807 #### New Contributors - [@&#8203;tysen](https://github.com/tysen) made their first contribution in https://github.com/uuid-rs/uuid/pull/806 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0 ### [`v1.13.2`](https://github.com/uuid-rs/uuid/releases/tag/v1.13.2) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2) #### What's Changed - Add a compile_error when no source of randomness is available on wasm32-unknown-unknown by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/804 - Prepare for 1.13.2 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/805 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2 ### [`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 </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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI1MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-01-21 02:40:43 +01:00
chore(deps): update rust crate clap to v4.5.27
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
de799c1c9b
kjuulh changed title from chore(deps): update rust crate clap to v4.5.27 to chore(deps): update all dependencies 2025-01-21 06:43:11 +01:00
kjuulh force-pushed renovate/all from de799c1c9b to 25eed13568 2025-01-21 06:43:11 +01:00 Compare
kjuulh force-pushed renovate/all from 25eed13568 to e44b27823b 2025-01-22 02:41:06 +01:00 Compare
kjuulh force-pushed renovate/all from e44b27823b to 0bd5f78e77 2025-01-22 06:38:11 +01:00 Compare
kjuulh force-pushed renovate/all from 0bd5f78e77 to 28da3847f9 2025-01-23 02:39:11 +01:00 Compare
kjuulh force-pushed renovate/all from 28da3847f9 to 99cc1bf017 2025-01-23 06:38:54 +01:00 Compare
kjuulh force-pushed renovate/all from 99cc1bf017 to 9f4f3c260f 2025-01-24 02:45:20 +01:00 Compare
kjuulh force-pushed renovate/all from 9f4f3c260f to 69118c494e 2025-01-24 06:43:26 +01:00 Compare
kjuulh force-pushed renovate/all from 69118c494e to 262a1d41ba 2025-01-25 02:41:37 +01:00 Compare
kjuulh force-pushed renovate/all from 262a1d41ba to e144e57e32 2025-01-25 06:39:17 +01:00 Compare
kjuulh force-pushed renovate/all from e144e57e32 to babbbd9969 2025-01-26 02:45:42 +01:00 Compare
kjuulh force-pushed renovate/all from babbbd9969 to de2dcda84f 2025-01-26 06:39:36 +01:00 Compare
kjuulh force-pushed renovate/all from de2dcda84f to c0dd39c65f 2025-01-27 02:44:27 +01:00 Compare
kjuulh force-pushed renovate/all from c0dd39c65f to fd07bc21c2 2025-01-27 06:39:57 +01:00 Compare
kjuulh force-pushed renovate/all from fd07bc21c2 to ced6bcf02d 2025-01-28 02:39:36 +01:00 Compare
Author
Owner

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/iamalive/Cargo.toml --package rand@0.8.5 --precise 0.9.1
    Updating crates.io index
error: failed to select a version for the requirement `rand = "^0.8.5"`
candidate versions found which didn't match: 0.9.1
location searched: crates.io index
required by package `notmad v0.7.1`
    ... which satisfies dependency `notmad = "^0.7.0"` (locked to 0.7.1) of package `iamvisual v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/iamvisual/crates/iamalive)`

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/iamalive/Cargo.toml --package rand@0.8.5 --precise 0.9.1 Updating crates.io index error: failed to select a version for the requirement `rand = "^0.8.5"` candidate versions found which didn't match: 0.9.1 location searched: crates.io index required by package `notmad v0.7.1` ... which satisfies dependency `notmad = "^0.7.0"` (locked to 0.7.1) of package `iamvisual v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/iamvisual/crates/iamalive)` ```
kjuulh force-pushed renovate/all from ced6bcf02d to 23e405ea75 2025-01-28 06:39:51 +01:00 Compare
kjuulh force-pushed renovate/all from 23e405ea75 to 1e039bb71a 2025-01-29 02:46:12 +01:00 Compare
kjuulh force-pushed renovate/all from 1e039bb71a to 07748fee43 2025-01-29 06:43:17 +01:00 Compare
kjuulh force-pushed renovate/all from 07748fee43 to a6da8713f8 2025-01-30 02:47:02 +01:00 Compare
kjuulh force-pushed renovate/all from a6da8713f8 to 87ea8d9305 2025-01-30 06:49:39 +01:00 Compare
kjuulh force-pushed renovate/all from 87ea8d9305 to e403f984bb 2025-01-31 02:43:06 +01:00 Compare
kjuulh force-pushed renovate/all from e403f984bb to 58ab941ca9 2025-01-31 06:40:31 +01:00 Compare
kjuulh force-pushed renovate/all from 58ab941ca9 to d1bd44edd1 2025-02-01 02:40:00 +01:00 Compare
kjuulh force-pushed renovate/all from d1bd44edd1 to 95b27a80c6 2025-02-01 06:42:23 +01:00 Compare
kjuulh force-pushed renovate/all from 95b27a80c6 to ba64f606c4 2025-02-02 02:41:29 +01:00 Compare
kjuulh force-pushed renovate/all from ba64f606c4 to e371c9f50f 2025-02-02 06:38:06 +01:00 Compare
kjuulh force-pushed renovate/all from e371c9f50f to 7fc6fc5c10 2025-02-03 02:39:04 +01:00 Compare
kjuulh force-pushed renovate/all from 7fc6fc5c10 to 6e2b2a33b3 2025-02-03 06:37:50 +01:00 Compare
kjuulh force-pushed renovate/all from 6e2b2a33b3 to 0e1b231236 2025-02-04 02:43:38 +01:00 Compare
kjuulh force-pushed renovate/all from 0e1b231236 to ee1fcb2b03 2025-02-04 06:41:49 +01:00 Compare
kjuulh force-pushed renovate/all from ee1fcb2b03 to 6a20f69b07 2025-02-05 02:41:31 +01:00 Compare
kjuulh force-pushed renovate/all from 6a20f69b07 to 8970284908 2025-02-05 06:45:32 +01:00 Compare
kjuulh force-pushed renovate/all from 8970284908 to 010b70d9cb 2025-02-06 02:42:44 +01:00 Compare
kjuulh force-pushed renovate/all from 010b70d9cb to 96af15d674 2025-02-06 06:39:08 +01:00 Compare
kjuulh force-pushed renovate/all from 96af15d674 to b3ad386aca 2025-02-07 02:39:26 +01:00 Compare
kjuulh force-pushed renovate/all from b3ad386aca to 9067f5d15d 2025-02-07 06:37:26 +01:00 Compare
kjuulh force-pushed renovate/all from 9067f5d15d to 89ed5103eb 2025-02-08 02:42:23 +01:00 Compare
kjuulh force-pushed renovate/all from 89ed5103eb to 7e93f3c1bf 2025-02-08 06:38:04 +01:00 Compare
kjuulh force-pushed renovate/all from 7e93f3c1bf to 7ec774cdcc 2025-02-09 02:40:20 +01:00 Compare
kjuulh force-pushed renovate/all from 7ec774cdcc to 1ff26ff520 2025-02-09 06:38:22 +01:00 Compare
kjuulh force-pushed renovate/all from 1ff26ff520 to d9d82ba4b4 2025-02-10 02:39:56 +01:00 Compare
kjuulh force-pushed renovate/all from d9d82ba4b4 to f8ee1a8e07 2025-02-10 06:38:40 +01:00 Compare
kjuulh force-pushed renovate/all from f8ee1a8e07 to 22ec07b085 2025-02-11 02:43:01 +01:00 Compare
kjuulh force-pushed renovate/all from 22ec07b085 to 8e944894cd 2025-02-11 06:40:59 +01:00 Compare
kjuulh force-pushed renovate/all from 8e944894cd to b75834f2da 2025-02-12 02:45:54 +01:00 Compare
kjuulh force-pushed renovate/all from b75834f2da to 2c3a95201d 2025-02-12 06:42:19 +01:00 Compare
kjuulh force-pushed renovate/all from 2c3a95201d to 8f4a17e82a 2025-02-13 02:40:02 +01:00 Compare
kjuulh force-pushed renovate/all from 8f4a17e82a to 64ca144141 2025-02-13 06:37:58 +01:00 Compare
kjuulh force-pushed renovate/all from 64ca144141 to 0205f557fa 2025-02-14 02:38:44 +01:00 Compare
kjuulh force-pushed renovate/all from 0205f557fa to a2bca04c16 2025-02-14 06:36:27 +01:00 Compare
kjuulh force-pushed renovate/all from a2bca04c16 to 8259604f73 2025-02-15 02:37:26 +01:00 Compare
kjuulh force-pushed renovate/all from 8259604f73 to 71c26a5694 2025-02-15 06:35:46 +01:00 Compare
kjuulh force-pushed renovate/all from 71c26a5694 to ea0d8d5234 2025-02-16 02:36:59 +01:00 Compare
kjuulh force-pushed renovate/all from ea0d8d5234 to c580e1c3e0 2025-02-16 06:34:27 +01:00 Compare
kjuulh force-pushed renovate/all from c580e1c3e0 to e6eb89cfb0 2025-02-17 02:38:54 +01:00 Compare
kjuulh force-pushed renovate/all from e6eb89cfb0 to cd941423d8 2025-02-17 06:36:41 +01:00 Compare
kjuulh force-pushed renovate/all from cd941423d8 to 29efa321ed 2025-02-18 02:43:47 +01:00 Compare
kjuulh force-pushed renovate/all from 29efa321ed to 5fc2cfc2ce 2025-02-18 06:40:10 +01:00 Compare
kjuulh force-pushed renovate/all from 5fc2cfc2ce to f4fb6a595f 2025-02-19 02:38:42 +01:00 Compare
kjuulh force-pushed renovate/all from f4fb6a595f to bf421574bf 2025-02-19 06:36:42 +01:00 Compare
kjuulh force-pushed renovate/all from bf421574bf to c01d04c226 2025-02-20 02:45:29 +01:00 Compare
kjuulh force-pushed renovate/all from c01d04c226 to 1f5c5e2a85 2025-02-20 06:43:52 +01:00 Compare
kjuulh force-pushed renovate/all from 1f5c5e2a85 to e27802554c 2025-02-21 02:45:17 +01:00 Compare
kjuulh force-pushed renovate/all from e27802554c to c76ac67e78 2025-02-21 02:45:33 +01:00 Compare
kjuulh force-pushed renovate/all from c76ac67e78 to 78a5684055 2025-02-21 06:37:10 +01:00 Compare
kjuulh force-pushed renovate/all from 78a5684055 to 5f3f2d97dc 2025-02-22 02:38:27 +01:00 Compare
kjuulh force-pushed renovate/all from 5f3f2d97dc to b8ab695c5e 2025-02-22 06:41:10 +01:00 Compare
kjuulh force-pushed renovate/all from b8ab695c5e to 291a49f347 2025-02-23 02:38:36 +01:00 Compare
kjuulh force-pushed renovate/all from 291a49f347 to cc1c557dfe 2025-02-23 06:39:55 +01:00 Compare
kjuulh force-pushed renovate/all from cc1c557dfe to 257e6446de 2025-02-24 02:39:46 +01:00 Compare
kjuulh force-pushed renovate/all from 257e6446de to 905cf3f96e 2025-02-24 06:37:37 +01:00 Compare
kjuulh force-pushed renovate/all from 905cf3f96e to eeb2752339 2025-02-25 02:43:12 +01:00 Compare
kjuulh force-pushed renovate/all from eeb2752339 to 2029e21c69 2025-02-25 06:41:05 +01:00 Compare
kjuulh force-pushed renovate/all from 2029e21c69 to edbd31b1bc 2025-02-26 02:39:36 +01:00 Compare
kjuulh force-pushed renovate/all from edbd31b1bc to 270545eba4 2025-02-26 06:39:06 +01:00 Compare
kjuulh force-pushed renovate/all from 270545eba4 to 987fd7419d 2025-02-27 02:45:29 +01:00 Compare
kjuulh force-pushed renovate/all from 987fd7419d to 1618474b41 2025-02-27 06:41:45 +01:00 Compare
kjuulh force-pushed renovate/all from 1618474b41 to d5ed79bfbd 2025-02-28 02:45:24 +01:00 Compare
kjuulh force-pushed renovate/all from d5ed79bfbd to a893042f14 2025-02-28 06:41:10 +01:00 Compare
kjuulh force-pushed renovate/all from a893042f14 to 16967f585a 2025-03-01 02:41:55 +01:00 Compare
kjuulh force-pushed renovate/all from 16967f585a to 5397ae8653 2025-03-01 06:39:00 +01:00 Compare
kjuulh force-pushed renovate/all from 5397ae8653 to 1e34011ca8 2025-03-02 02:40:04 +01:00 Compare
kjuulh force-pushed renovate/all from 1e34011ca8 to aa4782a0be 2025-03-02 06:58:17 +01:00 Compare
kjuulh force-pushed renovate/all from aa4782a0be to 5b25ae4505 2025-03-03 02:38:22 +01:00 Compare
kjuulh force-pushed renovate/all from 5b25ae4505 to b1c702f4a9 2025-03-03 06:41:20 +01:00 Compare
kjuulh force-pushed renovate/all from b1c702f4a9 to 97a033d8a4 2025-03-04 02:47:41 +01:00 Compare
kjuulh force-pushed renovate/all from 97a033d8a4 to 8de0908de9 2025-03-04 06:45:03 +01:00 Compare
kjuulh force-pushed renovate/all from 8de0908de9 to 14b7735e3c 2025-03-05 02:42:30 +01:00 Compare
kjuulh force-pushed renovate/all from 14b7735e3c to 364b5712c6 2025-03-05 06:39:59 +01:00 Compare
kjuulh force-pushed renovate/all from 364b5712c6 to 4cf7d1e0db 2025-03-06 02:43:22 +01:00 Compare
kjuulh force-pushed renovate/all from 4cf7d1e0db to 6a9b6db121 2025-03-06 06:42:12 +01:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2025-03-25 23:58:31 +01:00
kjuulh force-pushed renovate/all from 6a9b6db121 to 2ee0b9c803 2025-03-25 23:58:32 +01:00 Compare
kjuulh force-pushed renovate/all from 2ee0b9c803 to 66b136e969 2025-03-26 00:45:35 +01:00 Compare
kjuulh force-pushed renovate/all from 66b136e969 to d237752b4e 2025-03-26 01:13:21 +01:00 Compare
kjuulh force-pushed renovate/all from d237752b4e to 41b1c08e12 2025-03-26 01:47:35 +01:00 Compare
kjuulh force-pushed renovate/all from 41b1c08e12 to e71206af49 2025-03-26 02:16:59 +01:00 Compare
kjuulh force-pushed renovate/all from e71206af49 to 7233caf8f2 2025-03-26 02:46:59 +01:00 Compare
kjuulh force-pushed renovate/all from 7233caf8f2 to 583928b636 2025-03-26 03:16:50 +01:00 Compare
kjuulh force-pushed renovate/all from 583928b636 to f3d73359dd 2025-03-26 03:46:22 +01:00 Compare
kjuulh force-pushed renovate/all from f3d73359dd to cd4cf1f305 2025-03-26 04:15:30 +01:00 Compare
kjuulh force-pushed renovate/all from cd4cf1f305 to 6b6421199d 2025-03-26 04:44:35 +01:00 Compare
kjuulh force-pushed renovate/all from 6b6421199d to d128524d10 2025-03-26 05:14:29 +01:00 Compare
kjuulh force-pushed renovate/all from d128524d10 to 8edcaa8583 2025-03-26 05:44:07 +01:00 Compare
kjuulh force-pushed renovate/all from 8edcaa8583 to ef989254a2 2025-03-26 06:14:03 +01:00 Compare
kjuulh force-pushed renovate/all from ef989254a2 to b8b88328b4 2025-03-26 06:43:43 +01:00 Compare
kjuulh force-pushed renovate/all from b8b88328b4 to 018ffab6ae 2025-03-26 07:14:09 +01:00 Compare
kjuulh force-pushed renovate/all from 018ffab6ae to bd73c4646a 2025-03-26 07:42:10 +01:00 Compare
kjuulh force-pushed renovate/all from bd73c4646a to a46f362a4a 2025-03-26 08:10:26 +01:00 Compare
kjuulh force-pushed renovate/all from a46f362a4a to d961c656ef 2025-03-26 08:39:03 +01:00 Compare
kjuulh force-pushed renovate/all from d961c656ef to d073073fbb 2025-03-26 09:07:55 +01:00 Compare
kjuulh force-pushed renovate/all from d073073fbb to c0f82d305f 2025-03-26 09:36:09 +01:00 Compare
kjuulh force-pushed renovate/all from c0f82d305f to 21fc2dab21 2025-03-26 10:04:25 +01:00 Compare
kjuulh force-pushed renovate/all from 21fc2dab21 to 50c54e4f80 2025-03-26 10:33:34 +01:00 Compare
kjuulh force-pushed renovate/all from 50c54e4f80 to e504296d12 2025-03-26 11:09:54 +01:00 Compare
kjuulh force-pushed renovate/all from e504296d12 to 71bc659ab9 2025-03-26 11:43:16 +01:00 Compare
kjuulh force-pushed renovate/all from 71bc659ab9 to e277ff3e97 2025-03-26 12:13:48 +01:00 Compare
kjuulh force-pushed renovate/all from e277ff3e97 to 0ed891272b 2025-03-26 12:42:26 +01:00 Compare
kjuulh force-pushed renovate/all from 0ed891272b to 119379e469 2025-03-26 13:10:40 +01:00 Compare
kjuulh force-pushed renovate/all from 119379e469 to 8e9d7a7f0d 2025-03-26 13:39:10 +01:00 Compare
kjuulh force-pushed renovate/all from 8e9d7a7f0d to 1209291e4b 2025-03-26 14:07:43 +01:00 Compare
kjuulh force-pushed renovate/all from 1209291e4b to ecd7b00bff 2025-03-26 14:36:37 +01:00 Compare
kjuulh force-pushed renovate/all from ecd7b00bff to a6d266a2f8 2025-03-26 15:05:34 +01:00 Compare
kjuulh force-pushed renovate/all from a6d266a2f8 to 72032264df 2025-03-26 15:34:35 +01:00 Compare
kjuulh force-pushed renovate/all from 72032264df to 3fcd0150fc 2025-03-26 16:10:04 +01:00 Compare
kjuulh force-pushed renovate/all from 3fcd0150fc to 98ac4ed93a 2025-03-26 16:43:58 +01:00 Compare
kjuulh force-pushed renovate/all from 98ac4ed93a to a49199a4e3 2025-03-26 17:13:11 +01:00 Compare
kjuulh force-pushed renovate/all from a49199a4e3 to c5693e6967 2025-03-26 17:42:09 +01:00 Compare
kjuulh force-pushed renovate/all from c5693e6967 to e36c211d6a 2025-03-26 18:12:16 +01:00 Compare
kjuulh force-pushed renovate/all from e36c211d6a to 765e46c534 2025-03-26 18:40:39 +01:00 Compare
kjuulh force-pushed renovate/all from 765e46c534 to 0a02b0275e 2025-03-26 19:29:10 +01:00 Compare
kjuulh force-pushed renovate/all from 0a02b0275e to 8ea3d3d8c1 2025-03-26 20:04:15 +01:00 Compare
kjuulh force-pushed renovate/all from 8ea3d3d8c1 to 5f7c0cf0d5 2025-03-26 20:33:29 +01:00 Compare
kjuulh force-pushed renovate/all from 5f7c0cf0d5 to 00ef18167f 2025-03-26 21:06:18 +01:00 Compare
kjuulh force-pushed renovate/all from 00ef18167f to a902e8b9ec 2025-03-26 21:39:26 +01:00 Compare
kjuulh force-pushed renovate/all from a902e8b9ec to 0768b3e8d4 2025-03-26 22:09:48 +01:00 Compare
kjuulh force-pushed renovate/all from 0768b3e8d4 to 00cc6e571f 2025-03-26 22:38:57 +01:00 Compare
kjuulh force-pushed renovate/all from 00cc6e571f to 2151be090e 2025-03-26 23:09:22 +01:00 Compare
kjuulh force-pushed renovate/all from 2151be090e to c73b64faf4 2025-03-26 23:40:01 +01:00 Compare
kjuulh force-pushed renovate/all from c73b64faf4 to 80593282ad 2025-03-27 00:11:06 +01:00 Compare
kjuulh force-pushed renovate/all from 80593282ad to 900fd85108 2025-03-27 00:41:20 +01:00 Compare
kjuulh force-pushed renovate/all from 900fd85108 to fec0159b2c 2025-03-27 01:10:00 +01:00 Compare
kjuulh force-pushed renovate/all from fec0159b2c to faf1af78e5 2025-03-27 01:37:55 +01:00 Compare
kjuulh force-pushed renovate/all from faf1af78e5 to e24ef0e23e 2025-03-27 02:06:42 +01:00 Compare
kjuulh force-pushed renovate/all from e24ef0e23e to 99e401afaa 2025-03-27 02:35:07 +01:00 Compare
kjuulh force-pushed renovate/all from 99e401afaa to b4235413a7 2025-03-27 03:06:28 +01:00 Compare
kjuulh force-pushed renovate/all from b4235413a7 to 03dfcba6fb 2025-03-27 03:39:07 +01:00 Compare
kjuulh force-pushed renovate/all from 03dfcba6fb to df7a15c487 2025-03-27 04:10:36 +01:00 Compare
kjuulh force-pushed renovate/all from df7a15c487 to a91add6fe8 2025-03-27 04:40:13 +01:00 Compare
kjuulh force-pushed renovate/all from a91add6fe8 to a02ae2fa3e 2025-03-27 05:13:15 +01:00 Compare
kjuulh force-pushed renovate/all from a02ae2fa3e to b6d55823dc 2025-03-27 05:44:20 +01:00 Compare
kjuulh force-pushed renovate/all from b6d55823dc to 4004793d3c 2025-03-27 06:14:23 +01:00 Compare
kjuulh force-pushed renovate/all from 4004793d3c to c12db2fd05 2025-03-27 06:42:39 +01:00 Compare
kjuulh force-pushed renovate/all from c12db2fd05 to 78c4efd917 2025-03-27 07:12:14 +01:00 Compare
kjuulh force-pushed renovate/all from 78c4efd917 to da3139a017 2025-03-27 07:40:48 +01:00 Compare
kjuulh force-pushed renovate/all from da3139a017 to f7db1bc58f 2025-03-27 08:09:49 +01:00 Compare
kjuulh force-pushed renovate/all from f7db1bc58f to dece230a25 2025-03-27 08:38:22 +01:00 Compare
kjuulh force-pushed renovate/all from dece230a25 to e2d1947dcc 2025-03-27 09:07:17 +01:00 Compare
kjuulh force-pushed renovate/all from e2d1947dcc to 213b766e8e 2025-03-27 09:35:37 +01:00 Compare
kjuulh force-pushed renovate/all from 213b766e8e to 516e291946 2025-03-27 10:04:57 +01:00 Compare
kjuulh force-pushed renovate/all from 516e291946 to 1ceca12b44 2025-03-27 10:29:45 +01:00 Compare
kjuulh force-pushed renovate/all from 1ceca12b44 to 9557f436cf 2025-03-27 11:04:45 +01:00 Compare
kjuulh force-pushed renovate/all from 9557f436cf to 228ff3346b 2025-03-27 11:33:24 +01:00 Compare
kjuulh force-pushed renovate/all from 228ff3346b to 1f44258664 2025-03-27 12:02:37 +01:00 Compare
kjuulh force-pushed renovate/all from 1f44258664 to 6eaffd6cd6 2025-03-27 12:31:38 +01:00 Compare
kjuulh force-pushed renovate/all from 6eaffd6cd6 to 2a25582768 2025-03-27 13:01:36 +01:00 Compare
kjuulh force-pushed renovate/all from 2a25582768 to 6bd80c5bd6 2025-03-27 13:50:30 +01:00 Compare
kjuulh force-pushed renovate/all from 6bd80c5bd6 to 96a104037b 2025-03-27 14:26:44 +01:00 Compare
kjuulh force-pushed renovate/all from 96a104037b to f52bfbbb89 2025-03-27 14:57:09 +01:00 Compare
kjuulh force-pushed renovate/all from f52bfbbb89 to 421b08e221 2025-03-27 15:30:20 +01:00 Compare
kjuulh force-pushed renovate/all from 421b08e221 to 359fe97f3d 2025-03-27 16:05:29 +01:00 Compare
kjuulh force-pushed renovate/all from 359fe97f3d to 5537d44f4b 2025-03-27 16:34:32 +01:00 Compare
kjuulh force-pushed renovate/all from 5537d44f4b to 2c03004fe0 2025-03-27 17:04:29 +01:00 Compare
kjuulh force-pushed renovate/all from 2c03004fe0 to 3dd26a02c1 2025-03-27 17:35:12 +01:00 Compare
kjuulh force-pushed renovate/all from 3dd26a02c1 to a7b95f44a0 2025-03-27 18:06:22 +01:00 Compare
kjuulh force-pushed renovate/all from a7b95f44a0 to 4110e5d976 2025-03-27 18:37:14 +01:00 Compare
kjuulh force-pushed renovate/all from 4110e5d976 to 8f5b32f321 2025-03-27 19:07:00 +01:00 Compare
kjuulh force-pushed renovate/all from 8f5b32f321 to 61918d4f4e 2025-03-27 19:35:26 +01:00 Compare
kjuulh force-pushed renovate/all from 61918d4f4e to ee5afb5e1d 2025-03-27 20:04:35 +01:00 Compare
kjuulh force-pushed renovate/all from ee5afb5e1d to 7886a3453b 2025-03-27 20:33:11 +01:00 Compare
kjuulh force-pushed renovate/all from 7886a3453b to 00aacf3060 2025-03-27 21:02:57 +01:00 Compare
kjuulh force-pushed renovate/all from 00aacf3060 to 232c0a4070 2025-03-27 21:31:39 +01:00 Compare
kjuulh force-pushed renovate/all from 232c0a4070 to 9396d22031 2025-03-28 23:31:22 +01:00 Compare
kjuulh force-pushed renovate/all from 9396d22031 to ad74424357 2025-03-29 02:25:42 +01:00 Compare
kjuulh force-pushed renovate/all from ad74424357 to 859e27e2ab 2025-03-29 05:26:24 +01:00 Compare
kjuulh force-pushed renovate/all from 859e27e2ab to cc85f7ae8c 2025-03-30 05:27:36 +02:00 Compare
kjuulh force-pushed renovate/all from cc85f7ae8c to b8399cd534 2025-03-31 02:25:12 +02:00 Compare
kjuulh force-pushed renovate/all from b8399cd534 to 209a329efd 2025-03-31 05:25:39 +02:00 Compare
kjuulh force-pushed renovate/all from 209a329efd to 17c8b61df6 2025-04-01 02:27:05 +02:00 Compare
kjuulh force-pushed renovate/all from 17c8b61df6 to afc3efa774 2025-04-01 05:26:17 +02:00 Compare
kjuulh force-pushed renovate/all from afc3efa774 to 2a0590cab4 2025-04-02 02:30:44 +02:00 Compare
kjuulh force-pushed renovate/all from 2a0590cab4 to 2022a1c121 2025-04-02 05:26:34 +02:00 Compare
kjuulh force-pushed renovate/all from 2022a1c121 to f8f0e4f7cc 2025-04-03 02:28:41 +02:00 Compare
kjuulh force-pushed renovate/all from f8f0e4f7cc to 35624ba7bc 2025-04-03 05:25:27 +02:00 Compare
kjuulh force-pushed renovate/all from 35624ba7bc to 65a65bab38 2025-04-04 02:26:11 +02:00 Compare
kjuulh force-pushed renovate/all from 65a65bab38 to 7a6e42a620 2025-04-04 05:25:17 +02:00 Compare
kjuulh force-pushed renovate/all from 7a6e42a620 to 2d31e273ef 2025-04-05 02:26:28 +02:00 Compare
kjuulh force-pushed renovate/all from 2d31e273ef to 78a6679ec5 2025-04-05 05:26:28 +02:00 Compare
kjuulh force-pushed renovate/all from 78a6679ec5 to 1640bdf1c8 2025-04-06 02:28:19 +02:00 Compare
kjuulh force-pushed renovate/all from 1640bdf1c8 to 357c81a173 2025-04-06 05:28:24 +02:00 Compare
kjuulh force-pushed renovate/all from 357c81a173 to 3d59d92039 2025-04-07 02:27:50 +02:00 Compare
kjuulh force-pushed renovate/all from 3d59d92039 to 5d0cb04d74 2025-04-07 05:25:54 +02:00 Compare
kjuulh force-pushed renovate/all from 5d0cb04d74 to bf0c1fa26b 2025-04-08 02:27:22 +02:00 Compare
kjuulh force-pushed renovate/all from bf0c1fa26b to c98c4c7a2b 2025-04-08 05:26:51 +02:00 Compare
kjuulh force-pushed renovate/all from c98c4c7a2b to 08bdc31f1d 2025-04-09 02:27:42 +02:00 Compare
kjuulh force-pushed renovate/all from 08bdc31f1d to dc3e127a57 2025-04-09 05:26:11 +02:00 Compare
kjuulh force-pushed renovate/all from dc3e127a57 to c0584f74fa 2025-04-10 02:28:15 +02:00 Compare
kjuulh force-pushed renovate/all from c0584f74fa to 8d34479b80 2025-04-10 05:26:29 +02:00 Compare
kjuulh force-pushed renovate/all from 8d34479b80 to 68ab2f3aaa 2025-04-11 02:27:51 +02:00 Compare
kjuulh force-pushed renovate/all from 68ab2f3aaa to acf6cf1dd3 2025-04-11 05:26:53 +02:00 Compare
kjuulh force-pushed renovate/all from acf6cf1dd3 to 2b5fe64461 2025-04-12 02:31:00 +02:00 Compare
kjuulh force-pushed renovate/all from 2b5fe64461 to 719f32f7fc 2025-04-12 05:28:10 +02:00 Compare
kjuulh force-pushed renovate/all from 719f32f7fc to 0f4bc3ea90 2025-04-13 02:28:56 +02:00 Compare
kjuulh force-pushed renovate/all from 0f4bc3ea90 to 7820dbf8c7 2025-04-13 05:27:29 +02:00 Compare
kjuulh force-pushed renovate/all from 7820dbf8c7 to d306bb7d2e 2025-04-14 02:26:54 +02:00 Compare
kjuulh force-pushed renovate/all from d306bb7d2e to 24b97a3919 2025-04-14 05:28:41 +02:00 Compare
kjuulh force-pushed renovate/all from 24b97a3919 to e43e5466de 2025-04-15 02:31:16 +02:00 Compare
kjuulh force-pushed renovate/all from e43e5466de to c03c7607d0 2025-04-15 05:26:45 +02:00 Compare
kjuulh force-pushed renovate/all from c03c7607d0 to 5794e322ab 2025-04-16 02:28:08 +02:00 Compare
kjuulh force-pushed renovate/all from 5794e322ab to e022bf912f 2025-04-16 05:26:48 +02:00 Compare
kjuulh force-pushed renovate/all from e022bf912f to f590e8f36a 2025-04-17 02:25:35 +02:00 Compare
kjuulh force-pushed renovate/all from f590e8f36a to 7ad7828d70 2025-04-17 05:26:20 +02:00 Compare
kjuulh force-pushed renovate/all from 7ad7828d70 to 7c2f894054 2025-04-18 02:27:57 +02:00 Compare
kjuulh force-pushed renovate/all from 7c2f894054 to c603e613e2 2025-04-18 05:25:42 +02:00 Compare
kjuulh force-pushed renovate/all from c603e613e2 to 8dc97dfc25 2025-04-19 02:28:42 +02:00 Compare
kjuulh force-pushed renovate/all from 8dc97dfc25 to b4c8fddbe7 2025-04-19 05:28:09 +02:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
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/iamvisual#19
No description provided.