fix(deps): update all dependencies #69

Open
kjuulh wants to merge 1 commits from renovate/all into main
Owner

This PR contains the following updates:

Package Type Update Change
async-trait workspace.dependencies patch 0.1.88 -> 0.1.89
chrono dependencies patch 0.4.41 -> 0.4.42
clap workspace.dependencies patch 4.5.41 -> 4.5.53
dagger-sdk workspace.dependencies minor 0.18.3 -> 0.19.0
serde_json workspace.dependencies patch 1.0.141 -> 1.0.145
tokio (source) workspace.dependencies minor 1.46.1 -> 1.48.0
toml dependencies minor 0.8.12 -> 0.9.0

Release Notes

dtolnay/async-trait (async-trait)

v0.1.89

Compare Source

chronotope/chrono (chrono)

v0.4.42: 0.4.42

Compare Source

What's Changed

clap-rs/clap (clap)

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

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

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
  • User defaults: persist any dagger function argument to .env by @​shykes in https://github.com/dagger/dagger/pull/11034
    This feature allows user to save arguments to their dagger functions to a local file, instead of re-typing them at every call. This way, the sandboxing of functions is preserved without sacrificing end-user convenience.

    To use this feature, simply add variables to a local .env file reachable from your working directory. The format of the variables should be as follows:

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?
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

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)
toml-rs/toml (toml)

v0.9.8

Compare Source

v0.9.7

Compare Source

v0.9.6

Compare Source

v0.9.5

Compare Source

v0.9.4

Compare Source

v0.9.3

Compare Source

v0.9.2

Compare Source

v0.9.1

Compare Source

v0.9.0

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 | |---|---|---|---| | [async-trait](https://github.com/dtolnay/async-trait) | workspace.dependencies | patch | `0.1.88` -> `0.1.89` | | [chrono](https://github.com/chronotope/chrono) | dependencies | patch | `0.4.41` -> `0.4.42` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.41` -> `4.5.53` | | [dagger-sdk](https://github.com/dagger/dagger) | workspace.dependencies | minor | `0.18.3` -> `0.19.0` | | [serde_json](https://github.com/serde-rs/json) | workspace.dependencies | patch | `1.0.141` -> `1.0.145` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.46.1` -> `1.48.0` | | [toml](https://github.com/toml-rs/toml) | dependencies | minor | `0.8.12` -> `0.9.0` | --- ### Release Notes <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>chronotope/chrono (chrono)</summary> ### [`v0.4.42`](https://github.com/chronotope/chrono/releases/tag/v0.4.42): 0.4.42 [Compare Source](https://github.com/chronotope/chrono/compare/v0.4.41...v0.4.42) #### What's Changed - Add fuzzer for DateTime::parse_from_str by [@&#8203;tyler92](https://github.com/tyler92) in https://github.com/chronotope/chrono/pull/1700 - Fix wrong amount of micro/milliseconds by [@&#8203;nmlt](https://github.com/nmlt) in https://github.com/chronotope/chrono/pull/1703 - Add warning about MappedLocalTime and wasm by [@&#8203;lutzky](https://github.com/lutzky) in https://github.com/chronotope/chrono/pull/1702 - Fix incorrect parsing of fixed-length second fractions by [@&#8203;chris-leach](https://github.com/chris-leach) in https://github.com/chronotope/chrono/pull/1705 - Fix cfgs for `wasm32-linux` support by [@&#8203;arjunr2](https://github.com/arjunr2) in https://github.com/chronotope/chrono/pull/1707 - Fix OpenHarmony's `tzdata` parsing by [@&#8203;ldm0](https://github.com/ldm0) in https://github.com/chronotope/chrono/pull/1679 - Convert NaiveDate to/from days since unix epoch by [@&#8203;findepi](https://github.com/findepi) in https://github.com/chronotope/chrono/pull/1715 - Add `?Sized` bound to related methods of `DelayedFormat::write_to` by [@&#8203;Huliiiiii](https://github.com/Huliiiiii) in https://github.com/chronotope/chrono/pull/1721 - Add `from_timestamp_secs` method to `DateTime` by [@&#8203;jasonaowen](https://github.com/jasonaowen) in https://github.com/chronotope/chrono/pull/1719 - Migrate to core::error::Error by [@&#8203;benbrittain](https://github.com/benbrittain) in https://github.com/chronotope/chrono/pull/1704 - Upgrade to windows-bindgen 0.63 by [@&#8203;djc](https://github.com/djc) in https://github.com/chronotope/chrono/pull/1730 - strftime: simplify error handling by [@&#8203;djc](https://github.com/djc) in https://github.com/chronotope/chrono/pull/1731 </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`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` ### [`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` </details> <details> <summary>dagger/dagger (dagger-sdk)</summary> ### [`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#v0191---2025-10-07) [Compare Source](https://github.com/dagger/dagger/compare/v0.19.0...v0.19.1) ##### Added - User defaults: persist any dagger function argument to .env by [@&#8203;shykes](https://github.com/shykes) in https://github.com/dagger/dagger/pull/11034 \ This feature allows user to save arguments to their dagger functions to a local file, instead of re-typing them at every call. This way, the sandboxing of functions is preserved without sacrificing end-user convenience. To use this feature, simply add variables to a local `.env` file reachable from your working directory. The format of the variables should be as follows: ### [`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>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)) </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 </details> <details> <summary>toml-rs/toml (toml)</summary> ### [`v0.9.8`](https://github.com/toml-rs/toml/compare/toml-v0.9.7...toml-v0.9.8) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.7...toml-v0.9.8) ### [`v0.9.7`](https://github.com/toml-rs/toml/compare/toml-v0.9.6...toml-v0.9.7) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.6...toml-v0.9.7) ### [`v0.9.6`](https://github.com/toml-rs/toml/compare/toml-v0.9.5...toml-v0.9.6) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.5...toml-v0.9.6) ### [`v0.9.5`](https://github.com/toml-rs/toml/compare/toml-v0.9.4...toml-v0.9.5) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.4...toml-v0.9.5) ### [`v0.9.4`](https://github.com/toml-rs/toml/compare/toml-v0.9.3...toml-v0.9.4) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.3...toml-v0.9.4) ### [`v0.9.3`](https://github.com/toml-rs/toml/compare/toml-v0.9.2...toml-v0.9.3) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.2...toml-v0.9.3) ### [`v0.9.2`](https://github.com/toml-rs/toml/compare/toml-v0.9.1...toml-v0.9.2) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.1...toml-v0.9.2) ### [`v0.9.1`](https://github.com/toml-rs/toml/compare/toml-v0.9.0...toml-v0.9.1) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.9.0...toml-v0.9.1) ### [`v0.9.0`](https://github.com/toml-rs/toml/compare/toml-v0.8.23...toml-v0.9.0) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.23...toml-v0.9.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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-04 02:37:10 +01:00
chore(deps): update all dependencies
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
0a3667bf78
kjuulh scheduled this pull request to auto merge when all checks succeed 2025-03-04 02:37:10 +01:00
kjuulh force-pushed renovate/all from 0a3667bf78 to 3cdde7ab4a 2025-03-25 23:50:45 +01:00 Compare
kjuulh force-pushed renovate/all from 3cdde7ab4a to e26990818a 2025-03-26 21:01:19 +01:00 Compare
kjuulh force-pushed renovate/all from e26990818a to 704b47d12c 2025-03-27 03:01:43 +01:00 Compare
kjuulh force-pushed renovate/all from 704b47d12c to e4f996572c 2025-04-02 02:23:41 +02:00 Compare
kjuulh force-pushed renovate/all from e4f996572c to d93f08e3f3 2025-04-05 02:20:32 +02:00 Compare
kjuulh force-pushed renovate/all from d93f08e3f3 to acc9c407a9 2025-04-15 02:24:14 +02:00 Compare
kjuulh force-pushed renovate/all from acc9c407a9 to fc06c9b024 2025-04-23 02:22:40 +02:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2025-04-26 02:22:51 +02:00
kjuulh force-pushed renovate/all from fc06c9b024 to 218f41c443 2025-04-26 02:22:51 +02:00 Compare
kjuulh force-pushed renovate/all from 218f41c443 to d88effc1b6 2025-04-26 05:21:39 +02:00 Compare
kjuulh force-pushed renovate/all from d88effc1b6 to 5e72dca282 2025-04-27 02:20:48 +02:00 Compare
kjuulh force-pushed renovate/all from 5e72dca282 to 0a6447ca19 2025-04-27 05:20:56 +02:00 Compare
kjuulh force-pushed renovate/all from 0a6447ca19 to 8dc9ea8a0a 2025-04-28 02:22:14 +02:00 Compare
kjuulh force-pushed renovate/all from 8dc9ea8a0a to 175d195512 2025-04-28 05:21:57 +02:00 Compare
kjuulh force-pushed renovate/all from 175d195512 to 56b98c1970 2025-04-29 02:22:40 +02:00 Compare
kjuulh force-pushed renovate/all from 56b98c1970 to a1f1cddf63 2025-04-29 05:22:28 +02:00 Compare
kjuulh force-pushed renovate/all from a1f1cddf63 to 4ca0d402af 2025-04-30 02:23:07 +02:00 Compare
kjuulh force-pushed renovate/all from 4ca0d402af to 13bfc6eeca 2025-04-30 05:21:28 +02:00 Compare
kjuulh force-pushed renovate/all from 13bfc6eeca to 5014bfc9cd 2025-05-01 02:21:17 +02:00 Compare
kjuulh force-pushed renovate/all from 5014bfc9cd to ea70cef092 2025-05-01 05:20:46 +02:00 Compare
kjuulh force-pushed renovate/all from ea70cef092 to fd835dc875 2025-05-02 02:21:13 +02:00 Compare
kjuulh force-pushed renovate/all from fd835dc875 to 5bba4d6155 2025-05-02 05:21:12 +02:00 Compare
kjuulh force-pushed renovate/all from 5bba4d6155 to 22b4a0bd99 2025-05-03 02:23:17 +02:00 Compare
kjuulh force-pushed renovate/all from 22b4a0bd99 to 5413b0b989 2025-05-03 05:21:57 +02:00 Compare
kjuulh force-pushed renovate/all from 5413b0b989 to 9ebf8d8d9f 2025-05-04 02:21:25 +02:00 Compare
kjuulh force-pushed renovate/all from 9ebf8d8d9f to ed9177e11f 2025-05-04 05:20:41 +02:00 Compare
kjuulh force-pushed renovate/all from ed9177e11f to 2283b0b1d2 2025-05-05 02:21:00 +02:00 Compare
kjuulh force-pushed renovate/all from 2283b0b1d2 to 356a6499a4 2025-05-05 05:20:47 +02:00 Compare
kjuulh force-pushed renovate/all from 356a6499a4 to 9908f4e459 2025-05-06 02:21:04 +02:00 Compare
kjuulh force-pushed renovate/all from 9908f4e459 to 6a9834253a 2025-05-06 05:21:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6a9834253a to 1570391225 2025-05-07 02:22:47 +02:00 Compare
kjuulh force-pushed renovate/all from 1570391225 to 8fb312140f 2025-05-07 05:22:18 +02:00 Compare
kjuulh force-pushed renovate/all from 8fb312140f to ce78e944a2 2025-05-08 02:21:26 +02:00 Compare
kjuulh force-pushed renovate/all from ce78e944a2 to 0009a5d569 2025-05-08 05:20:36 +02:00 Compare
kjuulh force-pushed renovate/all from 0009a5d569 to f7c51be48d 2025-05-09 02:21:29 +02:00 Compare
kjuulh force-pushed renovate/all from f7c51be48d to fd21b3b68c 2025-05-09 05:20:36 +02:00 Compare
kjuulh force-pushed renovate/all from fd21b3b68c to ba6c1e86b4 2025-05-10 02:21:29 +02:00 Compare
kjuulh force-pushed renovate/all from ba6c1e86b4 to b341ce66de 2025-05-10 05:20:38 +02:00 Compare
kjuulh force-pushed renovate/all from b341ce66de to 6689ac7202 2025-05-11 02:21:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6689ac7202 to d50e6ae0e1 2025-05-11 05:21:51 +02:00 Compare
kjuulh force-pushed renovate/all from d50e6ae0e1 to a90b35c031 2025-05-12 02:22:56 +02:00 Compare
kjuulh force-pushed renovate/all from a90b35c031 to 5a82e1bc17 2025-05-12 05:20:46 +02:00 Compare
kjuulh force-pushed renovate/all from 5a82e1bc17 to dfe1e941d4 2025-05-13 02:22:17 +02:00 Compare
kjuulh force-pushed renovate/all from dfe1e941d4 to ebcb6fbe18 2025-05-13 05:20:56 +02:00 Compare
kjuulh force-pushed renovate/all from ebcb6fbe18 to edeec6c447 2025-05-14 02:20:54 +02:00 Compare
kjuulh force-pushed renovate/all from edeec6c447 to d2a3e6ce7f 2025-05-14 05:21:30 +02:00 Compare
kjuulh force-pushed renovate/all from d2a3e6ce7f to d982c41e18 2025-05-15 02:20:35 +02:00 Compare
kjuulh force-pushed renovate/all from d982c41e18 to ad571f15b4 2025-05-15 05:20:01 +02:00 Compare
kjuulh force-pushed renovate/all from ad571f15b4 to 2012f43f27 2025-05-17 02:20:33 +02:00 Compare
kjuulh force-pushed renovate/all from 2012f43f27 to b46c2d8d3e 2025-05-17 05:20:40 +02:00 Compare
kjuulh force-pushed renovate/all from b46c2d8d3e to 776118eed0 2025-05-18 02:20:58 +02:00 Compare
kjuulh force-pushed renovate/all from 776118eed0 to 7a92ef4282 2025-05-18 05:20:47 +02:00 Compare
kjuulh force-pushed renovate/all from 7a92ef4282 to 16e905f2e7 2025-05-19 02:21:15 +02:00 Compare
kjuulh force-pushed renovate/all from 16e905f2e7 to 03d0445cfc 2025-05-19 05:22:12 +02:00 Compare
kjuulh force-pushed renovate/all from 03d0445cfc to 02cbe5ecea 2025-05-20 02:20:35 +02:00 Compare
kjuulh force-pushed renovate/all from 02cbe5ecea to d34f569c57 2025-05-20 05:20:41 +02:00 Compare
kjuulh force-pushed renovate/all from d34f569c57 to c1d25534cd 2025-05-21 02:21:13 +02:00 Compare
kjuulh force-pushed renovate/all from c1d25534cd to bd56187527 2025-05-21 05:19:52 +02:00 Compare
kjuulh force-pushed renovate/all from bd56187527 to 96a02f3945 2025-05-22 02:22:13 +02:00 Compare
kjuulh force-pushed renovate/all from 96a02f3945 to 2719cb8714 2025-05-22 05:20:31 +02:00 Compare
kjuulh force-pushed renovate/all from 2719cb8714 to 1b4f870032 2025-05-23 02:20:36 +02:00 Compare
kjuulh force-pushed renovate/all from 1b4f870032 to 305453e736 2025-05-23 05:21:24 +02:00 Compare
kjuulh force-pushed renovate/all from 305453e736 to 078185df04 2025-05-24 02:22:23 +02:00 Compare
kjuulh force-pushed renovate/all from 078185df04 to 860a951c90 2025-05-24 05:21:12 +02:00 Compare
kjuulh force-pushed renovate/all from 860a951c90 to b4eff8d1c5 2025-05-25 02:21:49 +02:00 Compare
kjuulh force-pushed renovate/all from b4eff8d1c5 to 9d93c98e00 2025-05-25 05:21:55 +02:00 Compare
kjuulh force-pushed renovate/all from 9d93c98e00 to 887e587afe 2025-05-26 02:21:32 +02:00 Compare
kjuulh force-pushed renovate/all from 887e587afe to 135e2abfcb 2025-05-26 05:21:07 +02:00 Compare
kjuulh force-pushed renovate/all from 135e2abfcb to 9343300c34 2025-05-27 02:20:26 +02:00 Compare
kjuulh force-pushed renovate/all from 9343300c34 to 152c078528 2025-05-27 05:20:28 +02:00 Compare
kjuulh force-pushed renovate/all from 152c078528 to c18a300135 2025-05-28 02:23:26 +02:00 Compare
kjuulh force-pushed renovate/all from c18a300135 to 8c049ce83f 2025-05-28 05:20:54 +02:00 Compare
kjuulh force-pushed renovate/all from 8c049ce83f to 52887d9123 2025-05-29 02:21:22 +02:00 Compare
kjuulh force-pushed renovate/all from 52887d9123 to 88e8e94cfa 2025-05-29 05:20:13 +02:00 Compare
kjuulh force-pushed renovate/all from 88e8e94cfa to d769441962 2025-05-30 02:22:12 +02:00 Compare
kjuulh force-pushed renovate/all from d769441962 to 8e246e2a1d 2025-05-30 05:20:46 +02:00 Compare
kjuulh force-pushed renovate/all from 8e246e2a1d to f7db60a0e7 2025-05-31 02:21:26 +02:00 Compare
kjuulh force-pushed renovate/all from f7db60a0e7 to 4895b5395d 2025-05-31 05:20:46 +02:00 Compare
kjuulh force-pushed renovate/all from 4895b5395d to efaf7a4fe7 2025-06-01 02:21:18 +02:00 Compare
kjuulh force-pushed renovate/all from efaf7a4fe7 to b7feb3c1bf 2025-06-01 05:20:49 +02:00 Compare
kjuulh force-pushed renovate/all from b7feb3c1bf to 93c8c3eac5 2025-06-02 02:21:28 +02:00 Compare
kjuulh force-pushed renovate/all from 93c8c3eac5 to cb949cbb1e 2025-06-02 05:20:57 +02:00 Compare
kjuulh force-pushed renovate/all from cb949cbb1e to b9bc72707e 2025-06-03 02:21:10 +02:00 Compare
kjuulh force-pushed renovate/all from b9bc72707e to 7561a2fd4a 2025-06-03 05:20:52 +02:00 Compare
kjuulh force-pushed renovate/all from 7561a2fd4a to eedf1264e5 2025-06-04 02:21:57 +02:00 Compare
kjuulh force-pushed renovate/all from eedf1264e5 to 68441af163 2025-06-04 05:20:34 +02:00 Compare
kjuulh force-pushed renovate/all from 68441af163 to 6596884dca 2025-06-05 02:22:20 +02:00 Compare
kjuulh force-pushed renovate/all from 6596884dca to e85ae1f477 2025-06-05 05:21:39 +02:00 Compare
kjuulh force-pushed renovate/all from e85ae1f477 to 3802323f23 2025-06-06 02:22:02 +02:00 Compare
kjuulh force-pushed renovate/all from 3802323f23 to 450938fc41 2025-06-06 05:21:55 +02:00 Compare
kjuulh force-pushed renovate/all from 450938fc41 to 9d7cca0178 2025-06-07 02:21:44 +02:00 Compare
kjuulh force-pushed renovate/all from 9d7cca0178 to 734382d2bf 2025-06-07 05:20:52 +02:00 Compare
kjuulh force-pushed renovate/all from 734382d2bf to 9fdb61d56b 2025-06-08 02:22:00 +02:00 Compare
kjuulh force-pushed renovate/all from 9fdb61d56b to 410552ed67 2025-06-08 05:21:38 +02:00 Compare
kjuulh force-pushed renovate/all from 410552ed67 to d6e0eac3cd 2025-06-09 02:22:46 +02:00 Compare
kjuulh force-pushed renovate/all from d6e0eac3cd to 911b62536e 2025-06-09 05:21:34 +02:00 Compare
kjuulh force-pushed renovate/all from 911b62536e to 2db9093776 2025-06-10 02:24:22 +02:00 Compare
kjuulh force-pushed renovate/all from 2db9093776 to e833b231b8 2025-06-10 05:22:38 +02:00 Compare
kjuulh force-pushed renovate/all from e833b231b8 to c2cc8d69d3 2025-06-11 02:22:22 +02:00 Compare
kjuulh force-pushed renovate/all from c2cc8d69d3 to 205933cb61 2025-06-11 05:22:05 +02:00 Compare
kjuulh force-pushed renovate/all from 205933cb61 to 0d58749a61 2025-06-12 02:24:05 +02:00 Compare
kjuulh force-pushed renovate/all from 0d58749a61 to 7ca55ca9e3 2025-06-12 05:21:22 +02:00 Compare
kjuulh force-pushed renovate/all from 7ca55ca9e3 to bedd675160 2025-06-13 02:22:40 +02:00 Compare
kjuulh force-pushed renovate/all from bedd675160 to 5090c1af69 2025-06-13 05:21:56 +02:00 Compare
kjuulh force-pushed renovate/all from 5090c1af69 to e8080bfc65 2025-06-18 02:21:37 +02:00 Compare
kjuulh force-pushed renovate/all from e8080bfc65 to 34a18d74ae 2025-06-18 05:20:34 +02:00 Compare
kjuulh force-pushed renovate/all from 34a18d74ae to f61530f41d 2025-06-19 02:21:13 +02:00 Compare
kjuulh force-pushed renovate/all from f61530f41d to 16683588f7 2025-06-19 05:20:59 +02:00 Compare
kjuulh force-pushed renovate/all from 16683588f7 to 760414aaf8 2025-06-20 02:21:04 +02:00 Compare
kjuulh force-pushed renovate/all from 760414aaf8 to 3bad2b16ab 2025-06-20 05:20:31 +02:00 Compare
kjuulh force-pushed renovate/all from 3bad2b16ab to 6b6273eea6 2025-06-21 02:20:36 +02:00 Compare
kjuulh force-pushed renovate/all from 6b6273eea6 to b9b346d62f 2025-06-21 05:20:21 +02:00 Compare
kjuulh force-pushed renovate/all from b9b346d62f to 6951f4eeda 2025-06-22 02:20:52 +02:00 Compare
kjuulh force-pushed renovate/all from 6951f4eeda to 0de76f60e5 2025-06-22 05:20:26 +02:00 Compare
kjuulh force-pushed renovate/all from 0de76f60e5 to ee086896c2 2025-06-23 02:20:55 +02:00 Compare
kjuulh force-pushed renovate/all from ee086896c2 to bacb0a6c67 2025-06-23 05:20:39 +02:00 Compare
kjuulh force-pushed renovate/all from bacb0a6c67 to c9f2d9caad 2025-06-24 02:21:14 +02:00 Compare
kjuulh force-pushed renovate/all from c9f2d9caad to 3e42c02158 2025-06-24 05:20:51 +02:00 Compare
kjuulh force-pushed renovate/all from 3e42c02158 to 3ddee2e210 2025-06-25 02:21:47 +02:00 Compare
kjuulh force-pushed renovate/all from 3ddee2e210 to 5936f7663c 2025-06-25 05:21:01 +02:00 Compare
kjuulh force-pushed renovate/all from 5936f7663c to 01afefb3cc 2025-06-26 02:21:31 +02:00 Compare
kjuulh force-pushed renovate/all from 01afefb3cc to f37a63ed1d 2025-06-26 05:20:47 +02:00 Compare
kjuulh force-pushed renovate/all from f37a63ed1d to 7a682139e9 2025-06-27 02:21:00 +02:00 Compare
kjuulh force-pushed renovate/all from 7a682139e9 to afb11b196e 2025-06-27 05:20:52 +02:00 Compare
kjuulh force-pushed renovate/all from afb11b196e to ac500cfed3 2025-06-28 02:21:50 +02:00 Compare
kjuulh force-pushed renovate/all from ac500cfed3 to ad2ef01830 2025-06-28 05:20:49 +02:00 Compare
kjuulh force-pushed renovate/all from ad2ef01830 to 1b34afe884 2025-06-29 02:21:00 +02:00 Compare
kjuulh force-pushed renovate/all from 1b34afe884 to 7652a48f34 2025-06-29 05:20:49 +02:00 Compare
kjuulh force-pushed renovate/all from 7652a48f34 to 3584ca52f5 2025-06-30 02:21:31 +02:00 Compare
kjuulh force-pushed renovate/all from 3584ca52f5 to 5b60f6afb2 2025-06-30 05:21:05 +02:00 Compare
kjuulh force-pushed renovate/all from 5b60f6afb2 to f20d981d31 2025-07-01 02:22:35 +02:00 Compare
kjuulh force-pushed renovate/all from f20d981d31 to b073f4586e 2025-07-01 05:22:20 +02:00 Compare
kjuulh force-pushed renovate/all from b073f4586e to f2d94690aa 2025-07-02 02:28:32 +02:00 Compare
kjuulh force-pushed renovate/all from f2d94690aa to c951301190 2025-07-02 05:23:10 +02:00 Compare
kjuulh force-pushed renovate/all from c951301190 to c77a5a1c18 2025-07-03 02:22:39 +02:00 Compare
kjuulh force-pushed renovate/all from c77a5a1c18 to e22ac0e43d 2025-07-03 05:22:28 +02:00 Compare
kjuulh force-pushed renovate/all from e22ac0e43d to 8162c49745 2025-07-04 02:22:00 +02:00 Compare
kjuulh force-pushed renovate/all from 8162c49745 to 7112c01a9b 2025-07-04 05:21:02 +02:00 Compare
kjuulh force-pushed renovate/all from 7112c01a9b to 7f9bbfac45 2025-07-05 02:26:50 +02:00 Compare
kjuulh force-pushed renovate/all from 7f9bbfac45 to 31906f65c0 2025-07-05 05:22:18 +02:00 Compare
kjuulh force-pushed renovate/all from 31906f65c0 to 698e579e14 2025-07-06 02:21:17 +02:00 Compare
kjuulh force-pushed renovate/all from 698e579e14 to 3cfc8fdcbd 2025-07-06 05:21:33 +02:00 Compare
kjuulh force-pushed renovate/all from 3cfc8fdcbd to a87699200d 2025-07-07 02:22:12 +02:00 Compare
kjuulh force-pushed renovate/all from a87699200d to 9b256259d6 2025-07-07 05:22:22 +02:00 Compare
kjuulh force-pushed renovate/all from 9b256259d6 to af23e5f061 2025-07-08 02:21:33 +02:00 Compare
kjuulh force-pushed renovate/all from af23e5f061 to aad09b64c6 2025-07-08 05:21:34 +02:00 Compare
kjuulh force-pushed renovate/all from aad09b64c6 to 2321c26dbb 2025-07-09 02:22:52 +02:00 Compare
kjuulh force-pushed renovate/all from 2321c26dbb to 1986db4f00 2025-07-09 05:20:56 +02:00 Compare
kjuulh force-pushed renovate/all from 1986db4f00 to fbfa60dd03 2025-07-10 02:21:54 +02:00 Compare
kjuulh force-pushed renovate/all from fbfa60dd03 to 76bd0ae974 2025-07-10 05:22:17 +02:00 Compare
kjuulh force-pushed renovate/all from 76bd0ae974 to 9ced5c5e64 2025-07-11 02:23:31 +02:00 Compare
kjuulh force-pushed renovate/all from 9ced5c5e64 to 2b772ba693 2025-07-11 05:23:18 +02:00 Compare
kjuulh force-pushed renovate/all from 2b772ba693 to 4902b0ccd9 2025-07-12 02:21:04 +02:00 Compare
kjuulh force-pushed renovate/all from 4902b0ccd9 to 7f39d5f14d 2025-07-12 05:20:58 +02:00 Compare
kjuulh force-pushed renovate/all from 7f39d5f14d to 317083fe49 2025-07-13 02:21:17 +02:00 Compare
kjuulh force-pushed renovate/all from 317083fe49 to 523c2381af 2025-07-13 05:20:51 +02:00 Compare
kjuulh force-pushed renovate/all from 523c2381af to 7041c1cbaa 2025-07-14 02:21:54 +02:00 Compare
kjuulh force-pushed renovate/all from 7041c1cbaa to bd0f0ca924 2025-07-14 05:21:08 +02:00 Compare
kjuulh force-pushed renovate/all from bd0f0ca924 to 21b25a2006 2025-07-15 02:21:39 +02:00 Compare
kjuulh force-pushed renovate/all from 21b25a2006 to 546ce00528 2025-07-15 05:21:15 +02:00 Compare
kjuulh force-pushed renovate/all from 546ce00528 to d563e0b265 2025-07-16 02:23:48 +02:00 Compare
kjuulh force-pushed renovate/all from d563e0b265 to 10e5ff2ccc 2025-07-16 05:22:15 +02:00 Compare
kjuulh force-pushed renovate/all from 10e5ff2ccc to b59fc92e00 2025-07-17 02:22:50 +02:00 Compare
kjuulh force-pushed renovate/all from b59fc92e00 to 76158f3d7b 2025-07-17 05:21:56 +02:00 Compare
kjuulh force-pushed renovate/all from 76158f3d7b to 403840e723 2025-07-18 02:22:30 +02:00 Compare
kjuulh force-pushed renovate/all from 403840e723 to 0eb3835abf 2025-07-18 05:22:00 +02:00 Compare
kjuulh force-pushed renovate/all from 0eb3835abf to b1b6e4dd0d 2025-07-19 02:22:37 +02:00 Compare
kjuulh force-pushed renovate/all from b1b6e4dd0d to 88bb712756 2025-07-19 05:22:21 +02:00 Compare
kjuulh force-pushed renovate/all from 88bb712756 to 7852333602 2025-07-20 02:21:55 +02:00 Compare
kjuulh force-pushed renovate/all from 7852333602 to e55b21c811 2025-07-20 05:21:54 +02:00 Compare
kjuulh force-pushed renovate/all from e55b21c811 to f8664cc369 2025-07-21 02:22:08 +02:00 Compare
kjuulh force-pushed renovate/all from f8664cc369 to 2d8ee707ed 2025-07-21 05:22:06 +02:00 Compare
kjuulh changed title from fix(deps): update all dependencies to fix(deps): update rust crate toml to 0.9.0 2025-07-22 02:23:36 +02:00
kjuulh force-pushed renovate/all from 2d8ee707ed to 4b55aaaf12 2025-07-22 02:23:38 +02:00 Compare
kjuulh changed title from fix(deps): update rust crate toml to 0.9.0 to fix(deps): update all dependencies 2025-11-13 02:49:15 +01:00
kjuulh force-pushed renovate/all from 4b55aaaf12 to 10fb0c2cde 2025-11-13 02:49:16 +01:00 Compare
kjuulh force-pushed renovate/all from 10fb0c2cde to 2906ad2813 2025-11-18 02:25:21 +01:00 Compare
kjuulh force-pushed renovate/all from 2906ad2813 to 4b129ed13c 2025-11-18 05:25:05 +01:00 Compare
kjuulh force-pushed renovate/all from 4b129ed13c to ed3821f203 2025-11-20 02:24:17 +01:00 Compare
kjuulh force-pushed renovate/all from ed3821f203 to 066a365b7d 2025-11-20 05:24:05 +01:00 Compare
Some required checks are missing.
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/dagger-components#69
No description provided.