Update all dependencies #51

Merged
kjuulh merged 1 commits from renovate/all into main 2023-02-28 15:57:19 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
async-trait workspace.dependencies patch 0.1.60 -> 0.1.64
clap dependencies minor 4.0.32 -> 4.1.8
git2 dependencies minor 0.15.0 -> 0.16.1
octocrab dependencies minor 0.17.0 -> 0.18.1
reqwest dependencies patch 0.11.13 -> 0.11.14
serde_yaml dependencies patch 0.9.16 -> 0.9.17
tokio (source) workspace.dependencies minor 1.23.0 -> 1.25.0
uuid dependencies minor ^1.2 -> ^1.3

Release Notes

dtolnay/async-trait

v0.1.64

Compare Source

  • Suppress async_yields_async clippy correctness lint in generated code (#​236, #​237)

v0.1.63

Compare Source

  • Do not require Sync on unused shared reference arguments (#​232, #​233)
  • Make expansion of nested _ and .. patterns edition independent (#​234, #​235)

v0.1.62

Compare Source

  • Improve error message involving elided lifetimes (#​229)

v0.1.61

Compare Source

  • Fix async function signatures that involve #[cfg(...)] attributes on parameters (#​227, thanks @​azriel91)
clap-rs/clap

v4.1.8

Compare Source

Fixes
  • (derive) Don't deny lints on the users behalf

v4.1.7

Compare Source

Fixes
  • (derive) Hide some nightly clippy warnings

v4.1.6

Compare Source

Fixes
  • (help) Don't show long help for --help just because hidden possible values include a description

v4.1.5

Compare Source

Fixes
  • (help) Don't show long help for --help just because a hidden arg has a possible value with a description

v4.1.4

Compare Source

Fixes
  • (help) Respect disable_colored_help when using arg_required_else_help
Performance
  • Speed up compiling arg! macro

v4.1.3

Compare Source

Fixes
  • (error) Improve suggested flag/value/subcommand when two share a long preifx
  • (error) When suggesting one of several subcommands, use the plural subcommands, rather than subcommand

v4.1.2

Compare Source

Fixes
  • In documentation, refer to get_flag, rather than get_one::<bool>

v4.1.1

Compare Source

Fixes
  • (error) Small softening attempt for "unexpected argument" error

v4.1.0

Compare Source

Compatibility

MSRV changed to 1.64.0

For apps with custom --help and --version flags:

  • Descriptions for --help and --version changed

When apps have errors imitating clap's error style:

  • Error message style was changed, including
    • Moving away from "did you mean" to tips
    • Leading letter is lower case
    • "For more" added some punctuation
Features
  • ArgMatches::get_occurrences support for argument values to be grouped by their occurrence
Fixes
  • (derive) Allow upgrade_from when arguments / subcommands are explicitly marked as required
  • (help) Try be more clearer and succinct with --help and --version (also helps with overflow)
  • (error) Try to be more clearer and succinct with error messages
  • (error) Officially adopt an error style guide
rust-lang/git2-rs

v0.16.1

Compare Source

0.16.0...0.16.1

Changed

v0.16.0

Compare Source

0.15.0...0.16.0

Changed
  • Added ability to get the SSH host key and its type.
    This includes an API breaking change to the certificate_check callback.
    #​909
  • Updated to libgit2-sys 0.14.1+1.5.0
XAMPPRocky/octocrab

v0.18.1

Compare Source

v0.18.0

Compare Source

seanmonstar/reqwest

v0.11.14

Compare Source

  • Adds Proxy::no_proxy(url) that works like the NO_PROXY environment variable.
  • Adds multipart::Part::headers(headers) method to add custom headers.
  • (wasm) Add Response::bytes_stream().
  • Perf: several internal optimizations reducing copies and memory allocations.
dtolnay/serde-yaml

v0.9.17

Compare Source

  • Improve Debug representation of some error messages
tokio-rs/tokio

v1.25.0: Tokio v1.25.0

1.25.0 (January 28, 2023)

Fixed
  • rt: fix runtime metrics reporting (#​5330)
Added
  • sync: add broadcast::Sender::len (#​5343)
Changed
  • fs: increase maximum read buffer size to 2MiB (#​5397)

v1.24.1: Tokio v1.24.1

Compare Source

This release fixes a compilation failure on targets without AtomicU64 when using rustc older than 1.63. (#​5356)

v1.24.0: Tokio v1.24.0

Compare Source

The highlight of this release is the reduction of lock contention for all I/O operations (#​5300). We have received reports of up to a 20% improvement in CPU utilization and increased throughput for real-world I/O heavy applications.

Fixed
  • rt: improve native AtomicU64 support detection (#​5284)
Added
  • rt: add configuration option for max number of I/O events polled from the OS
    per tick (#​5186)
  • rt: add an environment variable for configuring the default number of worker
    threads per runtime instance (#​4250)
Changed
  • sync: reduce MPSC channel stack usage (#​5294)
  • io: reduce lock contention in I/O operations (#​5300)
  • fs: speed up read_dir() by chunking operations (#​5309)
  • rt: use internal ThreadId implementation (#​5329)
  • test: don't auto-advance time when a spawn_blocking task is running (#​5115)

v1.23.1: Tokio v1.23.1

Compare Source

This release forward ports changes from 1.18.4.

Fixed
  • net: fix Windows named pipe server builder to maintain option when toggling
    pipe mode (#​5336).
uuid-rs/uuid

v1.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.2.2...1.3.0

v1.2.2

Compare Source

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.2.1...1.2.2


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 | |---|---|---|---| | [async-trait](https://github.com/dtolnay/async-trait) | workspace.dependencies | patch | `0.1.60` -> `0.1.64` | | [clap](https://github.com/clap-rs/clap) | dependencies | minor | `4.0.32` -> `4.1.8` | | [git2](https://github.com/rust-lang/git2-rs) | dependencies | minor | `0.15.0` -> `0.16.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | dependencies | minor | `0.17.0` -> `0.18.1` | | [reqwest](https://github.com/seanmonstar/reqwest) | dependencies | patch | `0.11.13` -> `0.11.14` | | [serde_yaml](https://github.com/dtolnay/serde-yaml) | dependencies | patch | `0.9.16` -> `0.9.17` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.23.0` -> `1.25.0` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `^1.2` -> `^1.3` | --- ### Release Notes <details> <summary>dtolnay/async-trait</summary> ### [`v0.1.64`](https://github.com/dtolnay/async-trait/releases/tag/0.1.64) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.63...0.1.64) - Suppress async_yields_async clippy correctness lint in generated code ([#&#8203;236](https://github.com/dtolnay/async-trait/issues/236), [#&#8203;237](https://github.com/dtolnay/async-trait/issues/237)) ### [`v0.1.63`](https://github.com/dtolnay/async-trait/releases/tag/0.1.63) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.62...0.1.63) - Do not require Sync on unused shared reference arguments ([#&#8203;232](https://github.com/dtolnay/async-trait/issues/232), [#&#8203;233](https://github.com/dtolnay/async-trait/issues/233)) - Make expansion of nested `_` and `..` patterns edition independent ([#&#8203;234](https://github.com/dtolnay/async-trait/issues/234), [#&#8203;235](https://github.com/dtolnay/async-trait/issues/235)) ### [`v0.1.62`](https://github.com/dtolnay/async-trait/releases/tag/0.1.62) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.61...0.1.62) - Improve error message involving elided lifetimes ([#&#8203;229](https://github.com/dtolnay/async-trait/issues/229)) ### [`v0.1.61`](https://github.com/dtolnay/async-trait/releases/tag/0.1.61) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.60...0.1.61) - Fix async function signatures that involve #\[cfg(...)] attributes on parameters ([#&#8203;227](https://github.com/dtolnay/async-trait/issues/227), thanks [@&#8203;azriel91](https://github.com/azriel91)) </details> <details> <summary>clap-rs/clap</summary> ### [`v4.1.8`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;418---2023-02-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.7...v4.1.8) ##### Fixes - *(derive)* Don't `deny` lints on the users behalf ### [`v4.1.7`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;417---2023-02-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.6...v4.1.7) ##### Fixes - *(derive)* Hide some nightly clippy warnings ### [`v4.1.6`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;416---2023-02-15) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.5...v4.1.6) ##### Fixes - *(help)* Don't show long help for `--help` just because hidden possible values include a description ### [`v4.1.5`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;415---2023-02-15) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.4...v4.1.5) ##### Fixes - *(help)* Don't show long help for `--help` just because a hidden arg has a possible value with a description ### [`v4.1.4`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;414---2023-01-24) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.3...v4.1.4) ##### Fixes - *(help)* Respect `disable_colored_help` when using `arg_required_else_help` ##### Performance - Speed up compiling `arg!` macro ### [`v4.1.3`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;413---2023-01-23) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.2...v4.1.3) ##### Fixes - *(error)* Improve suggested flag/value/subcommand when two share a long preifx - *(error)* When suggesting one of several subcommands, use the plural `subcommands`, rather than `subcommand` ### [`v4.1.2`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;412---2023-01-23) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.1...v4.1.2) ##### Fixes - In documentation, refer to `get_flag`, rather than `get_one::<bool>` ### [`v4.1.1`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;411---2023-01-14) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.0...v4.1.1) ##### Fixes - *(error)* Small softening attempt for "unexpected argument" error ### [`v4.1.0`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;410---2023-01-13) [Compare Source](https://github.com/clap-rs/clap/compare/v4.0.32...v4.1.0) ##### Compatibility MSRV changed to 1.64.0 For apps with custom `--help` and `--version` flags: - Descriptions for `--help` and `--version` changed When apps have errors imitating clap's error style: - Error message style was changed, including - Moving away from "did you mean" to tips - Leading letter is lower case - "For more" added some punctuation ##### Features - `ArgMatches::get_occurrences` support for argument values to be grouped by their occurrence ##### Fixes - *(derive)* Allow `upgrade_from` when arguments / subcommands are explicitly marked as required - *(help)* Try be more clearer and succinct with `--help` and `--version` (also helps with overflow) - *(error)* Try to be more clearer and succinct with error messages - *(error)* Officially adopt [an error style guide](https://rustc-dev-guide.rust-lang.org/diagnostics.html#suggestion-style-guide) </details> <details> <summary>rust-lang/git2-rs</summary> ### [`v0.16.1`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#&#8203;0161---2023-01-20) [Compare Source](https://github.com/rust-lang/git2-rs/compare/0.16.0...0.16.1) [0.16.0...0.16.1](https://github.com/rust-lang/git2-rs/compare/0.16.0...0.16.1) ##### Changed - Updated to [libgit2-sys 0.14.2+1.5.1](libgit2-sys/CHANGELOG.md#&#8203;0142151---2023-01-20) ### [`v0.16.0`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#&#8203;0160---2023-01-10) [Compare Source](https://github.com/rust-lang/git2-rs/compare/0.15.0...0.16.0) [0.15.0...0.16.0](https://github.com/rust-lang/git2-rs/compare/0.15.0...0.16.0) ##### Changed - Added ability to get the SSH host key and its type. This includes an API breaking change to the `certificate_check` callback. [#&#8203;909](https://github.com/rust-lang/git2-rs/pull/909) - Updated to [libgit2-sys 0.14.1+1.5.0](libgit2-sys/CHANGELOG.md#&#8203;0141150---2023-01-10) </details> <details> <summary>XAMPPRocky/octocrab</summary> ### [`v0.18.1`](https://github.com/XAMPPRocky/octocrab/compare/octocrab@0.18.0...octocrab@0.18.1) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/octocrab@0.18.0...octocrab@0.18.1) ### [`v0.18.0`](https://github.com/XAMPPRocky/octocrab/compare/octocrab@0.17.0...octocrab@0.18.0) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/octocrab@0.17.0...octocrab@0.18.0) </details> <details> <summary>seanmonstar/reqwest</summary> ### [`v0.11.14`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01114) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.11.13...v0.11.14) - Adds `Proxy::no_proxy(url)` that works like the NO_PROXY environment variable. - Adds `multipart::Part::headers(headers)` method to add custom headers. - (wasm) Add `Response::bytes_stream()`. - Perf: several internal optimizations reducing copies and memory allocations. </details> <details> <summary>dtolnay/serde-yaml</summary> ### [`v0.9.17`](https://github.com/dtolnay/serde-yaml/releases/tag/0.9.17) [Compare Source](https://github.com/dtolnay/serde-yaml/compare/0.9.16...0.9.17) - Improve Debug representation of some error messages </details> <details> <summary>tokio-rs/tokio</summary> ### [`v1.25.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.25.0): Tokio v1.25.0 ### 1.25.0 (January 28, 2023) ##### Fixed - rt: fix runtime metrics reporting ([#&#8203;5330]) ##### Added - sync: add `broadcast::Sender::len` ([#&#8203;5343]) ##### Changed - fs: increase maximum read buffer size to 2MiB ([#&#8203;5397]) [#&#8203;5330]: https://github.com/tokio-rs/tokio/pull/5330 [#&#8203;5343]: https://github.com/tokio-rs/tokio/pull/5343 [#&#8203;5397]: https://github.com/tokio-rs/tokio/pull/5397 ### [`v1.24.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.24.1): Tokio v1.24.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.24.0...tokio-1.24.1) This release fixes a compilation failure on targets without `AtomicU64` when using rustc older than 1.63. ([#&#8203;5356]) [#&#8203;5356]: https://github.com/tokio-rs/tokio/pull/5356 ### [`v1.24.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.24.0): Tokio v1.24.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.23.1...tokio-1.24.0) The highlight of this release is the reduction of lock contention for all I/O operations ([#&#8203;5300](https://github.com/tokio-rs/tokio/issues/5300)). We have received reports of up to a 20% improvement in CPU utilization and increased throughput for real-world I/O heavy applications. ##### Fixed - rt: improve native `AtomicU64` support detection ([#&#8203;5284]) ##### Added - rt: add configuration option for max number of I/O events polled from the OS per tick ([#&#8203;5186]) - rt: add an environment variable for configuring the default number of worker threads per runtime instance ([#&#8203;4250]) ##### Changed - sync: reduce MPSC channel stack usage ([#&#8203;5294]) - io: reduce lock contention in I/O operations ([#&#8203;5300]) - fs: speed up `read_dir()` by chunking operations ([#&#8203;5309]) - rt: use internal `ThreadId` implementation ([#&#8203;5329]) - test: don't auto-advance time when a `spawn_blocking` task is running ([#&#8203;5115]) [#&#8203;5186]: https://github.com/tokio-rs/tokio/pull/5186 [#&#8203;5294]: https://github.com/tokio-rs/tokio/pull/5294 [#&#8203;5284]: https://github.com/tokio-rs/tokio/pull/5284 [#&#8203;4250]: https://github.com/tokio-rs/tokio/pull/4250 [#&#8203;5300]: https://github.com/tokio-rs/tokio/pull/5300 [#&#8203;5329]: https://github.com/tokio-rs/tokio/pull/5329 [#&#8203;5115]: https://github.com/tokio-rs/tokio/pull/5115 [#&#8203;5309]: https://github.com/tokio-rs/tokio/pull/5309 ### [`v1.23.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.23.1): Tokio v1.23.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.23.0...tokio-1.23.1) This release forward ports changes from 1.18.4. ##### Fixed - net: fix Windows named pipe server builder to maintain option when toggling pipe mode ([#&#8203;5336]). [#&#8203;5336]: https://github.com/tokio-rs/tokio/pull/5336 </details> <details> <summary>uuid-rs/uuid</summary> ### [`v1.3.0`](https://github.com/uuid-rs/uuid/releases/tag/1.3.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.2.2...1.3.0) #### What's Changed - Fix error message. by [@&#8203;basbossink-ds](https://github.com/basbossink-ds) in https://github.com/uuid-rs/uuid/pull/656 - implement Arbitrary::size_hint by [@&#8203;Ekleog](https://github.com/Ekleog) in https://github.com/uuid-rs/uuid/pull/657 - Always use hyphenated format regardless of flags by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/658 - Update windows-sys requirement from 0.42.0 to 0.45.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/uuid-rs/uuid/pull/654 - Prepare for 1.3.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/659 #### New Contributors - [@&#8203;basbossink-ds](https://github.com/basbossink-ds) made their first contribution in https://github.com/uuid-rs/uuid/pull/656 - [@&#8203;Ekleog](https://github.com/Ekleog) made their first contribution in https://github.com/uuid-rs/uuid/pull/657 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.2.2...1.3.0 ### [`v1.2.2`](https://github.com/uuid-rs/uuid/releases/tag/1.2.2) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.2.1...1.2.2) #### What's Changed - CI Cleanups by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/640 - Remove extern crate alloc by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/645 - Prepare for 1.2.2 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/646 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.2.1...1.2.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, 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:eyJjcmVhdGVkSW5WZXIiOiIzNC43NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMTUzLjIifQ==-->
kjuulh force-pushed renovate/all from a8f200bbef to ce1fa53bd1 2022-12-29 11:48:39 +01:00 Compare
kjuulh changed title from Update Rust crate octocrab to 0.18.0 to Update Rust crate octocrab to 0.18.1 2022-12-29 11:48:39 +01:00
kjuulh force-pushed renovate/all from ce1fa53bd1 to 8a7f5e6b86 2023-01-04 20:22:58 +01:00 Compare
kjuulh changed title from Update Rust crate octocrab to 0.18.1 to Update all dependencies 2023-01-04 20:22:59 +01:00
kjuulh force-pushed renovate/all from 8a7f5e6b86 to 8572baa524 2023-01-05 20:43:46 +01:00 Compare
kjuulh force-pushed renovate/all from 8572baa524 to d368975f90 2023-01-06 12:22:02 +01:00 Compare
kjuulh force-pushed renovate/all from d368975f90 to 0d8a37006a 2023-01-06 23:50:56 +01:00 Compare
kjuulh force-pushed renovate/all from 0d8a37006a to ef63e30514 2023-01-10 17:34:39 +01:00 Compare
kjuulh force-pushed renovate/all from ef63e30514 to 98843f297b 2023-01-13 16:56:14 +01:00 Compare
kjuulh force-pushed renovate/all from 98843f297b to d2286d02c5 2023-01-14 11:19:35 +01:00 Compare
kjuulh force-pushed renovate/all from d2286d02c5 to aea2d4a9db 2023-01-17 22:20:33 +01:00 Compare
kjuulh force-pushed renovate/all from aea2d4a9db to d99a678f0b 2023-01-19 21:41:57 +01:00 Compare
kjuulh force-pushed renovate/all from d99a678f0b to 6e819faa7a 2023-01-20 14:02:24 +01:00 Compare
kjuulh force-pushed renovate/all from 6e819faa7a to 1315b83dbf 2023-01-21 00:09:54 +01:00 Compare
kjuulh force-pushed renovate/all from 1315b83dbf to 413d8a9dc0 2023-01-23 12:11:15 +01:00 Compare
kjuulh force-pushed renovate/all from 413d8a9dc0 to 4e7170ec09 2023-01-23 16:55:31 +01:00 Compare
kjuulh force-pushed renovate/all from 4e7170ec09 to 57c2c11a32 2023-01-24 14:54:44 +01:00 Compare
kjuulh force-pushed renovate/all from 57c2c11a32 to 228a07c809 2023-01-25 00:25:26 +01:00 Compare
kjuulh force-pushed renovate/all from 228a07c809 to 70fa7f7ba4 2023-01-29 22:52:56 +01:00 Compare
kjuulh force-pushed renovate/all from 70fa7f7ba4 to 24748d7291 2023-01-30 22:20:41 +01:00 Compare
kjuulh force-pushed renovate/all from 24748d7291 to 22830d1eac 2023-02-01 13:20:47 +01:00 Compare
kjuulh force-pushed renovate/all from 22830d1eac to 5a8691e1b4 2023-02-15 18:09:26 +01:00 Compare
kjuulh force-pushed renovate/all from 5a8691e1b4 to 507c56bc82 2023-02-15 19:10:20 +01:00 Compare
kjuulh force-pushed renovate/all from 507c56bc82 to 99086fcd53 2023-02-27 21:40:15 +01:00 Compare
kjuulh force-pushed renovate/all from 99086fcd53 to 53645f6274 2023-02-28 15:34:43 +01:00 Compare
kjuulh merged commit 53645f6274 into main 2023-02-28 15:57:19 +01:00
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/octopush#51