chore(deps): update all dependencies #6

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.91 -> 1.0.95
blake3 workspace.dependencies patch 1.5.4 -> 1.5.5
clap workspace.dependencies patch 4.5.20 -> 4.5.27
dirs workspace.dependencies major 5.0.1 -> 6.0.0
proc-macro2 dependencies patch 1.0.89 -> 1.0.93
quote dependencies patch 1.0.37 -> 1.0.38
serde_json workspace.dependencies patch 1.0.132 -> 1.0.137
syn dependencies patch 2.0.86 -> 2.0.96
tokio (source) workspace.dependencies minor 1.41.0 -> 1.43.0
uuid workspace.dependencies minor 1.11.0 -> 1.12.1

Release Notes

dtolnay/anyhow (anyhow)

v1.0.95

Compare Source

v1.0.94

Compare Source

  • Documentation improvements

v1.0.93

Compare Source

  • Update dev-dependencies to thiserror v2

v1.0.92

Compare Source

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#​390)
BLAKE3-team/BLAKE3 (blake3)

v1.5.5

Compare Source

version 1.5.5

Changes since 1.5.4:

  • b3sum --check now supports checkfiles with Windows-style newlines.
    b3sum still emits Unix-style newlines, even on Windows, but
    sometimes text editors or version control tools will swap them.
  • The "digest" feature (deleted in v1.5.2) has been added back to the
    blake3 crate. This is for backwards compatibility only, and it's
    insta-deprecated. All callers should prefer the "traits-preview"
    feature.
clap-rs/clap (clap)

v4.5.27

Compare Source

Documentation
  • Iterate on tutorials and reference based on feedback

v4.5.26

Compare Source

Fixes
  • (error) Reduce binary size with the suggestions feature

v4.5.25

Compare Source

Fixes
  • (help) Reduce binary size

v4.5.24

Compare Source

Fixes
  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument

v4.5.23

Compare Source

Fixes
  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

Compare Source

Fixes
  • (assert) Catch bugs with arguments requiring themself

v4.5.21

Compare Source

Fixes
  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
dtolnay/proc-macro2 (proc-macro2)

v1.0.93

Compare Source

v1.0.92

Compare Source

  • Improve compiler/fallback mismatch panic message (#​487)

v1.0.91

Compare Source

  • Fix panic "compiler/fallback mismatch 949" when using TokenStream::from_str from inside a proc macro to parse a string containing doc comment (#​484)

v1.0.90

Compare Source

dtolnay/quote (quote)

v1.0.38

Compare Source

  • Support interpolating arrays inside of arrays using a repetition (#​286)
serde-rs/json (serde_json)

v1.0.137

Compare Source

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#​1231)

v1.0.136

Compare Source

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#​1230, thanks @​goffrie)

v1.0.135

Compare Source

v1.0.134

Compare Source

  • Add RawValue associated constants for literal null, true, false (#​1221, thanks @​bheylin)

v1.0.133

Compare Source

  • Implement From<[T; N]> for serde_json::Value (#​1215)
dtolnay/syn (syn)

v2.0.96

Compare Source

v2.0.95

Compare Source

  • Fix parenthesization of struct literals in let-chains (#​1832)

v2.0.94

Compare Source

v2.0.93

Compare Source

v2.0.92

Compare Source

  • Fix parenthesization of jumps inside ranges (#​1798)

v2.0.91

Compare Source

v2.0.90

Compare Source

  • Fix automatic parenthesization of subexpressions containing outer attributes, such as (#[attr] thing).field (#​1785)
  • Fix automatic parenthesization of function calls via a struct field, such as (thing.field)() and thing.0() (#​1786)

v2.0.89

Compare Source

v2.0.88

Compare Source

  • Improve error recovery in parse_str (#​1783)

v2.0.87

Compare Source

tokio-rs/tokio (tokio)

v1.43.0: Tokio v1.43.0

Compare Source

1.43.0 (Jan 8th, 2025)

Added
  • net: add UdpSocket::peek methods (#​7068)
  • net: add support for Haiku OS (#​7042)
  • process: add Command::into_std() (#​7014)
  • signal: add SignalKind::info on illumos (#​6995)
  • signal: add support for realtime signals on illumos (#​7029)
Fixed
  • io: don't call set_len before initializing vector in Blocking (#​7054)
  • macros: suppress clippy::needless_return in #[tokio::main] (#​6874)
  • runtime: fix thread parking on WebAssembly (#​7041)
Changes
  • chore: use unsync loads for unsync_load (#​7073)
  • io: use Buf::put_bytes in Repeat read impl (#​7055)
  • task: drop the join waker of a task eagerly (#​6986)
Changes to unstable APIs
  • metrics: improve flexibility of H2Histogram Configuration (#​6963)
  • taskdump: add accessor methods for backtrace (#​6975)
Documented
  • io: clarify ReadBuf::uninit allows initialized buffers as well (#​7053)
  • net: fix ambiguity in TcpStream::try_write_vectored docs (#​7067)
  • runtime: fix LocalRuntime doc links (#​7074)
  • sync: extend documentation for watch::Receiver::wait_for (#​7038)
  • sync: fix typos in OnceCell docs (#​7047)

v1.42.0: Tokio v1.42.0

Compare Source

1.42.0 (Dec 3rd, 2024)

Added
  • io: add AsyncFd::{try_io, try_io_mut} (#​6967)
Fixed
  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#​6929)
  • runtime: do not defer yield_now inside block_in_place (#​6999)
Changes
  • io: simplify io readiness logic (#​6966)
Documented
  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#​6791)
  • time: fix a typo in Instant docs (#​6982)

v1.41.1: Tokio v1.41.1

Compare Source

1.41.1 (Nov 7th, 2024)

Fixed
  • metrics: fix bug with wrong number of buckets for the histogram (#​6957)
  • net: display net requirement for net::UdpSocket in docs (#​6938)
  • net: fix typo in TcpStream internal comment (#​6944)
uuid-rs/uuid (uuid)

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

v1.12.0

Compare Source

⚠️ Possible Breakage

This release includes additional PartialEq implementations on Uuid, which can break inference in some cases.

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0

v1.11.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1


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 | |---|---|---|---| | [anyhow](https://github.com/dtolnay/anyhow) | workspace.dependencies | patch | `1.0.91` -> `1.0.95` | | [blake3](https://github.com/BLAKE3-team/BLAKE3) | workspace.dependencies | patch | `1.5.4` -> `1.5.5` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.20` -> `4.5.27` | | [dirs](https://github.com/soc/dirs-rs) | workspace.dependencies | major | `5.0.1` -> `6.0.0` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | dependencies | patch | `1.0.89` -> `1.0.93` | | [quote](https://github.com/dtolnay/quote) | dependencies | patch | `1.0.37` -> `1.0.38` | | [serde_json](https://github.com/serde-rs/json) | workspace.dependencies | patch | `1.0.132` -> `1.0.137` | | [syn](https://github.com/dtolnay/syn) | dependencies | patch | `2.0.86` -> `2.0.96` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.41.0` -> `1.43.0` | | [uuid](https://github.com/uuid-rs/uuid) | workspace.dependencies | minor | `1.11.0` -> `1.12.1` | --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`v1.0.95`](https://github.com/dtolnay/anyhow/releases/tag/1.0.95) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.94...1.0.95) - Add [`Error::from_boxed`](https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.from_boxed) ([#&#8203;401](https://github.com/dtolnay/anyhow/issues/401), [#&#8203;402](https://github.com/dtolnay/anyhow/issues/402)) ### [`v1.0.94`](https://github.com/dtolnay/anyhow/releases/tag/1.0.94) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.93...1.0.94) - Documentation improvements ### [`v1.0.93`](https://github.com/dtolnay/anyhow/releases/tag/1.0.93) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.92...1.0.93) - Update dev-dependencies to `thiserror` v2 ### [`v1.0.92`](https://github.com/dtolnay/anyhow/releases/tag/1.0.92) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.91...1.0.92) - Support Rust 1.82's `&raw const` and `&raw mut` syntax inside `ensure!` ([#&#8203;390](https://github.com/dtolnay/anyhow/issues/390)) </details> <details> <summary>BLAKE3-team/BLAKE3 (blake3)</summary> ### [`v1.5.5`](https://github.com/BLAKE3-team/BLAKE3/releases/tag/1.5.5) [Compare Source](https://github.com/BLAKE3-team/BLAKE3/compare/1.5.4...1.5.5) version 1.5.5 Changes since 1.5.4: - `b3sum --check` now supports checkfiles with Windows-style newlines. `b3sum` still emits Unix-style newlines, even on Windows, but sometimes text editors or version control tools will swap them. - The "digest" feature (deleted in v1.5.2) has been added back to the `blake3` crate. This is for backwards compatibility only, and it's insta-deprecated. All callers should prefer the "traits-preview" feature. </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`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 ### [`v4.5.26`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4526---2025-01-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.25...v4.5.26) ##### Fixes - *(error)* Reduce binary size with the `suggestions` feature ### [`v4.5.25`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4525---2025-01-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.24...v4.5.25) ##### Fixes - *(help)* Reduce binary size ### [`v4.5.24`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4524---2025-01-07) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.23...v4.5.24) ##### Fixes - *(parser)* Correctly handle defaults with `ignore_errors(true)` and when a suggestion is provided for an unknown argument ### [`v4.5.23`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4523---2024-12-05) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.22...v4.5.23) ##### Fixes - *(parser)* When check `allow_negative_numbers`, allow `E` again ### [`v4.5.22`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4522---2024-12-03) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.21...v4.5.22) ##### Fixes - *(assert)* Catch bugs with arguments requiring themself ### [`v4.5.21`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4521---2024-11-13) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.20...v4.5.21) ##### Fixes - *(parser)* Ensure defaults are filled in on error with `ignore_errors(true)` </details> <details> <summary>dtolnay/proc-macro2 (proc-macro2)</summary> ### [`v1.0.93`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.93) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.92...1.0.93) - Optimize TokenStream's Drop ([#&#8203;489](https://github.com/dtolnay/proc-macro2/issues/489), [#&#8203;490](https://github.com/dtolnay/proc-macro2/issues/490), thanks [@&#8203;WalkerKnapp](https://github.com/WalkerKnapp)) ### [`v1.0.92`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.92) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.91...1.0.92) - Improve compiler/fallback mismatch panic message ([#&#8203;487](https://github.com/dtolnay/proc-macro2/issues/487)) ### [`v1.0.91`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.91) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.90...1.0.91) - Fix panic *"compiler/fallback mismatch 949"* when using TokenStream::from_str from inside a proc macro to parse a string containing doc comment ([#&#8203;484](https://github.com/dtolnay/proc-macro2/issues/484)) ### [`v1.0.90`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.90) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.89...1.0.90) - Improve error recovery in TokenStream's and Literal's FromStr implementations to work around https://github.com/rust-lang/rust/issues/58736 such that rustc does not poison compilation on codepaths that should be recoverable errors ([#&#8203;477](https://github.com/dtolnay/proc-macro2/issues/477), [#&#8203;478](https://github.com/dtolnay/proc-macro2/issues/478), [#&#8203;479](https://github.com/dtolnay/proc-macro2/issues/479), [#&#8203;480](https://github.com/dtolnay/proc-macro2/issues/480), [#&#8203;481](https://github.com/dtolnay/proc-macro2/issues/481), [#&#8203;482](https://github.com/dtolnay/proc-macro2/issues/482)) </details> <details> <summary>dtolnay/quote (quote)</summary> ### [`v1.0.38`](https://github.com/dtolnay/quote/releases/tag/1.0.38) [Compare Source](https://github.com/dtolnay/quote/compare/1.0.37...1.0.38) - Support interpolating arrays inside of arrays using a repetition ([#&#8203;286](https://github.com/dtolnay/quote/issues/286)) </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.137`](https://github.com/serde-rs/json/releases/tag/v1.0.137) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.136...v1.0.137) - Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org ([#&#8203;1231](https://github.com/serde-rs/json/issues/1231)) ### [`v1.0.136`](https://github.com/serde-rs/json/releases/tag/v1.0.136) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.135...v1.0.136) - Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity ([#&#8203;1230](https://github.com/serde-rs/json/issues/1230), thanks [@&#8203;goffrie](https://github.com/goffrie)) ### [`v1.0.135`](https://github.com/serde-rs/json/releases/tag/v1.0.135) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.134...v1.0.135) - Add serde_json::Map::into_values method ([#&#8203;1226](https://github.com/serde-rs/json/issues/1226), thanks [@&#8203;tisonkun](https://github.com/tisonkun)) ### [`v1.0.134`](https://github.com/serde-rs/json/releases/tag/v1.0.134) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.133...v1.0.134) - Add `RawValue` associated constants for literal `null`, `true`, `false` ([#&#8203;1221](https://github.com/serde-rs/json/issues/1221), thanks [@&#8203;bheylin](https://github.com/bheylin)) ### [`v1.0.133`](https://github.com/serde-rs/json/releases/tag/v1.0.133) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.132...v1.0.133) - Implement From<\[T; N]> for serde_json::Value ([#&#8203;1215](https://github.com/serde-rs/json/issues/1215)) </details> <details> <summary>dtolnay/syn (syn)</summary> ### [`v2.0.96`](https://github.com/dtolnay/syn/releases/tag/2.0.96) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.95...2.0.96) - Expression precedence fixes ([#&#8203;1834](https://github.com/dtolnay/syn/issues/1834), [#&#8203;1836](https://github.com/dtolnay/syn/issues/1836), [#&#8203;1837](https://github.com/dtolnay/syn/issues/1837), [#&#8203;1838](https://github.com/dtolnay/syn/issues/1838), [#&#8203;1839](https://github.com/dtolnay/syn/issues/1839), [#&#8203;1840](https://github.com/dtolnay/syn/issues/1840)) ### [`v2.0.95`](https://github.com/dtolnay/syn/releases/tag/2.0.95) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.94...2.0.95) - Fix parenthesization of struct literals in let-chains ([#&#8203;1832](https://github.com/dtolnay/syn/issues/1832)) ### [`v2.0.94`](https://github.com/dtolnay/syn/releases/tag/2.0.94) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.93...2.0.94) - Expression precedence fixes ([#&#8203;1811](https://github.com/dtolnay/syn/issues/1811), [#&#8203;1812](https://github.com/dtolnay/syn/issues/1812), [#&#8203;1813](https://github.com/dtolnay/syn/issues/1813), [#&#8203;1814](https://github.com/dtolnay/syn/issues/1814), [#&#8203;1815](https://github.com/dtolnay/syn/issues/1815), [#&#8203;1816](https://github.com/dtolnay/syn/issues/1816), [#&#8203;1818](https://github.com/dtolnay/syn/issues/1818), [#&#8203;1819](https://github.com/dtolnay/syn/issues/1819), [#&#8203;1820](https://github.com/dtolnay/syn/issues/1820), [#&#8203;1825](https://github.com/dtolnay/syn/issues/1825), [#&#8203;1826](https://github.com/dtolnay/syn/issues/1826), [#&#8203;1827](https://github.com/dtolnay/syn/issues/1827), [#&#8203;1828](https://github.com/dtolnay/syn/issues/1828), [#&#8203;1829](https://github.com/dtolnay/syn/issues/1829), [#&#8203;1830](https://github.com/dtolnay/syn/issues/1830)) ### [`v2.0.93`](https://github.com/dtolnay/syn/releases/tag/2.0.93) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.92...2.0.93) - Fix expression parsing edge cases: `x as T <<= y` ([#&#8203;1804](https://github.com/dtolnay/syn/issues/1804)), `break as T` ([#&#8203;1805](https://github.com/dtolnay/syn/issues/1805)), `match x { _ if .. => {} }` ([#&#8203;1807](https://github.com/dtolnay/syn/issues/1807)) - Fix expression printing edge cases: `|| -> T 'a: {}` ([#&#8203;1806](https://github.com/dtolnay/syn/issues/1806)), `if break x {}` ([#&#8203;1808](https://github.com/dtolnay/syn/issues/1808), [#&#8203;1810](https://github.com/dtolnay/syn/issues/1810)) ### [`v2.0.92`](https://github.com/dtolnay/syn/releases/tag/2.0.92) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.91...2.0.92) - Fix parenthesization of jumps inside ranges ([#&#8203;1798](https://github.com/dtolnay/syn/issues/1798)) ### [`v2.0.91`](https://github.com/dtolnay/syn/releases/tag/2.0.91) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.90...2.0.91) - Support parsing `Vec<Arm>` using `parse_quote!` ([#&#8203;1796](https://github.com/dtolnay/syn/issues/1796), [#&#8203;1797](https://github.com/dtolnay/syn/issues/1797)) ### [`v2.0.90`](https://github.com/dtolnay/syn/releases/tag/2.0.90) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.89...2.0.90) - Fix automatic parenthesization of subexpressions containing outer attributes, such as `(#[attr] thing).field` ([#&#8203;1785](https://github.com/dtolnay/syn/issues/1785)) - Fix automatic parenthesization of function calls via a struct field, such as `(thing.field)()` and `thing.0()` ([#&#8203;1786](https://github.com/dtolnay/syn/issues/1786)) ### [`v2.0.89`](https://github.com/dtolnay/syn/releases/tag/2.0.89) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.88...2.0.89) - Fix *"compiler/fallback mismatch 949"* panic (https://github.com/dtolnay/proc-macro2/issues/483) ### [`v2.0.88`](https://github.com/dtolnay/syn/releases/tag/2.0.88) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.87...2.0.88) - Improve error recovery in `parse_str` ([#&#8203;1783](https://github.com/dtolnay/syn/issues/1783)) ### [`v2.0.87`](https://github.com/dtolnay/syn/releases/tag/2.0.87) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.86...2.0.87) - Add [`Cursor::any_group`](https://docs.rs/syn/2/syn/buffer/struct.Cursor.html#method.any_group) ([#&#8203;1777](https://github.com/dtolnay/syn/issues/1777)) - Add [`Expr::peek`](https://docs.rs/syn/2/syn/enum.Expr.html#method.peek) ([#&#8203;1778](https://github.com/dtolnay/syn/issues/1778)) - Improve syntax support for enum discriminant expressions in non-"full" mode ([#&#8203;1779](https://github.com/dtolnay/syn/issues/1779)) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.43.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.43.0): Tokio v1.43.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.43.0) ### 1.43.0 (Jan 8th, 2025) ##### Added - net: add `UdpSocket::peek` methods ([#&#8203;7068]) - net: add support for Haiku OS ([#&#8203;7042]) - process: add `Command::into_std()` ([#&#8203;7014]) - signal: add `SignalKind::info` on illumos ([#&#8203;6995]) - signal: add support for realtime signals on illumos ([#&#8203;7029]) ##### Fixed - io: don't call `set_len` before initializing vector in `Blocking` ([#&#8203;7054]) - macros: suppress `clippy::needless_return` in `#[tokio::main]` ([#&#8203;6874]) - runtime: fix thread parking on WebAssembly ([#&#8203;7041]) ##### Changes - chore: use unsync loads for `unsync_load` ([#&#8203;7073]) - io: use `Buf::put_bytes` in `Repeat` read impl ([#&#8203;7055]) - task: drop the join waker of a task eagerly ([#&#8203;6986]) ##### Changes to unstable APIs - metrics: improve flexibility of H2Histogram Configuration ([#&#8203;6963]) - taskdump: add accessor methods for backtrace ([#&#8203;6975]) ##### Documented - io: clarify `ReadBuf::uninit` allows initialized buffers as well ([#&#8203;7053]) - net: fix ambiguity in `TcpStream::try_write_vectored` docs ([#&#8203;7067]) - runtime: fix `LocalRuntime` doc links ([#&#8203;7074]) - sync: extend documentation for `watch::Receiver::wait_for` ([#&#8203;7038]) - sync: fix typos in `OnceCell` docs ([#&#8203;7047]) [#&#8203;6874]: https://github.com/tokio-rs/tokio/pull/6874 [#&#8203;6963]: https://github.com/tokio-rs/tokio/pull/6963 [#&#8203;6975]: https://github.com/tokio-rs/tokio/pull/6975 [#&#8203;6986]: https://github.com/tokio-rs/tokio/pull/6986 [#&#8203;6995]: https://github.com/tokio-rs/tokio/pull/6995 [#&#8203;7014]: https://github.com/tokio-rs/tokio/pull/7014 [#&#8203;7029]: https://github.com/tokio-rs/tokio/pull/7029 [#&#8203;7038]: https://github.com/tokio-rs/tokio/pull/7038 [#&#8203;7041]: https://github.com/tokio-rs/tokio/pull/7041 [#&#8203;7042]: https://github.com/tokio-rs/tokio/pull/7042 [#&#8203;7047]: https://github.com/tokio-rs/tokio/pull/7047 [#&#8203;7053]: https://github.com/tokio-rs/tokio/pull/7053 [#&#8203;7054]: https://github.com/tokio-rs/tokio/pull/7054 [#&#8203;7055]: https://github.com/tokio-rs/tokio/pull/7055 [#&#8203;7067]: https://github.com/tokio-rs/tokio/pull/7067 [#&#8203;7068]: https://github.com/tokio-rs/tokio/pull/7068 [#&#8203;7073]: https://github.com/tokio-rs/tokio/pull/7073 [#&#8203;7074]: https://github.com/tokio-rs/tokio/pull/7074 ### [`v1.42.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.42.0): Tokio v1.42.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.41.1...tokio-1.42.0) ### 1.42.0 (Dec 3rd, 2024) ##### Added - io: add `AsyncFd::{try_io, try_io_mut}` ([#&#8203;6967]) ##### Fixed - io: avoid `ptr->ref->ptr` roundtrip in RegistrationSet ([#&#8203;6929]) - runtime: do not defer `yield_now` inside `block_in_place` ([#&#8203;6999]) ##### Changes - io: simplify io readiness logic ([#&#8203;6966]) ##### Documented - net: fix docs for `tokio::net::unix::{pid_t, gid_t, uid_t}` ([#&#8203;6791]) - time: fix a typo in `Instant` docs ([#&#8203;6982]) [#&#8203;6791]: https://github.com/tokio-rs/tokio/pull/6791 [#&#8203;6929]: https://github.com/tokio-rs/tokio/pull/6929 [#&#8203;6966]: https://github.com/tokio-rs/tokio/pull/6966 [#&#8203;6967]: https://github.com/tokio-rs/tokio/pull/6967 [#&#8203;6982]: https://github.com/tokio-rs/tokio/pull/6982 [#&#8203;6999]: https://github.com/tokio-rs/tokio/pull/6999 ### [`v1.41.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.41.1): Tokio v1.41.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.41.1) ### 1.41.1 (Nov 7th, 2024) ##### Fixed - metrics: fix bug with wrong number of buckets for the histogram ([#&#8203;6957]) - net: display `net` requirement for `net::UdpSocket` in docs ([#&#8203;6938]) - net: fix typo in `TcpStream` internal comment ([#&#8203;6944]) [#&#8203;6957]: https://github.com/tokio-rs/tokio/pull/6957 [#&#8203;6938]: https://github.com/tokio-rs/tokio/pull/6938 [#&#8203;6944]: https://github.com/tokio-rs/tokio/pull/6944 </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`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 ### [`v1.12.0`](https://github.com/uuid-rs/uuid/releases/tag/1.12.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0) #### :warning: Possible Breakage This release includes additional `PartialEq` implementations on `Uuid`, which can break inference in some cases. #### What's Changed - feat: Add `NonZeroUuid` type for optimized `Option<Uuid>` representation by [@&#8203;ab22593k](https://github.com/ab22593k) in https://github.com/uuid-rs/uuid/pull/779 - Finalize `NonNilUuid` by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/783 - Prepare for 1.12.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/784 #### New Contributors - [@&#8203;ab22593k](https://github.com/ab22593k) made their first contribution in https://github.com/uuid-rs/uuid/pull/779 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0 ### [`v1.11.1`](https://github.com/uuid-rs/uuid/releases/tag/1.11.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1) #### What's Changed - Finish cut off docs by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/777 - Fix links in CONTRIBUTING.md by [@&#8203;jacobggman](https://github.com/jacobggman) in https://github.com/uuid-rs/uuid/pull/778 - Update rust toolchain before building by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/781 - Prepare for 1.11.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/782 #### New Contributors - [@&#8203;jacobggman](https://github.com/jacobggman) made their first contribution in https://github.com/uuid-rs/uuid/pull/778 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1 </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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh force-pushed renovate/all from 7b826045f9 to 3596338931 2024-11-04 02:22:48 +01:00 Compare
kjuulh changed title from chore(deps): update rust crate anyhow to v1.0.92 to chore(deps): update all dependencies 2024-11-04 02:22:51 +01:00
kjuulh force-pushed renovate/all from 3596338931 to b4e8d0780a 2024-11-04 06:21:26 +01:00 Compare
kjuulh force-pushed renovate/all from b4e8d0780a to dee120652d 2024-11-05 02:23:54 +01:00 Compare
kjuulh force-pushed renovate/all from dee120652d to 6d23516800 2024-11-05 06:23:15 +01:00 Compare
kjuulh force-pushed renovate/all from 6d23516800 to 4f4b7d7206 2024-11-06 02:21:47 +01:00 Compare
kjuulh force-pushed renovate/all from 4f4b7d7206 to faa2708e50 2024-11-06 06:22:04 +01:00 Compare
kjuulh force-pushed renovate/all from faa2708e50 to fdc001eebf 2024-11-07 02:25:21 +01:00 Compare
kjuulh force-pushed renovate/all from fdc001eebf to 60753f988b 2024-11-08 02:25:27 +01:00 Compare
kjuulh force-pushed renovate/all from 60753f988b to d7ea226b2b 2024-11-08 06:24:45 +01:00 Compare
kjuulh force-pushed renovate/all from d7ea226b2b to 95054d4ee3 2024-11-09 02:24:50 +01:00 Compare
kjuulh force-pushed renovate/all from 95054d4ee3 to 38f8e37f32 2024-11-09 06:23:08 +01:00 Compare
kjuulh force-pushed renovate/all from 38f8e37f32 to 4eb63bf8f9 2024-11-10 02:23:22 +01:00 Compare
kjuulh force-pushed renovate/all from 4eb63bf8f9 to 409eee65ac 2024-11-10 06:27:23 +01:00 Compare
kjuulh force-pushed renovate/all from 409eee65ac to 4709cf44c3 2024-11-11 02:24:00 +01:00 Compare
kjuulh force-pushed renovate/all from 4709cf44c3 to 2d87e0c783 2024-11-11 06:22:19 +01:00 Compare
kjuulh force-pushed renovate/all from 2d87e0c783 to 74f0c6b777 2024-11-12 02:23:42 +01:00 Compare
kjuulh force-pushed renovate/all from 74f0c6b777 to e5fcfe97a7 2024-11-12 06:23:43 +01:00 Compare
kjuulh force-pushed renovate/all from e5fcfe97a7 to 06cef6aa46 2024-11-13 02:36:05 +01:00 Compare
kjuulh force-pushed renovate/all from 06cef6aa46 to ed5a6661f3 2024-11-13 06:27:38 +01:00 Compare
kjuulh force-pushed renovate/all from ed5a6661f3 to d8a35ff385 2024-11-14 02:26:45 +01:00 Compare
kjuulh force-pushed renovate/all from d8a35ff385 to 1757c9dcab 2024-11-14 06:31:53 +01:00 Compare
kjuulh force-pushed renovate/all from 1757c9dcab to 8fa3b84d19 2024-11-15 02:25:01 +01:00 Compare
kjuulh force-pushed renovate/all from 8fa3b84d19 to 0942b4dab0 2024-11-15 06:25:54 +01:00 Compare
kjuulh force-pushed renovate/all from 0942b4dab0 to fd11892ae0 2024-11-16 02:28:11 +01:00 Compare
kjuulh force-pushed renovate/all from fd11892ae0 to c7f2497a5b 2024-11-16 06:26:55 +01:00 Compare
kjuulh force-pushed renovate/all from c7f2497a5b to 931ec86d88 2024-11-17 02:24:31 +01:00 Compare
kjuulh force-pushed renovate/all from 931ec86d88 to 6b328cd4f8 2024-11-17 06:24:37 +01:00 Compare
kjuulh force-pushed renovate/all from 6b328cd4f8 to 1f4d520fd5 2024-11-21 06:22:02 +01:00 Compare
kjuulh force-pushed renovate/all from 1f4d520fd5 to 6c2f24243c 2024-11-22 02:27:25 +01:00 Compare
kjuulh force-pushed renovate/all from 6c2f24243c to 535612c7c3 2024-11-27 06:27:15 +01:00 Compare
kjuulh force-pushed renovate/all from 535612c7c3 to 64254cd663 2024-11-28 02:30:11 +01:00 Compare
kjuulh force-pushed renovate/all from 64254cd663 to cf826d7042 2024-11-28 06:27:37 +01:00 Compare
kjuulh force-pushed renovate/all from cf826d7042 to f2b16f275c 2024-11-29 02:25:34 +01:00 Compare
kjuulh force-pushed renovate/all from f2b16f275c to 5dd908cd36 2024-11-29 06:25:09 +01:00 Compare
kjuulh force-pushed renovate/all from 5dd908cd36 to 007369620b 2024-11-30 02:50:35 +01:00 Compare
kjuulh force-pushed renovate/all from 007369620b to 43e61de579 2024-11-30 06:47:48 +01:00 Compare
kjuulh force-pushed renovate/all from 43e61de579 to c0a84cc7a6 2024-12-01 02:26:51 +01:00 Compare
kjuulh force-pushed renovate/all from c0a84cc7a6 to 5be100929b 2024-12-01 06:26:07 +01:00 Compare
kjuulh force-pushed renovate/all from 5be100929b to c1bf693866 2024-12-02 02:54:26 +01:00 Compare
kjuulh force-pushed renovate/all from c1bf693866 to 786d19c960 2024-12-02 06:37:22 +01:00 Compare
kjuulh force-pushed renovate/all from 786d19c960 to 2643ea2960 2024-12-03 02:24:59 +01:00 Compare
kjuulh force-pushed renovate/all from 2643ea2960 to 95a02c5f62 2024-12-03 06:25:16 +01:00 Compare
kjuulh force-pushed renovate/all from 95a02c5f62 to b00eba2735 2024-12-04 02:34:30 +01:00 Compare
kjuulh force-pushed renovate/all from b00eba2735 to 457e3a9092 2024-12-06 02:35:04 +01:00 Compare
kjuulh force-pushed renovate/all from 457e3a9092 to 23d7e2f964 2024-12-06 06:27:57 +01:00 Compare
kjuulh force-pushed renovate/all from 23d7e2f964 to e620aecbc8 2024-12-07 02:32:06 +01:00 Compare
kjuulh force-pushed renovate/all from e620aecbc8 to c33c75fda9 2024-12-07 06:27:04 +01:00 Compare
kjuulh force-pushed renovate/all from c33c75fda9 to 0a66e3df75 2024-12-08 02:26:04 +01:00 Compare
kjuulh force-pushed renovate/all from 0a66e3df75 to de4cbfa789 2024-12-08 06:28:30 +01:00 Compare
kjuulh force-pushed renovate/all from de4cbfa789 to 441575a01a 2024-12-09 02:27:07 +01:00 Compare
kjuulh force-pushed renovate/all from 441575a01a to 37009a22c4 2024-12-10 02:27:54 +01:00 Compare
kjuulh force-pushed renovate/all from 37009a22c4 to a4fc12e604 2024-12-10 06:27:52 +01:00 Compare
kjuulh force-pushed renovate/all from a4fc12e604 to ebecc5bfb3 2024-12-11 02:35:24 +01:00 Compare
kjuulh force-pushed renovate/all from ebecc5bfb3 to 828d572ab1 2024-12-11 06:26:01 +01:00 Compare
kjuulh force-pushed renovate/all from 828d572ab1 to 72c8949571 2024-12-12 02:28:50 +01:00 Compare
kjuulh force-pushed renovate/all from 72c8949571 to 9fc4b96c19 2024-12-12 06:24:35 +01:00 Compare
kjuulh force-pushed renovate/all from 9fc4b96c19 to e928277ba7 2024-12-13 02:26:23 +01:00 Compare
kjuulh force-pushed renovate/all from e928277ba7 to f30cfcc186 2024-12-13 06:25:21 +01:00 Compare
kjuulh force-pushed renovate/all from f30cfcc186 to 34e32e76f1 2024-12-14 02:25:21 +01:00 Compare
kjuulh force-pushed renovate/all from 34e32e76f1 to 71791d0eed 2024-12-14 06:25:01 +01:00 Compare
kjuulh force-pushed renovate/all from 71791d0eed to abf1c3083a 2024-12-15 02:24:16 +01:00 Compare
kjuulh force-pushed renovate/all from abf1c3083a to 6cafc5e07d 2024-12-15 06:23:54 +01:00 Compare
kjuulh force-pushed renovate/all from 6cafc5e07d to c3528dd0ec 2024-12-16 02:29:33 +01:00 Compare
kjuulh force-pushed renovate/all from c3528dd0ec to c64d5e5c9f 2024-12-16 06:26:45 +01:00 Compare
kjuulh force-pushed renovate/all from c64d5e5c9f to f92315cdc4 2024-12-17 02:26:29 +01:00 Compare
kjuulh force-pushed renovate/all from f92315cdc4 to df928ab368 2024-12-17 06:28:12 +01:00 Compare
kjuulh force-pushed renovate/all from df928ab368 to 13b40f55a8 2024-12-18 02:28:06 +01:00 Compare
kjuulh force-pushed renovate/all from 13b40f55a8 to afd41a6173 2024-12-18 06:24:24 +01:00 Compare
kjuulh force-pushed renovate/all from afd41a6173 to 7c2a063514 2024-12-19 02:28:19 +01:00 Compare
kjuulh force-pushed renovate/all from 7c2a063514 to c5dc4336c3 2024-12-19 06:24:28 +01:00 Compare
kjuulh force-pushed renovate/all from c5dc4336c3 to 5a2eb965d2 2024-12-20 02:26:02 +01:00 Compare
kjuulh force-pushed renovate/all from 5a2eb965d2 to e19a56612d 2024-12-20 06:26:24 +01:00 Compare
kjuulh force-pushed renovate/all from e19a56612d to 4f26a1ed87 2024-12-21 02:28:20 +01:00 Compare
kjuulh force-pushed renovate/all from 4f26a1ed87 to 429520bb18 2024-12-21 06:24:25 +01:00 Compare
kjuulh force-pushed renovate/all from 429520bb18 to 3f3a1343f2 2024-12-22 02:26:26 +01:00 Compare
kjuulh force-pushed renovate/all from 3f3a1343f2 to 0e0602aa53 2024-12-22 06:24:19 +01:00 Compare
kjuulh force-pushed renovate/all from 0e0602aa53 to 2ca020d9f0 2024-12-23 02:31:42 +01:00 Compare
kjuulh force-pushed renovate/all from 2ca020d9f0 to f91a0bb4fa 2024-12-23 06:33:25 +01:00 Compare
kjuulh force-pushed renovate/all from f91a0bb4fa to 7368e7c856 2024-12-24 02:34:02 +01:00 Compare
kjuulh force-pushed renovate/all from 7368e7c856 to e9ab2a377a 2024-12-24 06:24:36 +01:00 Compare
kjuulh force-pushed renovate/all from e9ab2a377a to 6791d6e222 2024-12-25 02:30:00 +01:00 Compare
kjuulh force-pushed renovate/all from 6791d6e222 to 874068f9c6 2024-12-25 06:25:58 +01:00 Compare
kjuulh force-pushed renovate/all from 874068f9c6 to 447ff9ba46 2024-12-26 02:27:33 +01:00 Compare
kjuulh force-pushed renovate/all from 447ff9ba46 to d64ec8abcb 2024-12-26 06:26:26 +01:00 Compare
kjuulh force-pushed renovate/all from d64ec8abcb to 638a8755dd 2024-12-27 02:25:54 +01:00 Compare
kjuulh force-pushed renovate/all from 638a8755dd to 6733a75b97 2024-12-29 02:31:30 +01:00 Compare
kjuulh force-pushed renovate/all from 6733a75b97 to b6022781d4 2024-12-29 06:24:19 +01:00 Compare
kjuulh force-pushed renovate/all from b6022781d4 to 2be5480051 2024-12-30 02:25:31 +01:00 Compare
kjuulh force-pushed renovate/all from 2be5480051 to e06e423edb 2024-12-30 06:24:55 +01:00 Compare
kjuulh force-pushed renovate/all from e06e423edb to 284dbd254d 2024-12-31 02:27:08 +01:00 Compare
kjuulh force-pushed renovate/all from 284dbd254d to 28d0cd367a 2024-12-31 06:27:03 +01:00 Compare
kjuulh force-pushed renovate/all from 28d0cd367a to 3732db5306 2025-01-01 02:28:36 +01:00 Compare
kjuulh force-pushed renovate/all from 3732db5306 to 03e1974039 2025-01-01 06:26:21 +01:00 Compare
kjuulh force-pushed renovate/all from 03e1974039 to 7436403fbc 2025-01-02 02:26:09 +01:00 Compare
kjuulh force-pushed renovate/all from 7436403fbc to 3330af7bca 2025-01-02 06:24:15 +01:00 Compare
kjuulh force-pushed renovate/all from 3330af7bca to a1ab617049 2025-01-03 02:23:42 +01:00 Compare
kjuulh force-pushed renovate/all from a1ab617049 to 6b2c5dca2b 2025-01-03 06:25:55 +01:00 Compare
kjuulh force-pushed renovate/all from 6b2c5dca2b to edd91af065 2025-01-04 02:26:27 +01:00 Compare
kjuulh force-pushed renovate/all from edd91af065 to 576f659798 2025-01-04 06:25:30 +01:00 Compare
kjuulh force-pushed renovate/all from 576f659798 to ead8b7c8ed 2025-01-05 02:28:33 +01:00 Compare
kjuulh force-pushed renovate/all from ead8b7c8ed to 27fa8d998a 2025-01-05 06:25:01 +01:00 Compare
kjuulh force-pushed renovate/all from 27fa8d998a to 618735d7f5 2025-01-06 02:23:53 +01:00 Compare
kjuulh force-pushed renovate/all from 618735d7f5 to 2041a8bad7 2025-01-06 06:24:07 +01:00 Compare
kjuulh force-pushed renovate/all from 2041a8bad7 to 409753c78b 2025-01-07 02:28:27 +01:00 Compare
kjuulh force-pushed renovate/all from 409753c78b to 37deec72a5 2025-01-08 02:26:53 +01:00 Compare
kjuulh force-pushed renovate/all from 37deec72a5 to 3a46b7f0d1 2025-01-08 06:27:01 +01:00 Compare
kjuulh force-pushed renovate/all from 3a46b7f0d1 to f7eb3081ae 2025-01-09 02:29:08 +01:00 Compare
kjuulh force-pushed renovate/all from f7eb3081ae to 06a24623e2 2025-01-09 06:26:13 +01:00 Compare
kjuulh force-pushed renovate/all from 06a24623e2 to 2426d7faa5 2025-01-10 02:27:07 +01:00 Compare
kjuulh force-pushed renovate/all from 2426d7faa5 to 61ff4d7440 2025-01-10 06:27:05 +01:00 Compare
kjuulh force-pushed renovate/all from 61ff4d7440 to d1af76c008 2025-01-11 06:27:08 +01:00 Compare
kjuulh force-pushed renovate/all from d1af76c008 to d6e7e87105 2025-01-12 02:28:51 +01:00 Compare
kjuulh force-pushed renovate/all from d6e7e87105 to a2184e12a3 2025-01-12 06:27:23 +01:00 Compare
kjuulh force-pushed renovate/all from a2184e12a3 to 803b060748 2025-01-13 02:30:29 +01:00 Compare
kjuulh force-pushed renovate/all from 803b060748 to c6aa4e0483 2025-01-13 06:28:29 +01:00 Compare
kjuulh force-pushed renovate/all from c6aa4e0483 to f0acbf51a4 2025-01-14 02:27:59 +01:00 Compare
kjuulh force-pushed renovate/all from f0acbf51a4 to 4acdefcda6 2025-01-14 06:27:36 +01:00 Compare
kjuulh force-pushed renovate/all from 4acdefcda6 to db91017c23 2025-01-15 02:35:56 +01:00 Compare
kjuulh force-pushed renovate/all from db91017c23 to 8324e4a945 2025-01-15 06:32:33 +01:00 Compare
kjuulh force-pushed renovate/all from 8324e4a945 to 24475f9ae6 2025-01-16 02:31:08 +01:00 Compare
kjuulh force-pushed renovate/all from 24475f9ae6 to 3508a50ac9 2025-01-16 06:28:06 +01:00 Compare
kjuulh force-pushed renovate/all from 3508a50ac9 to ab4bd44dc7 2025-01-17 02:30:02 +01:00 Compare
kjuulh force-pushed renovate/all from ab4bd44dc7 to 7891516ff8 2025-01-17 06:28:03 +01:00 Compare
kjuulh force-pushed renovate/all from 7891516ff8 to 7ba104ae7a 2025-01-18 02:32:27 +01:00 Compare
kjuulh force-pushed renovate/all from 7ba104ae7a to 855ba3a136 2025-01-18 06:28:46 +01:00 Compare
kjuulh force-pushed renovate/all from 855ba3a136 to f6190e5160 2025-01-19 02:31:59 +01:00 Compare
kjuulh force-pushed renovate/all from f6190e5160 to 26a23c5249 2025-01-19 06:29:14 +01:00 Compare
kjuulh force-pushed renovate/all from 26a23c5249 to b41eb87c23 2025-01-20 02:30:37 +01:00 Compare
kjuulh force-pushed renovate/all from b41eb87c23 to 0534acb2b1 2025-01-20 06:29:35 +01:00 Compare
kjuulh force-pushed renovate/all from 0534acb2b1 to 2e8bea6c21 2025-01-21 02:31:31 +01:00 Compare
kjuulh force-pushed renovate/all from 2e8bea6c21 to ec190c9085 2025-01-21 06:33:34 +01:00 Compare
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
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
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/cuddle-v2#6
No description provided.