fix(deps): update all dependencies #59

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
async-trait dependencies patch 0.1.88 -> 0.1.89
clap workspace.dependencies patch 4.5.43 -> 4.5.54
dagger-sdk workspace.dependencies minor 0.18.3 -> 0.19.0
tokio (source) workspace.dependencies minor 1.47.1 -> 1.49.0

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)
dtolnay/async-trait (async-trait)

v0.1.89

Compare Source

clap-rs/clap (clap)

v4.5.54

Compare Source

Fixes
  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

v4.5.53

Compare Source

Features
  • Add default_values_if, default_values_ifs

v4.5.52

Compare Source

Fixes
  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

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
dagger/dagger (dagger-sdk)

v0.19.10

Compare Source

Added
Fixed
What to do next?

v0.19.9

Compare Source

Added
Fixed
Contributors

Special thanks to our external contributors this release!

What to do next?

v0.19.8

Compare Source

Added
Changed
Fixed
Contributors

Special thanks to our external contributors this release!

What to do next?

v0.19.7

Compare Source

Added
Fixed
Contributors

Special thanks to our external contributors this release!

What to do next?

v0.19.6

Compare Source

Fixed
Contributors

Special thanks to our external contributors this release!

What to do next?

v0.19.5

Compare Source

Fixed
Contributors

Special thanks to our external contributors this release!

What to do next?

v0.19.4

Compare Source

Added
Fixed
Dependencies
Contributors

Special thanks to our external contributors this release!

What to do next?

v0.19.3

Compare Source

Added
Fixed
Dependencies
What to do next?

v0.19.2

Compare Source

Fixed
What to do next?

v0.19.1

Compare Source

Added
Fixed
What to do next?

v0.19.0

Compare Source

🔥 Breaking Changes
Added
Fixed
What to do next?

v0.18.19

Compare Source

Added
Fixed
What to do next?

v0.18.18

Compare Source

Added
Fixed
What to do next?

v0.18.17

Compare Source

🔥 Breaking Changes
  • Automatically apply .gitignore patterns on directory loading for module call by @​TomChv and @​jedevc in https://github.com/dagger/dagger/pull/10883 \

    • Apply when loading contextual directory argument.
    • Apply when a directory is sent as an argument to a module function.
    • Apply when a local module is loaded.

    Add NoGitAutoIgnore argument to Host.Directory to disable this behavior.

Added
Fixed
What to do next?

v0.18.16

Compare Source

What to do next?

v0.18.15

Compare Source

Added
Fixed
Contributors

Special thanks to our external contributors this release!

What to do next?
tokio-rs/tokio (tokio)

v1.49.0: Tokio v1.49.0

Compare Source

1.49.0 (January 3rd, 2026)

Added
  • net: add support for TCLASS option on IPv6 (#​7781)
  • runtime: stabilize runtime::id::Id (#​7125)
  • task: implement Extend for JoinSet (#​7195)
  • task: stabilize the LocalSet::id() (#​7776)
Changed
  • net: deprecate {TcpStream,TcpSocket}::set_linger (#​7752)
Fixed
  • macros: fix the hygiene issue of join! and try_join! (#​7766)
  • runtime: revert "replace manual vtable definitions with Wake" (#​7699)
  • sync: return TryRecvError::Disconnected from Receiver::try_recv after Receiver::close (#​7686)
  • task: remove unnecessary trait bounds on the Debug implementation (#​7720)
Unstable
  • fs: handle EINTR in fs::write for io-uring (#​7786)
  • fs: support io-uring with tokio::fs::read (#​7696)
  • runtime: disable io-uring on EPERM (#​7724)
  • time: add alternative timer for better multicore scalability (#​7467)
Documented
  • docs: fix a typos in bounded.rs and park.rs (#​7817)
  • io: add SyncIoBridge cross-references to copy and copy_buf (#​7798)
  • io: doc that AsyncWrite does not inherit from std::io::Write (#​7705)
  • metrics: clarify that num_alive_tasks is not strongly consistent (#​7614)
  • net: clarify the cancellation safety of the TcpStream::peek (#​7305)
  • net: clarify the drop behavior of unix::OwnedWriteHalf (#​7742)
  • net: clarify the platform-dependent backlog in TcpSocket docs (#​7738)
  • runtime: mention LocalRuntime in new_current_thread docs (#​7820)
  • sync: add missing period to mpsc::Sender::try_send docs (#​7721)
  • sync: clarify the cancellation safety of oneshot::Receiver (#​7780)
  • sync: improve the docs for the errors of mpsc (#​7722)
  • task: add example for spawn_local usage on local runtime (#​7689)

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.3

Compare Source

v1.47.2

Compare Source


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` | | [async-trait](https://github.com/dtolnay/async-trait) | dependencies | patch | `0.1.88` -> `0.1.89` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.43` -> `4.5.54` | | [dagger-sdk](https://github.com/dagger/dagger) | workspace.dependencies | minor | `0.18.3` -> `0.19.0` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.47.1` -> `1.49.0` | --- ### 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>dtolnay/async-trait (async-trait)</summary> ### [`v0.1.89`](https://github.com/dtolnay/async-trait/releases/tag/0.1.89) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.88...0.1.89) - Improve IDE functionality ([#&#8203;293](https://github.com/dtolnay/async-trait/issues/293), thanks [@&#8203;Veykril](https://github.com/Veykril)) </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.54`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4554---2026-01-02) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.53...v4.5.54) ##### Fixes - *(help)* Move `[default]` to its own paragraph when `PossibleValue::help` is present in `--help` ### [`v4.5.53`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4553---2025-11-19) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.52...v4.5.53) ##### Features - Add `default_values_if`, `default_values_ifs` ### [`v4.5.52`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4552---2025-11-17) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.51...v4.5.52) ##### Fixes - Don't panic when `args_conflicts_with_subcommands` conflicts with an `ArgGroup` ### [`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` </details> <details> <summary>dagger/dagger (dagger-sdk)</summary> ### [`v0.19.10`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v01910---2026-01-14) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.9...v0.19.10) ##### Added - Improve memory usage of `dagger develop --recursive` when used with large number of modules by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11659 - Add shareProcessNamespace option to Helm chart for sidecar process access by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11680 ##### Fixed - Fix invalid mounts leftover after hard engine crash by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11673 - Fix file not found errors when same module concurrently invoked by different clients from different paths by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11625 - Fix regression resulting in "failed to authorize" errors during image pulls by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11667 - Fix regression resulting "no such file or directory" errors after use of WithName API by [@&#8203;alexcb](https://github.com/alexcb) in https://github.com/dagger/dagger/pull/11671 - Fix errors when using contextual GitRef arguments sourced from local dirs in combination with function caching by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11688 - Fix errors in some SDKs when invoking toolchain constructors by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/11690 ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.9`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0199---2026-01-07) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.8...v0.19.9) ##### Added - directory.Stat and container.Stat calls by [@&#8203;alexcb](https://github.com/alexcb) in https://github.com/dagger/dagger/pull/11403 - improve filesystem performance by reducing overlay fsync overhead by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11559 - improve changeset performance by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11580 - add Check.Source to return the module source where the check is defined by [@&#8203;tiborvass](https://github.com/tiborvass) in https://github.com/dagger/dagger/pull/11630 ##### Fixed - fix TypeScript cache setting type error by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/11539 - Disable Git askpass prompts to prevent unexpected IDE credential dialogs (e.g., VS Code popups that appear even when credentials are already configured). Credentials still work via helpers or .netrc. For the rare case where no credentials are configured, Dagger now fails early with a clear error instead of triggering a subtle prompt that users sometimes miss by [@&#8203;sleiner-v](https://github.com/sleiner-v) in https://github.com/dagger/dagger/pull/11437 - fix invalid overlay mount creation race condition by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11545 - template in module name when initializing typescript modules by [@&#8203;kpenfound](https://github.com/kpenfound) in https://github.com/dagger/dagger/pull/11551 - fix incorrect file contents caching race condition bug by [@&#8203;alexcb](https://github.com/alexcb) in https://github.com/dagger/dagger/pull/11575 - allow use of git module sources in Java SDK by [@&#8203;eunomie](https://github.com/eunomie) in https://github.com/dagger/dagger/pull/11570 - improve determinism of generate Go code by [@&#8203;kpenfound](https://github.com/kpenfound) in https://github.com/dagger/dagger/pull/11579 - preserve shell exit codes in TUI mode by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11586 - ensure typescript SDK correctly uses lockfile in modules by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/11592 - fix chained calls across different depths in progress output by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/11596 - correct spelling in withAnnotation doc by [@&#8203;hugginsio](https://github.com/hugginsio) in https://github.com/dagger/dagger/pull/11598 - fix missing ignores of xattr copy failures by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11606 ##### Contributors Special thanks to our external contributors this release! - [@&#8203;hugginsio](https://github.com/hugginsio) - [@&#8203;sleiner-v](https://github.com/sleiner-v) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.8`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0198---2025-12-04) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.7...v0.19.8) ##### Added - Optimize `WithDirectory` and `WithFile` to avoid copying file data on disk in more cases by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11497 \ These APIs now avoid copying data on disk in all cases except when an owner, permission or timestamp is modified as part of the operation. - Add support for host environment variable expansion in `.env` files by [@&#8203;alexcb](https://github.com/alexcb) in https://github.com/dagger/dagger/pull/11442 - Add VCS support for on-premises Azure DevOps by [@&#8203;nilune](https://github.com/nilune) in https://github.com/dagger/dagger/pull/11500 - Add ability to set app role mount path in Vault secret provider by [@&#8203;nilune](https://github.com/nilune) in https://github.com/dagger/dagger/pull/11471 - Add toolchain customization configuration by [@&#8203;kpenfound](https://github.com/kpenfound) in https://github.com/dagger/dagger/pull/11480 - Add configuration to ignore checks in a toolchain by [@&#8203;kpenfound](https://github.com/kpenfound) in https://github.com/dagger/dagger/pull/11489 - TypeScript SDK: Add live telemetry support by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/11486 - TypeScript SDK: Add tracing for tests using `@otr/mocha-test` lib by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/11508 - Add `File.AsJSON()` to simplify handling JSON file contents by [@&#8203;suprjinx](https://github.com/suprjinx) in https://github.com/dagger/dagger/pull/11408 ##### Changed - Go SDK: Make codegen deterministic by [@&#8203;kpenfound](https://github.com/kpenfound) in https://github.com/dagger/dagger/pull/11522 - Refactor cloud auth to handle both CLI and token flows by [@&#8203;marcosnils](https://github.com/marcosnils) in https://github.com/dagger/dagger/pull/11520 ##### Fixed - Fix caching of function errors within a single dagger session by [@&#8203;grouville](https://github.com/grouville) and [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11488 - Fix nested execs created by modules to not be module clients by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11458 - Fix module loading using content digest ID by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11491 - Fix stale sessions handling in dag-op filesync, resolving occasional "session not found" errors by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11448 - Fix env to always load value from correct parent client by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11459 - Bump modernc to pick up ctx cancel fix by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11492 - Fix incorrect function name in comment by [@&#8203;black5box](https://github.com/black5box) in https://github.com/dagger/dagger/pull/11428 - Fix panic in CI generate by [@&#8203;tiborvass](https://github.com/tiborvass) in https://github.com/dagger/dagger/pull/11483 - Disable 'reveal' by default in util/parallel by [@&#8203;shykes](https://github.com/shykes) in https://github.com/dagger/dagger/pull/11517 ##### Contributors Special thanks to our external contributors this release! - [@&#8203;black5box](https://github.com/black5box) - [@&#8203;nilune](https://github.com/nilune) - [@&#8203;suprjinx](https://github.com/suprjinx) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.7`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0197---2025-11-20) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.6...v0.19.7) ##### Added - Make Dependencies() and GeneratedContextDirectory() accessible from the CurrentModule API by [@&#8203;chrisjpalmer](https://github.com/chrisjpalmer) in https://github.com/dagger/dagger/pull/11146 - Add `--eager-runtime` flag to `dagger functions` by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/11413 - Add SDK runtime debug mode by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11349 ##### Fixed - Cache git.Remote() metadata in session cache by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11366 - Miscellaneous fixes in LLM() by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/11370 - Fix issue where Directory.File() was not caching based on file content by [@&#8203;alexcb](https://github.com/alexcb) in https://github.com/dagger/dagger/pull/11329 - Disable caching for engine clients query by [@&#8203;matipan](https://github.com/matipan) in https://github.com/dagger/dagger/pull/11416 - Speed up local connect time to docker daemon by [@&#8203;tiborvass](https://github.com/tiborvass) in https://github.com/dagger/dagger/pull/11421 - Prefer DAGGER_CLOUD_TOKEN over OAuth for cloud engine provider by [@&#8203;marcosnils](https://github.com/marcosnils) in https://github.com/dagger/dagger/pull/11438 - Make error messages to users less verbose by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/11434 - Improve performance during disk usage calculation by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11327 - Fixed rare panic during disk usage calculation by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11450 - Make LLM output less verbose when it's doing direct object function calls by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/11435 - Fix "failed to add secret" errors when concurrently using a private git repo from multiple clients that each have a different auth token value by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11456 - TypeScript: Correctly resolve enum defaults in introspection to prevent unresolved warnings by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11319 ##### Contributors Special thanks to our external contributors this release! - [@&#8203;chrisjpalmer](https://github.com/chrisjpalmer) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.6`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0196---2025-11-07) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.5...v0.19.6) ##### Fixed - Fix dagger develop --recursive to use correct dependency name even when top-level module has a custom name for the dependency by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11365 - Fix "failed to update rootfs: session not found" errors caused by incorrect use of stale client metadata by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11295 - fix panic in filesync telemetry by @&#8203; in https://github.com/dagger/dagger/pull/11371 ##### Contributors Special thanks to our external contributors this release! - @&#8203; - [@&#8203;sipsma](https://github.com/sipsma) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.5`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0195---2025-11-05) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.4...v0.19.5) ##### Fixed - Significantly improve engine performance by reducing disk syncing and associated lock contention by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11336 - Fixed directory+file not found errors when using cached function calls with contextual arguments involved by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11350 ##### Contributors Special thanks to our external contributors this release! - [@&#8203;sipsma](https://github.com/sipsma) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.4`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0194---2025-10-30) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.3...v0.19.4) ##### Added - Function cache control by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10975 \ Function calls now have configurable caching behavior, including TTLs. Function calls with cached results can skip execution, which often significantly speeds up your workflows. Instructions and more details on the configuration options can be found in the [docs](https://docs.dagger.io/extending/function-caching). \ 🚨 Modules initialized before v0.19.4 [will need to explicitly opt-in to the new caching behavior](https://docs.dagger.io/extending/function-caching/#backwards-compatibility). - New `GitRepository.uncommited` API to get changeset of dirty changes in the working directory by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11241 - Add new `engine clients` API by [@&#8203;matipan](https://github.com/matipan) in https://github.com/dagger/dagger/pull/11308 ##### Fixed - Optimize numerous core APIs to be less CPU+memory intensive by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11320 ##### Dependencies - Update go to 1.25.3 by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11331 ##### Contributors Special thanks to our external contributors this release! - [@&#8203;jedevc](https://github.com/jedevc) - [@&#8203;matipan](https://github.com/matipan) - [@&#8203;sipsma](https://github.com/sipsma) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.3`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0193---2025-10-23) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.2...v0.19.3) ##### Added - allow modules to call their own functions through the engine (self calls) by [@&#8203;eunomie](https://github.com/eunomie) in https://github.com/dagger/dagger/pull/10584 - Allow to raise errors using withError by [@&#8203;eunomie](https://github.com/eunomie) in https://github.com/dagger/dagger/pull/11222 \ This is for instance really useful from inside self-chainable blocks (using with) where an error can't be returned. - New `Changeset.isEmpty` API by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11237 ##### Fixed - Avoid error when calling `Directory.diff` on identical directories by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11268 ##### Dependencies - Upgrade to go 1.25.2 by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11220 ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.2`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0192---2025-10-08) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.1...v0.19.2) ##### Fixed - Fixed engine crash when container sourced from private image was used with terminal or as a service (and was not already cached in the engine) by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11198 ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.1`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v01910---2026-01-14) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.0...v0.19.1) ##### Added - Improve memory usage of `dagger develop --recursive` when used with large number of modules by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11659 - Add shareProcessNamespace option to Helm chart for sidecar process access by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11680 ##### Fixed - Fix invalid mounts leftover after hard engine crash by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11673 - Fix file not found errors when same module concurrently invoked by different clients from different paths by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11625 - Fix regression resulting in "failed to authorize" errors during image pulls by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/11667 - Fix regression resulting "no such file or directory" errors after use of WithName API by [@&#8203;alexcb](https://github.com/alexcb) in https://github.com/dagger/dagger/pull/11671 - Fix errors when using contextual GitRef arguments sourced from local dirs in combination with function caching by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11688 - Fix errors in some SDKs when invoking toolchain constructors by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/11690 ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.19.0`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0190---2025-09-30) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.19...v0.19.0) ##### 🔥 Breaking Changes - `GitRepository.branch`/`GitRepository.tag`/`GitRepository.commit` now only accept valid branches/tags/commits by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11038 - `GitRepository`'s `withAuthToken` and `withAuthHeader` are now no-ops by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11032 \ Instead authentication should *only* be provided at the top-level `git` query, since it's now queried immediately. - Remove deprecated `Host.setSecretFile` method by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11115 \ Use the `file://` secret provider instead. - Remove `LocalCache.keepBytes` field by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11115 \ Instead use the more specific `LocalCache.reservedSpace`, which it was an alias for. - Removed deprecated `Container.build` API by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11118 \ Use `Directory.dockerBuild` instead. ##### Added - engine: support registry mirror configs on `engine.json` by [@&#8203;matipan](https://github.com/matipan) in https://github.com/dagger/dagger/pull/11040 ##### Fixed - Contextual git refs are correctly pinned by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11092 ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.18.19`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v01819---2025-09-18) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.18...v0.18.19) ##### Added - New `address` API: a unified address to load containers, directories, secrets, etc by [@&#8203;shykes](https://github.com/shykes) in https://github.com/dagger/dagger/pull/10770 - New `Changeset.export` function to allow exporting changesets from the API by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11064 ##### Fixed - Fixes a regression in `Directory.withFiles` which set the wrong path by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11087 ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.18.18`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v01818---2025-09-16) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.17...v0.18.18) ##### Added - Add new `EnvFile` type by [@&#8203;shykes](https://github.com/shykes) in https://github.com/dagger/dagger/pull/10949 - Mount client `~/.config/dagger/ca-certificates` to engine by [@&#8203;jedevc](https://github.com/jedevc) and [@&#8203;matipan](https://github.com/matipan) in https://github.com/dagger/dagger/pull/11019 - Add new `Changeset` type by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/10946 - Add APIs for "find-up search": search up the directory tree for a file or directory, and return its path by [@&#8203;shykes](https://github.com/shykes) in https://github.com/dagger/dagger/pull/10956 - `Directory.findUp` performs a find-up search in a directory snapshot - `Host.findUp()`: performs a find-up search in the host filesystem ##### Fixed - Fix blueprints for typescript modules by [@&#8203;kpenfound](https://github.com/kpenfound) in https://github.com/dagger/dagger/pull/11018 - Fix regression where engine crashed after module function returned nil/null values by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/11056 - Fix regression with automatic gitignore loading by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11017 - Ensure interactive TUI debugging works on all IDs by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11054 - Avoid setting invalid `origin` on git checkouts by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11031 - Allow git `defaultPath` values to contain `/` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/11048 - Avoid double service start by [@&#8203;marcosnils](https://github.com/marcosnils) in https://github.com/dagger/dagger/pull/11041 ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.18.17`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v01817---2025-09-04) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.16...v0.18.17) ##### 🔥 Breaking Changes - Automatically apply `.gitignore` patterns on directory loading for module call by [@&#8203;TomChv](https://github.com/TomChv) and [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10883 \\ - Apply when loading contextual directory argument. - Apply when a directory is sent as an argument to a module function. - Apply when a local module is loaded. Add `NoGitAutoIgnore` argument to `Host.Directory` to disable this behavior. ##### Added - New `Host.containerImage` API to load images from the host container image store by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10810 - New `Container.combined` API to get both standard output and standard error after `withExec` by [@&#8203;eunomie](https://github.com/eunomie) https://github.com/dagger/dagger/pull/10924 - New `GitRepository.url` API to get the fully resolved URL of a git repository by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10959 - New assorted filesystem APIs for searching/replacing by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/10937 - Allow entering terminals from the TUI for `Container`s, `Directory`s and running `Services` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10867 - Allow reading git credentials from client's `.netrc` file by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10957 ##### Fixed - `git` now automatically determines the protocol when using a scheme-less URL (instead of defaulting to `https://`) by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10960 - Ensure HTTP auth is propagated to git submodules by [@&#8203;grouville](https://github.com/grouville) in https://github.com/dagger/dagger/pull/10855 - Detect more telemetry from github environment by [@&#8203;jedevc](https://github.com/jedevc) in ... ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.18.16`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v01816---2025-08-19) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.15...v0.18.16) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) ### [`v0.18.15`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v01815---2025-08-18) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.14...v0.18.15) ##### Added - New `container.Exists` and `directory.Exists` API for testing if a file exists, and optionally type (e.g. file or directory) by [@&#8203;alexcb](https://github.com/alexcb) in https://github.com/dagger/dagger/pull/10449 - Allow starting dagger engines in alternative container runtimes, including: by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10714 \\ - Apple's `container` - `podman` - `nerdctl` - `finch` - cli: add support for passing build arguments to a docker build by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10779 - Added new `gitRef.commonAncestor` API to find the common ancestor between two references by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10849 ##### Fixed - Prompt mode now handles interrupts more gracefully, continuing from where the agent left off rather than completely forgetting the prompt by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/10765 - Switching to prompt mode now properly initializes and displays the model, logging an error if initialization fails by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/10765 - shell: Fixed passing objects on `http` and `git` stdlib commands by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10845 - shell: fix state mutability issue when chaining function by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10857 - Ensure that introspection methods support `includeDeprecated` arg by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10889 ##### Contributors Special thanks to our external contributors this release! - [@&#8203;alexcb](https://github.com/alexcb) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.49.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.49.0): Tokio v1.49.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.48.0...tokio-1.49.0) ### 1.49.0 (January 3rd, 2026) ##### Added - net: add support for `TCLASS` option on IPv6 ([#&#8203;7781]) - runtime: stabilize `runtime::id::Id` ([#&#8203;7125]) - task: implement `Extend` for `JoinSet` ([#&#8203;7195]) - task: stabilize the `LocalSet::id()` ([#&#8203;7776]) ##### Changed - net: deprecate `{TcpStream,TcpSocket}::set_linger` ([#&#8203;7752]) ##### Fixed - macros: fix the hygiene issue of `join!` and `try_join!` ([#&#8203;7766]) - runtime: revert "replace manual vtable definitions with Wake" ([#&#8203;7699]) - sync: return `TryRecvError::Disconnected` from `Receiver::try_recv` after `Receiver::close` ([#&#8203;7686]) - task: remove unnecessary trait bounds on the `Debug` implementation ([#&#8203;7720]) ##### Unstable - fs: handle `EINTR` in `fs::write` for io-uring ([#&#8203;7786]) - fs: support io-uring with `tokio::fs::read` ([#&#8203;7696]) - runtime: disable io-uring on `EPERM` ([#&#8203;7724]) - time: add alternative timer for better multicore scalability ([#&#8203;7467]) ##### Documented - docs: fix a typos in `bounded.rs` and `park.rs` ([#&#8203;7817]) - io: add `SyncIoBridge` cross-references to `copy` and `copy_buf` ([#&#8203;7798]) - io: doc that `AsyncWrite` does not inherit from `std::io::Write` ([#&#8203;7705]) - metrics: clarify that `num_alive_tasks` is not strongly consistent ([#&#8203;7614]) - net: clarify the cancellation safety of the `TcpStream::peek` ([#&#8203;7305]) - net: clarify the drop behavior of `unix::OwnedWriteHalf` ([#&#8203;7742]) - net: clarify the platform-dependent backlog in `TcpSocket` docs ([#&#8203;7738]) - runtime: mention `LocalRuntime` in `new_current_thread` docs ([#&#8203;7820]) - sync: add missing period to `mpsc::Sender::try_send` docs ([#&#8203;7721]) - sync: clarify the cancellation safety of `oneshot::Receiver` ([#&#8203;7780]) - sync: improve the docs for the `errors` of mpsc ([#&#8203;7722]) - task: add example for `spawn_local` usage on local runtime ([#&#8203;7689]) [#&#8203;7125]: https://github.com/tokio-rs/tokio/pull/7125 [#&#8203;7195]: https://github.com/tokio-rs/tokio/pull/7195 [#&#8203;7305]: https://github.com/tokio-rs/tokio/pull/7305 [#&#8203;7467]: https://github.com/tokio-rs/tokio/pull/7467 [#&#8203;7614]: https://github.com/tokio-rs/tokio/pull/7614 [#&#8203;7686]: https://github.com/tokio-rs/tokio/pull/7686 [#&#8203;7689]: https://github.com/tokio-rs/tokio/pull/7689 [#&#8203;7696]: https://github.com/tokio-rs/tokio/pull/7696 [#&#8203;7699]: https://github.com/tokio-rs/tokio/pull/7699 [#&#8203;7705]: https://github.com/tokio-rs/tokio/pull/7705 [#&#8203;7720]: https://github.com/tokio-rs/tokio/pull/7720 [#&#8203;7721]: https://github.com/tokio-rs/tokio/pull/7721 [#&#8203;7722]: https://github.com/tokio-rs/tokio/pull/7722 [#&#8203;7724]: https://github.com/tokio-rs/tokio/pull/7724 [#&#8203;7738]: https://github.com/tokio-rs/tokio/pull/7738 [#&#8203;7742]: https://github.com/tokio-rs/tokio/pull/7742 [#&#8203;7752]: https://github.com/tokio-rs/tokio/pull/7752 [#&#8203;7766]: https://github.com/tokio-rs/tokio/pull/7766 [#&#8203;7776]: https://github.com/tokio-rs/tokio/pull/7776 [#&#8203;7780]: https://github.com/tokio-rs/tokio/pull/7780 [#&#8203;7781]: https://github.com/tokio-rs/tokio/pull/7781 [#&#8203;7786]: https://github.com/tokio-rs/tokio/pull/7786 [#&#8203;7798]: https://github.com/tokio-rs/tokio/pull/7798 [#&#8203;7817]: https://github.com/tokio-rs/tokio/pull/7817 [#&#8203;7820]: https://github.com/tokio-rs/tokio/pull/7820 ### [`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.3...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.3`](https://github.com/tokio-rs/tokio/compare/tokio-1.47.2...tokio-1.47.3) [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.47.2...tokio-1.47.3) ### [`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) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-02-25 06:31:58 +01:00
fix(deps): update rust crate dagger-sdk to 0.16.0
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
f30c491bae
kjuulh added 1 commit 2025-02-25 06:31:58 +01:00
fix(deps): update rust crate dagger-sdk to 0.16.0
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
f30c491bae
kjuulh force-pushed renovate/all from f30c491bae to 6da0b33fb2 2025-03-04 02:35:26 +01:00 Compare
kjuulh changed title from fix(deps): update rust crate dagger-sdk to 0.16.0 to chore(deps): update all dependencies 2025-03-04 02:35:27 +01:00
kjuulh force-pushed renovate/all from 6da0b33fb2 to bb04827986 2025-03-04 06:33:37 +01:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2025-03-25 23:49:29 +01:00
kjuulh force-pushed renovate/all from bb04827986 to 9bdc89589e 2025-03-25 23:49:30 +01:00 Compare
kjuulh force-pushed renovate/all from 9bdc89589e to 05a60f2999 2025-03-26 21:00:32 +01:00 Compare
kjuulh force-pushed renovate/all from 05a60f2999 to 22f8c31fc6 2025-03-26 21:34:00 +01:00 Compare
kjuulh force-pushed renovate/all from 22f8c31fc6 to d72fa4879f 2025-03-27 03:00:58 +01:00 Compare
kjuulh force-pushed renovate/all from d72fa4879f to 0e9e435b2b 2025-03-27 03:33:49 +01:00 Compare
kjuulh force-pushed renovate/all from 0e9e435b2b to 104ebd8910 2025-04-02 02:22:34 +02:00 Compare
kjuulh force-pushed renovate/all from 104ebd8910 to a83eccdb6c 2025-04-06 02:20:15 +02:00 Compare
kjuulh force-pushed renovate/all from a83eccdb6c to 2eb377bf3b 2025-04-06 05:21:11 +02:00 Compare
kjuulh force-pushed renovate/all from 2eb377bf3b to ee27e96810 2025-04-12 02:22:40 +02:00 Compare
kjuulh force-pushed renovate/all from ee27e96810 to ea0d02732b 2025-04-12 05:21:10 +02:00 Compare
kjuulh force-pushed renovate/all from ea0d02732b to fbab4b11ea 2025-04-14 05:21:05 +02:00 Compare
kjuulh force-pushed renovate/all from fbab4b11ea to 93e0ca498c 2025-04-15 02:23:12 +02:00 Compare
kjuulh force-pushed renovate/all from 93e0ca498c to 66a77bf408 2025-04-19 02:21:04 +02:00 Compare
kjuulh force-pushed renovate/all from 66a77bf408 to bef3d347b7 2025-04-19 05:21:15 +02:00 Compare
kjuulh force-pushed renovate/all from bef3d347b7 to 17be26afd4 2025-05-07 02:21:38 +02:00 Compare
kjuulh force-pushed renovate/all from 17be26afd4 to 14c5ac1736 2025-05-07 05:21:20 +02:00 Compare
kjuulh force-pushed renovate/all from 14c5ac1736 to 98f2cd10f2 2025-05-11 05:20:46 +02:00 Compare
kjuulh force-pushed renovate/all from 98f2cd10f2 to 16013d5d11 2025-05-12 02:21:49 +02:00 Compare
kjuulh force-pushed renovate/all from 16013d5d11 to a84e216ea5 2025-05-25 02:20:43 +02:00 Compare
kjuulh force-pushed renovate/all from a84e216ea5 to 2a12b41aec 2025-05-25 05:20:56 +02:00 Compare
kjuulh force-pushed renovate/all from 2a12b41aec to 2e4ffd9158 2025-05-28 02:22:19 +02:00 Compare
kjuulh force-pushed renovate/all from 2e4ffd9158 to 3d61dddc0c 2025-05-28 05:19:55 +02:00 Compare
kjuulh force-pushed renovate/all from 3d61dddc0c to c86ad5c031 2025-06-10 02:23:13 +02:00 Compare
kjuulh force-pushed renovate/all from c86ad5c031 to fcdc7ff359 2025-06-10 05:21:35 +02:00 Compare
kjuulh force-pushed renovate/all from fcdc7ff359 to 8dfd17ee00 2025-07-03 02:21:26 +02:00 Compare
kjuulh force-pushed renovate/all from 8dfd17ee00 to 95cfa75e02 2025-07-03 05:21:24 +02:00 Compare
kjuulh force-pushed renovate/all from 95cfa75e02 to 5fcf4580e2 2025-07-05 02:25:19 +02:00 Compare
kjuulh force-pushed renovate/all from 5fcf4580e2 to 12efe1f7ad 2025-07-05 05:21:17 +02:00 Compare
kjuulh force-pushed renovate/all from 12efe1f7ad to 4faab69698 2025-07-10 02:20:43 +02:00 Compare
kjuulh force-pushed renovate/all from 4faab69698 to 11c10fa0e6 2025-07-10 05:21:11 +02:00 Compare
Author
Owner

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package dagger-sdk@0.18.14 --precise 0.19.10
    Updating crates.io index
error: failed to select a version for the requirement `dagger-sdk = "^0.18.3"`
candidate versions found which didn't match: 0.19.10
location searched: crates.io index
required by package `cuddle-ci v0.3.0 (https://git.kjuulh.io/kjuulh/dagger-components?branch=main#e26e359d)`
    ... which satisfies git dependency `cuddle-ci` (locked to 0.3.0) of package `cuddle-rust-service-plan v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/cuddle-rust-service-plan/crates/cuddle-rust-service-plan)`

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package dagger-sdk@0.18.14 --precise 0.19.10 Updating crates.io index error: failed to select a version for the requirement `dagger-sdk = "^0.18.3"` candidate versions found which didn't match: 0.19.10 location searched: crates.io index required by package `cuddle-ci v0.3.0 (https://git.kjuulh.io/kjuulh/dagger-components?branch=main#e26e359d)` ... which satisfies git dependency `cuddle-ci` (locked to 0.3.0) of package `cuddle-rust-service-plan v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/cuddle-rust-service-plan/crates/cuddle-rust-service-plan)` ```
kjuulh force-pushed renovate/all from 11c10fa0e6 to 37d2ba0a61 2025-11-13 02:47:40 +01:00 Compare
kjuulh force-pushed renovate/all from 37d2ba0a61 to 561acf63f4 2025-11-13 05:15:56 +01:00 Compare
kjuulh force-pushed renovate/all from 561acf63f4 to 92624a8cfc 2025-11-14 02:21:24 +01:00 Compare
kjuulh force-pushed renovate/all from 92624a8cfc to 542a8122c2 2025-11-14 05:20:53 +01:00 Compare
kjuulh force-pushed renovate/all from 542a8122c2 to 43b27272ab 2025-11-15 02:23:08 +01:00 Compare
kjuulh force-pushed renovate/all from 43b27272ab to 15f62230d3 2025-11-15 05:21:16 +01:00 Compare
kjuulh force-pushed renovate/all from 15f62230d3 to 3f76dd989e 2025-11-16 02:21:37 +01:00 Compare
kjuulh force-pushed renovate/all from 3f76dd989e to db444b177e 2025-11-16 05:21:11 +01:00 Compare
kjuulh force-pushed renovate/all from db444b177e to 8ce1cad179 2025-11-17 02:21:05 +01:00 Compare
kjuulh force-pushed renovate/all from 8ce1cad179 to de240b7347 2025-11-17 05:21:02 +01:00 Compare
kjuulh force-pushed renovate/all from de240b7347 to 4caabf26e4 2025-11-18 02:24:08 +01:00 Compare
kjuulh force-pushed renovate/all from 4caabf26e4 to 4a3d0bddf3 2025-11-18 05:23:59 +01:00 Compare
kjuulh force-pushed renovate/all from 4a3d0bddf3 to 2146c922dc 2025-11-19 02:22:02 +01:00 Compare
kjuulh force-pushed renovate/all from 2146c922dc to 9a7aba53e8 2025-11-19 05:21:03 +01:00 Compare
kjuulh force-pushed renovate/all from 9a7aba53e8 to 0e6bbb94de 2025-11-20 02:23:04 +01:00 Compare
kjuulh force-pushed renovate/all from 0e6bbb94de to d27b4576f1 2025-11-20 05:23:00 +01:00 Compare
kjuulh force-pushed renovate/all from d27b4576f1 to e94a4be56e 2025-11-21 02:21:50 +01:00 Compare
kjuulh force-pushed renovate/all from e94a4be56e to 2ece56157d 2025-11-21 05:21:44 +01:00 Compare
kjuulh force-pushed renovate/all from 2ece56157d to 490afb64d5 2025-11-22 02:21:33 +01:00 Compare
kjuulh force-pushed renovate/all from 490afb64d5 to 6c5fa1da81 2025-11-22 05:21:30 +01:00 Compare
kjuulh force-pushed renovate/all from 6c5fa1da81 to f507797b21 2025-11-23 02:21:28 +01:00 Compare
kjuulh force-pushed renovate/all from f507797b21 to 4a70978fc8 2025-11-23 05:21:21 +01:00 Compare
kjuulh force-pushed renovate/all from 4a70978fc8 to 601e65695d 2025-11-24 02:21:35 +01:00 Compare
kjuulh force-pushed renovate/all from 601e65695d to 98d2318afb 2025-11-24 05:21:02 +01:00 Compare
kjuulh force-pushed renovate/all from 98d2318afb to 9c1839c952 2025-11-25 02:23:27 +01:00 Compare
kjuulh force-pushed renovate/all from 9c1839c952 to 5dffa03927 2025-11-25 05:21:22 +01:00 Compare
kjuulh force-pushed renovate/all from 5dffa03927 to 4883a1dfde 2025-11-26 02:21:29 +01:00 Compare
kjuulh force-pushed renovate/all from 4883a1dfde to 1426a4dc5b 2025-11-26 05:21:26 +01:00 Compare
kjuulh force-pushed renovate/all from 1426a4dc5b to 229bbc724a 2025-11-27 02:21:34 +01:00 Compare
kjuulh force-pushed renovate/all from 229bbc724a to eb7f5315f0 2025-11-27 05:21:16 +01:00 Compare
kjuulh force-pushed renovate/all from eb7f5315f0 to d23edc4c4c 2025-11-28 02:21:41 +01:00 Compare
kjuulh force-pushed renovate/all from d23edc4c4c to 6f9c9685b5 2025-11-28 05:21:23 +01:00 Compare
kjuulh force-pushed renovate/all from 6f9c9685b5 to 27f1c2f797 2025-11-29 02:24:07 +01:00 Compare
kjuulh force-pushed renovate/all from 27f1c2f797 to 2c8ac2bf8c 2025-11-29 05:23:36 +01:00 Compare
kjuulh force-pushed renovate/all from 2c8ac2bf8c to 5328c78ddc 2025-11-30 02:21:14 +01:00 Compare
kjuulh force-pushed renovate/all from 5328c78ddc to dbd7ddd23b 2025-11-30 05:21:23 +01:00 Compare
kjuulh force-pushed renovate/all from dbd7ddd23b to f8b4902f4f 2025-12-01 02:21:18 +01:00 Compare
kjuulh force-pushed renovate/all from f8b4902f4f to 139098b3cb 2025-12-01 05:21:15 +01:00 Compare
kjuulh force-pushed renovate/all from 139098b3cb to 49bb17b030 2025-12-02 02:21:23 +01:00 Compare
kjuulh force-pushed renovate/all from 49bb17b030 to 4b9771c829 2025-12-02 05:21:58 +01:00 Compare
kjuulh force-pushed renovate/all from 4b9771c829 to 57786911a2 2025-12-03 02:22:10 +01:00 Compare
kjuulh force-pushed renovate/all from 57786911a2 to 7f2b964029 2025-12-03 05:21:35 +01:00 Compare
kjuulh force-pushed renovate/all from 7f2b964029 to dc28d0f286 2025-12-04 02:22:03 +01:00 Compare
kjuulh force-pushed renovate/all from dc28d0f286 to f372f2aa71 2025-12-04 05:28:18 +01:00 Compare
kjuulh force-pushed renovate/all from f372f2aa71 to 1afa02631a 2025-12-05 02:22:04 +01:00 Compare
kjuulh force-pushed renovate/all from 1afa02631a to 0d4ee8bce5 2025-12-05 05:21:16 +01:00 Compare
kjuulh force-pushed renovate/all from 0d4ee8bce5 to 720a6514d9 2025-12-06 02:21:33 +01:00 Compare
kjuulh force-pushed renovate/all from 720a6514d9 to cc685cdb8c 2025-12-06 05:21:22 +01:00 Compare
kjuulh force-pushed renovate/all from cc685cdb8c to 0c4494f4f4 2025-12-07 02:21:25 +01:00 Compare
kjuulh force-pushed renovate/all from 0c4494f4f4 to 6a0cdbfcd1 2025-12-07 05:21:13 +01:00 Compare
kjuulh force-pushed renovate/all from 6a0cdbfcd1 to 8153474d9f 2025-12-08 02:21:34 +01:00 Compare
kjuulh force-pushed renovate/all from 8153474d9f to 0bd707da45 2025-12-08 05:21:47 +01:00 Compare
kjuulh force-pushed renovate/all from 0bd707da45 to 9649e67f90 2025-12-09 02:22:49 +01:00 Compare
kjuulh force-pushed renovate/all from 9649e67f90 to 57d1a1f246 2025-12-09 05:21:55 +01:00 Compare
kjuulh force-pushed renovate/all from 57d1a1f246 to 45ae64c5c1 2025-12-10 02:22:01 +01:00 Compare
kjuulh force-pushed renovate/all from 45ae64c5c1 to 840eafcb9d 2025-12-10 05:21:35 +01:00 Compare
kjuulh force-pushed renovate/all from 840eafcb9d to 708f1fece4 2025-12-11 02:22:10 +01:00 Compare
kjuulh force-pushed renovate/all from 708f1fece4 to 45e2d44195 2025-12-11 05:21:34 +01:00 Compare
kjuulh force-pushed renovate/all from 45e2d44195 to 671c3667ac 2025-12-12 02:23:07 +01:00 Compare
kjuulh force-pushed renovate/all from 671c3667ac to 5fc304fcbe 2025-12-12 05:21:43 +01:00 Compare
kjuulh force-pushed renovate/all from 5fc304fcbe to d7ed047de3 2025-12-13 02:22:45 +01:00 Compare
kjuulh force-pushed renovate/all from d7ed047de3 to c64333cf61 2025-12-13 05:22:04 +01:00 Compare
kjuulh force-pushed renovate/all from c64333cf61 to e41145ea0b 2025-12-14 02:22:58 +01:00 Compare
kjuulh force-pushed renovate/all from e41145ea0b to df9043c79e 2025-12-14 05:21:57 +01:00 Compare
kjuulh force-pushed renovate/all from df9043c79e to 4dad347833 2025-12-15 02:22:52 +01:00 Compare
kjuulh force-pushed renovate/all from 4dad347833 to 48732d387e 2025-12-15 05:22:18 +01:00 Compare
kjuulh force-pushed renovate/all from 48732d387e to cd174aeb19 2025-12-16 02:23:46 +01:00 Compare
kjuulh force-pushed renovate/all from cd174aeb19 to c052c67c3a 2025-12-16 05:23:34 +01:00 Compare
kjuulh force-pushed renovate/all from c052c67c3a to f18b031d08 2025-12-17 02:23:40 +01:00 Compare
kjuulh force-pushed renovate/all from f18b031d08 to b04086067e 2025-12-17 05:22:38 +01:00 Compare
kjuulh force-pushed renovate/all from b04086067e to 36f7ebc5a9 2025-12-18 02:22:46 +01:00 Compare
kjuulh force-pushed renovate/all from 36f7ebc5a9 to 5345172218 2025-12-18 05:21:56 +01:00 Compare
kjuulh force-pushed renovate/all from 5345172218 to 50589f35be 2025-12-19 02:25:16 +01:00 Compare
kjuulh force-pushed renovate/all from 50589f35be to 4b1deb9423 2025-12-19 05:24:23 +01:00 Compare
kjuulh force-pushed renovate/all from 4b1deb9423 to aef0ecfb42 2025-12-20 02:22:44 +01:00 Compare
kjuulh force-pushed renovate/all from aef0ecfb42 to 63b878030d 2025-12-20 05:21:30 +01:00 Compare
kjuulh force-pushed renovate/all from 63b878030d to 7c42f3e7ec 2025-12-21 02:23:20 +01:00 Compare
kjuulh force-pushed renovate/all from 7c42f3e7ec to 6c3531986c 2025-12-21 05:21:58 +01:00 Compare
kjuulh force-pushed renovate/all from 6c3531986c to 029b253563 2025-12-22 02:22:37 +01:00 Compare
kjuulh force-pushed renovate/all from 029b253563 to 1a696060c8 2025-12-22 05:22:13 +01:00 Compare
kjuulh force-pushed renovate/all from 1a696060c8 to c5128e3261 2025-12-23 02:23:59 +01:00 Compare
kjuulh force-pushed renovate/all from c5128e3261 to deb8f88f63 2025-12-23 05:22:58 +01:00 Compare
kjuulh force-pushed renovate/all from deb8f88f63 to 750b153bbf 2025-12-24 02:23:35 +01:00 Compare
kjuulh force-pushed renovate/all from 750b153bbf to 8719b706e8 2025-12-24 05:22:45 +01:00 Compare
kjuulh force-pushed renovate/all from 8719b706e8 to 5e5ba69a77 2025-12-25 02:23:00 +01:00 Compare
kjuulh force-pushed renovate/all from 5e5ba69a77 to 75c8280700 2025-12-25 05:22:23 +01:00 Compare
kjuulh force-pushed renovate/all from 75c8280700 to ae6be62d2a 2025-12-26 02:22:31 +01:00 Compare
kjuulh force-pushed renovate/all from ae6be62d2a to baf1799d6d 2025-12-26 05:22:21 +01:00 Compare
kjuulh force-pushed renovate/all from baf1799d6d to 2ff6d3b210 2025-12-27 02:22:59 +01:00 Compare
kjuulh force-pushed renovate/all from 2ff6d3b210 to 05f5914305 2025-12-27 05:22:36 +01:00 Compare
kjuulh force-pushed renovate/all from 05f5914305 to e1056dfaad 2025-12-28 02:23:18 +01:00 Compare
kjuulh force-pushed renovate/all from e1056dfaad to 940b5135d9 2025-12-28 05:22:55 +01:00 Compare
kjuulh force-pushed renovate/all from 940b5135d9 to 3400807530 2025-12-29 02:23:31 +01:00 Compare
kjuulh force-pushed renovate/all from 3400807530 to 03dc468f59 2025-12-29 05:22:36 +01:00 Compare
kjuulh force-pushed renovate/all from 03dc468f59 to 3b62955f62 2025-12-30 02:23:18 +01:00 Compare
kjuulh force-pushed renovate/all from 3b62955f62 to f035489d32 2025-12-30 05:22:25 +01:00 Compare
kjuulh force-pushed renovate/all from f035489d32 to cb642b6575 2025-12-31 02:23:47 +01:00 Compare
kjuulh force-pushed renovate/all from cb642b6575 to d988c1cdf4 2025-12-31 05:23:09 +01:00 Compare
kjuulh force-pushed renovate/all from d988c1cdf4 to c25e4d484e 2026-01-01 02:23:21 +01:00 Compare
kjuulh force-pushed renovate/all from c25e4d484e to bd3ffd0e16 2026-01-01 05:22:55 +01:00 Compare
kjuulh force-pushed renovate/all from bd3ffd0e16 to ad72cc4a08 2026-01-02 02:23:47 +01:00 Compare
kjuulh force-pushed renovate/all from ad72cc4a08 to 6a85483e3f 2026-01-02 05:22:20 +01:00 Compare
kjuulh force-pushed renovate/all from 6a85483e3f to 5a7f12e499 2026-01-03 02:23:09 +01:00 Compare
kjuulh force-pushed renovate/all from 5a7f12e499 to e567119bfd 2026-01-03 05:21:56 +01:00 Compare
kjuulh force-pushed renovate/all from e567119bfd to 801066ff1b 2026-01-04 02:23:21 +01:00 Compare
kjuulh force-pushed renovate/all from 801066ff1b to 681ce5d18b 2026-01-04 05:21:50 +01:00 Compare
kjuulh force-pushed renovate/all from 681ce5d18b to e8117df498 2026-01-05 02:22:28 +01:00 Compare
kjuulh force-pushed renovate/all from e8117df498 to 75b53710fe 2026-01-05 05:21:59 +01:00 Compare
kjuulh force-pushed renovate/all from 75b53710fe to bedac3e9f6 2026-01-06 02:23:14 +01:00 Compare
kjuulh force-pushed renovate/all from bedac3e9f6 to 72d9c48c23 2026-01-06 05:22:14 +01:00 Compare
kjuulh force-pushed renovate/all from 72d9c48c23 to bb89b5b969 2026-01-07 02:23:30 +01:00 Compare
kjuulh force-pushed renovate/all from bb89b5b969 to ce05f9a1ee 2026-01-07 05:21:37 +01:00 Compare
kjuulh force-pushed renovate/all from ce05f9a1ee to f42d01fa69 2026-01-08 02:23:01 +01:00 Compare
kjuulh force-pushed renovate/all from f42d01fa69 to 995b1f3f68 2026-01-08 05:21:44 +01:00 Compare
kjuulh force-pushed renovate/all from 995b1f3f68 to c696c013ff 2026-01-09 02:22:14 +01:00 Compare
kjuulh force-pushed renovate/all from c696c013ff to 2645119c59 2026-01-09 05:21:18 +01:00 Compare
kjuulh force-pushed renovate/all from 2645119c59 to d4c2904ce6 2026-01-10 02:22:11 +01:00 Compare
kjuulh force-pushed renovate/all from d4c2904ce6 to ad04eb460f 2026-01-10 05:21:36 +01:00 Compare
kjuulh force-pushed renovate/all from ad04eb460f to 14fc34ce6d 2026-01-11 02:22:59 +01:00 Compare
kjuulh force-pushed renovate/all from 14fc34ce6d to 61c5a6494a 2026-01-11 05:21:28 +01:00 Compare
kjuulh force-pushed renovate/all from 61c5a6494a to 5b7a268fcf 2026-01-12 02:21:51 +01:00 Compare
kjuulh force-pushed renovate/all from 5b7a268fcf to bf538db259 2026-01-12 05:21:31 +01:00 Compare
kjuulh force-pushed renovate/all from bf538db259 to 091302e6b0 2026-01-13 02:21:31 +01:00 Compare
kjuulh force-pushed renovate/all from 091302e6b0 to dd7ab51bb1 2026-01-13 05:21:51 +01:00 Compare
kjuulh force-pushed renovate/all from dd7ab51bb1 to 3f8194e2ec 2026-01-14 02:22:25 +01:00 Compare
kjuulh force-pushed renovate/all from 3f8194e2ec to da086b3784 2026-01-14 05:21:49 +01:00 Compare
kjuulh force-pushed renovate/all from da086b3784 to 985d11fbb0 2026-01-15 02:23:31 +01:00 Compare
kjuulh force-pushed renovate/all from 985d11fbb0 to 914293a368 2026-01-15 05:22:08 +01:00 Compare
kjuulh force-pushed renovate/all from 914293a368 to 683dd32337 2026-01-16 02:23:03 +01:00 Compare
kjuulh force-pushed renovate/all from 683dd32337 to 0807944835 2026-01-16 05:21:21 +01:00 Compare
kjuulh force-pushed renovate/all from 0807944835 to 434ca1023f 2026-01-17 02:22:01 +01:00 Compare
kjuulh force-pushed renovate/all from 434ca1023f to 5d88b9c8b9 2026-01-17 05:21:49 +01:00 Compare
kjuulh force-pushed renovate/all from 5d88b9c8b9 to 899b397c2b 2026-01-18 02:21:39 +01:00 Compare
kjuulh force-pushed renovate/all from 899b397c2b to 9242203117 2026-01-18 05:21:37 +01:00 Compare
kjuulh force-pushed renovate/all from 9242203117 to 66e77cca16 2026-01-19 02:22:29 +01:00 Compare
kjuulh force-pushed renovate/all from 66e77cca16 to baadf8bb8a 2026-01-19 05:22:04 +01:00 Compare
kjuulh force-pushed renovate/all from baadf8bb8a to ae7e6ef1fb 2026-01-20 02:22:16 +01:00 Compare
kjuulh force-pushed renovate/all from ae7e6ef1fb to 46ea148ee5 2026-01-20 05:22:26 +01:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
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/cuddle-rust-service-plan#59