fix(deps): update all dependencies #10

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.98 -> 1.0.100
clap workspace.dependencies patch 4.5.37 -> 4.5.51
glob dependencies patch 0.3.2 -> 0.3.3
kdl (source) dependencies minor 6.3.4 -> 6.5.0
minijinja dependencies minor 2.9.0 -> 2.12.0
rusty-s3 dependencies minor 0.7 -> 0.8
serde_json dependencies patch 1.0.140 -> 1.0.145
tokio (source) workspace.dependencies minor 1.44.2 -> 1.48.0
url dependencies patch 2.5.4 -> 2.5.7
uuid workspace.dependencies minor 1.16.0 -> 1.18.1

Release Notes

dtolnay/anyhow (anyhow)

v1.0.100

Compare Source

  • Teach clippy to lint formatting arguments in bail!, ensure!, anyhow! (#​426)

v1.0.99

Compare Source

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#​420)
clap-rs/clap (clap)

v4.5.51

Compare Source

Fixes
  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

v4.5.50

Compare Source

Features
  • Accept Cow where String and &str are accepted

v4.5.49

Compare Source

Fixes
  • (help) Correctly wrap when ANSI escape codes are present

v4.5.48

Compare Source

Documentation
  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

v4.5.47

Compare Source

Features
  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible
Fixes
  • (derive) Update runtime error text to match clap

v4.5.46

Compare Source

Features
  • Expose StyledStr::push_str

v4.5.45

Compare Source

Fixes
  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

v4.5.44

Compare Source

Features
  • Add Command::mut_subcommands

v4.5.43

Compare Source

Fixes
  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

v4.5.42

Compare Source

Fixes
  • Include subcommand visible long aliases in --help

v4.5.41

Compare Source

Features
  • Add Styles::context and Styles::context_value to customize the styling of [default: value] like notes in the --help

v4.5.40

Compare Source

Features
  • Support quoted ids in arg!() macro (e.g. arg!("check-config": ...))

v4.5.39

Compare Source

Fixes
  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

v4.5.38

Compare Source

Fixes
  • (help) When showing aliases, include leading -- or -
rust-lang/glob (glob)

v0.3.3

Compare Source

  • Optimize memory allocations (#​147)
  • Bump the MSRV to 1.63 (#​172)
  • Fix spelling in pattern documentation (#​164)
  • Fix version numbers and some formatting (#​157)
  • Style fixes (#​137)
kdl-org/kdl-rs (kdl)

v6.5.0

Compare Source

Features
Bug Fixes

v6.4.0

This is a very exciting release, because it removes syn from crate
dependencies, as part of facilitating
facet-kdl, which adds very fast
support for a Serde-like system!

Features
Bug Fixes
Miscellaneous Tasks
mitsuhiko/minijinja (minijinja)

v2.12.0

Compare Source

  • Item or attribute lookup will no longer swallow all errors in Python. #​814
  • Added |zip filter. #​818
  • Fix break_on_hyphens for the |wordwrap filter. #​823
  • Prefer error message from unknown_method_callback. #​824
  • Ignore .jinja and .jinja2 as extensions in auto escape. #​832

v2.11.0

Compare Source

  • Fixed incorrect joining of leading undefineds or empty
    strings in the |join filter. This was inconsistent with
    Jinja2 and the filter itself for undefineds in other
    positions. #​794
  • Allow negative arguments to range function and change
    range to isize. #​799
  • Allow isize as argument type. #​799
  • MiniJinja now correctly handles \x escape sequences in strings
    as well as octals. #​805
  • Added a new |chain filter. #​807

v2.10.2

Compare Source

  • Fixed an issue with the function bounds that caused the
    next-generation trait resolver to fail. #​787

v2.10.1

Compare Source

  • Re-release of 2.10.0 because of a broken release process.

v2.10.0

Compare Source

  • Fix incorrect permissions when --output is used in the CLI. #​772
  • Added mj_err_get_debug_info to the C-ABI. #​775
  • Modules now capture their output like they do in Jinja2. This
    means that if you do {% import 'template.j2' as x %} and you
    then render {{ x }} the output of template.j2 is rendered as
    if it was included. #​778
  • Improved compatibility with Jinja2 for slicing. Negative steps
    are now correctly handled. Additionally slicing on bytes now
    correctly handles steps other than 1. #​781
paolobarbolini/rusty-s3 (rusty-s3)

v0.8.1

Compare Source

What's Changed

Full Changelog: https://github.com/paolobarbolini/rusty-s3/compare/v0.8.0...v0.8.1

v0.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/paolobarbolini/rusty-s3/compare/v0.7.0...v0.8.0

serde-rs/json (serde_json)

v1.0.145

Compare Source

  • Raise serde version requirement to >=1.0.220

v1.0.144

Compare Source

  • Switch serde dependency to serde_core (#​1285)

v1.0.143

Compare Source

v1.0.142

Compare Source

v1.0.141

Compare Source

tokio-rs/tokio (tokio)

v1.48.0: Tokio v1.48.0

Compare Source

1.48.0 (October 14th, 2025)

The MSRV is increased to 1.71.

Added
  • fs: add File::max_buf_size (#​7594)
  • io: export Chain of AsyncReadExt::chain (#​7599)
  • net: add SocketAddr::as_abstract_name (#​7491)
  • net: add TcpStream::quickack and TcpStream::set_quickack (#​7490)
  • net: implement AsRef<Self> for TcpStream and UnixStream (#​7573)
  • task: add LocalKey::try_get (#​7666)
  • task: implement Ord for task::Id (#​7530)
Changed
  • deps: bump windows-sys to version 0.61 (#​7645)
  • fs: preserve max_buf_size when cloning a File (#​7593)
  • macros: suppress clippy::unwrap_in_result in #[tokio::main] (#​7651)
  • net: remove PollEvented noise from Debug formats (#​7675)
  • process: upgrade Command::spawn_with to use FnOnce (#​7511)
  • sync: remove inner mutex in SetOnce (#​7554)
  • sync: use UnsafeCell::get_mut in Mutex::get_mut and RwLock::get_mut (#​7569)
  • time: reduce the generated code size of Timeout<T>::poll (#​7535)
Fixed
  • macros: fix hygiene issue in join! and try_join! (#​7638)
  • net: fix copy/paste errors in udp peek methods (#​7604)
  • process: fix error when runtime is shut down on nightly-2025-10-12 (#​7672)
  • runtime: use release ordering in wake_by_ref() even if already woken (#​7622)
  • sync: close the broadcast::Sender in broadcast::Sender::new() (#​7629)
  • sync: fix implementation of unused RwLock::try_* methods (#​7587)
Unstable
  • tokio: use cargo features instead of --cfg flags for taskdump and io_uring (#​7655, #​7621)
  • fs: support io_uring in fs::write (#​7567)
  • fs: support io_uring with File::open() (#​7617)
  • fs: support io_uring with OpenOptions (#​7321)
  • macros: add local runtime flavor (#​7375, #​7597)
Documented
  • io: clarify the zero capacity case of AsyncRead::poll_read (#​7580)
  • io: fix typos in the docs of AsyncFd readiness guards (#​7583)
  • net: clarify socket gets closed on drop (#​7526)
  • net: clarify the behavior of UCred::pid() on Cygwin (#​7611)
  • net: clarify the supported platform of set_reuseport() and reuseport() (#​7628)
  • net: qualify that SO_REUSEADDR is only set on Unix (#​7533)
  • runtime: add guide for choosing between runtime types (#​7635)
  • runtime: clarify the behavior of Handle::block_on (#​7665)
  • runtime: clarify the edge case of Builder::global_queue_interval() (#​7605)
  • sync: clarify bounded channel panic behavior (#​7641)
  • sync: clarify the behavior of tokio::sync::watch::Receiver (#​7584)
  • sync: document cancel safety on SetOnce::wait (#​7506)
  • sync: fix the docs of parking_lot feature flag (#​7663)
  • sync: improve the docs of UnboundedSender::send (#​7661)
  • sync: improve the docs of sync::watch (#​7601)
  • sync: reword allocation failure paragraph in broadcast docs (#​7595)
  • task: clarify the behavior of several spawn_local methods (#​7669)
  • task: clarify the task ID reuse guarantees (#​7577)
  • task: improve the example of poll_proceed (#​7586)

v1.47.2

Compare Source

v1.47.1: Tokio v1.47.1

Compare Source

1.47.1 (August 1st, 2025)

Fixed
  • process: fix panic from spurious pidfd wakeup (#​7494)
  • sync: fix broken link of Python asyncio.Event in SetOnce docs (#​7485)

v1.47.0: Tokio v1.47.0

Compare Source

1.47.0 (July 25th, 2025)

This release adds poll_proceed and cooperative to the coop module for
cooperative scheduling, adds SetOnce to the sync module which provides
similar functionality to [std::sync::OnceLock], and adds a new method
sync::Notify::notified_owned() which returns an OwnedNotified without
a lifetime parameter.

Added

  • coop: add cooperative and poll_proceed (#​7405)
  • sync: add SetOnce (#​7418)
  • sync: add sync::Notify::notified_owned() (#​7465)

Changed

  • deps: upgrade windows-sys 0.52 → 0.59 ([#​7117])
  • deps: update to socket2 v0.6 ([#​7443])
  • sync: improve AtomicWaker::wake performance (#​7450)

Documented

  • metrics: fix listed feature requirements for some metrics (#​7449)
  • runtime: improve safety comments of Readiness<'_> (#​7415)

v1.46.1: Tokio v1.46.1

Compare Source

1.46.1 (July 4th, 2025)

This release fixes incorrect spawn locations in runtime task hooks for tasks spawned using tokio::spawn rather than Runtime::spawn. This issue only effected the spawn location in TaskMeta::spawned_at, and did not effect task locations in Tracing events.

Unstable

  • runtime: add TaskMeta::spawn_location tracking where a task was spawned (#​7440)

v1.46.0: Tokio v1.46.0

Compare Source

1.46.0 (July 2nd, 2025)

Fixed
  • net: fixed TcpStream::shutdown incorrectly returning an error on macOS (#​7290)

Added

  • sync: mpsc::OwnedPermit::{same_channel, same_channel_as_sender} methods (#​7389)
  • macros: biased option for join! and try_join!, similar to select! (#​7307)
  • net: support for cygwin (#​7393)
  • net: support pope::OpenOptions::read_write on Android (#​7426)
  • net: add Clone implementation for net::unix::SocketAddr (#​7422)

Changed

  • runtime: eliminate unnecessary lfence while operating on queue::Local<T> (#​7340)
  • task: disallow blocking in LocalSet::{poll,drop} (#​7372)

Unstable

  • runtime: add TaskMeta::spawn_location tracking where a task was spawned (#​7417)
  • runtime: removed borrow from LocalOptions parameter to runtime::Builder::build_local (#​7346)

Documented

  • io: clarify behavior of seeking when start_seek is not used (#​7366)
  • io: document cancellation safety of AsyncWriteExt::flush (#​7364)
  • net: fix docs for recv_buffer_size method (#​7336)
  • net: fix broken link of RawFd in TcpSocket docs (#​7416)
  • net: update AsRawFd doc link to current Rust stdlib location (#​7429)
  • readme: fix double period in reactor description (#​7363)
  • runtime: add doc note that on_*_task_poll is unstable (#​7311)
  • sync: update broadcast docs on allocation failure (#​7352)
  • time: add a missing panic scenario of time::advance (#​7394)

v1.45.1: Tokio v1.45.1

Compare Source

1.45.1 (May 24th, 2025)

This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to Instant::now() started failing. This is due to the stabilization of the first time-based metric.

Fixed
  • Disable time-based metrics on wasm32-unknown-unknown (#​7322)

v1.45.0: Tokio v1.45.0

Compare Source

Added
  • metrics: stabilize worker_total_busy_duration, worker_park_count, and worker_unpark_count (#​6899, #​7276)
  • process: add Command::spawn_with (#​7249)
Changed
  • io: do not require Unpin for some trait impls (#​7204)
  • rt: mark runtime::Handle as unwind safe (#​7230)
  • time: revert internal sharding implementation (#​7226)
Unstable
  • rt: remove alt multi-threaded runtime (#​7275)
servo/rust-url (url)

v2.5.7

What's Changed

v.2.5.6
v.2.5.7

New Contributors

Full Changelog: https://github.com/servo/rust-url/compare/v2.5.5...v2.5.7

v2.5.5

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/servo/rust-url/compare/v2.5.4...v2.5.5

uuid-rs/uuid (uuid)

v1.18.1

Compare Source

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.18.0...v1.18.1

v1.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.17.0...v1.18.0

v1.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.98` -> `1.0.100` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.37` -> `4.5.51` | | [glob](https://github.com/rust-lang/glob) | dependencies | patch | `0.3.2` -> `0.3.3` | | [kdl](https://kdl.dev) ([source](https://github.com/kdl-org/kdl-rs)) | dependencies | minor | `6.3.4` -> `6.5.0` | | [minijinja](https://github.com/mitsuhiko/minijinja) | dependencies | minor | `2.9.0` -> `2.12.0` | | [rusty-s3](https://github.com/paolobarbolini/rusty-s3) | dependencies | minor | `0.7` -> `0.8` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.140` -> `1.0.145` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.44.2` -> `1.48.0` | | [url](https://github.com/servo/rust-url) | dependencies | patch | `2.5.4` -> `2.5.7` | | [uuid](https://github.com/uuid-rs/uuid) | workspace.dependencies | minor | `1.16.0` -> `1.18.1` | --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`v1.0.100`](https://github.com/dtolnay/anyhow/releases/tag/1.0.100) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.99...1.0.100) - Teach clippy to lint formatting arguments in `bail!`, `ensure!`, `anyhow!` ([#&#8203;426](https://github.com/dtolnay/anyhow/issues/426)) ### [`v1.0.99`](https://github.com/dtolnay/anyhow/releases/tag/1.0.99) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.98...1.0.99) - Allow build-script cleanup failure with NFSv3 output directory to be non-fatal ([#&#8203;420](https://github.com/dtolnay/anyhow/issues/420)) </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.51`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4551---2025-10-29) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.50...v4.5.51) ##### Fixes - *(help)* Correctly calculate padding for short flags that take a value - *(help)* Don't panic on short flags using `ArgAction::Count` ### [`v4.5.50`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4550---2025-10-20) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.49...v4.5.50) ##### Features - Accept `Cow` where `String` and `&str` are accepted ### [`v4.5.49`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4549---2025-10-13) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.48...v4.5.49) ##### Fixes - *(help)* Correctly wrap when ANSI escape codes are present ### [`v4.5.48`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4548---2025-09-19) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.47...v4.5.48) ##### Documentation - Add a new CLI Concepts document as another way of framing clap - Expand the `typed_derive` cookbook entry ### [`v4.5.47`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4547---2025-09-02) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.46...v4.5.47) ##### Features - Added `impl FromArgMatches for ()` - Added `impl Args for ()` - Added `impl Subcommand for ()` - Added `impl FromArgMatches for Infallible` - Added `impl Subcommand for Infallible` ##### Fixes - *(derive)* Update runtime error text to match `clap` ### [`v4.5.46`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4546---2025-08-26) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.45...v4.5.46) ##### Features - Expose `StyledStr::push_str` ### [`v4.5.45`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4545---2025-08-12) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.44...v4.5.45) ##### Fixes - *(unstable-v5)* `ValueEnum` variants now use the full doc comment, not summary, for `PossibleValue::help` ### [`v4.5.44`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4544---2025-08-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.43...v4.5.44) ##### Features - Add `Command::mut_subcommands` ### [`v4.5.43`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4543---2025-08-06) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.42...v4.5.43) ##### Fixes - *(help)* In long help, list Possible Values before defaults, rather than after, for a more consistent look ### [`v4.5.42`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4542---2025-07-30) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.41...v4.5.42) ##### Fixes - Include subcommand visible long aliases in `--help` ### [`v4.5.41`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4541---2025-07-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.40...v4.5.41) ##### Features - Add `Styles::context` and `Styles::context_value` to customize the styling of `[default: value]` like notes in the `--help` ### [`v4.5.40`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4540---2025-06-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.39...v4.5.40) ##### Features - Support quoted ids in `arg!()` macro (e.g. `arg!("check-config": ...)`) ### [`v4.5.39`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4539---2025-05-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.38...v4.5.39) ##### Fixes - *(help)* Show short flag aliases before long - *(help)* Merge the short and long flag alias lists ### [`v4.5.38`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4538---2025-05-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.37...v4.5.38) ##### Fixes - *(help)* When showing aliases, include leading `--` or `-` </details> <details> <summary>rust-lang/glob (glob)</summary> ### [`v0.3.3`](https://github.com/rust-lang/glob/blob/HEAD/CHANGELOG.md#033---2025-08-11) [Compare Source](https://github.com/rust-lang/glob/compare/v0.3.2...v0.3.3) - Optimize memory allocations ([#&#8203;147](https://github.com/rust-lang/glob/pull/147)) - Bump the MSRV to 1.63 ([#&#8203;172](https://github.com/rust-lang/glob/pull/172)) - Fix spelling in pattern documentation ([#&#8203;164](https://github.com/rust-lang/glob/pull/164)) - Fix version numbers and some formatting ([#&#8203;157](https://github.com/rust-lang/glob/pull/157)) - Style fixes ([#&#8203;137](https://github.com/rust-lang/glob/pull/137)) </details> <details> <summary>kdl-org/kdl-rs (kdl)</summary> ### [`v6.5.0`](https://github.com/kdl-org/kdl-rs/blob/HEAD/CHANGELOG.md#650-2025-09-11) [Compare Source](https://github.com/kdl-org/kdl-rs/compare/v6.4.0...v6.5.0) ##### Features - **msrv:** bump msrv ([e1727e7c](https://github.com/kdl-org/kdl-rs/commit/e1727e7c28e306d5ca4bd31ccb1c4c6dce0efb9d)) ##### Bug Fixes - **fmt+clippy:** sigh ([e47ca9c6](https://github.com/kdl-org/kdl-rs/commit/e47ca9c683c044a5c5350334188b051b8d15a956)) ### [`v6.4.0`](https://github.com/kdl-org/kdl-rs/blob/HEAD/CHANGELOG.md#640-2025-09-11) This is a very exciting release, because it removes `syn` from crate dependencies, as part of facilitating [`facet-kdl`](https://github.com/facet-rs/facet-kdl), which adds very fast support for a Serde-like system! ##### Features - **deps:** Absolve `kdl-rs` of `syn` ([#&#8203;125](https://github.com/kdl-org/kdl-rs/issues/125)) ([439aa63b](https://github.com/kdl-org/kdl-rs/commit/439aa63bfc595432e6dc6b0fdd708c364628ab18)) ##### Bug Fixes - **v1-fallback:** actually fall back. lol ([#&#8203;119](https://github.com/kdl-org/kdl-rs/issues/119)) ([ce274259](https://github.com/kdl-org/kdl-rs/commit/ce274259054253daea6f87bf65faebeb1617ced1)) - **span:** Enable span properly to fix build failure with `span` feature disabled ([#&#8203;120](https://github.com/kdl-org/kdl-rs/issues/120)) ([c904e025](https://github.com/kdl-org/kdl-rs/commit/c904e025a243af321315aee5ae7386fc1870d0a5)) - **fmt:** identifiers equal to a keyword are not quoted [#&#8203;132](https://github.com/kdl-org/kdl-rs/issues/132) ([#&#8203;137](https://github.com/kdl-org/kdl-rs/issues/137)) ([564d4aee](https://github.com/kdl-org/kdl-rs/commit/564d4aeeadbca2a1ff15a97fc0a4b7198437e3e2)) - **clippy/fmt:** ran clippy + cargo fmt ([#&#8203;129](https://github.com/kdl-org/kdl-rs/issues/129)) ([c95d6ba1](https://github.com/kdl-org/kdl-rs/commit/c95d6ba1017ec6765da4d46ba215ab47670f616a)) - **lockfile:** commit cargo lock file ([#&#8203;126](https://github.com/kdl-org/kdl-rs/issues/126)) ([6656f7e9](https://github.com/kdl-org/kdl-rs/commit/6656f7e98665d22f9f19402bd667bc524baeda60)) ##### Miscellaneous Tasks - **deps:** add Cargo.lock ([4eaf9261](https://github.com/kdl-org/kdl-rs/commit/4eaf9261409592e0eab6a7040d52d6db601141df)) </details> <details> <summary>mitsuhiko/minijinja (minijinja)</summary> ### [`v2.12.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2120) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.11.0...2.12.0) - Item or attribute lookup will no longer swallow all errors in Python. [#&#8203;814](https://github.com/mitsuhiko/minijinja/issues/814) - Added `|zip` filter. [#&#8203;818](https://github.com/mitsuhiko/minijinja/issues/818) - Fix `break_on_hyphens` for the `|wordwrap` filter. [#&#8203;823](https://github.com/mitsuhiko/minijinja/issues/823) - Prefer error message from `unknown_method_callback`. [#&#8203;824](https://github.com/mitsuhiko/minijinja/issues/824) - Ignore `.jinja` and `.jinja2` as extensions in auto escape. [#&#8203;832](https://github.com/mitsuhiko/minijinja/issues/832) ### [`v2.11.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2110) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.10.2...2.11.0) - Fixed incorrect joining of leading undefineds or empty strings in the `|join` filter. This was inconsistent with Jinja2 and the filter itself for undefineds in other positions. [#&#8203;794](https://github.com/mitsuhiko/minijinja/issues/794) - Allow negative arguments to `range` function and change range to `isize`. [#&#8203;799](https://github.com/mitsuhiko/minijinja/issues/799) - Allow `isize` as argument type. [#&#8203;799](https://github.com/mitsuhiko/minijinja/issues/799) - MiniJinja now correctly handles `\x` escape sequences in strings as well as octals. [#&#8203;805](https://github.com/mitsuhiko/minijinja/issues/805) - Added a new `|chain` filter. [#&#8203;807](https://github.com/mitsuhiko/minijinja/issues/807) ### [`v2.10.2`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2102) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.10.1...2.10.2) - Fixed an issue with the function bounds that caused the next-generation trait resolver to fail. [#&#8203;787](https://github.com/mitsuhiko/minijinja/issues/787) ### [`v2.10.1`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2101) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.10.0...2.10.1) - Re-release of 2.10.0 because of a broken release process. ### [`v2.10.0`](https://github.com/mitsuhiko/minijinja/blob/HEAD/CHANGELOG.md#2100) [Compare Source](https://github.com/mitsuhiko/minijinja/compare/2.9.0...2.10.0) - Fix incorrect permissions when `--output` is used in the CLI. [#&#8203;772](https://github.com/mitsuhiko/minijinja/issues/772) - Added `mj_err_get_debug_info` to the C-ABI. [#&#8203;775](https://github.com/mitsuhiko/minijinja/issues/775) - Modules now capture their output like they do in Jinja2. This means that if you do `{% import 'template.j2' as x %}` and you then render `{{ x }}` the output of `template.j2` is rendered as if it was included. [#&#8203;778](https://github.com/mitsuhiko/minijinja/issues/778) - Improved compatibility with Jinja2 for slicing. Negative steps are now correctly handled. Additionally slicing on bytes now correctly handles steps other than 1. [#&#8203;781](https://github.com/mitsuhiko/minijinja/issues/781) </details> <details> <summary>paolobarbolini/rusty-s3 (rusty-s3)</summary> ### [`v0.8.1`](https://github.com/paolobarbolini/rusty-s3/releases/tag/v0.8.1) [Compare Source](https://github.com/paolobarbolini/rusty-s3/compare/v0.8.0...v0.8.1) #### What's Changed - fix: handle missing XML fields in DeleteObjectsResponse by [@&#8203;AndSDev](https://github.com/AndSDev) in https://github.com/paolobarbolini/rusty-s3/pull/143 **Full Changelog**: https://github.com/paolobarbolini/rusty-s3/compare/v0.8.0...v0.8.1 ### [`v0.8.0`](https://github.com/paolobarbolini/rusty-s3/releases/tag/v0.8.0) [Compare Source](https://github.com/paolobarbolini/rusty-s3/compare/v0.7.0...v0.8.0) #### What's Changed - refactor: replace `time` with `jiff` by [@&#8203;paolobarbolini](https://github.com/paolobarbolini) in https://github.com/paolobarbolini/rusty-s3/pull/137 - feat: add DeleteObjects response parsing by [@&#8203;AndSDev](https://github.com/AndSDev) in https://github.com/paolobarbolini/rusty-s3/pull/142 - build: bump MSRV to v1.81 in https://github.com/paolobarbolini/rusty-s3/commit/7ec7fdd0e9531cb755ed1010e403693721e80b6f #### New Contributors - [@&#8203;AndSDev](https://github.com/AndSDev) made their first contribution in https://github.com/paolobarbolini/rusty-s3/pull/142 **Full Changelog**: https://github.com/paolobarbolini/rusty-s3/compare/v0.7.0...v0.8.0 </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.145`](https://github.com/serde-rs/json/releases/tag/v1.0.145) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.144...v1.0.145) - Raise serde version requirement to >=1.0.220 ### [`v1.0.144`](https://github.com/serde-rs/json/releases/tag/v1.0.144) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.143...v1.0.144) - Switch serde dependency to serde_core ([#&#8203;1285](https://github.com/serde-rs/json/issues/1285)) ### [`v1.0.143`](https://github.com/serde-rs/json/releases/tag/v1.0.143) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.142...v1.0.143) - Implement Clone and Debug for serde_json::Map iterators ([#&#8203;1264](https://github.com/serde-rs/json/issues/1264), thanks [@&#8203;xlambein](https://github.com/xlambein)) - Implement Default for CompactFormatter ([#&#8203;1268](https://github.com/serde-rs/json/issues/1268), thanks [@&#8203;SOF3](https://github.com/SOF3)) - Implement FromStr for serde_json::Map ([#&#8203;1271](https://github.com/serde-rs/json/issues/1271), thanks [@&#8203;mickvangelderen](https://github.com/mickvangelderen)) ### [`v1.0.142`](https://github.com/serde-rs/json/releases/tag/v1.0.142) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.141...v1.0.142) - impl Default for \&Value ([#&#8203;1265](https://github.com/serde-rs/json/issues/1265), thanks [@&#8203;aatifsyed](https://github.com/aatifsyed)) ### [`v1.0.141`](https://github.com/serde-rs/json/releases/tag/v1.0.141) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.140...v1.0.141) - Optimize string escaping during serialization ([#&#8203;1273](https://github.com/serde-rs/json/issues/1273), thanks [@&#8203;conradludgate](https://github.com/conradludgate)) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.48.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.48.0): Tokio v1.48.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.47.2...tokio-1.48.0) ### 1.48.0 (October 14th, 2025) The MSRV is increased to 1.71. ##### Added - fs: add `File::max_buf_size` ([#&#8203;7594]) - io: export `Chain` of `AsyncReadExt::chain` ([#&#8203;7599]) - net: add `SocketAddr::as_abstract_name` ([#&#8203;7491]) - net: add `TcpStream::quickack` and `TcpStream::set_quickack` ([#&#8203;7490]) - net: implement `AsRef<Self>` for `TcpStream` and `UnixStream` ([#&#8203;7573]) - task: add `LocalKey::try_get` ([#&#8203;7666]) - task: implement `Ord` for `task::Id` ([#&#8203;7530]) ##### Changed - deps: bump windows-sys to version 0.61 ([#&#8203;7645]) - fs: preserve `max_buf_size` when cloning a `File` ([#&#8203;7593]) - macros: suppress `clippy::unwrap_in_result` in `#[tokio::main]` ([#&#8203;7651]) - net: remove `PollEvented` noise from Debug formats ([#&#8203;7675]) - process: upgrade `Command::spawn_with` to use `FnOnce` ([#&#8203;7511]) - sync: remove inner mutex in `SetOnce` ([#&#8203;7554]) - sync: use `UnsafeCell::get_mut` in `Mutex::get_mut` and `RwLock::get_mut` ([#&#8203;7569]) - time: reduce the generated code size of `Timeout<T>::poll` ([#&#8203;7535]) ##### Fixed - macros: fix hygiene issue in `join!` and `try_join!` ([#&#8203;7638]) - net: fix copy/paste errors in udp peek methods ([#&#8203;7604]) - process: fix error when runtime is shut down on nightly-2025-10-12 ([#&#8203;7672]) - runtime: use release ordering in `wake_by_ref()` even if already woken ([#&#8203;7622]) - sync: close the `broadcast::Sender` in `broadcast::Sender::new()` ([#&#8203;7629]) - sync: fix implementation of unused `RwLock::try_*` methods ([#&#8203;7587]) ##### Unstable - tokio: use cargo features instead of `--cfg` flags for `taskdump` and `io_uring` ([#&#8203;7655], [#&#8203;7621]) - fs: support `io_uring` in `fs::write` ([#&#8203;7567]) - fs: support `io_uring` with `File::open()` ([#&#8203;7617]) - fs: support `io_uring` with `OpenOptions` ([#&#8203;7321]) - macros: add `local` runtime flavor ([#&#8203;7375], [#&#8203;7597]) ##### Documented - io: clarify the zero capacity case of `AsyncRead::poll_read` ([#&#8203;7580]) - io: fix typos in the docs of `AsyncFd` readiness guards ([#&#8203;7583]) - net: clarify socket gets closed on drop ([#&#8203;7526]) - net: clarify the behavior of `UCred::pid()` on Cygwin ([#&#8203;7611]) - net: clarify the supported platform of `set_reuseport()` and `reuseport()` ([#&#8203;7628]) - net: qualify that `SO_REUSEADDR` is only set on Unix ([#&#8203;7533]) - runtime: add guide for choosing between runtime types ([#&#8203;7635]) - runtime: clarify the behavior of `Handle::block_on` ([#&#8203;7665]) - runtime: clarify the edge case of `Builder::global_queue_interval()` ([#&#8203;7605]) - sync: clarify bounded channel panic behavior ([#&#8203;7641]) - sync: clarify the behavior of `tokio::sync::watch::Receiver` ([#&#8203;7584]) - sync: document cancel safety on `SetOnce::wait` ([#&#8203;7506]) - sync: fix the docs of `parking_lot` feature flag ([#&#8203;7663]) - sync: improve the docs of `UnboundedSender::send` ([#&#8203;7661]) - sync: improve the docs of `sync::watch` ([#&#8203;7601]) - sync: reword allocation failure paragraph in broadcast docs ([#&#8203;7595]) - task: clarify the behavior of several `spawn_local` methods ([#&#8203;7669]) - task: clarify the task ID reuse guarantees ([#&#8203;7577]) - task: improve the example of `poll_proceed` ([#&#8203;7586]) [#&#8203;7321]: https://github.com/tokio-rs/tokio/pull/7321 [#&#8203;7375]: https://github.com/tokio-rs/tokio/pull/7375 [#&#8203;7490]: https://github.com/tokio-rs/tokio/pull/7490 [#&#8203;7491]: https://github.com/tokio-rs/tokio/pull/7491 [#&#8203;7494]: https://github.com/tokio-rs/tokio/pull/7494 [#&#8203;7506]: https://github.com/tokio-rs/tokio/pull/7506 [#&#8203;7511]: https://github.com/tokio-rs/tokio/pull/7511 [#&#8203;7526]: https://github.com/tokio-rs/tokio/pull/7526 [#&#8203;7530]: https://github.com/tokio-rs/tokio/pull/7530 [#&#8203;7533]: https://github.com/tokio-rs/tokio/pull/7533 [#&#8203;7535]: https://github.com/tokio-rs/tokio/pull/7535 [#&#8203;7554]: https://github.com/tokio-rs/tokio/pull/7554 [#&#8203;7567]: https://github.com/tokio-rs/tokio/pull/7567 [#&#8203;7569]: https://github.com/tokio-rs/tokio/pull/7569 [#&#8203;7573]: https://github.com/tokio-rs/tokio/pull/7573 [#&#8203;7577]: https://github.com/tokio-rs/tokio/pull/7577 [#&#8203;7580]: https://github.com/tokio-rs/tokio/pull/7580 [#&#8203;7583]: https://github.com/tokio-rs/tokio/pull/7583 [#&#8203;7584]: https://github.com/tokio-rs/tokio/pull/7584 [#&#8203;7586]: https://github.com/tokio-rs/tokio/pull/7586 [#&#8203;7587]: https://github.com/tokio-rs/tokio/pull/7587 [#&#8203;7593]: https://github.com/tokio-rs/tokio/pull/7593 [#&#8203;7594]: https://github.com/tokio-rs/tokio/pull/7594 [#&#8203;7595]: https://github.com/tokio-rs/tokio/pull/7595 [#&#8203;7597]: https://github.com/tokio-rs/tokio/pull/7597 [#&#8203;7599]: https://github.com/tokio-rs/tokio/pull/7599 [#&#8203;7601]: https://github.com/tokio-rs/tokio/pull/7601 [#&#8203;7604]: https://github.com/tokio-rs/tokio/pull/7604 [#&#8203;7605]: https://github.com/tokio-rs/tokio/pull/7605 [#&#8203;7611]: https://github.com/tokio-rs/tokio/pull/7611 [#&#8203;7617]: https://github.com/tokio-rs/tokio/pull/7617 [#&#8203;7621]: https://github.com/tokio-rs/tokio/pull/7621 [#&#8203;7622]: https://github.com/tokio-rs/tokio/pull/7622 [#&#8203;7628]: https://github.com/tokio-rs/tokio/pull/7628 [#&#8203;7629]: https://github.com/tokio-rs/tokio/pull/7629 [#&#8203;7635]: https://github.com/tokio-rs/tokio/pull/7635 [#&#8203;7638]: https://github.com/tokio-rs/tokio/pull/7638 [#&#8203;7641]: https://github.com/tokio-rs/tokio/pull/7641 [#&#8203;7645]: https://github.com/tokio-rs/tokio/pull/7645 [#&#8203;7651]: https://github.com/tokio-rs/tokio/pull/7651 [#&#8203;7655]: https://github.com/tokio-rs/tokio/pull/7655 [#&#8203;7661]: https://github.com/tokio-rs/tokio/pull/7661 [#&#8203;7663]: https://github.com/tokio-rs/tokio/pull/7663 [#&#8203;7665]: https://github.com/tokio-rs/tokio/pull/7665 [#&#8203;7666]: https://github.com/tokio-rs/tokio/pull/7666 [#&#8203;7669]: https://github.com/tokio-rs/tokio/pull/7669 [#&#8203;7672]: https://github.com/tokio-rs/tokio/pull/7672 [#&#8203;7675]: https://github.com/tokio-rs/tokio/pull/7675 ### [`v1.47.2`](https://github.com/tokio-rs/tokio/compare/tokio-1.47.1...tokio-1.47.2) [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.47.1...tokio-1.47.2) ### [`v1.47.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.47.1): Tokio v1.47.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.47.0...tokio-1.47.1) ### 1.47.1 (August 1st, 2025) ##### Fixed - process: fix panic from spurious pidfd wakeup ([#&#8203;7494]) - sync: fix broken link of Python `asyncio.Event` in `SetOnce` docs ([#&#8203;7485]) [#&#8203;7485]: https://github.com/tokio-rs/tokio/pull/7485 [#&#8203;7494]: https://github.com/tokio-rs/tokio/pull/7494 ### [`v1.47.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.47.0): Tokio v1.47.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.46.1...tokio-1.47.0) ### 1.47.0 (July 25th, 2025) This release adds `poll_proceed` and `cooperative` to the `coop` module for cooperative scheduling, adds `SetOnce` to the `sync` module which provides similar functionality to \[`std::sync::OnceLock`], and adds a new method `sync::Notify::notified_owned()` which returns an `OwnedNotified` without a lifetime parameter. #### Added - coop: add `cooperative` and `poll_proceed` ([#&#8203;7405]) - sync: add `SetOnce` ([#&#8203;7418]) - sync: add `sync::Notify::notified_owned()` ([#&#8203;7465]) #### Changed - deps: upgrade windows-sys 0.52 → 0.59 (\[[#&#8203;7117](https://github.com/tokio-rs/tokio/issues/7117)]) - deps: update to socket2 v0.6 (\[[#&#8203;7443](https://github.com/tokio-rs/tokio/issues/7443)]) - sync: improve `AtomicWaker::wake` performance ([#&#8203;7450]) #### Documented - metrics: fix listed feature requirements for some metrics ([#&#8203;7449]) - runtime: improve safety comments of `Readiness<'_>` ([#&#8203;7415]) [#&#8203;7405]: https://github.com/tokio-rs/tokio/pull/7405 [#&#8203;7415]: https://github.com/tokio-rs/tokio/pull/7415 [#&#8203;7418]: https://github.com/tokio-rs/tokio/pull/7418 [#&#8203;7449]: https://github.com/tokio-rs/tokio/pull/7449 [#&#8203;7450]: https://github.com/tokio-rs/tokio/pull/7450 [#&#8203;7465]: https://github.com/tokio-rs/tokio/pull/7465 ### [`v1.46.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.46.1): Tokio v1.46.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.46.0...tokio-1.46.1) ### 1.46.1 (July 4th, 2025) This release fixes incorrect spawn locations in runtime task hooks for tasks spawned using `tokio::spawn` rather than `Runtime::spawn`. This issue only effected the spawn location in `TaskMeta::spawned_at`, and did not effect task locations in Tracing events. #### Unstable - runtime: add `TaskMeta::spawn_location` tracking where a task was spawned ([#&#8203;7440]) [#&#8203;7440]: https://github.com/tokio-rs/tokio/pull/7440 ### [`v1.46.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.46.0): Tokio v1.46.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.45.1...tokio-1.46.0) ### 1.46.0 (July 2nd, 2025) ##### Fixed - net: fixed `TcpStream::shutdown` incorrectly returning an error on macOS ([#&#8203;7290]) #### Added - sync: `mpsc::OwnedPermit::{same_channel, same_channel_as_sender}` methods ([#&#8203;7389]) - macros: `biased` option for `join!` and `try_join!`, similar to `select!` ([#&#8203;7307]) - net: support for cygwin ([#&#8203;7393]) - net: support `pope::OpenOptions::read_write` on Android ([#&#8203;7426]) - net: add `Clone` implementation for `net::unix::SocketAddr` ([#&#8203;7422]) #### Changed - runtime: eliminate unnecessary lfence while operating on `queue::Local<T>` ([#&#8203;7340]) - task: disallow blocking in `LocalSet::{poll,drop}` ([#&#8203;7372]) #### Unstable - runtime: add `TaskMeta::spawn_location` tracking where a task was spawned ([#&#8203;7417]) - runtime: removed borrow from `LocalOptions` parameter to `runtime::Builder::build_local` ([#&#8203;7346]) #### Documented - io: clarify behavior of seeking when `start_seek` is not used ([#&#8203;7366]) - io: document cancellation safety of `AsyncWriteExt::flush` ([#&#8203;7364]) - net: fix docs for `recv_buffer_size` method ([#&#8203;7336]) - net: fix broken link of `RawFd` in `TcpSocket` docs ([#&#8203;7416]) - net: update `AsRawFd` doc link to current Rust stdlib location ([#&#8203;7429]) - readme: fix double period in reactor description ([#&#8203;7363]) - runtime: add doc note that `on_*_task_poll` is unstable ([#&#8203;7311]) - sync: update broadcast docs on allocation failure ([#&#8203;7352]) - time: add a missing panic scenario of `time::advance` ([#&#8203;7394]) [#&#8203;7290]: https://github.com/tokio-rs/tokio/pull/7290 [#&#8203;7307]: https://github.com/tokio-rs/tokio/pull/7307 [#&#8203;7311]: https://github.com/tokio-rs/tokio/pull/7311 [#&#8203;7336]: https://github.com/tokio-rs/tokio/pull/7336 [#&#8203;7340]: https://github.com/tokio-rs/tokio/pull/7340 [#&#8203;7346]: https://github.com/tokio-rs/tokio/pull/7346 [#&#8203;7352]: https://github.com/tokio-rs/tokio/pull/7352 [#&#8203;7363]: https://github.com/tokio-rs/tokio/pull/7363 [#&#8203;7364]: https://github.com/tokio-rs/tokio/pull/7364 [#&#8203;7366]: https://github.com/tokio-rs/tokio/pull/7366 [#&#8203;7372]: https://github.com/tokio-rs/tokio/pull/7372 [#&#8203;7389]: https://github.com/tokio-rs/tokio/pull/7389 [#&#8203;7393]: https://github.com/tokio-rs/tokio/pull/7393 [#&#8203;7394]: https://github.com/tokio-rs/tokio/pull/7394 [#&#8203;7416]: https://github.com/tokio-rs/tokio/pull/7416 [#&#8203;7422]: https://github.com/tokio-rs/tokio/pull/7422 [#&#8203;7426]: https://github.com/tokio-rs/tokio/pull/7426 [#&#8203;7429]: https://github.com/tokio-rs/tokio/pull/7429 [#&#8203;7417]: https://github.com/tokio-rs/tokio/pull/7417 ### [`v1.45.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.45.1): Tokio v1.45.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.45.0...tokio-1.45.1) ### 1.45.1 (May 24th, 2025) This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to `Instant::now()` started failing. This is due to the stabilization of the first time-based metric. ##### Fixed - Disable time-based metrics on wasm32-unknown-unknown ([#&#8203;7322]) [#&#8203;7322]: https://github.com/tokio-rs/tokio/pull/7322 ### [`v1.45.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.45.0): Tokio v1.45.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.44.2...tokio-1.45.0) ##### Added - metrics: stabilize `worker_total_busy_duration`, `worker_park_count`, and `worker_unpark_count` ([#&#8203;6899], [#&#8203;7276]) - process: add `Command::spawn_with` ([#&#8203;7249]) ##### Changed - io: do not require `Unpin` for some trait impls ([#&#8203;7204]) - rt: mark `runtime::Handle` as unwind safe ([#&#8203;7230]) - time: revert internal sharding implementation ([#&#8203;7226]) ##### Unstable - rt: remove alt multi-threaded runtime ([#&#8203;7275]) [#&#8203;6899]: https://github.com/tokio-rs/tokio/pull/6899 [#&#8203;7276]: https://github.com/tokio-rs/tokio/pull/7276 [#&#8203;7249]: https://github.com/tokio-rs/tokio/pull/7249 [#&#8203;7204]: https://github.com/tokio-rs/tokio/pull/7204 [#&#8203;7230]: https://github.com/tokio-rs/tokio/pull/7230 [#&#8203;7226]: https://github.com/tokio-rs/tokio/pull/7226 [#&#8203;7275]: https://github.com/tokio-rs/tokio/pull/7275 </details> <details> <summary>servo/rust-url (url)</summary> ### [`v2.5.7`](https://github.com/servo/rust-url/releases/tag/v2.5.7) #### What's Changed ##### v.2.5.6 - Bump versions by [@&#8203;valenting](https://github.com/valenting) in https://github.com/servo/rust-url/pull/1062 - version bump to 2.5.6 by [@&#8203;edgul](https://github.com/edgul) in https://github.com/servo/rust-url/pull/1065 - Use no-std instead of no_std in Cargo.toml by [@&#8203;valenting](https://github.com/valenting) in https://github.com/servo/rust-url/pull/1064 - fix: add Serde std feature if needed by [@&#8203;reneca](https://github.com/reneca) in https://github.com/servo/rust-url/pull/1068 ##### v.2.5.7 - make serde std feature use optional syntax by [@&#8203;klensy](https://github.com/klensy) in https://github.com/servo/rust-url/pull/1071 #### New Contributors - [@&#8203;reneca](https://github.com/reneca) made their first contribution in https://github.com/servo/rust-url/pull/1068 **Full Changelog**: https://github.com/servo/rust-url/compare/v2.5.5...v2.5.7 ### [`v2.5.5`](https://github.com/servo/rust-url/releases/tag/v2.5.5) [Compare Source](https://github.com/servo/rust-url/compare/v2.5.4...v2.5.5) #### What's Changed - ci: downgrade crates when building for Rust 1.67.0 by [@&#8203;mxinden](https://github.com/mxinden) in https://github.com/servo/rust-url/pull/1003 - ci: run unit tests with sanitizers by [@&#8203;mxinden](https://github.com/mxinden) in https://github.com/servo/rust-url/pull/1002 - fix small typo by [@&#8203;hkBst](https://github.com/hkBst) in https://github.com/servo/rust-url/pull/1011 - chore: fix clippy errors on main by [@&#8203;dsherret](https://github.com/dsherret) in https://github.com/servo/rust-url/pull/1019 - perf: remove heap allocation in parse_query by [@&#8203;dsherret](https://github.com/dsherret) in https://github.com/servo/rust-url/pull/1020 - perf: slightly improve parsing a port by [@&#8203;dsherret](https://github.com/dsherret) in https://github.com/servo/rust-url/pull/1022 - perf: improve to_file_path() by [@&#8203;dsherret](https://github.com/dsherret) in https://github.com/servo/rust-url/pull/1018 - perf: make parse_scheme slightly faster by [@&#8203;dsherret](https://github.com/dsherret) in https://github.com/servo/rust-url/pull/1025 - update LICENSE-MIT by [@&#8203;wmjae](https://github.com/wmjae) in https://github.com/servo/rust-url/pull/1029 - perf: url encode path segments in longer string slices by [@&#8203;dsherret](https://github.com/dsherret) in https://github.com/servo/rust-url/pull/1026 - Disable the default features on serde by [@&#8203;rilipco](https://github.com/rilipco) in https://github.com/servo/rust-url/pull/1033 - docs: base url relative join by [@&#8203;tisonkun](https://github.com/tisonkun) in https://github.com/servo/rust-url/pull/1013 - perf: remove heap allocation in parse_host by [@&#8203;dsherret](https://github.com/dsherret) in https://github.com/servo/rust-url/pull/1021 - Update tests to Unicode 16.0 by [@&#8203;hsivonen](https://github.com/hsivonen) in https://github.com/servo/rust-url/pull/1045 - Add some some basic functions to `Mime` by [@&#8203;mrobinson](https://github.com/mrobinson) in https://github.com/servo/rust-url/pull/1047 - ran `cargo clippy --fix -- -Wclippy::use_self` by [@&#8203;mrobinson](https://github.com/mrobinson) in https://github.com/servo/rust-url/pull/1048 - Fix MSRV and clippy CI by [@&#8203;Manishearth](https://github.com/Manishearth) in https://github.com/servo/rust-url/pull/1058 - Update `Url::domain` docs to show that it includes subdomain by [@&#8203;supercoolspy](https://github.com/supercoolspy) in https://github.com/servo/rust-url/pull/1057 - set_hostname should error when encountering colon ':' by [@&#8203;edgul](https://github.com/edgul) in https://github.com/servo/rust-url/pull/1060 - version bump to 2.5.5 by [@&#8203;edgul](https://github.com/edgul) in https://github.com/servo/rust-url/pull/1061 #### New Contributors - [@&#8203;mxinden](https://github.com/mxinden) made their first contribution in https://github.com/servo/rust-url/pull/1003 - [@&#8203;hkBst](https://github.com/hkBst) made their first contribution in https://github.com/servo/rust-url/pull/1011 - [@&#8203;wmjae](https://github.com/wmjae) made their first contribution in https://github.com/servo/rust-url/pull/1029 - [@&#8203;rilipco](https://github.com/rilipco) made their first contribution in https://github.com/servo/rust-url/pull/1033 - [@&#8203;tisonkun](https://github.com/tisonkun) made their first contribution in https://github.com/servo/rust-url/pull/1013 - [@&#8203;supercoolspy](https://github.com/supercoolspy) made their first contribution in https://github.com/servo/rust-url/pull/1057 **Full Changelog**: https://github.com/servo/rust-url/compare/v2.5.4...v2.5.5 </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.18.1`](https://github.com/uuid-rs/uuid/releases/tag/v1.18.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.18.0...v1.18.1) #### What's Changed - Unsafe cleanup by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/841 - Prepare for 1.18.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/842 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.18.0...v1.18.1 ### [`v1.18.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.18.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.17.0...v1.18.0) #### What's Changed - Fix up mismatched_lifetime_syntaxes lint by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/837 - Conversions between `Timestamp` and `std::time::SystemTime` by [@&#8203;dcormier](https://github.com/dcormier) in https://github.com/uuid-rs/uuid/pull/835 - Wrap the error type used in time conversions by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/838 - Prepare for 1.18.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/839 #### New Contributors - [@&#8203;dcormier](https://github.com/dcormier) made their first contribution in https://github.com/uuid-rs/uuid/pull/835 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.17.0...v1.18.0 ### [`v1.17.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.17.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0) #### What's Changed - Added convenience implementation TryFrom<String> for std by [@&#8203;Nahuel-M](https://github.com/Nahuel-M) in https://github.com/uuid-rs/uuid/pull/819 - Update OSX builds to arm by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/825 - Replace derive(Hash) with manual impl in Uuid by [@&#8203;diopoex](https://github.com/diopoex) in https://github.com/uuid-rs/uuid/pull/824 - Add `wasm32v1-none` Support by [@&#8203;bushrat011899](https://github.com/bushrat011899) in https://github.com/uuid-rs/uuid/pull/828 - Prepare for 1.17.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/829 #### New Contributors - [@&#8203;Nahuel-M](https://github.com/Nahuel-M) made their first contribution in https://github.com/uuid-rs/uuid/pull/819 - [@&#8203;diopoex](https://github.com/diopoex) made their first contribution in https://github.com/uuid-rs/uuid/pull/824 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-05-06 02:24:33 +02:00
kjuulh changed title from fix(deps): update rust crate minijinja to v2.10.1 to fix(deps): update all dependencies 2025-05-07 02:26:51 +02:00
kjuulh force-pushed renovate/all from a9f5ed97e2 to 9c8452f6c1 2025-05-07 02:26:52 +02:00 Compare
kjuulh force-pushed renovate/all from 9c8452f6c1 to 8eb6c83291 2025-05-11 05:25:22 +02:00 Compare
kjuulh force-pushed renovate/all from 8eb6c83291 to 22ec9f9686 2025-05-12 02:26:19 +02:00 Compare
kjuulh force-pushed renovate/all from 22ec9f9686 to 94603f9a94 2025-05-12 05:23:59 +02:00 Compare
kjuulh force-pushed renovate/all from 94603f9a94 to 3e3ce5ced0 2025-05-13 02:25:44 +02:00 Compare
kjuulh force-pushed renovate/all from 3e3ce5ced0 to 68184aa16d 2025-05-13 05:24:11 +02:00 Compare
kjuulh force-pushed renovate/all from 68184aa16d to efc513535c 2025-05-14 02:24:21 +02:00 Compare
kjuulh force-pushed renovate/all from efc513535c to d27f636922 2025-05-14 05:24:56 +02:00 Compare
kjuulh force-pushed renovate/all from d27f636922 to 340e2fa8d6 2025-05-15 02:24:09 +02:00 Compare
kjuulh force-pushed renovate/all from 340e2fa8d6 to da7b51b24a 2025-05-15 05:23:18 +02:00 Compare
kjuulh force-pushed renovate/all from da7b51b24a to 5dab8e0f6d 2025-05-17 02:24:03 +02:00 Compare
kjuulh force-pushed renovate/all from 5dab8e0f6d to c6e3343228 2025-05-17 05:23:48 +02:00 Compare
kjuulh force-pushed renovate/all from c6e3343228 to 6819e707f3 2025-05-18 02:24:06 +02:00 Compare
kjuulh force-pushed renovate/all from 6819e707f3 to e0e64d9930 2025-05-18 05:23:55 +02:00 Compare
kjuulh force-pushed renovate/all from e0e64d9930 to a0dd9103ac 2025-05-19 02:24:25 +02:00 Compare
kjuulh force-pushed renovate/all from a0dd9103ac to 122a848b7b 2025-05-19 05:25:36 +02:00 Compare
kjuulh force-pushed renovate/all from 122a848b7b to 00439b059d 2025-05-20 02:23:59 +02:00 Compare
kjuulh force-pushed renovate/all from 00439b059d to 87dbfbd3c4 2025-05-20 05:23:54 +02:00 Compare
kjuulh force-pushed renovate/all from 87dbfbd3c4 to 4d27d16a62 2025-05-21 02:24:48 +02:00 Compare
kjuulh force-pushed renovate/all from 4d27d16a62 to 69e2b08b5a 2025-05-21 05:22:58 +02:00 Compare
kjuulh force-pushed renovate/all from 69e2b08b5a to 85fd7e4bda 2025-05-22 02:25:38 +02:00 Compare
kjuulh force-pushed renovate/all from 85fd7e4bda to 509139f0fa 2025-05-22 05:23:47 +02:00 Compare
kjuulh force-pushed renovate/all from 509139f0fa to dacadb51ca 2025-05-23 02:23:48 +02:00 Compare
kjuulh force-pushed renovate/all from dacadb51ca to ae92421a25 2025-05-23 05:24:58 +02:00 Compare
kjuulh force-pushed renovate/all from ae92421a25 to f0cc0c44b9 2025-05-24 02:26:18 +02:00 Compare
kjuulh force-pushed renovate/all from f0cc0c44b9 to ae393fa779 2025-05-24 05:24:41 +02:00 Compare
kjuulh force-pushed renovate/all from ae393fa779 to 0adcb6a5ee 2025-05-25 02:25:51 +02:00 Compare
kjuulh force-pushed renovate/all from 0adcb6a5ee to 4303786f52 2025-05-28 02:27:57 +02:00 Compare
kjuulh force-pushed renovate/all from 4303786f52 to 8794b028c8 2025-05-28 05:24:12 +02:00 Compare
kjuulh force-pushed renovate/all from 8794b028c8 to 3ee0451086 2025-05-29 02:25:18 +02:00 Compare
kjuulh force-pushed renovate/all from 3ee0451086 to d353a2e2c2 2025-05-29 05:23:37 +02:00 Compare
kjuulh force-pushed renovate/all from d353a2e2c2 to 19c46649de 2025-05-30 02:26:32 +02:00 Compare
kjuulh force-pushed renovate/all from 19c46649de to 955ca0fd10 2025-05-30 05:24:07 +02:00 Compare
kjuulh force-pushed renovate/all from 955ca0fd10 to 5fffb39044 2025-05-31 02:25:29 +02:00 Compare
kjuulh force-pushed renovate/all from 5fffb39044 to 12c88aea83 2025-05-31 05:24:03 +02:00 Compare
kjuulh force-pushed renovate/all from 12c88aea83 to 55d15d247b 2025-06-01 02:24:58 +02:00 Compare
kjuulh force-pushed renovate/all from 55d15d247b to d2095801f7 2025-06-01 05:24:10 +02:00 Compare
kjuulh force-pushed renovate/all from d2095801f7 to 412c475ebb 2025-06-02 02:25:07 +02:00 Compare
kjuulh force-pushed renovate/all from 412c475ebb to a1f7272bb4 2025-06-02 05:24:20 +02:00 Compare
kjuulh force-pushed renovate/all from a1f7272bb4 to 503183407f 2025-06-03 02:25:03 +02:00 Compare
kjuulh force-pushed renovate/all from 503183407f to e4e5681eac 2025-06-03 05:24:18 +02:00 Compare
kjuulh force-pushed renovate/all from e4e5681eac to 6199529667 2025-06-04 02:26:09 +02:00 Compare
kjuulh force-pushed renovate/all from 6199529667 to a23f8b9e50 2025-06-04 05:23:57 +02:00 Compare
kjuulh force-pushed renovate/all from a23f8b9e50 to 67c4d2f4b4 2025-06-05 02:26:41 +02:00 Compare
kjuulh force-pushed renovate/all from 67c4d2f4b4 to 180fa201cd 2025-06-05 05:25:32 +02:00 Compare
kjuulh force-pushed renovate/all from 180fa201cd to a2378c85c5 2025-06-06 02:26:32 +02:00 Compare
kjuulh force-pushed renovate/all from a2378c85c5 to 51726f5a6c 2025-06-06 05:25:48 +02:00 Compare
kjuulh force-pushed renovate/all from 51726f5a6c to 79fe7c8d00 2025-06-07 02:25:56 +02:00 Compare
kjuulh force-pushed renovate/all from 79fe7c8d00 to fa8fb6f00f 2025-06-07 05:24:47 +02:00 Compare
kjuulh force-pushed renovate/all from fa8fb6f00f to 723f1b1047 2025-06-08 02:26:18 +02:00 Compare
kjuulh force-pushed renovate/all from 723f1b1047 to a289abf540 2025-06-08 05:25:32 +02:00 Compare
kjuulh force-pushed renovate/all from a289abf540 to 80905a82a9 2025-06-09 02:27:07 +02:00 Compare
kjuulh force-pushed renovate/all from 80905a82a9 to 5b547371cd 2025-06-09 05:25:24 +02:00 Compare
kjuulh force-pushed renovate/all from 5b547371cd to 4b63cd5b6d 2025-06-10 02:29:16 +02:00 Compare
kjuulh force-pushed renovate/all from 4b63cd5b6d to 796bc3e2e4 2025-06-10 05:26:46 +02:00 Compare
kjuulh force-pushed renovate/all from 796bc3e2e4 to f1d44118f8 2025-06-11 02:26:53 +02:00 Compare
kjuulh force-pushed renovate/all from f1d44118f8 to 51498443b9 2025-06-11 05:26:05 +02:00 Compare
kjuulh force-pushed renovate/all from 51498443b9 to c5330295bf 2025-06-12 02:28:57 +02:00 Compare
kjuulh force-pushed renovate/all from c5330295bf to 6fe5315c50 2025-06-12 05:25:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6fe5315c50 to 6efba66eba 2025-06-13 02:27:13 +02:00 Compare
kjuulh force-pushed renovate/all from 6efba66eba to 76a27e5978 2025-06-13 05:25:50 +02:00 Compare
kjuulh force-pushed renovate/all from 76a27e5978 to 0f0ccb7db6 2025-06-18 02:25:54 +02:00 Compare
kjuulh force-pushed renovate/all from 0f0ccb7db6 to 93155e991c 2025-06-18 05:24:07 +02:00 Compare
kjuulh force-pushed renovate/all from 93155e991c to 3ea8f898a9 2025-06-19 02:25:15 +02:00 Compare
kjuulh force-pushed renovate/all from 3ea8f898a9 to 1627430f2d 2025-06-19 05:24:34 +02:00 Compare
kjuulh force-pushed renovate/all from 1627430f2d to f59507f944 2025-06-20 02:24:53 +02:00 Compare
kjuulh force-pushed renovate/all from f59507f944 to 0ed5eecd00 2025-06-20 05:24:02 +02:00 Compare
kjuulh force-pushed renovate/all from 0ed5eecd00 to 95d8018db4 2025-06-21 02:24:31 +02:00 Compare
kjuulh force-pushed renovate/all from 95d8018db4 to 4ea4725515 2025-06-21 05:23:52 +02:00 Compare
kjuulh force-pushed renovate/all from 4ea4725515 to e28aae17ac 2025-06-22 02:24:34 +02:00 Compare
kjuulh force-pushed renovate/all from e28aae17ac to dfb648b1c9 2025-06-22 05:24:00 +02:00 Compare
kjuulh force-pushed renovate/all from dfb648b1c9 to 7cf26e165f 2025-06-23 02:24:48 +02:00 Compare
kjuulh force-pushed renovate/all from 7cf26e165f to 06622fb202 2025-06-23 05:24:20 +02:00 Compare
kjuulh force-pushed renovate/all from 06622fb202 to 9660a2fac0 2025-06-24 02:25:03 +02:00 Compare
kjuulh force-pushed renovate/all from 9660a2fac0 to 529ba2d14c 2025-06-24 05:24:22 +02:00 Compare
kjuulh force-pushed renovate/all from 529ba2d14c to 51b3c03668 2025-06-25 02:25:50 +02:00 Compare
kjuulh force-pushed renovate/all from 51b3c03668 to 1a5648e713 2025-06-25 05:24:30 +02:00 Compare
kjuulh force-pushed renovate/all from 1a5648e713 to 9da96327d3 2025-06-26 02:25:41 +02:00 Compare
kjuulh force-pushed renovate/all from 9da96327d3 to 3577f076d7 2025-06-26 05:24:14 +02:00 Compare
kjuulh force-pushed renovate/all from 3577f076d7 to 6ac6c09e91 2025-06-27 02:24:50 +02:00 Compare
kjuulh force-pushed renovate/all from 6ac6c09e91 to 7c29502e4b 2025-06-27 05:24:31 +02:00 Compare
kjuulh force-pushed renovate/all from 7c29502e4b to 438fe9c9f1 2025-06-28 02:26:00 +02:00 Compare
kjuulh force-pushed renovate/all from 438fe9c9f1 to 3072703a90 2025-06-28 05:24:33 +02:00 Compare
kjuulh force-pushed renovate/all from 3072703a90 to 579bf280ff 2025-06-29 02:25:17 +02:00 Compare
kjuulh force-pushed renovate/all from 579bf280ff to 5e357ad882 2025-07-03 02:27:31 +02:00 Compare
kjuulh force-pushed renovate/all from 5e357ad882 to cfa119c64e 2025-07-03 05:26:33 +02:00 Compare
kjuulh force-pushed renovate/all from cfa119c64e to b72614760f 2025-07-04 02:26:16 +02:00 Compare
kjuulh force-pushed renovate/all from b72614760f to 6ec44e5177 2025-07-04 05:24:44 +02:00 Compare
kjuulh force-pushed renovate/all from 6ec44e5177 to de055e142b 2025-07-05 02:32:21 +02:00 Compare
kjuulh force-pushed renovate/all from de055e142b to 1295f3999f 2025-07-05 05:26:18 +02:00 Compare
kjuulh force-pushed renovate/all from 1295f3999f to 4ee54e578c 2025-07-06 02:25:30 +02:00 Compare
kjuulh force-pushed renovate/all from 4ee54e578c to 798ca555a2 2025-07-06 05:25:26 +02:00 Compare
kjuulh force-pushed renovate/all from 798ca555a2 to fd363ca720 2025-07-07 02:26:35 +02:00 Compare
kjuulh force-pushed renovate/all from fd363ca720 to 2b50e01407 2025-07-07 05:26:15 +02:00 Compare
kjuulh force-pushed renovate/all from 2b50e01407 to acdea1c97e 2025-07-08 02:26:03 +02:00 Compare
kjuulh force-pushed renovate/all from acdea1c97e to a2f304cd01 2025-07-08 05:25:29 +02:00 Compare
kjuulh force-pushed renovate/all from a2f304cd01 to 37ba996ce3 2025-07-09 02:27:23 +02:00 Compare
kjuulh force-pushed renovate/all from 37ba996ce3 to b518d9ae2a 2025-07-09 05:24:49 +02:00 Compare
kjuulh force-pushed renovate/all from b518d9ae2a to 5a87cb51cf 2025-07-10 02:26:18 +02:00 Compare
kjuulh force-pushed renovate/all from 5a87cb51cf to 274f7890d9 2025-07-10 05:26:17 +02:00 Compare
kjuulh force-pushed renovate/all from 274f7890d9 to fb6d5361cf 2025-07-11 02:28:03 +02:00 Compare
kjuulh force-pushed renovate/all from fb6d5361cf to 21fcd7bfcd 2025-07-11 05:27:31 +02:00 Compare
kjuulh force-pushed renovate/all from 21fcd7bfcd to 9f04cc1c9d 2025-07-12 02:25:36 +02:00 Compare
kjuulh force-pushed renovate/all from 9f04cc1c9d to ea73c250bf 2025-07-12 05:24:53 +02:00 Compare
kjuulh force-pushed renovate/all from ea73c250bf to a817d2c488 2025-07-13 02:25:32 +02:00 Compare
kjuulh force-pushed renovate/all from a817d2c488 to e5cc879a1b 2025-07-13 05:24:38 +02:00 Compare
kjuulh force-pushed renovate/all from e5cc879a1b to 1ae449e966 2025-07-14 02:26:06 +02:00 Compare
kjuulh force-pushed renovate/all from 1ae449e966 to c585545741 2025-07-14 05:24:55 +02:00 Compare
kjuulh force-pushed renovate/all from c585545741 to d4e0ba91e6 2025-07-15 02:25:53 +02:00 Compare
kjuulh force-pushed renovate/all from d4e0ba91e6 to f9f021c6e3 2025-07-15 05:25:00 +02:00 Compare
kjuulh force-pushed renovate/all from f9f021c6e3 to 03bfed7500 2025-07-16 02:28:54 +02:00 Compare
kjuulh force-pushed renovate/all from 03bfed7500 to 1850520993 2025-07-16 05:26:39 +02:00 Compare
kjuulh force-pushed renovate/all from 1850520993 to 44bfafeff4 2025-07-17 02:27:32 +02:00 Compare
kjuulh force-pushed renovate/all from 44bfafeff4 to 519be754ae 2025-07-17 05:26:16 +02:00 Compare
kjuulh force-pushed renovate/all from 519be754ae to 6bb08fd26c 2025-07-18 02:27:19 +02:00 Compare
kjuulh force-pushed renovate/all from 6bb08fd26c to eab1fe1df0 2025-07-18 05:26:21 +02:00 Compare
kjuulh force-pushed renovate/all from eab1fe1df0 to f14f19be9d 2025-07-19 02:27:45 +02:00 Compare
kjuulh force-pushed renovate/all from f14f19be9d to 582b3c3e87 2025-07-21 02:27:03 +02:00 Compare
kjuulh force-pushed renovate/all from 582b3c3e87 to 17b6cda437 2025-11-13 02:57:54 +01:00 Compare
kjuulh force-pushed renovate/all from 17b6cda437 to b01c4e4523 2025-11-13 05:21:45 +01:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

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
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/forest#10
No description provided.