chore(deps): update all dependencies #17

Merged
kjuulh merged 1 commits from renovate/all into main 2024-11-18 06:20:21 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
anyhow workspace.dependencies patch 1.0.89 -> 1.0.93
clap workspace.dependencies patch 4.5.20 -> 4.5.21
minijinja dependencies minor 2.3.1 -> 2.5.0
tokio (source) workspace.dependencies minor 1.40.0 -> 1.41.1
uuid dependencies minor 1.10.0 -> 1.11.0

Release Notes

dtolnay/anyhow (anyhow)

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)

v1.0.91

Compare Source

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#​388)

v1.0.90

Compare Source

  • Documentation improvements
clap-rs/clap (clap)

v4.5.21

Compare Source

Fixes
  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
mitsuhiko/minijinja (minijinja)

v2.5.0

Compare Source

  • minijinja-cli now supports preservation of order in maps. #​611
  • Fixed an issue where CBOR was not correctly deserialized in
    minijinja-cli. #​611
  • Added a lines filter to split a string into lines.
  • Bytes are now better supported in MiniJinja. They can be created from
    Value::from_bytes without having to go via serde, and they are now
    producing a nicer looking debug output. #​616
  • Added the missing string filter from Jinja2. #​617
  • Reversing bytes and convergint them implicitly to strings will now work
    more consistently. #​619
  • Added type hints for the Python binding and relaxed maturin constraint. #​590
  • minijinja-cli now allows the template name to be set to an empty
    string when --template is used, to allow suppliying a data file. #​624
  • Added the missing sameas filter from Jinja2. #​625
  • Tests can now support one argument without parentheses like in Jinja2
    (1 is sameas 1). #​626
  • Added error context for strict undefined errors during template
    rendering. #​627
  • Syntax errors caused by the lexer now include the correct position of
    the error. #​630
  • minijinja-cli now has all features enabled by default as documented
    (that means also shell completion and ini). #​633
  • minijinja-cli now does not convert INI files to lowercase anymore. This was
    an unintended behavior. #​633
  • Moved up MSRV to 1.63.0 due to indexmap. #​635
  • Added argument splatting support (*args for variable args and **kwargs
    for keyword arguments) and fixed a bug where sometimes maps and keyword
    arguments were created in inverse order. #​642

v2.4.0

Compare Source

  • Updated version of minijinja-cli with support for better documentation,
    config file and environment variable support. #​602
  • minijinja-cli now supports template source passed by parameter for
    simple cases. #​606
  • minijinja-cli now has a --syntax-help argument that prints out the
    primer on the syntax. #​607
  • minijinja-cli now installs to ~/.local/bin by default. #​608
  • Made the c-bindings compatible with wasm compilation. #​603
  • String/Cow<str> argument types will no longer implicitly convert
    keyword arguments to string form. This was an unintended foot gun. #​605
tokio-rs/tokio (tokio)

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)

v1.41.0: Tokio v1.41.0

Compare Source

1.41.0 (Oct 22th, 2024)

Added
Added (unstable)
  • metrics: add H2 Histogram option to improve histogram granularity (#​6897)
  • metrics: rename some histogram apis (#​6924)
  • runtime: add LocalRuntime (#​6808)
Changed
  • runtime: box futures larger than 16k on release mode (#​6826)
  • sync: add #[must_use] to Notified (#​6828)
  • sync: make watch cooperative (#​6846)
  • sync: make broadcast::Receiver cooperative (#​6870)
  • task: add task size to tracing instrumentation (#​6881)
  • wasm: enable cfg_fs for wasi target (#​6822)
Fixed
  • net: fix regression of abstract socket path in unix socket (#​6838)
Documented
  • io: recommend OwnedFd with AsyncFd (#​6821)
  • io: document cancel safety of AsyncFd methods (#​6890)
  • macros: render more comprehensible documentation for join and try_join (#​6814, #​6841)
  • net: fix swapped examples for TcpSocket::set_nodelay and TcpSocket::nodelay (#​6840)
  • sync: document runtime compatibility (#​6833)
uuid-rs/uuid (uuid)

v1.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.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.89` -> `1.0.93` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.20` -> `4.5.21` | | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.3.1` -> `2.5.0` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.40.0` -> `1.41.1` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.10.0` -> `1.11.0` | --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`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)) ### [`v1.0.91`](https://github.com/dtolnay/anyhow/releases/tag/1.0.91) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.90...1.0.91) - Ensure OUT_DIR is left with deterministic contents after build script execution ([#&#8203;388](https://github.com/dtolnay/anyhow/issues/388)) ### [`v1.0.90`](https://github.com/dtolnay/anyhow/releases/tag/1.0.90) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.89...1.0.90) - Documentation improvements </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`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>mitsuhiko/minijinja (minijinja)</summary> ### [`v2.5.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#250) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.4.0...2.5.0) - `minijinja-cli` now supports preservation of order in maps. [#&#8203;611](https://github.com/mitsuhiko/minijinja/issues/611) - Fixed an issue where CBOR was not correctly deserialized in `minijinja-cli`. [#&#8203;611](https://github.com/mitsuhiko/minijinja/issues/611) - Added a `lines` filter to split a string into lines. - Bytes are now better supported in MiniJinja. They can be created from `Value::from_bytes` without having to go via serde, and they are now producing a nicer looking debug output. [#&#8203;616](https://github.com/mitsuhiko/minijinja/issues/616) - Added the missing `string` filter from Jinja2. [#&#8203;617](https://github.com/mitsuhiko/minijinja/issues/617) - Reversing bytes and convergint them implicitly to strings will now work more consistently. [#&#8203;619](https://github.com/mitsuhiko/minijinja/issues/619) - Added type hints for the Python binding and relaxed maturin constraint. [#&#8203;590](https://github.com/mitsuhiko/minijinja/issues/590) - `minijinja-cli` now allows the template name to be set to an empty string when `--template` is used, to allow suppliying a data file. [#&#8203;624](https://github.com/mitsuhiko/minijinja/issues/624) - Added the missing `sameas` filter from Jinja2. [#&#8203;625](https://github.com/mitsuhiko/minijinja/issues/625) - Tests can now support one argument without parentheses like in Jinja2 (`1 is sameas 1`). [#&#8203;626](https://github.com/mitsuhiko/minijinja/issues/626) - Added error context for strict undefined errors during template rendering. [#&#8203;627](https://github.com/mitsuhiko/minijinja/issues/627) - Syntax errors caused by the lexer now include the correct position of the error. [#&#8203;630](https://github.com/mitsuhiko/minijinja/issues/630) - `minijinja-cli` now has all features enabled by default as documented (that means also shell completion and ini). [#&#8203;633](https://github.com/mitsuhiko/minijinja/issues/633) - `minijinja-cli` now does not convert INI files to lowercase anymore. This was an unintended behavior. [#&#8203;633](https://github.com/mitsuhiko/minijinja/issues/633) - Moved up MSRV to 1.63.0 due to indexmap. [#&#8203;635](https://github.com/mitsuhiko/minijinja/issues/635) - Added argument splatting support (`*args` for variable args and `**kwargs` for keyword arguments) and fixed a bug where sometimes maps and keyword arguments were created in inverse order. [#&#8203;642](https://github.com/mitsuhiko/minijinja/issues/642) ### [`v2.4.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#240) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.3.1...2.4.0) - Updated version of `minijinja-cli` with support for better documentation, config file and environment variable support. [#&#8203;602](https://github.com/mitsuhiko/minijinja/issues/602) - `minijinja-cli` now supports template source passed by parameter for simple cases. [#&#8203;606](https://github.com/mitsuhiko/minijinja/issues/606) - `minijinja-cli` now has a `--syntax-help` argument that prints out the primer on the syntax. [#&#8203;607](https://github.com/mitsuhiko/minijinja/issues/607) - `minijinja-cli` now installs to `~/.local/bin` by default. [#&#8203;608](https://github.com/mitsuhiko/minijinja/issues/608) - Made the c-bindings compatible with wasm compilation. [#&#8203;603](https://github.com/mitsuhiko/minijinja/issues/603) - `String`/`Cow<str>` argument types will no longer implicitly convert keyword arguments to string form. This was an unintended foot gun. [#&#8203;605](https://github.com/mitsuhiko/minijinja/issues/605) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`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 ### [`v1.41.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.41.0): Tokio v1.41.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.40.0...tokio-1.41.0) ### 1.41.0 (Oct 22th, 2024) ##### Added - metrics: stabilize `global_queue_depth` ([#&#8203;6854], [#&#8203;6918]) - net: add conversions for unix `SocketAddr` ([#&#8203;6868]) - sync: add `watch::Sender::sender_count` ([#&#8203;6836]) - sync: add `mpsc::Receiver::blocking_recv_many` ([#&#8203;6867]) - task: stabilize `Id` apis ([#&#8203;6793], [#&#8203;6891]) ##### Added (unstable) - metrics: add H2 Histogram option to improve histogram granularity ([#&#8203;6897]) - metrics: rename some histogram apis ([#&#8203;6924]) - runtime: add `LocalRuntime` ([#&#8203;6808]) ##### Changed - runtime: box futures larger than 16k on release mode ([#&#8203;6826]) - sync: add `#[must_use]` to `Notified` ([#&#8203;6828]) - sync: make `watch` cooperative ([#&#8203;6846]) - sync: make `broadcast::Receiver` cooperative ([#&#8203;6870]) - task: add task size to tracing instrumentation ([#&#8203;6881]) - wasm: enable `cfg_fs` for `wasi` target ([#&#8203;6822]) ##### Fixed - net: fix regression of abstract socket path in unix socket ([#&#8203;6838]) ##### Documented - io: recommend `OwnedFd` with `AsyncFd` ([#&#8203;6821]) - io: document cancel safety of `AsyncFd` methods ([#&#8203;6890]) - macros: render more comprehensible documentation for `join` and `try_join` ([#&#8203;6814], [#&#8203;6841]) - net: fix swapped examples for `TcpSocket::set_nodelay` and `TcpSocket::nodelay` ([#&#8203;6840]) - sync: document runtime compatibility ([#&#8203;6833]) [#&#8203;6793]: https://github.com/tokio-rs/tokio/pull/6793 [#&#8203;6808]: https://github.com/tokio-rs/tokio/pull/6808 [#&#8203;6810]: https://github.com/tokio-rs/tokio/pull/6810 [#&#8203;6814]: https://github.com/tokio-rs/tokio/pull/6814 [#&#8203;6821]: https://github.com/tokio-rs/tokio/pull/6821 [#&#8203;6822]: https://github.com/tokio-rs/tokio/pull/6822 [#&#8203;6826]: https://github.com/tokio-rs/tokio/pull/6826 [#&#8203;6828]: https://github.com/tokio-rs/tokio/pull/6828 [#&#8203;6833]: https://github.com/tokio-rs/tokio/pull/6833 [#&#8203;6836]: https://github.com/tokio-rs/tokio/pull/6836 [#&#8203;6838]: https://github.com/tokio-rs/tokio/pull/6838 [#&#8203;6840]: https://github.com/tokio-rs/tokio/pull/6840 [#&#8203;6841]: https://github.com/tokio-rs/tokio/pull/6841 [#&#8203;6846]: https://github.com/tokio-rs/tokio/pull/6846 [#&#8203;6854]: https://github.com/tokio-rs/tokio/pull/6854 [#&#8203;6867]: https://github.com/tokio-rs/tokio/pull/6867 [#&#8203;6868]: https://github.com/tokio-rs/tokio/pull/6868 [#&#8203;6870]: https://github.com/tokio-rs/tokio/pull/6870 [#&#8203;6881]: https://github.com/tokio-rs/tokio/pull/6881 [#&#8203;6890]: https://github.com/tokio-rs/tokio/pull/6890 [#&#8203;6891]: https://github.com/tokio-rs/tokio/pull/6891 [#&#8203;6897]: https://github.com/tokio-rs/tokio/pull/6897 [#&#8203;6918]: https://github.com/tokio-rs/tokio/pull/6918 [#&#8203;6924]: https://github.com/tokio-rs/tokio/pull/6924 </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.11.0`](https://github.com/uuid-rs/uuid/releases/tag/1.11.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0) #### What's Changed - Upgrade zerocopy to 0.8 by [@&#8203;yotamofek](https://github.com/yotamofek) in https://github.com/uuid-rs/uuid/pull/771 - Prepare for 1.11.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/772 #### New Contributors - [@&#8203;yotamofek](https://github.com/yotamofek) made their first contribution in https://github.com/uuid-rs/uuid/pull/771 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.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-10-17 02:25:37 +02:00
fix(deps): update rust crate uuid to v1.11.0
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
f4dc5d4971
kjuulh changed title from fix(deps): update rust crate uuid to v1.11.0 to chore(deps): update all dependencies 2024-10-19 02:24:24 +02:00
kjuulh force-pushed renovate/all from f4dc5d4971 to 3b8f58c8fa 2024-10-19 02:24:25 +02:00 Compare
kjuulh force-pushed renovate/all from 3b8f58c8fa to 4f20e97011 2024-10-19 06:24:32 +02:00 Compare
kjuulh force-pushed renovate/all from 4f20e97011 to babe409112 2024-10-20 02:25:33 +02:00 Compare
kjuulh force-pushed renovate/all from babe409112 to 0764ad78fd 2024-10-20 06:23:59 +02:00 Compare
kjuulh force-pushed renovate/all from 0764ad78fd to abf193a202 2024-10-21 02:22:11 +02:00 Compare
kjuulh force-pushed renovate/all from abf193a202 to 0747b5d0da 2024-10-21 06:21:55 +02:00 Compare
kjuulh force-pushed renovate/all from 0747b5d0da to a5e2f5f33a 2024-10-22 02:23:34 +02:00 Compare
kjuulh force-pushed renovate/all from a5e2f5f33a to 8cf8e77814 2024-10-22 06:22:39 +02:00 Compare
kjuulh force-pushed renovate/all from 8cf8e77814 to 448ee71326 2024-10-23 02:26:46 +02:00 Compare
kjuulh force-pushed renovate/all from 448ee71326 to ab9fcae991 2024-10-23 06:27:41 +02:00 Compare
kjuulh force-pushed renovate/all from ab9fcae991 to 89a452d851 2024-10-24 02:30:24 +02:00 Compare
kjuulh force-pushed renovate/all from 89a452d851 to 44abc40cba 2024-10-24 06:24:36 +02:00 Compare
kjuulh force-pushed renovate/all from 44abc40cba to 94f96ffdf2 2024-10-25 02:24:31 +02:00 Compare
kjuulh force-pushed renovate/all from 94f96ffdf2 to 6b95e5ea42 2024-10-25 06:23:43 +02:00 Compare
kjuulh force-pushed renovate/all from 6b95e5ea42 to 716d2c03c1 2024-10-26 02:24:17 +02:00 Compare
kjuulh force-pushed renovate/all from 716d2c03c1 to fcf65041d3 2024-11-02 02:24:49 +01:00 Compare
kjuulh force-pushed renovate/all from fcf65041d3 to 0c93ad7ea0 2024-11-02 06:23:17 +01:00 Compare
kjuulh force-pushed renovate/all from 0c93ad7ea0 to 239a75347a 2024-11-04 02:20:38 +01:00 Compare
kjuulh force-pushed renovate/all from 239a75347a to dbe2417362 2024-11-04 06:19:18 +01:00 Compare
kjuulh force-pushed renovate/all from dbe2417362 to 87b77b7ddd 2024-11-05 02:21:27 +01:00 Compare
kjuulh force-pushed renovate/all from 87b77b7ddd to 1f78fab6c4 2024-11-05 06:20:53 +01:00 Compare
kjuulh force-pushed renovate/all from 1f78fab6c4 to c9a611e158 2024-11-06 02:19:39 +01:00 Compare
kjuulh force-pushed renovate/all from c9a611e158 to 473d983ed8 2024-11-06 06:19:57 +01:00 Compare
kjuulh force-pushed renovate/all from 473d983ed8 to 8da2749b30 2024-11-07 02:22:26 +01:00 Compare
kjuulh force-pushed renovate/all from 8da2749b30 to d0ad97c9aa 2024-11-07 06:20:27 +01:00 Compare
kjuulh force-pushed renovate/all from d0ad97c9aa to a009ec5a8e 2024-11-08 02:22:26 +01:00 Compare
kjuulh force-pushed renovate/all from a009ec5a8e to b90983d868 2024-11-08 06:21:15 +01:00 Compare
kjuulh force-pushed renovate/all from b90983d868 to cdbc667b87 2024-11-09 02:22:16 +01:00 Compare
kjuulh force-pushed renovate/all from cdbc667b87 to da5f952fcd 2024-11-09 06:21:00 +01:00 Compare
kjuulh force-pushed renovate/all from da5f952fcd to 895b360282 2024-11-10 02:21:11 +01:00 Compare
kjuulh force-pushed renovate/all from 895b360282 to 0e06f95a9f 2024-11-10 06:25:12 +01:00 Compare
kjuulh force-pushed renovate/all from 0e06f95a9f to c5ddaaf3a6 2024-11-11 02:21:46 +01:00 Compare
kjuulh force-pushed renovate/all from c5ddaaf3a6 to d376bc2518 2024-11-14 02:23:20 +01:00 Compare
kjuulh force-pushed renovate/all from d376bc2518 to 42ae399dcc 2024-11-14 06:26:45 +01:00 Compare
kjuulh force-pushed renovate/all from 42ae399dcc to 83e444bd37 2024-11-15 02:22:08 +01:00 Compare
kjuulh force-pushed renovate/all from 83e444bd37 to 1c718da2bc 2024-11-15 06:23:10 +01:00 Compare
kjuulh force-pushed renovate/all from 1c718da2bc to ae50dbf82e 2024-11-16 02:25:08 +01:00 Compare
kjuulh force-pushed renovate/all from ae50dbf82e to 8a1b4593b8 2024-11-16 06:24:12 +01:00 Compare
kjuulh force-pushed renovate/all from 8a1b4593b8 to 2c971c126f 2024-11-17 02:22:22 +01:00 Compare
kjuulh force-pushed renovate/all from 2c971c126f to 4b9e0c2ea5 2024-11-17 06:22:18 +01:00 Compare
kjuulh force-pushed renovate/all from 4b9e0c2ea5 to 65f145825a 2024-11-18 02:21:11 +01:00 Compare
kjuulh merged commit 65f145825a into main 2024-11-18 06:20:21 +01:00
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#17
No description provided.