chore(deps): update all dependencies - autoclosed #7

Closed
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.86 -> 1.0.87
clap workspace.dependencies patch 4.5.8 -> 4.5.17
minijinja dependencies minor 2.0.3 -> 2.2.0
similar-asserts dev-dependencies minor 1.5.0 -> 1.6.0
tokio (source) workspace.dependencies minor 1.38.0 -> 1.40.0
tokio-stream (source) dependencies patch 0.1.15 -> 0.1.16
uuid dependencies minor 1.9.1 -> 1.10.0

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

dtolnay/anyhow (anyhow)

v1.0.87

Compare Source

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#​383)
clap-rs/clap (clap)

v4.5.17

Compare Source

Fixes
  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

v4.5.16

Compare Source

Fixes
  • (derive) Improve error messages when derive feature is missing

v4.5.15

Compare Source

Compatiblity
  • (unstable-ext) Arg::remove changed return types
Fixes
  • (unstable-ext) Make Arg::remove return the removed item

v4.5.14

Compare Source

Features
  • (unstable-ext) Added Arg::add for attaching arbitrary state, like completion hints, to Arg without Arg knowing about it

v4.5.13

Compare Source

Fixes
  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

v4.5.12

Compare Source

v4.5.11

Compare Source

v4.5.10

Compare Source

v4.5.9

Compare Source

Fixes
  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one
mitsuhiko/minijinja (minijinja)

v2.2.0

Compare Source

  • Fixes a bug where some enums did not deserialize correctly when
    used with ViaDeserialize. #​554
  • Implemented IntoDeserializer for Value and &Value. #​555
  • Added filesizeformat to minijinja-contrib. #​556
  • Added support for the loop_controls feature which adds
    {% break %} and {% continue %}. #​558
  • Iterables can now be indexed into. It was already possible previously
    to slice them. This improves support for Jinja2 compatibility as Jinja2
    is more likely to create temporary lists when slicing lists. #​565

v2.1.2

Compare Source

  • Flush filter and test cache when processing extended template.
    This fixes a bug that caused the wrong filters to be used in some
    cases. #​551

v2.1.1

Compare Source

  • Added indent parameter to tojson filter. #​546
  • Added randrange, lipsum, random, cycler and joiner to
    minijinja-contrib. #​547
  • Added the ability to use &T and Arc<T> as parameters
    to filters and functions if T is an Object. #​548
  • minijinja-cli now also enables the datetime, timezone and rand features. #​549
  • Aligned the behavior of the int filter closer to Jinja2. #​549

v2.1.0

Compare Source

  • minijinja-cli now supports .ini files. #​532
  • Fixed a bug that caused cycle detection to trigger incorrectly when an included
    template extended from another template. #​538
  • Bumped the minimum version of self_cell to 1.0.4. #​540
  • MiniJinja will now warn if the serde feature is disabled. This is in
    anticipation of removing the serde dependency in the future. #​541
  • Improved an edge case with State::resolve. It now can resolve the
    initial template context in macro calls even if no closure has been
    created. #​542
mitsuhiko/similar-asserts (similar-asserts)

v1.6.0

Compare Source

  • Loosen static lifetime bounds for labels. #​9
tokio-rs/tokio (tokio)

v1.40.0: Tokio v1.40.0

Compare Source

1.40.0 (August 30th, 2024)

Added
  • io: add util::SimplexStream (#​6589)
  • process: stabilize Command::process_group (#​6731)
  • sync: add {TrySendError,SendTimeoutError}::into_inner (#​6755)
  • task: add JoinSet::join_all (#​6784)
Added (unstable)
  • runtime: add Builder::{on_task_spawn, on_task_terminate} (#​6742)
Changed
  • io: use vectored io for write_all_buf when possible (#​6724)
  • runtime: prevent niche-optimization to avoid triggering miri (#​6744)
  • sync: mark mpsc types as UnwindSafe (#​6783)
  • sync,time: make Sleep and BatchSemaphore instrumentation explicit roots (#​6727)
  • task: use NonZeroU64 for task::Id (#​6733)
  • task: include panic message when printing JoinError (#​6753)
  • task: add #[must_use] to JoinHandle::abort_handle (#​6762)
  • time: eliminate timer wheel allocations (#​6779)
Documented
  • docs: clarify that [build] section doesn't go in Cargo.toml (#​6728)
  • io: clarify zero remaining capacity case (#​6790)
  • macros: improve documentation for select! (#​6774)
  • sync: document mpsc channel allocation behavior (#​6773)

v1.39.3: Tokio v1.39.3

Compare Source

1.39.3 (August 17th, 2024)

This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#​6772)

v1.39.2: Tokio v1.39.2

Compare Source

1.39.2 (July 27th, 2024)

This release fixes a regression where the select! macro stopped accepting expressions that make use of temporary lifetime extension. (#​6722)

v1.39.1: Tokio v1.39.1

Compare Source

1.39.1 (July 23rd, 2024)

This release reverts "time: avoid traversing entries in the time wheel twice" because it contains a bug. (#​6715)

v1.39.0: Tokio v1.39.0

Compare Source

1.39.0 (July 23rd, 2024)

  • This release bumps the MSRV to 1.70. (#​6645)
  • This release upgrades to mio v1. (#​6635)
  • This release upgrades to windows-sys v0.52 (#​6154)
Added
  • io: implement AsyncSeek for Empty (#​6663)
  • metrics: stabilize num_alive_tasks (#​6619, #​6667)
  • process: add Command::as_std_mut (#​6608)
  • sync: add watch::Sender::same_channel (#​6637)
  • sync: add {Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count} (#​6661)
  • sync: implement Default for watch::Sender (#​6626)
  • task: implement Clone for AbortHandle (#​6621)
  • task: stabilize consume_budget (#​6622)
Changed
  • io: improve panic message of ReadBuf::put_slice() (#​6629)
  • io: read during write in copy_bidirectional and copy (#​6532)
  • runtime: replace num_cpus with available_parallelism (#​6709)
  • task: avoid stack overflow when passing large future to block_on (#​6692)
  • time: avoid traversing entries in the time wheel twice (#​6584)
  • time: support IntoFuture with timeout (#​6666)
  • macros: support IntoFuture with join! and select! (#​6710)
Fixed
  • docs: fix docsrs builds with the fs feature enabled (#​6585)
  • io: only use short-read optimization on known-to-be-compatible platforms (#​6668)
  • time: fix overflow panic when using large durations with Interval (#​6612)
Added (unstable)
  • macros: allow unhandled_panic behavior for #[tokio::main] and #[tokio::test] (#​6593)
  • metrics: add spawned_tasks_count (#​6114)
  • metrics: add worker_park_unpark_count (#​6696)
  • metrics: add worker thread id (#​6695)
Documented
  • io: update tokio::io::stdout documentation (#​6674)
  • macros: typo fix in join.rs and try_join.rs (#​6641)
  • runtime: fix typo in unhandled_panic (#​6660)
  • task: document behavior of JoinSet::try_join_next when all tasks are running (#​6671)

v1.38.1: Tokio v1.38.1

Compare Source

1.38.1 (July 16th, 2024)

This release fixes the bug identified as (#​6682), which caused timers not
to fire when they should.

Fixed
  • time: update wake_up while holding all the locks of sharded time wheels (#​6683)
uuid-rs/uuid (uuid)

v1.10.0

Compare Source

Deprecations

This release deprecates and renames the following functions:

  • Builder::from_rfc4122_timestamp -> Builder::from_gregorian_timestamp
  • Builder::from_sorted_rfc4122_timestamp -> Builder::from_sorted_gregorian_timestamp
  • Timestamp::from_rfc4122 -> Timestamp::from_gregorian
  • Timestamp::to_rfc4122 -> Timestamp::to_gregorian

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0


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.86` -> `1.0.87` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.8` -> `4.5.17` | | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.0.3` -> `2.2.0` | | [similar-asserts](https://github.com/mitsuhiko/similar-asserts) | dev-dependencies | minor | `1.5.0` -> `1.6.0` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.38.0` -> `1.40.0` | | [tokio-stream](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | dependencies | patch | `0.1.15` -> `0.1.16` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.9.1` -> `1.10.0` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`v1.0.87`](https://github.com/dtolnay/anyhow/releases/tag/1.0.87) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.87) - Support more APIs, including `Error::new` and `Error::chain`, in no-std mode on Rust 1.81+ ([#&#8203;383](https://github.com/dtolnay/anyhow/issues/383)) </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.17`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4517---2024-09-04) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.16...v4.5.17) ##### Fixes - *(help)* Style required argument groups - *(derive)* Improve error messages when unsupported fields are used ### [`v4.5.16`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4516---2024-08-15) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.15...v4.5.16) ##### Fixes - *(derive)* Improve error messages when `derive` feature is missing ### [`v4.5.15`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4515---2024-08-10) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.14...v4.5.15) ##### Compatiblity - *(unstable-ext)* `Arg::remove` changed return types ##### Fixes - *(unstable-ext)* Make `Arg::remove` return the removed item ### [`v4.5.14`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4514---2024-08-08) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.14) ##### Features - *(unstable-ext)* Added `Arg::add` for attaching arbitrary state, like completion hints, to `Arg` without `Arg` knowing about it ### [`v4.5.13`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4513---2024-07-31) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.12...v4.5.13) ##### Fixes - *(derive)* Improve error message when `#[flatten]`ing an optional `#[group(skip)]` - *(help)* Properly wrap long subcommand descriptions in help ### [`v4.5.12`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4512---2024-07-31) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.11...v4.5.12) ### [`v4.5.11`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4511---2024-07-25) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.10...v4.5.11) ### [`v4.5.10`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4510---2024-07-23) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.9...v4.5.10) ### [`v4.5.9`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#459---2024-07-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.8...v4.5.9) ##### Fixes - *(error)* When defining a custom help flag, be sure to suggest it like we do the built-in one </details> <details> <summary>mitsuhiko/minijinja (minijinja)</summary> ### [`v2.2.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#220) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.1.2...2.2.0) - Fixes a bug where some enums did not deserialize correctly when used with `ViaDeserialize`. [#&#8203;554](https://github.com/mitsuhiko/minijinja/issues/554) - Implemented `IntoDeserializer` for `Value` and `&Value`. [#&#8203;555](https://github.com/mitsuhiko/minijinja/issues/555) - Added `filesizeformat` to minijinja-contrib. [#&#8203;556](https://github.com/mitsuhiko/minijinja/issues/556) - Added support for the `loop_controls` feature which adds `{% break %}` and `{% continue %}`. [#&#8203;558](https://github.com/mitsuhiko/minijinja/issues/558) - Iterables can now be indexed into. It was already possible previously to slice them. This improves support for Jinja2 compatibility as Jinja2 is more likely to create temporary lists when slicing lists. [#&#8203;565](https://github.com/mitsuhiko/minijinja/issues/565) ### [`v2.1.2`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#212) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.1.1...2.1.2) - Flush filter and test cache when processing extended template. This fixes a bug that caused the wrong filters to be used in some cases. [#&#8203;551](https://github.com/mitsuhiko/minijinja/issues/551) ### [`v2.1.1`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#211) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.1.0...2.1.1) - Added `indent` parameter to `tojson` filter. [#&#8203;546](https://github.com/mitsuhiko/minijinja/issues/546) - Added `randrange`, `lipsum`, `random`, `cycler` and `joiner` to `minijinja-contrib`. [#&#8203;547](https://github.com/mitsuhiko/minijinja/issues/547) - Added the ability to use `&T` and `Arc<T>` as parameters to filters and functions if `T` is an `Object`. [#&#8203;548](https://github.com/mitsuhiko/minijinja/issues/548) - `minijinja-cli` now also enables the datetime, timezone and rand features. [#&#8203;549](https://github.com/mitsuhiko/minijinja/issues/549) - Aligned the behavior of the `int` filter closer to Jinja2. [#&#8203;549](https://github.com/mitsuhiko/minijinja/issues/549) ### [`v2.1.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#210) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.0.3...2.1.0) - minijinja-cli now supports `.ini` files. [#&#8203;532](https://github.com/mitsuhiko/minijinja/issues/532) - Fixed a bug that caused cycle detection to trigger incorrectly when an included template extended from another template. [#&#8203;538](https://github.com/mitsuhiko/minijinja/issues/538) - Bumped the minimum version of `self_cell` to 1.0.4. [#&#8203;540](https://github.com/mitsuhiko/minijinja/issues/540) - MiniJinja will now warn if the `serde` feature is disabled. This is in anticipation of removing the serde dependency in the future. [#&#8203;541](https://github.com/mitsuhiko/minijinja/issues/541) - Improved an edge case with `State::resolve`. It now can resolve the initial template context in macro calls even if no closure has been created. [#&#8203;542](https://github.com/mitsuhiko/minijinja/issues/542) </details> <details> <summary>mitsuhiko/similar-asserts (similar-asserts)</summary> ### [`v1.6.0`](https://github.com/mitsuhiko/similar-asserts/blob/HEAD/CHANGELOG.md#160) [Compare Source](https://github.com/mitsuhiko/similar-asserts/compare/1.5.0...1.6.0) - Loosen static lifetime bounds for labels. [#&#8203;9](https://github.com/mitsuhiko/similar-asserts/issues/9) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.40.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.40.0): Tokio v1.40.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) ### 1.40.0 (August 30th, 2024) ##### Added - io: add `util::SimplexStream` ([#&#8203;6589]) - process: stabilize `Command::process_group` ([#&#8203;6731]) - sync: add `{TrySendError,SendTimeoutError}::into_inner` ([#&#8203;6755]) - task: add `JoinSet::join_all` ([#&#8203;6784]) ##### Added (unstable) - runtime: add `Builder::{on_task_spawn, on_task_terminate}` ([#&#8203;6742]) ##### Changed - io: use vectored io for `write_all_buf` when possible ([#&#8203;6724]) - runtime: prevent niche-optimization to avoid triggering miri ([#&#8203;6744]) - sync: mark mpsc types as `UnwindSafe` ([#&#8203;6783]) - sync,time: make `Sleep` and `BatchSemaphore` instrumentation explicit roots ([#&#8203;6727]) - task: use `NonZeroU64` for `task::Id` ([#&#8203;6733]) - task: include panic message when printing `JoinError` ([#&#8203;6753]) - task: add `#[must_use]` to `JoinHandle::abort_handle` ([#&#8203;6762]) - time: eliminate timer wheel allocations ([#&#8203;6779]) ##### Documented - docs: clarify that `[build]` section doesn't go in Cargo.toml ([#&#8203;6728]) - io: clarify zero remaining capacity case ([#&#8203;6790]) - macros: improve documentation for `select!` ([#&#8203;6774]) - sync: document mpsc channel allocation behavior ([#&#8203;6773]) [#&#8203;6589]: https://github.com/tokio-rs/tokio/pull/6589 [#&#8203;6724]: https://github.com/tokio-rs/tokio/pull/6724 [#&#8203;6727]: https://github.com/tokio-rs/tokio/pull/6727 [#&#8203;6728]: https://github.com/tokio-rs/tokio/pull/6728 [#&#8203;6731]: https://github.com/tokio-rs/tokio/pull/6731 [#&#8203;6733]: https://github.com/tokio-rs/tokio/pull/6733 [#&#8203;6742]: https://github.com/tokio-rs/tokio/pull/6742 [#&#8203;6744]: https://github.com/tokio-rs/tokio/pull/6744 [#&#8203;6753]: https://github.com/tokio-rs/tokio/pull/6753 [#&#8203;6755]: https://github.com/tokio-rs/tokio/pull/6755 [#&#8203;6762]: https://github.com/tokio-rs/tokio/pull/6762 [#&#8203;6773]: https://github.com/tokio-rs/tokio/pull/6773 [#&#8203;6774]: https://github.com/tokio-rs/tokio/pull/6774 [#&#8203;6779]: https://github.com/tokio-rs/tokio/pull/6779 [#&#8203;6783]: https://github.com/tokio-rs/tokio/pull/6783 [#&#8203;6784]: https://github.com/tokio-rs/tokio/pull/6784 [#&#8203;6790]: https://github.com/tokio-rs/tokio/pull/6790 ### [`v1.39.3`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.39.3): Tokio v1.39.3 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.39.2...tokio-1.39.3) ### 1.39.3 (August 17th, 2024) This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. ([#&#8203;6772]) [#&#8203;6772]: https://github.com/tokio-rs/tokio/pull/6772 ### [`v1.39.2`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.39.2): Tokio v1.39.2 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.39.1...tokio-1.39.2) ### 1.39.2 (July 27th, 2024) This release fixes a regression where the `select!` macro stopped accepting expressions that make use of temporary lifetime extension. ([#&#8203;6722]) [#&#8203;6722]: https://github.com/tokio-rs/tokio/pull/6722 ### [`v1.39.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.39.1): Tokio v1.39.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.39.0...tokio-1.39.1) ### 1.39.1 (July 23rd, 2024) This release reverts "time: avoid traversing entries in the time wheel twice" because it contains a bug. ([#&#8203;6715]) [#&#8203;6715]: https://github.com/tokio-rs/tokio/pull/6715 ### [`v1.39.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.39.0): Tokio v1.39.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.38.1...tokio-1.39.0) ### 1.39.0 (July 23rd, 2024) - This release bumps the MSRV to 1.70. ([#&#8203;6645]) - This release upgrades to mio v1. ([#&#8203;6635]) - This release upgrades to windows-sys v0.52 ([#&#8203;6154]) ##### Added - io: implement `AsyncSeek` for `Empty` ([#&#8203;6663]) - metrics: stabilize `num_alive_tasks` ([#&#8203;6619], [#&#8203;6667]) - process: add `Command::as_std_mut` ([#&#8203;6608]) - sync: add `watch::Sender::same_channel` ([#&#8203;6637]) - sync: add `{Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count}` ([#&#8203;6661]) - sync: implement `Default` for `watch::Sender` ([#&#8203;6626]) - task: implement `Clone` for `AbortHandle` ([#&#8203;6621]) - task: stabilize `consume_budget` ([#&#8203;6622]) ##### Changed - io: improve panic message of `ReadBuf::put_slice()` ([#&#8203;6629]) - io: read during write in `copy_bidirectional` and `copy` ([#&#8203;6532]) - runtime: replace `num_cpus` with `available_parallelism` ([#&#8203;6709]) - task: avoid stack overflow when passing large future to `block_on` ([#&#8203;6692]) - time: avoid traversing entries in the time wheel twice ([#&#8203;6584]) - time: support `IntoFuture` with `timeout` ([#&#8203;6666]) - macros: support `IntoFuture` with `join!` and `select!` ([#&#8203;6710]) ##### Fixed - docs: fix docsrs builds with the fs feature enabled ([#&#8203;6585]) - io: only use short-read optimization on known-to-be-compatible platforms ([#&#8203;6668]) - time: fix overflow panic when using large durations with `Interval` ([#&#8203;6612]) ##### Added (unstable) - macros: allow `unhandled_panic` behavior for `#[tokio::main]` and `#[tokio::test]` ([#&#8203;6593]) - metrics: add `spawned_tasks_count` ([#&#8203;6114]) - metrics: add `worker_park_unpark_count` ([#&#8203;6696]) - metrics: add worker thread id ([#&#8203;6695]) ##### Documented - io: update `tokio::io::stdout` documentation ([#&#8203;6674]) - macros: typo fix in `join.rs` and `try_join.rs` ([#&#8203;6641]) - runtime: fix typo in `unhandled_panic` ([#&#8203;6660]) - task: document behavior of `JoinSet::try_join_next` when all tasks are running ([#&#8203;6671]) [#&#8203;6114]: https://github.com/tokio-rs/tokio/pull/6114 [#&#8203;6154]: https://github.com/tokio-rs/tokio/pull/6154 [#&#8203;6532]: https://github.com/tokio-rs/tokio/pull/6532 [#&#8203;6584]: https://github.com/tokio-rs/tokio/pull/6584 [#&#8203;6585]: https://github.com/tokio-rs/tokio/pull/6585 [#&#8203;6593]: https://github.com/tokio-rs/tokio/pull/6593 [#&#8203;6608]: https://github.com/tokio-rs/tokio/pull/6608 [#&#8203;6612]: https://github.com/tokio-rs/tokio/pull/6612 [#&#8203;6619]: https://github.com/tokio-rs/tokio/pull/6619 [#&#8203;6621]: https://github.com/tokio-rs/tokio/pull/6621 [#&#8203;6622]: https://github.com/tokio-rs/tokio/pull/6622 [#&#8203;6626]: https://github.com/tokio-rs/tokio/pull/6626 [#&#8203;6629]: https://github.com/tokio-rs/tokio/pull/6629 [#&#8203;6635]: https://github.com/tokio-rs/tokio/pull/6635 [#&#8203;6637]: https://github.com/tokio-rs/tokio/pull/6637 [#&#8203;6641]: https://github.com/tokio-rs/tokio/pull/6641 [#&#8203;6645]: https://github.com/tokio-rs/tokio/pull/6645 [#&#8203;6660]: https://github.com/tokio-rs/tokio/pull/6660 [#&#8203;6661]: https://github.com/tokio-rs/tokio/pull/6661 [#&#8203;6663]: https://github.com/tokio-rs/tokio/pull/6663 [#&#8203;6666]: https://github.com/tokio-rs/tokio/pull/6666 [#&#8203;6667]: https://github.com/tokio-rs/tokio/pull/6667 [#&#8203;6668]: https://github.com/tokio-rs/tokio/pull/6668 [#&#8203;6671]: https://github.com/tokio-rs/tokio/pull/6671 [#&#8203;6674]: https://github.com/tokio-rs/tokio/pull/6674 [#&#8203;6692]: https://github.com/tokio-rs/tokio/pull/6692 [#&#8203;6695]: https://github.com/tokio-rs/tokio/pull/6695 [#&#8203;6696]: https://github.com/tokio-rs/tokio/pull/6696 [#&#8203;6709]: https://github.com/tokio-rs/tokio/pull/6709 [#&#8203;6710]: https://github.com/tokio-rs/tokio/pull/6710 ### [`v1.38.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.38.1): Tokio v1.38.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.38.0...tokio-1.38.1) ### 1.38.1 (July 16th, 2024) This release fixes the bug identified as ([#&#8203;6682]), which caused timers not to fire when they should. ##### Fixed - time: update `wake_up` while holding all the locks of sharded time wheels ([#&#8203;6683]) [#&#8203;6682]: https://github.com/tokio-rs/tokio/pull/6682 [#&#8203;6683]: https://github.com/tokio-rs/tokio/pull/6683 </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.10.0`](https://github.com/uuid-rs/uuid/releases/tag/1.10.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0) #### Deprecations This release deprecates and renames the following functions: - `Builder::from_rfc4122_timestamp` -> `Builder::from_gregorian_timestamp` - `Builder::from_sorted_rfc4122_timestamp` -> `Builder::from_sorted_gregorian_timestamp` - `Timestamp::from_rfc4122` -> `Timestamp::from_gregorian` - `Timestamp::to_rfc4122` -> `Timestamp::to_gregorian` #### What's Changed - Use const identifier in uuid macro by [@&#8203;Vrajs16](https://github.com/Vrajs16) in https://github.com/uuid-rs/uuid/pull/764 - Rename most methods referring to RFC4122 by [@&#8203;Mikopet](https://github.com/Mikopet) / [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/765 - prepare for 1.10.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/766 #### New Contributors - [@&#8203;Vrajs16](https://github.com/Vrajs16) made their first contribution in https://github.com/uuid-rs/uuid/pull/764 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0 </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 added 1 commit 2024-08-21 22:48:27 +02:00
chore(deps): update all dependencies
Some checks are pending
continuous-integration/drone/pr Build is pending
continuous-integration/drone/push Build is passing
410b05fb6e
kjuulh added 1 commit 2024-08-21 22:48:27 +02:00
chore(deps): update all dependencies
Some checks are pending
continuous-integration/drone/pr Build is pending
continuous-integration/drone/push Build is passing
410b05fb6e
kjuulh force-pushed renovate/all from 410b05fb6e to ace083e1fb 2024-08-26 22:36:08 +02:00 Compare
kjuulh force-pushed renovate/all from ace083e1fb to f325140dcc 2024-08-26 23:13:44 +02:00 Compare
kjuulh force-pushed renovate/all from f325140dcc to c34d9f35f7 2024-08-26 23:51:03 +02:00 Compare
kjuulh force-pushed renovate/all from c34d9f35f7 to 50f6ebd9d8 2024-08-27 00:18:54 +02:00 Compare
kjuulh force-pushed renovate/all from 50f6ebd9d8 to 3b8bb523d3 2024-08-27 01:05:55 +02:00 Compare
kjuulh force-pushed renovate/all from 3b8bb523d3 to 9190ee9d30 2024-08-27 01:41:43 +02:00 Compare
kjuulh force-pushed renovate/all from 9190ee9d30 to 138260d346 2024-08-27 02:18:34 +02:00 Compare
kjuulh force-pushed renovate/all from 138260d346 to 03f6b2331a 2024-08-27 02:54:17 +02:00 Compare
kjuulh force-pushed renovate/all from 03f6b2331a to 067a063cec 2024-08-27 03:31:40 +02:00 Compare
kjuulh force-pushed renovate/all from 067a063cec to 2b6d1c8702 2024-08-27 04:06:10 +02:00 Compare
kjuulh force-pushed renovate/all from 2b6d1c8702 to 17324e6b9b 2024-08-27 04:41:25 +02:00 Compare
kjuulh force-pushed renovate/all from 17324e6b9b to a066b63db8 2024-08-27 05:17:17 +02:00 Compare
kjuulh force-pushed renovate/all from a066b63db8 to 3ff27a6069 2024-08-27 05:53:31 +02:00 Compare
kjuulh force-pushed renovate/all from 3ff27a6069 to 086a329d21 2024-08-27 06:17:57 +02:00 Compare
kjuulh force-pushed renovate/all from 086a329d21 to c07dcb735a 2024-08-27 07:02:58 +02:00 Compare
kjuulh force-pushed renovate/all from c07dcb735a to 26d02c23cb 2024-08-27 07:38:45 +02:00 Compare
kjuulh force-pushed renovate/all from 26d02c23cb to edf90c29b5 2024-08-27 08:14:56 +02:00 Compare
kjuulh force-pushed renovate/all from edf90c29b5 to 6ac2a0c573 2024-08-27 08:50:12 +02:00 Compare
kjuulh force-pushed renovate/all from 6ac2a0c573 to b645867c02 2024-08-27 09:26:06 +02:00 Compare
kjuulh force-pushed renovate/all from b645867c02 to e6567abba2 2024-08-27 10:01:22 +02:00 Compare
kjuulh force-pushed renovate/all from e6567abba2 to de0a395228 2024-08-27 10:36:38 +02:00 Compare
kjuulh force-pushed renovate/all from de0a395228 to dd8759223d 2024-08-27 11:12:08 +02:00 Compare
kjuulh force-pushed renovate/all from dd8759223d to ad8074948a 2024-08-27 11:48:42 +02:00 Compare
kjuulh force-pushed renovate/all from ad8074948a to 9c34b70e2b 2024-08-27 12:18:15 +02:00 Compare
kjuulh force-pushed renovate/all from 9c34b70e2b to 44fe1a2228 2024-08-27 13:03:46 +02:00 Compare
kjuulh force-pushed renovate/all from 44fe1a2228 to a48cd0eeeb 2024-08-27 13:39:31 +02:00 Compare
kjuulh force-pushed renovate/all from a48cd0eeeb to b3777f71ea 2024-08-27 14:16:32 +02:00 Compare
kjuulh force-pushed renovate/all from b3777f71ea to 96ba5142ee 2024-08-27 14:52:20 +02:00 Compare
kjuulh force-pushed renovate/all from 96ba5142ee to 85f2703c19 2024-08-27 15:28:19 +02:00 Compare
kjuulh force-pushed renovate/all from 85f2703c19 to 668b6d1412 2024-08-27 16:03:50 +02:00 Compare
kjuulh force-pushed renovate/all from 668b6d1412 to 3642ac1eec 2024-08-27 16:39:54 +02:00 Compare
kjuulh force-pushed renovate/all from 3642ac1eec to fcd2c63675 2024-08-27 17:15:36 +02:00 Compare
kjuulh force-pushed renovate/all from fcd2c63675 to 79ca6bcd88 2024-08-27 17:53:00 +02:00 Compare
kjuulh force-pushed renovate/all from 79ca6bcd88 to 57bfe1e3c5 2024-08-27 18:18:11 +02:00 Compare
kjuulh force-pushed renovate/all from 57bfe1e3c5 to 2c769bbbc6 2024-08-27 19:04:52 +02:00 Compare
kjuulh force-pushed renovate/all from 2c769bbbc6 to 451f7d7847 2024-08-27 19:41:17 +02:00 Compare
kjuulh force-pushed renovate/all from 451f7d7847 to 8c59e92534 2024-08-27 20:18:35 +02:00 Compare
kjuulh force-pushed renovate/all from 8c59e92534 to e8a6c34091 2024-08-27 20:54:27 +02:00 Compare
kjuulh force-pushed renovate/all from e8a6c34091 to 27098986f0 2024-08-27 21:31:08 +02:00 Compare
kjuulh force-pushed renovate/all from 27098986f0 to 2b9ec7fe72 2024-08-27 22:07:11 +02:00 Compare
kjuulh force-pushed renovate/all from 2b9ec7fe72 to 420230c1ed 2024-08-27 22:43:29 +02:00 Compare
kjuulh force-pushed renovate/all from 420230c1ed to 632e42161f 2024-08-27 23:20:22 +02:00 Compare
kjuulh force-pushed renovate/all from 632e42161f to 597d1b1bf8 2024-08-27 23:56:41 +02:00 Compare
kjuulh force-pushed renovate/all from 597d1b1bf8 to cfb6be98cd 2024-08-28 00:18:43 +02:00 Compare
kjuulh force-pushed renovate/all from cfb6be98cd to 6a51ce90b6 2024-08-28 01:06:19 +02:00 Compare
kjuulh force-pushed renovate/all from 6a51ce90b6 to d5ef56f69f 2024-08-28 01:42:52 +02:00 Compare
kjuulh force-pushed renovate/all from d5ef56f69f to 9dc7c9ced7 2024-08-28 02:19:57 +02:00 Compare
kjuulh force-pushed renovate/all from 9dc7c9ced7 to 7e12bbc2d0 2024-08-28 02:59:03 +02:00 Compare
kjuulh force-pushed renovate/all from 7e12bbc2d0 to a5ace1c544 2024-08-28 03:37:43 +02:00 Compare
kjuulh force-pushed renovate/all from a5ace1c544 to da93164aca 2024-08-28 04:12:47 +02:00 Compare
kjuulh force-pushed renovate/all from da93164aca to 4f6456a562 2024-08-28 04:48:45 +02:00 Compare
kjuulh force-pushed renovate/all from 4f6456a562 to 2c1a1fef78 2024-08-28 05:25:25 +02:00 Compare
kjuulh force-pushed renovate/all from 2c1a1fef78 to e4c5d86869 2024-08-28 06:18:03 +02:00 Compare
kjuulh force-pushed renovate/all from e4c5d86869 to e6d57e7bd7 2024-08-28 07:03:49 +02:00 Compare
kjuulh force-pushed renovate/all from e6d57e7bd7 to cf226d528d 2024-08-28 07:40:24 +02:00 Compare
kjuulh force-pushed renovate/all from cf226d528d to f592a2c3e0 2024-08-28 08:17:21 +02:00 Compare
kjuulh force-pushed renovate/all from f592a2c3e0 to a44a663998 2024-08-28 08:53:58 +02:00 Compare
kjuulh force-pushed renovate/all from a44a663998 to 7c2fafa3b9 2024-08-28 09:31:23 +02:00 Compare
kjuulh force-pushed renovate/all from 7c2fafa3b9 to 2dfeceb171 2024-08-28 10:08:17 +02:00 Compare
kjuulh force-pushed renovate/all from 2dfeceb171 to 776355f86d 2024-08-28 10:44:27 +02:00 Compare
kjuulh force-pushed renovate/all from 776355f86d to e4081a93b3 2024-08-28 11:20:52 +02:00 Compare
kjuulh force-pushed renovate/all from e4081a93b3 to 6327a45817 2024-08-28 11:57:14 +02:00 Compare
kjuulh force-pushed renovate/all from 6327a45817 to 57e2b11b26 2024-08-28 12:18:09 +02:00 Compare
kjuulh force-pushed renovate/all from 57e2b11b26 to febb5a05ce 2024-08-28 13:04:02 +02:00 Compare
kjuulh force-pushed renovate/all from febb5a05ce to 04f2153038 2024-08-28 13:40:41 +02:00 Compare
kjuulh force-pushed renovate/all from 04f2153038 to 8ad5e03b21 2024-08-28 14:17:27 +02:00 Compare
kjuulh force-pushed renovate/all from 8ad5e03b21 to 8ebc319959 2024-08-28 14:53:05 +02:00 Compare
kjuulh force-pushed renovate/all from 8ebc319959 to 3878b4c5a7 2024-08-28 15:29:10 +02:00 Compare
kjuulh force-pushed renovate/all from 3878b4c5a7 to 872a22fd97 2024-08-28 16:05:52 +02:00 Compare
kjuulh force-pushed renovate/all from 872a22fd97 to 504c0e5299 2024-08-28 16:42:34 +02:00 Compare
kjuulh force-pushed renovate/all from 504c0e5299 to 3a61b8a677 2024-08-28 17:19:46 +02:00 Compare
kjuulh force-pushed renovate/all from 3a61b8a677 to 273a792900 2024-08-28 17:56:27 +02:00 Compare
kjuulh force-pushed renovate/all from 273a792900 to d0a35a2c10 2024-08-28 18:17:58 +02:00 Compare
kjuulh force-pushed renovate/all from d0a35a2c10 to c0764d8abf 2024-08-28 19:04:32 +02:00 Compare
kjuulh force-pushed renovate/all from c0764d8abf to fb1776a77a 2024-08-28 19:43:09 +02:00 Compare
kjuulh force-pushed renovate/all from fb1776a77a to f7bfbec557 2024-08-28 20:23:56 +02:00 Compare
kjuulh force-pushed renovate/all from f7bfbec557 to 369c3017e4 2024-08-28 21:03:40 +02:00 Compare
kjuulh force-pushed renovate/all from 369c3017e4 to bcdd5cd0d1 2024-08-28 21:43:31 +02:00 Compare
kjuulh force-pushed renovate/all from bcdd5cd0d1 to 677d4808a2 2024-08-28 22:24:43 +02:00 Compare
kjuulh force-pushed renovate/all from 677d4808a2 to fc935287d6 2024-08-28 23:05:37 +02:00 Compare
kjuulh force-pushed renovate/all from fc935287d6 to 29f4797e65 2024-08-28 23:47:22 +02:00 Compare
kjuulh force-pushed renovate/all from 29f4797e65 to 2a393cb98f 2024-08-29 00:20:18 +02:00 Compare
kjuulh force-pushed renovate/all from 2a393cb98f to 86f76b3774 2024-08-29 01:11:55 +02:00 Compare
kjuulh force-pushed renovate/all from 86f76b3774 to 253e87318f 2024-08-29 01:50:59 +02:00 Compare
kjuulh force-pushed renovate/all from 253e87318f to c01680b8fe 2024-08-29 02:28:44 +02:00 Compare
kjuulh force-pushed renovate/all from c01680b8fe to 8b158ef99b 2024-08-29 03:06:11 +02:00 Compare
kjuulh force-pushed renovate/all from 8b158ef99b to 2769532c83 2024-08-29 03:42:36 +02:00 Compare
kjuulh force-pushed renovate/all from 2769532c83 to b5946cbc63 2024-08-29 04:18:49 +02:00 Compare
kjuulh force-pushed renovate/all from b5946cbc63 to f53cce8e77 2024-08-29 04:55:00 +02:00 Compare
kjuulh force-pushed renovate/all from f53cce8e77 to bf033be4b7 2024-08-29 05:32:41 +02:00 Compare
kjuulh force-pushed renovate/all from bf033be4b7 to b2ea4ac68a 2024-08-29 06:18:38 +02:00 Compare
kjuulh force-pushed renovate/all from b2ea4ac68a to 6a1e232f2d 2024-08-29 07:05:21 +02:00 Compare
kjuulh force-pushed renovate/all from 6a1e232f2d to 1eeea30c55 2024-08-29 07:43:27 +02:00 Compare
kjuulh force-pushed renovate/all from 1eeea30c55 to 2fc6b17c32 2024-08-29 08:21:28 +02:00 Compare
kjuulh force-pushed renovate/all from 2fc6b17c32 to e665c540ab 2024-08-29 08:58:17 +02:00 Compare
kjuulh force-pushed renovate/all from e665c540ab to 3caf1b59f6 2024-08-29 09:35:35 +02:00 Compare
kjuulh force-pushed renovate/all from 3caf1b59f6 to 417320fe35 2024-08-29 10:11:51 +02:00 Compare
kjuulh force-pushed renovate/all from 417320fe35 to e57018632d 2024-08-29 10:48:52 +02:00 Compare
kjuulh force-pushed renovate/all from e57018632d to f08bb8d575 2024-08-29 11:25:50 +02:00 Compare
kjuulh force-pushed renovate/all from f08bb8d575 to 32135a71ca 2024-08-29 12:18:22 +02:00 Compare
kjuulh force-pushed renovate/all from 32135a71ca to 17180108cd 2024-08-29 13:04:49 +02:00 Compare
kjuulh force-pushed renovate/all from 17180108cd to daac452ccd 2024-08-29 13:41:35 +02:00 Compare
kjuulh force-pushed renovate/all from daac452ccd to 12aaded78c 2024-08-29 14:18:32 +02:00 Compare
kjuulh force-pushed renovate/all from 12aaded78c to 34bda2265d 2024-08-29 14:54:32 +02:00 Compare
kjuulh force-pushed renovate/all from 34bda2265d to 0dd2fcd8a9 2024-08-29 15:31:27 +02:00 Compare
kjuulh force-pushed renovate/all from 0dd2fcd8a9 to 6b3303131c 2024-08-29 16:09:22 +02:00 Compare
kjuulh force-pushed renovate/all from 6b3303131c to 864cd72e97 2024-08-29 16:46:43 +02:00 Compare
kjuulh force-pushed renovate/all from 864cd72e97 to 1718fafeca 2024-08-29 17:25:06 +02:00 Compare
kjuulh force-pushed renovate/all from 1718fafeca to 65c1525416 2024-08-29 18:18:34 +02:00 Compare
kjuulh force-pushed renovate/all from 65c1525416 to 084118fd5d 2024-08-29 19:04:54 +02:00 Compare
kjuulh force-pushed renovate/all from 084118fd5d to 67de46240a 2024-08-29 19:41:58 +02:00 Compare
kjuulh force-pushed renovate/all from 67de46240a to 130fca259f 2024-08-29 20:19:37 +02:00 Compare
kjuulh force-pushed renovate/all from 130fca259f to 2b2bf35175 2024-08-29 20:55:48 +02:00 Compare
kjuulh force-pushed renovate/all from 2b2bf35175 to 894e583fd6 2024-08-29 21:33:46 +02:00 Compare
kjuulh force-pushed renovate/all from 894e583fd6 to fdad1f0643 2024-08-29 22:10:51 +02:00 Compare
kjuulh force-pushed renovate/all from fdad1f0643 to e34a48a623 2024-08-29 22:47:47 +02:00 Compare
kjuulh force-pushed renovate/all from e34a48a623 to 62d00e5baf 2024-08-29 23:26:57 +02:00 Compare
kjuulh force-pushed renovate/all from 62d00e5baf to 784e3c12ee 2024-08-30 00:20:17 +02:00 Compare
kjuulh force-pushed renovate/all from 784e3c12ee to 8bf873ade4 2024-08-30 01:08:55 +02:00 Compare
kjuulh force-pushed renovate/all from 8bf873ade4 to 03cb784c02 2024-08-30 01:47:11 +02:00 Compare
kjuulh force-pushed renovate/all from 03cb784c02 to 9b9d84a7dc 2024-08-30 02:25:52 +02:00 Compare
kjuulh force-pushed renovate/all from 9b9d84a7dc to 8c00ede5aa 2024-08-30 03:04:07 +02:00 Compare
kjuulh force-pushed renovate/all from 8c00ede5aa to 0a8794edc7 2024-08-30 03:42:43 +02:00 Compare
kjuulh force-pushed renovate/all from 0a8794edc7 to 00e844c158 2024-08-30 04:20:18 +02:00 Compare
kjuulh force-pushed renovate/all from 00e844c158 to 7245820fee 2024-08-30 04:59:27 +02:00 Compare
kjuulh force-pushed renovate/all from 7245820fee to 8f7f8597f3 2024-08-30 05:37:41 +02:00 Compare
kjuulh force-pushed renovate/all from 8f7f8597f3 to 509590db50 2024-08-30 06:19:53 +02:00 Compare
kjuulh force-pushed renovate/all from 509590db50 to 20670a40a6 2024-08-30 07:08:19 +02:00 Compare
kjuulh force-pushed renovate/all from 20670a40a6 to 6846cc89d4 2024-08-30 07:46:36 +02:00 Compare
kjuulh force-pushed renovate/all from 6846cc89d4 to d72c08392e 2024-08-30 08:24:15 +02:00 Compare
kjuulh force-pushed renovate/all from d72c08392e to fefc543dd4 2024-08-30 09:01:43 +02:00 Compare
kjuulh force-pushed renovate/all from fefc543dd4 to 086b6d0334 2024-08-30 09:39:50 +02:00 Compare
kjuulh force-pushed renovate/all from 086b6d0334 to 8ae58a272e 2024-08-30 10:18:29 +02:00 Compare
kjuulh force-pushed renovate/all from 8ae58a272e to e9d3b96387 2024-09-05 02:20:46 +02:00 Compare
kjuulh force-pushed renovate/all from e9d3b96387 to 72d39855e7 2024-09-05 06:19:04 +02:00 Compare
kjuulh force-pushed renovate/all from 72d39855e7 to e064ac0486 2024-09-06 02:21:11 +02:00 Compare
kjuulh force-pushed renovate/all from e064ac0486 to c5b68f101b 2024-09-07 02:20:37 +02:00 Compare
kjuulh force-pushed renovate/all from c5b68f101b to 35867cb86e 2024-09-07 06:19:39 +02:00 Compare
kjuulh changed title from chore(deps): update all dependencies to chore(deps): update all dependencies - autoclosed 2024-09-08 02:21:42 +02:00
kjuulh closed this pull request 2024-09-08 02:21:42 +02:00
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

Pull request closed

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-clusters#7
No description provided.