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.53
dagger-sdk workspace.dependencies minor 0.18.3 -> 0.19.0
tokio (source) workspace.dependencies minor 1.47.1 -> 1.48.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.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.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?
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


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.53` | | [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.48.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.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.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>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) </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.7
    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.7
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.7 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.7 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
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
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
No description provided.