fix(deps): update all dependencies #30

Merged
kjuulh merged 1 commits from renovate/all into main 2025-01-09 02:25:58 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
minijinja dependencies minor 2.5.0 -> 2.6.0
tokio (source) workspace.dependencies minor 1.42.0 -> 1.43.0

Release Notes

mitsuhiko/minijinja (minijinja)

v2.6.0

Compare Source

  • Added sum filter. #​648
  • Added truncate filter to minijinja-contrib. #​647
  • Added wordcount filter to minijinja-contrib. #​649
  • Added wordwrap filter to minijinja-contrib. #​651
  • Some tests and filters now pass borrowed values for performance reasons
    and a bug was fixed that caused undefined values in strict undefined
    mode not to work with tests. #​657
  • Fixed an error reporting issue for some syntax errors. #​655
  • Removed an unsafe code block from the Kwargs type internally
    which was probably unsafe. #​659
  • Fix a regression with latest serde that caused internals to leak
    out when flattening on value handles is used. #​664
  • Added Value::make_object_map to create projections from object
    into maps, similar to how it was already possible to create
    iterators that were projected from objects. #​663
  • The |items filter will no longer allocate a list and instead
    return an iterator. #​665
  • Fixed a bug that caused lstrip_blocks to act too eager. #​674
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)

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 | |---|---|---|---| | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.5.0` -> `2.6.0` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.42.0` -> `1.43.0` | --- ### Release Notes <details> <summary>mitsuhiko/minijinja (minijinja)</summary> ### [`v2.6.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#260) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.5.0...2.6.0) - Added `sum` filter. [#&#8203;648](https://github.com/mitsuhiko/minijinja/issues/648) - Added `truncate` filter to `minijinja-contrib`. [#&#8203;647](https://github.com/mitsuhiko/minijinja/issues/647) - Added `wordcount` filter to `minijinja-contrib`. [#&#8203;649](https://github.com/mitsuhiko/minijinja/issues/649) - Added `wordwrap` filter to `minijinja-contrib`. [#&#8203;651](https://github.com/mitsuhiko/minijinja/issues/651) - Some tests and filters now pass borrowed values for performance reasons and a bug was fixed that caused undefined values in strict undefined mode not to work with tests. [#&#8203;657](https://github.com/mitsuhiko/minijinja/issues/657) - Fixed an error reporting issue for some syntax errors. [#&#8203;655](https://github.com/mitsuhiko/minijinja/issues/655) - Removed an `unsafe` code block from the `Kwargs` type internally which was probably unsafe. [#&#8203;659](https://github.com/mitsuhiko/minijinja/issues/659) - Fix a regression with latest serde that caused internals to leak out when flattening on value handles is used. [#&#8203;664](https://github.com/mitsuhiko/minijinja/issues/664) - Added `Value::make_object_map` to create projections from object into maps, similar to how it was already possible to create iterators that were projected from objects. [#&#8203;663](https://github.com/mitsuhiko/minijinja/issues/663) - The `|items` filter will no longer allocate a list and instead return an iterator. [#&#8203;665](https://github.com/mitsuhiko/minijinja/issues/665) - Fixed a bug that caused `lstrip_blocks` to act too eager. [#&#8203;674](https://github.com/mitsuhiko/minijinja/issues/674) </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 </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 2025-01-09 02:25:49 +01:00
fix(deps): update all dependencies
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
b92e352096
kjuulh scheduled this pull request to auto merge when all checks succeed 2025-01-09 02:25:50 +01:00
kjuulh merged commit b92e352096 into main 2025-01-09 02:25:58 +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#30
No description provided.