fix(deps): update all dependencies #67

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.96 -> 1.0.97
clap workspace.dependencies patch 4.5.30 -> 4.5.34
reqwest dependencies patch 0.12.12 -> 0.12.15
serde_json dependencies patch 1.0.139 -> 1.0.140
tokio (source) workspace.dependencies minor 1.43.0 -> 1.44.1

Release Notes

dtolnay/anyhow (anyhow)

v1.0.97

Compare Source

  • Documentation improvements
clap-rs/clap (clap)

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>
seanmonstar/reqwest (reqwest)

v0.12.15

Compare Source

  • Fix Windows to support both ProxyOverride and NO_PROXY.
  • Fix http3 to support streaming response bodies.
  • Fix http3 dependency from public API misuse.

v0.12.14

Compare Source

  • Fix missing fetch_mode_no_cors(), marking as deprecated when not on WASM.

v0.12.13

Compare Source

  • Add Form::into_reader() for blocking multipart forms.
  • Add Form::into_stream() for async multipart forms.
  • Add support for SOCKS4a proxies.
  • Fix decoding responses with multiple zstd frames.
  • Fix RequestBuilder::form() from overwriting a previously set Content-Type header, like the other builder methods.
  • Fix cloning of request timeout in blocking::Request.
  • Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
  • Fix Windows system proxy to use ProxyOverride as a NO_PROXY value.
  • Fix blocking read to correctly reserve and zero read buffer.
  • (wasm) Add support for request timeouts.
  • (wasm) Fix Error::is_timeout() to return true when from a request timeout.
serde-rs/json (serde_json)

v1.0.140

Compare Source

  • Documentation improvements
tokio-rs/tokio (tokio)

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)

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [anyhow](https://github.com/dtolnay/anyhow) | workspace.dependencies | patch | `1.0.96` -> `1.0.97` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.30` -> `4.5.34` | | [reqwest](https://github.com/seanmonstar/reqwest) | dependencies | patch | `0.12.12` -> `0.12.15` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.139` -> `1.0.140` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.43.0` -> `1.44.1` | --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`v1.0.97`](https://github.com/dtolnay/anyhow/releases/tag/1.0.97) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.96...1.0.97) - Documentation improvements </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.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>` </details> <details> <summary>seanmonstar/reqwest (reqwest)</summary> ### [`v0.12.15`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01215) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.14...v0.12.15) - Fix Windows to support both `ProxyOverride` and `NO_PROXY`. - Fix http3 to support streaming response bodies. - Fix http3 dependency from public API misuse. ### [`v0.12.14`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01214) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.13...v0.12.14) - Fix missing `fetch_mode_no_cors()`, marking as deprecated when not on WASM. ### [`v0.12.13`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01213) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.12...v0.12.13) - Add `Form::into_reader()` for blocking `multipart` forms. - Add `Form::into_stream()` for async `multipart` forms. - Add support for SOCKS4a proxies. - Fix decoding responses with multiple zstd frames. - Fix `RequestBuilder::form()` from overwriting a previously set `Content-Type` header, like the other builder methods. - Fix cloning of request timeout in `blocking::Request`. - Fix http3 synchronization of connection creation, reducing unneccesary extra connections. - Fix Windows system proxy to use `ProxyOverride` as a `NO_PROXY` value. - Fix blocking read to correctly reserve and zero read buffer. - (wasm) Add support for request timeouts. - (wasm) Fix `Error::is_timeout()` to return true when from a request timeout. </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.140`](https://github.com/serde-rs/json/releases/tag/v1.0.140) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.139...v1.0.140) - Documentation improvements </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.44.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.0...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 </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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjIxOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-02-25 02:37:38 +01:00
chore(deps): update rust crate clap to v4.5.31
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
e7338a32dc
kjuulh changed title from chore(deps): update rust crate clap to v4.5.31 to chore(deps): update all dependencies 2025-03-03 06:35:46 +01:00
kjuulh force-pushed renovate/all from e7338a32dc to d59b8e20ec 2025-03-03 06:35:46 +01:00 Compare
kjuulh force-pushed renovate/all from d59b8e20ec to 959c45b5e3 2025-03-04 02:42:26 +01:00 Compare
kjuulh force-pushed renovate/all from 959c45b5e3 to 6003a6336f 2025-03-04 06:40:07 +01:00 Compare
kjuulh force-pushed renovate/all from 6003a6336f to 230dc084f1 2025-03-05 02:38:04 +01:00 Compare
kjuulh force-pushed renovate/all from 230dc084f1 to 3609a20e38 2025-03-05 06:36:06 +01:00 Compare
kjuulh force-pushed renovate/all from 3609a20e38 to 2b77105813 2025-03-06 02:38:34 +01:00 Compare
kjuulh force-pushed renovate/all from 2b77105813 to a1401bb156 2025-03-06 06:37:43 +01:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2025-03-25 23:54:03 +01:00
kjuulh force-pushed renovate/all from a1401bb156 to ad795c6914 2025-03-25 23:54:04 +01:00 Compare
kjuulh force-pushed renovate/all from ad795c6914 to 1022816d4b 2025-03-26 21:03:26 +01:00 Compare
kjuulh force-pushed renovate/all from 1022816d4b to 0e7cd20ac8 2025-03-26 21:36:34 +01:00 Compare
kjuulh force-pushed renovate/all from 0e7cd20ac8 to c85bbd4306 2025-03-26 22:07:13 +01:00 Compare
kjuulh force-pushed renovate/all from c85bbd4306 to ea66314141 2025-03-26 22:36:26 +01:00 Compare
kjuulh force-pushed renovate/all from ea66314141 to c241931c02 2025-03-26 23:06:45 +01:00 Compare
kjuulh force-pushed renovate/all from c241931c02 to 374dac2b21 2025-03-26 23:37:22 +01:00 Compare
kjuulh force-pushed renovate/all from 374dac2b21 to a1bceb3f57 2025-03-27 00:08:31 +01:00 Compare
kjuulh force-pushed renovate/all from a1bceb3f57 to d97b6235e5 2025-03-27 00:38:45 +01:00 Compare
kjuulh force-pushed renovate/all from d97b6235e5 to 5d8c898567 2025-03-27 01:07:48 +01:00 Compare
kjuulh force-pushed renovate/all from 5d8c898567 to 5ccbd58c7c 2025-03-27 01:35:30 +01:00 Compare
kjuulh force-pushed renovate/all from 5ccbd58c7c to 5beb93757f 2025-03-27 02:04:21 +01:00 Compare
kjuulh force-pushed renovate/all from 5beb93757f to 54128f9bcf 2025-03-27 02:32:40 +01:00 Compare
kjuulh force-pushed renovate/all from 54128f9bcf to 33e43ade52 2025-03-27 03:03:42 +01:00 Compare
kjuulh force-pushed renovate/all from 33e43ade52 to 85e6947252 2025-03-27 03:36:19 +01:00 Compare
kjuulh force-pushed renovate/all from 85e6947252 to 0122c8e033 2025-03-27 04:08:00 +01:00 Compare
kjuulh force-pushed renovate/all from 0122c8e033 to f86a8320ae 2025-03-27 04:37:41 +01:00 Compare
kjuulh force-pushed renovate/all from f86a8320ae to 656824b9d3 2025-03-27 05:10:38 +01:00 Compare
kjuulh force-pushed renovate/all from 656824b9d3 to 163ace8b3e 2025-03-27 05:41:43 +01:00 Compare
kjuulh force-pushed renovate/all from 163ace8b3e to 3a880e0de4 2025-03-27 06:12:01 +01:00 Compare
kjuulh force-pushed renovate/all from 3a880e0de4 to f17edd60c5 2025-03-27 06:40:12 +01:00 Compare
kjuulh force-pushed renovate/all from f17edd60c5 to c1251dea18 2025-03-27 07:09:49 +01:00 Compare
kjuulh force-pushed renovate/all from c1251dea18 to 1d0e5076c7 2025-03-27 07:38:25 +01:00 Compare
kjuulh force-pushed renovate/all from 1d0e5076c7 to 941b22c67b 2025-03-27 08:07:26 +01:00 Compare
kjuulh force-pushed renovate/all from 941b22c67b to c4b2cf8d4d 2025-03-27 08:36:02 +01:00 Compare
kjuulh force-pushed renovate/all from c4b2cf8d4d to 0601f22cd8 2025-03-27 09:04:54 +01:00 Compare
kjuulh force-pushed renovate/all from 0601f22cd8 to 0e226947fd 2025-03-27 09:33:09 +01:00 Compare
kjuulh force-pushed renovate/all from 0e226947fd to 718d9daf2b 2025-03-27 10:02:37 +01:00 Compare
kjuulh force-pushed renovate/all from 718d9daf2b to 9b341d9bcb 2025-03-27 10:26:46 +01:00 Compare
kjuulh force-pushed renovate/all from 9b341d9bcb to df86a01dce 2025-03-27 11:02:19 +01:00 Compare
kjuulh force-pushed renovate/all from df86a01dce to 1dadddab51 2025-03-27 11:30:57 +01:00 Compare
kjuulh force-pushed renovate/all from 1dadddab51 to 16a971a060 2025-03-27 12:00:08 +01:00 Compare
kjuulh force-pushed renovate/all from 16a971a060 to 79ed837d43 2025-03-27 12:29:12 +01:00 Compare
kjuulh force-pushed renovate/all from 79ed837d43 to f8fe6c58d5 2025-03-27 12:59:01 +01:00 Compare
kjuulh force-pushed renovate/all from f8fe6c58d5 to 4b4fdc5fbe 2025-03-27 13:47:21 +01:00 Compare
kjuulh force-pushed renovate/all from 4b4fdc5fbe to e1bf1fb719 2025-03-27 14:24:15 +01:00 Compare
kjuulh force-pushed renovate/all from e1bf1fb719 to 43307fe506 2025-03-27 14:54:30 +01:00 Compare
kjuulh force-pushed renovate/all from 43307fe506 to 83558283ef 2025-03-27 15:27:17 +01:00 Compare
kjuulh force-pushed renovate/all from 83558283ef to e5cbdfbdf4 2025-03-27 16:03:10 +01:00 Compare
kjuulh force-pushed renovate/all from e5cbdfbdf4 to 05f5730f9f 2025-03-27 16:31:57 +01:00 Compare
kjuulh force-pushed renovate/all from 05f5730f9f to 7c9e1dbc95 2025-03-27 17:01:54 +01:00 Compare
kjuulh force-pushed renovate/all from 7c9e1dbc95 to 64aebf4c96 2025-03-27 17:32:33 +01:00 Compare
kjuulh force-pushed renovate/all from 64aebf4c96 to ad0a8d4dcf 2025-03-27 18:03:50 +01:00 Compare
kjuulh force-pushed renovate/all from ad0a8d4dcf to fc3c434b72 2025-03-27 18:34:37 +01:00 Compare
kjuulh force-pushed renovate/all from fc3c434b72 to e9b85a72f6 2025-03-27 19:04:39 +01:00 Compare
kjuulh force-pushed renovate/all from e9b85a72f6 to 5aa5c33a5c 2025-03-27 19:32:55 +01:00 Compare
kjuulh force-pushed renovate/all from 5aa5c33a5c to 7ecb658954 2025-03-27 20:02:16 +01:00 Compare
kjuulh force-pushed renovate/all from 7ecb658954 to f793f83d12 2025-03-27 20:30:40 +01:00 Compare
kjuulh force-pushed renovate/all from f793f83d12 to e244b51c24 2025-03-27 21:00:28 +01:00 Compare
kjuulh force-pushed renovate/all from e244b51c24 to 5d1424ec5b 2025-03-27 21:29:02 +01:00 Compare
kjuulh force-pushed renovate/all from 5d1424ec5b to 3e2673e3b0 2025-03-27 21:59:44 +01:00 Compare
kjuulh force-pushed renovate/all from 3e2673e3b0 to 35c51cea06 2025-03-28 23:27:40 +01:00 Compare
kjuulh force-pushed renovate/all from 35c51cea06 to 4eb179a861 2025-03-29 02:22:21 +01:00 Compare
kjuulh force-pushed renovate/all from 4eb179a861 to e576a9bd6d 2025-03-29 05:22:58 +01:00 Compare
kjuulh force-pushed renovate/all from e576a9bd6d to 386f1b65f7 2025-03-30 05:24:00 +02:00 Compare
kjuulh force-pushed renovate/all from 386f1b65f7 to a39668378e 2025-03-31 02:21:53 +02:00 Compare
kjuulh force-pushed renovate/all from a39668378e to 4904f1d3de 2025-03-31 05:22:22 +02:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all:renovate/all
git checkout renovate/all
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/drone-templater#67
No description provided.