fix(deps): update all dependencies #30

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
async-trait dependencies patch 0.1.87 -> 0.1.88
rand (source) dependencies patch 0.9.0 -> 0.9.1
tokio (source) workspace.dependencies minor 1.43.0 -> 1.46.1
tokio-util (source) dependencies patch 0.7.13 -> 0.7.15

Release Notes

dtolnay/anyhow (anyhow)

v1.0.98

Compare Source

dtolnay/async-trait (async-trait)

v0.1.88

Compare Source

  • Fix lifetime bounding on generic parameters that have cfg (#​289)
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)
tokio-rs/tokio (tokio)

v1.46.1: Tokio v1.46.1

Compare Source

1.46.1 (July 4th, 2025)

This release fixes incorrect spawn locations in runtime task hooks for tasks
spawned using tokio::spawn rather than Runtime::spawn. This issue only
effected the spawn location in TaskMeta::spawned_at, and did not effect task
locations in Tracing events.

Unstable

  • runtime: add TaskMeta::spawn_location tracking where a task was spawned
    (#​7440)

v1.46.0: Tokio v1.46.0

Compare Source

1.46.0 (July 2nd, 2025)

Fixed
  • net: fixed TcpStream::shutdown incorrectly returning an error on macOS (#​7290)

Added

  • sync: mpsc::OwnedPermit::{same_channel, same_channel_as_sender} methods (#​7389)
  • macros: biased option for join! and try_join!, similar to select! (#​7307)
  • net: support for cygwin (#​7393)
  • net: support pope::OpenOptions::read_write on Android (#​7426)
  • net: add Clone implementation for net::unix::SocketAddr (#​7422)

Changed

  • runtime: eliminate unnecessary lfence while operating on queue::Local<T> (#​7340)
  • task: disallow blocking in LocalSet::{poll,drop} (#​7372)

Unstable

  • runtime: add TaskMeta::spawn_location tracking where a task was spawned (#​7417)
  • runtime: removed borrow from LocalOptions parameter to runtime::Builder::build_local (#​7346)

Documented

  • io: clarify behavior of seeking when start_seek is not used (#​7366)
  • io: document cancellation safety of AsyncWriteExt::flush (#​7364)
  • net: fix docs for recv_buffer_size method (#​7336)
  • net: fix broken link of RawFd in TcpSocket docs (#​7416)
  • net: update AsRawFd doc link to current Rust stdlib location (#​7429)
  • readme: fix double period in reactor description (#​7363)
  • runtime: add doc note that on_*_task_poll is unstable (#​7311)
  • sync: update broadcast docs on allocation failure (#​7352)
  • time: add a missing panic scenario of time::advance (#​7394)

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)

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


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` | | [async-trait](https://github.com/dtolnay/async-trait) | dependencies | patch | `0.1.87` -> `0.1.88` | | [rand](https://rust-random.github.io/book) ([source](https://github.com/rust-random/rand)) | dependencies | patch | `0.9.0` -> `0.9.1` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.43.0` -> `1.46.1` | | [tokio-util](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | dependencies | patch | `0.7.13` -> `0.7.15` | --- ### 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>dtolnay/async-trait (async-trait)</summary> ### [`v0.1.88`](https://github.com/dtolnay/async-trait/releases/tag/0.1.88) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.87...0.1.88) - Fix lifetime bounding on generic parameters that have cfg ([#&#8203;289](https://github.com/dtolnay/async-trait/issues/289)) </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)) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.46.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.46.1): Tokio v1.46.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.46.0...tokio-1.46.1) ### 1.46.1 (July 4th, 2025) This release fixes incorrect spawn locations in runtime task hooks for tasks spawned using `tokio::spawn` rather than `Runtime::spawn`. This issue only effected the spawn location in `TaskMeta::spawned_at`, and did not effect task locations in Tracing events. #### Unstable - runtime: add `TaskMeta::spawn_location` tracking where a task was spawned ([#&#8203;7440]) [#&#8203;7440]: https://github.com/tokio-rs/tokio/pull/7440 ### [`v1.46.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.46.0): Tokio v1.46.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.45.1...tokio-1.46.0) ### 1.46.0 (July 2nd, 2025) ##### Fixed - net: fixed `TcpStream::shutdown` incorrectly returning an error on macOS ([#&#8203;7290]) #### Added - sync: `mpsc::OwnedPermit::{same_channel, same_channel_as_sender}` methods ([#&#8203;7389]) - macros: `biased` option for `join!` and `try_join!`, similar to `select!` ([#&#8203;7307]) - net: support for cygwin ([#&#8203;7393]) - net: support `pope::OpenOptions::read_write` on Android ([#&#8203;7426]) - net: add `Clone` implementation for `net::unix::SocketAddr` ([#&#8203;7422]) #### Changed - runtime: eliminate unnecessary lfence while operating on `queue::Local<T>` ([#&#8203;7340]) - task: disallow blocking in `LocalSet::{poll,drop}` ([#&#8203;7372]) #### Unstable - runtime: add `TaskMeta::spawn_location` tracking where a task was spawned ([#&#8203;7417]) - runtime: removed borrow from `LocalOptions` parameter to `runtime::Builder::build_local` ([#&#8203;7346]) #### Documented - io: clarify behavior of seeking when `start_seek` is not used ([#&#8203;7366]) - io: document cancellation safety of `AsyncWriteExt::flush` ([#&#8203;7364]) - net: fix docs for `recv_buffer_size` method ([#&#8203;7336]) - net: fix broken link of `RawFd` in `TcpSocket` docs ([#&#8203;7416]) - net: update `AsRawFd` doc link to current Rust stdlib location ([#&#8203;7429]) - readme: fix double period in reactor description ([#&#8203;7363]) - runtime: add doc note that `on_*_task_poll` is unstable ([#&#8203;7311]) - sync: update broadcast docs on allocation failure ([#&#8203;7352]) - time: add a missing panic scenario of `time::advance` ([#&#8203;7394]) [#&#8203;7290]: https://github.com/tokio-rs/tokio/pull/7290 [#&#8203;7307]: https://github.com/tokio-rs/tokio/pull/7307 [#&#8203;7311]: https://github.com/tokio-rs/tokio/pull/7311 [#&#8203;7336]: https://github.com/tokio-rs/tokio/pull/7336 [#&#8203;7340]: https://github.com/tokio-rs/tokio/pull/7340 [#&#8203;7346]: https://github.com/tokio-rs/tokio/pull/7346 [#&#8203;7352]: https://github.com/tokio-rs/tokio/pull/7352 [#&#8203;7363]: https://github.com/tokio-rs/tokio/pull/7363 [#&#8203;7364]: https://github.com/tokio-rs/tokio/pull/7364 [#&#8203;7366]: https://github.com/tokio-rs/tokio/pull/7366 [#&#8203;7372]: https://github.com/tokio-rs/tokio/pull/7372 [#&#8203;7389]: https://github.com/tokio-rs/tokio/pull/7389 [#&#8203;7393]: https://github.com/tokio-rs/tokio/pull/7393 [#&#8203;7394]: https://github.com/tokio-rs/tokio/pull/7394 [#&#8203;7416]: https://github.com/tokio-rs/tokio/pull/7416 [#&#8203;7422]: https://github.com/tokio-rs/tokio/pull/7422 [#&#8203;7426]: https://github.com/tokio-rs/tokio/pull/7426 [#&#8203;7429]: https://github.com/tokio-rs/tokio/pull/7429 [#&#8203;7417]: https://github.com/tokio-rs/tokio/pull/7417 ### [`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 ### [`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> --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTUuMiIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-26 00:04:38 +01:00
kjuulh force-pushed renovate/all from 9931ba271c to a82c6d6791 2025-04-06 02:33:52 +02:00 Compare
kjuulh force-pushed renovate/all from a82c6d6791 to a07473ac0b 2025-04-06 05:33:25 +02:00 Compare
kjuulh force-pushed renovate/all from a07473ac0b to 8224c745d4 2025-04-07 02:33:09 +02:00 Compare
kjuulh force-pushed renovate/all from 8224c745d4 to 7f8b0f96d8 2025-04-07 05:30:53 +02:00 Compare
kjuulh force-pushed renovate/all from 7f8b0f96d8 to 0e119b000e 2025-04-08 02:32:56 +02:00 Compare
kjuulh force-pushed renovate/all from 0e119b000e to a66c5c59f9 2025-04-08 05:33:32 +02:00 Compare
kjuulh force-pushed renovate/all from a66c5c59f9 to ba1ea8b01f 2025-04-09 02:33:05 +02:00 Compare
kjuulh force-pushed renovate/all from ba1ea8b01f to 5d2315bcc9 2025-04-09 05:31:13 +02:00 Compare
kjuulh force-pushed renovate/all from 5d2315bcc9 to b9eb389d2e 2025-04-10 02:33:55 +02:00 Compare
kjuulh force-pushed renovate/all from b9eb389d2e to 5a64fb2fb4 2025-04-10 05:31:30 +02:00 Compare
kjuulh force-pushed renovate/all from 5a64fb2fb4 to 6dcdb087a5 2025-04-11 02:33:22 +02:00 Compare
kjuulh force-pushed renovate/all from 6dcdb087a5 to 106495904c 2025-04-11 05:31:46 +02:00 Compare
kjuulh force-pushed renovate/all from 106495904c to 9294e3ad77 2025-04-12 02:36:45 +02:00 Compare
kjuulh force-pushed renovate/all from 9294e3ad77 to 6e41f90a25 2025-04-12 05:33:18 +02:00 Compare
kjuulh force-pushed renovate/all from 6e41f90a25 to 28af0ed627 2025-04-13 02:34:22 +02:00 Compare
kjuulh force-pushed renovate/all from 28af0ed627 to e30c33a509 2025-04-13 05:32:58 +02:00 Compare
kjuulh force-pushed renovate/all from e30c33a509 to 994ffa001b 2025-04-14 02:32:18 +02:00 Compare
kjuulh force-pushed renovate/all from 994ffa001b to 3150b34217 2025-04-14 05:33:52 +02:00 Compare
kjuulh force-pushed renovate/all from 3150b34217 to 3606f31be6 2025-04-18 02:33:21 +02:00 Compare
kjuulh force-pushed renovate/all from 3606f31be6 to cb2f0754b4 2025-04-18 05:30:42 +02:00 Compare
kjuulh force-pushed renovate/all from cb2f0754b4 to 45bb8e4c13 2025-04-19 02:33:55 +02:00 Compare
kjuulh force-pushed renovate/all from 45bb8e4c13 to 7b8239ca61 2025-04-19 05:33:02 +02:00 Compare
kjuulh force-pushed renovate/all from 7b8239ca61 to 2ec45e1c72 2025-04-20 02:32:56 +02:00 Compare
kjuulh force-pushed renovate/all from 2ec45e1c72 to d3a8533ef7 2025-04-20 05:31:10 +02:00 Compare
kjuulh force-pushed renovate/all from d3a8533ef7 to 86d2dbde71 2025-04-21 02:33:00 +02:00 Compare
kjuulh force-pushed renovate/all from 86d2dbde71 to 1c0cebacce 2025-04-21 05:30:49 +02:00 Compare
kjuulh force-pushed renovate/all from 1c0cebacce to 06553436a5 2025-04-22 02:35:21 +02:00 Compare
kjuulh force-pushed renovate/all from 06553436a5 to 0b0aa9d57d 2025-04-22 05:32:28 +02:00 Compare
kjuulh force-pushed renovate/all from 0b0aa9d57d to eee8a0e17e 2025-04-23 02:34:03 +02:00 Compare
kjuulh force-pushed renovate/all from eee8a0e17e to c0ca8f2213 2025-04-23 05:33:26 +02:00 Compare
kjuulh force-pushed renovate/all from c0ca8f2213 to f7c8652378 2025-04-24 02:32:18 +02:00 Compare
kjuulh force-pushed renovate/all from f7c8652378 to 86e7250821 2025-04-24 05:31:34 +02:00 Compare
kjuulh force-pushed renovate/all from 86e7250821 to a70b9aeb69 2025-04-25 02:34:17 +02:00 Compare
kjuulh force-pushed renovate/all from a70b9aeb69 to 0684a1349e 2025-04-25 05:31:47 +02:00 Compare
kjuulh force-pushed renovate/all from 0684a1349e to 6a9defeabc 2025-04-26 02:34:46 +02:00 Compare
kjuulh force-pushed renovate/all from 6a9defeabc to 7475bfdf3a 2025-04-26 05:32:45 +02:00 Compare
kjuulh force-pushed renovate/all from 7475bfdf3a to b0da261630 2025-04-27 02:32:26 +02:00 Compare
kjuulh force-pushed renovate/all from b0da261630 to 498a1e8291 2025-04-27 05:31:53 +02:00 Compare
kjuulh force-pushed renovate/all from 498a1e8291 to d3b8d289a9 2025-04-28 02:33:52 +02:00 Compare
kjuulh force-pushed renovate/all from d3b8d289a9 to cb6f8e21c0 2025-04-28 05:35:20 +02:00 Compare
kjuulh force-pushed renovate/all from cb6f8e21c0 to 784d8f1ad1 2025-04-29 02:37:30 +02:00 Compare
kjuulh force-pushed renovate/all from 784d8f1ad1 to b162526649 2025-04-29 05:35:46 +02:00 Compare
kjuulh force-pushed renovate/all from b162526649 to 5c52d4a198 2025-04-30 02:35:38 +02:00 Compare
kjuulh force-pushed renovate/all from 5c52d4a198 to 1a316356e3 2025-04-30 05:33:00 +02:00 Compare
kjuulh force-pushed renovate/all from 1a316356e3 to f99b181e58 2025-05-01 02:33:29 +02:00 Compare
kjuulh force-pushed renovate/all from f99b181e58 to 6b1f7bd285 2025-05-01 05:31:54 +02:00 Compare
kjuulh force-pushed renovate/all from 6b1f7bd285 to ba617cdc80 2025-05-02 02:32:43 +02:00 Compare
kjuulh force-pushed renovate/all from ba617cdc80 to 4fbfdf4f31 2025-05-02 05:31:57 +02:00 Compare
kjuulh force-pushed renovate/all from 4fbfdf4f31 to 818db83e06 2025-05-03 02:36:52 +02:00 Compare
kjuulh force-pushed renovate/all from 818db83e06 to c91d36d895 2025-05-03 05:35:13 +02:00 Compare
kjuulh force-pushed renovate/all from c91d36d895 to 764b10e0b0 2025-05-04 02:32:07 +02:00 Compare
kjuulh force-pushed renovate/all from 764b10e0b0 to 50b4aefe80 2025-05-04 05:31:10 +02:00 Compare
kjuulh force-pushed renovate/all from 50b4aefe80 to 3f1147a821 2025-05-05 02:31:37 +02:00 Compare
kjuulh force-pushed renovate/all from 3f1147a821 to ef61ffcd73 2025-05-05 05:31:00 +02:00 Compare
kjuulh force-pushed renovate/all from ef61ffcd73 to 835296a18e 2025-05-06 02:32:24 +02:00 Compare
kjuulh force-pushed renovate/all from 835296a18e to 3e5d612a49 2025-05-06 05:32:25 +02:00 Compare
kjuulh force-pushed renovate/all from 3e5d612a49 to 5840e0fd53 2025-05-07 02:35:12 +02:00 Compare
kjuulh force-pushed renovate/all from 5840e0fd53 to d014f3a891 2025-05-25 02:34:25 +02:00 Compare
kjuulh force-pushed renovate/all from d014f3a891 to 0f12305b3b 2025-05-25 05:34:14 +02:00 Compare
kjuulh force-pushed renovate/all from 0f12305b3b to b719c97071 2025-05-26 02:33:42 +02:00 Compare
kjuulh force-pushed renovate/all from b719c97071 to e5b5543915 2025-05-26 05:32:01 +02:00 Compare
kjuulh force-pushed renovate/all from e5b5543915 to debf0ff4f5 2025-05-27 02:31:59 +02:00 Compare
kjuulh force-pushed renovate/all from debf0ff4f5 to c2ec29c0e5 2025-05-27 05:32:00 +02:00 Compare
kjuulh force-pushed renovate/all from c2ec29c0e5 to 00a8937209 2025-05-28 02:36:56 +02:00 Compare
kjuulh force-pushed renovate/all from 00a8937209 to 405d3df831 2025-05-28 05:32:38 +02:00 Compare
kjuulh force-pushed renovate/all from 405d3df831 to 9949b537d3 2025-05-29 02:33:49 +02:00 Compare
kjuulh force-pushed renovate/all from 9949b537d3 to 9ee224c6ac 2025-05-29 05:31:00 +02:00 Compare
kjuulh force-pushed renovate/all from 9ee224c6ac to 4e011003f9 2025-05-30 02:34:34 +02:00 Compare
kjuulh force-pushed renovate/all from 4e011003f9 to 0175b15e4a 2025-05-30 05:31:28 +02:00 Compare
kjuulh force-pushed renovate/all from 0175b15e4a to 4a9a1278e3 2025-05-31 02:33:38 +02:00 Compare
kjuulh force-pushed renovate/all from 4a9a1278e3 to 02ddb56239 2025-05-31 05:31:15 +02:00 Compare
kjuulh force-pushed renovate/all from 02ddb56239 to 0fde597b07 2025-06-01 02:32:32 +02:00 Compare
kjuulh force-pushed renovate/all from 0fde597b07 to 6348e65cbc 2025-06-01 05:31:33 +02:00 Compare
kjuulh force-pushed renovate/all from 6348e65cbc to bdd56299ee 2025-06-02 02:32:48 +02:00 Compare
kjuulh force-pushed renovate/all from bdd56299ee to 9b19f688a8 2025-06-02 05:32:01 +02:00 Compare
kjuulh force-pushed renovate/all from 9b19f688a8 to 531689a387 2025-06-03 02:34:07 +02:00 Compare
kjuulh force-pushed renovate/all from 531689a387 to f9b149e87d 2025-06-03 05:32:56 +02:00 Compare
kjuulh force-pushed renovate/all from f9b149e87d to e714397fca 2025-06-04 02:35:34 +02:00 Compare
kjuulh force-pushed renovate/all from e714397fca to 5e83620756 2025-06-04 05:31:25 +02:00 Compare
kjuulh force-pushed renovate/all from 5e83620756 to 6f54c90ba3 2025-06-05 02:36:32 +02:00 Compare
kjuulh force-pushed renovate/all from 6f54c90ba3 to e9058487aa 2025-06-05 05:34:48 +02:00 Compare
kjuulh force-pushed renovate/all from e9058487aa to 1c2273c085 2025-06-06 02:36:03 +02:00 Compare
kjuulh force-pushed renovate/all from 1c2273c085 to 201fd99bb4 2025-06-06 05:35:07 +02:00 Compare
kjuulh force-pushed renovate/all from 201fd99bb4 to 37e9702cef 2025-06-07 02:35:37 +02:00 Compare
kjuulh force-pushed renovate/all from 37e9702cef to 34807fcce7 2025-06-07 05:34:26 +02:00 Compare
kjuulh force-pushed renovate/all from 34807fcce7 to 6d3aec07a0 2025-06-08 02:35:51 +02:00 Compare
kjuulh force-pushed renovate/all from 6d3aec07a0 to 72ff6afdc9 2025-06-08 05:34:48 +02:00 Compare
kjuulh force-pushed renovate/all from 72ff6afdc9 to 64a0d6efca 2025-06-09 02:36:59 +02:00 Compare
kjuulh force-pushed renovate/all from 64a0d6efca to 15c7fba85c 2025-06-09 05:34:46 +02:00 Compare
kjuulh force-pushed renovate/all from 15c7fba85c to ebe1a82cc1 2025-06-10 02:40:03 +02:00 Compare
kjuulh force-pushed renovate/all from ebe1a82cc1 to 86c9beecc1 2025-06-10 05:36:57 +02:00 Compare
kjuulh force-pushed renovate/all from 86c9beecc1 to ee8c622672 2025-06-11 02:37:05 +02:00 Compare
kjuulh force-pushed renovate/all from ee8c622672 to 5dc5db457b 2025-06-11 05:35:40 +02:00 Compare
kjuulh force-pushed renovate/all from 5dc5db457b to de93fd92f4 2025-06-12 02:39:26 +02:00 Compare
kjuulh force-pushed renovate/all from de93fd92f4 to f2e0233eb2 2025-06-12 05:34:59 +02:00 Compare
kjuulh force-pushed renovate/all from f2e0233eb2 to 0cd061abf9 2025-06-13 02:37:05 +02:00 Compare
kjuulh force-pushed renovate/all from 0cd061abf9 to d1ff7bfce2 2025-06-13 05:35:19 +02:00 Compare
kjuulh force-pushed renovate/all from d1ff7bfce2 to 1412aed5ec 2025-06-18 02:34:15 +02:00 Compare
kjuulh force-pushed renovate/all from 1412aed5ec to df3dc6b843 2025-06-18 05:31:44 +02:00 Compare
kjuulh force-pushed renovate/all from df3dc6b843 to aa37dfbf04 2025-06-19 02:33:44 +02:00 Compare
kjuulh force-pushed renovate/all from aa37dfbf04 to 1efbdadd2b 2025-06-19 05:32:06 +02:00 Compare
kjuulh force-pushed renovate/all from 1efbdadd2b to 5f0d18e2b4 2025-06-20 02:32:39 +02:00 Compare
kjuulh force-pushed renovate/all from 5f0d18e2b4 to 4aa9f0402d 2025-06-20 05:31:29 +02:00 Compare
kjuulh force-pushed renovate/all from 4aa9f0402d to ba5bf25bfd 2025-06-21 02:32:15 +02:00 Compare
kjuulh force-pushed renovate/all from ba5bf25bfd to c3e7f742e6 2025-06-21 05:31:22 +02:00 Compare
kjuulh force-pushed renovate/all from c3e7f742e6 to f87ed7906b 2025-06-22 02:32:12 +02:00 Compare
kjuulh force-pushed renovate/all from f87ed7906b to ed21bc7c0c 2025-06-22 05:31:30 +02:00 Compare
kjuulh force-pushed renovate/all from ed21bc7c0c to 59b1364502 2025-06-23 02:32:36 +02:00 Compare
kjuulh force-pushed renovate/all from 59b1364502 to 7e48a4798e 2025-06-23 05:31:46 +02:00 Compare
kjuulh force-pushed renovate/all from 7e48a4798e to 3d942d1efb 2025-06-24 02:32:42 +02:00 Compare
kjuulh force-pushed renovate/all from 3d942d1efb to bb9d895e7d 2025-06-24 05:31:51 +02:00 Compare
kjuulh force-pushed renovate/all from bb9d895e7d to 8874922da2 2025-06-25 02:33:40 +02:00 Compare
kjuulh force-pushed renovate/all from 8874922da2 to c724dfcfd6 2025-06-25 05:32:22 +02:00 Compare
kjuulh force-pushed renovate/all from c724dfcfd6 to a8c7b5222f 2025-06-26 02:33:43 +02:00 Compare
kjuulh force-pushed renovate/all from a8c7b5222f to 45c63d63c1 2025-07-03 02:37:13 +02:00 Compare
kjuulh force-pushed renovate/all from 45c63d63c1 to 0adb9003d8 2025-07-03 05:35:21 +02:00 Compare
kjuulh force-pushed renovate/all from 0adb9003d8 to 1d992805b1 2025-07-04 02:34:24 +02:00 Compare
kjuulh force-pushed renovate/all from 1d992805b1 to e2531bd891 2025-07-04 05:32:38 +02:00 Compare
kjuulh force-pushed renovate/all from e2531bd891 to 5035a16303 2025-07-05 02:44:39 +02:00 Compare
kjuulh force-pushed renovate/all from 5035a16303 to c90f9b09ea 2025-07-05 05:35:16 +02:00 Compare
kjuulh force-pushed renovate/all from c90f9b09ea to 2f67c6400f 2025-07-06 02:33:54 +02:00 Compare
kjuulh force-pushed renovate/all from 2f67c6400f to ea91a06698 2025-07-06 05:33:56 +02:00 Compare
kjuulh force-pushed renovate/all from ea91a06698 to c4ebcf8f52 2025-07-07 02:35:13 +02:00 Compare
kjuulh force-pushed renovate/all from c4ebcf8f52 to f1e077078d 2025-07-07 05:34:57 +02:00 Compare
kjuulh force-pushed renovate/all from f1e077078d to 7e7699b293 2025-07-08 02:34:56 +02:00 Compare
kjuulh force-pushed renovate/all from 7e7699b293 to 448208296f 2025-07-08 05:33:43 +02:00 Compare
kjuulh force-pushed renovate/all from 448208296f to 30eea5b666 2025-07-09 02:36:37 +02:00 Compare
kjuulh force-pushed renovate/all from 30eea5b666 to ef46b5533f 2025-07-09 05:33:21 +02:00 Compare
kjuulh force-pushed renovate/all from ef46b5533f to 9fa0fdd121 2025-07-10 02:36:08 +02:00 Compare
kjuulh force-pushed renovate/all from 9fa0fdd121 to 6fb1f0d1cf 2025-07-10 05:35:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6fb1f0d1cf to 4db5db61a3 2025-07-11 02:37:41 +02:00 Compare
kjuulh force-pushed renovate/all from 4db5db61a3 to 5d634067ed 2025-07-11 05:36:09 +02:00 Compare
kjuulh force-pushed renovate/all from 5d634067ed to a8421c4065 2025-07-12 02:34:17 +02:00 Compare
kjuulh force-pushed renovate/all from a8421c4065 to 3718722bbe 2025-07-12 05:33:29 +02:00 Compare
kjuulh force-pushed renovate/all from 3718722bbe to 1ac0f9555e 2025-07-13 02:34:17 +02:00 Compare
kjuulh force-pushed renovate/all from 1ac0f9555e to 6f663d4b6e 2025-07-13 05:33:06 +02:00 Compare
kjuulh force-pushed renovate/all from 6f663d4b6e to 0e94e28a81 2025-07-14 02:34:50 +02:00 Compare
kjuulh force-pushed renovate/all from 0e94e28a81 to 824b99765c 2025-07-14 05:33:13 +02:00 Compare
kjuulh force-pushed renovate/all from 824b99765c to e5a074fbc2 2025-07-15 02:34:31 +02:00 Compare
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
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/mad#30
No description provided.