chore(deps): update all dependencies #16

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.99 -> 1.0.100
clap workspace.dependencies patch 4.5.46 -> 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)
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
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?
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.99` -> `1.0.100` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.46` -> `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)) </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` </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) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTguMSIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-26 21:00:05 +01:00
kjuulh changed title from chore(deps): update rust crate clap to v4.5.33 to chore(deps): update rust crate clap to v4.5.34 2025-03-27 03:00:35 +01:00
kjuulh force-pushed renovate/all from 91080a96fa to 59a02f69ff 2025-03-27 03:00:37 +01:00 Compare
kjuulh changed title from chore(deps): update rust crate clap to v4.5.34 to fix(deps): update all dependencies 2025-03-27 16:59:04 +01:00
kjuulh force-pushed renovate/all from 59a02f69ff to 1420142503 2025-03-27 16:59:05 +01:00 Compare
kjuulh force-pushed renovate/all from 1420142503 to 7f8c9ad7e7 2025-03-27 17:29:44 +01:00 Compare
kjuulh force-pushed renovate/all from 7f8c9ad7e7 to 8cd650fad5 2025-03-27 18:01:00 +01:00 Compare
kjuulh force-pushed renovate/all from 8cd650fad5 to e4672c1b22 2025-03-27 18:31:53 +01:00 Compare
kjuulh force-pushed renovate/all from e4672c1b22 to 59bc31de87 2025-03-27 19:02:05 +01:00 Compare
kjuulh force-pushed renovate/all from 59bc31de87 to b538199cae 2025-03-27 19:30:18 +01:00 Compare
kjuulh force-pushed renovate/all from b538199cae to f787bd730b 2025-03-27 19:59:39 +01:00 Compare
kjuulh force-pushed renovate/all from f787bd730b to 6f0bfecc74 2025-03-27 20:28:05 +01:00 Compare
kjuulh force-pushed renovate/all from 6f0bfecc74 to b35813bf7a 2025-03-27 20:57:51 +01:00 Compare
kjuulh force-pushed renovate/all from b35813bf7a to 052de92da2 2025-03-27 21:26:26 +01:00 Compare
kjuulh force-pushed renovate/all from 052de92da2 to eb358b6b07 2025-03-27 21:57:03 +01:00 Compare
kjuulh force-pushed renovate/all from eb358b6b07 to 89f86e7e2f 2025-03-28 23:23:51 +01:00 Compare
kjuulh force-pushed renovate/all from 89f86e7e2f to bff0171547 2025-03-29 02:18:58 +01:00 Compare
kjuulh force-pushed renovate/all from bff0171547 to 423f04cb6a 2025-03-29 05:19:31 +01:00 Compare
kjuulh force-pushed renovate/all from 423f04cb6a to 0e209c9620 2025-03-30 05:20:17 +02:00 Compare
kjuulh force-pushed renovate/all from 0e209c9620 to 8576e77d0a 2025-03-31 02:18:32 +02:00 Compare
kjuulh force-pushed renovate/all from 8576e77d0a to 61d9a0f97b 2025-03-31 05:19:03 +02:00 Compare
kjuulh force-pushed renovate/all from 61d9a0f97b to 304c7dd058 2025-04-01 02:19:29 +02:00 Compare
kjuulh force-pushed renovate/all from 304c7dd058 to cc4435a6f2 2025-04-01 05:19:38 +02:00 Compare
kjuulh force-pushed renovate/all from cc4435a6f2 to f828d210ea 2025-04-02 02:22:05 +02:00 Compare
kjuulh force-pushed renovate/all from f828d210ea to 13d92fc021 2025-04-06 02:19:53 +02:00 Compare
kjuulh force-pushed renovate/all from 13d92fc021 to e1f3acfc4f 2025-04-06 05:20:41 +02:00 Compare
kjuulh force-pushed renovate/all from e1f3acfc4f to 28c92f9e8b 2025-04-12 02:22:13 +02:00 Compare
kjuulh force-pushed renovate/all from 28c92f9e8b to 0a12f36fdb 2025-04-12 05:20:43 +02:00 Compare
kjuulh force-pushed renovate/all from 0a12f36fdb to 1e90c2b622 2025-04-14 05:20:40 +02:00 Compare
kjuulh force-pushed renovate/all from 1e90c2b622 to 0b580069c4 2025-04-15 02:22:42 +02:00 Compare
kjuulh force-pushed renovate/all from 0b580069c4 to c7a9b20933 2025-04-19 02:20:39 +02:00 Compare
kjuulh force-pushed renovate/all from c7a9b20933 to 3855cc1457 2025-04-19 05:20:47 +02:00 Compare
kjuulh force-pushed renovate/all from 3855cc1457 to 75acc9c93c 2025-05-07 02:21:15 +02:00 Compare
kjuulh force-pushed renovate/all from 75acc9c93c to d57e30898d 2025-05-07 05:20:52 +02:00 Compare
kjuulh force-pushed renovate/all from d57e30898d to 5ecca5b12e 2025-05-11 05:20:26 +02:00 Compare
kjuulh force-pushed renovate/all from 5ecca5b12e to d2cc2ff01d 2025-05-12 02:21:16 +02:00 Compare
kjuulh force-pushed renovate/all from d2cc2ff01d to 195ad00955 2025-05-25 02:20:19 +02:00 Compare
kjuulh force-pushed renovate/all from 195ad00955 to 4de3a536b2 2025-05-25 05:20:23 +02:00 Compare
kjuulh force-pushed renovate/all from 4de3a536b2 to 2fbf741bef 2025-05-28 02:21:55 +02:00 Compare
kjuulh force-pushed renovate/all from 2fbf741bef to 65b5f49b15 2025-05-28 05:19:18 +02:00 Compare
kjuulh force-pushed renovate/all from 65b5f49b15 to 3d5be1dbe4 2025-06-10 02:22:49 +02:00 Compare
kjuulh force-pushed renovate/all from 3d5be1dbe4 to 4b2256ac5e 2025-06-10 05:21:07 +02:00 Compare
kjuulh force-pushed renovate/all from 4b2256ac5e to 60ff32c49f 2025-07-03 02:21:00 +02:00 Compare
kjuulh force-pushed renovate/all from 60ff32c49f to 5c071c6948 2025-07-03 05:20:54 +02:00 Compare
kjuulh force-pushed renovate/all from 5c071c6948 to 7c5f95ea4c 2025-07-05 02:24:45 +02:00 Compare
kjuulh force-pushed renovate/all from 7c5f95ea4c to d0c57d1b75 2025-07-05 05:20:46 +02:00 Compare
kjuulh force-pushed renovate/all from d0c57d1b75 to c3f5afc337 2025-07-10 02:20:19 +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.16 --precise 0.19.8
    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.8
location searched: crates.io index
required by package `cuddle-ci v0.3.0 (https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#c0e24492)`
    ... which satisfies git dependency `cuddle-ci` (locked to 0.3.0) of package `cuddle-rust-cli-plan v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/cuddle-rust-cli-plan/crates/cuddle-rust-cli-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.16 --precise 0.19.8 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.8 location searched: crates.io index required by package `cuddle-ci v0.3.0 (https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#c0e24492)` ... which satisfies git dependency `cuddle-ci` (locked to 0.3.0) of package `cuddle-rust-cli-plan v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/cuddle-rust-cli-plan/crates/cuddle-rust-cli-plan)` ```
kjuulh force-pushed renovate/all from c3f5afc337 to 09861ede4f 2025-07-10 05:20:39 +02:00 Compare
kjuulh force-pushed renovate/all from 09861ede4f to 14d54e2d23 2025-11-13 02:46:39 +01:00 Compare
kjuulh changed title from fix(deps): update all dependencies to chore(deps): update all dependencies 2025-11-13 02:46:39 +01:00
kjuulh force-pushed renovate/all from 14d54e2d23 to 175583a88b 2025-11-13 05:15:19 +01:00 Compare
kjuulh force-pushed renovate/all from 175583a88b to 0e357a3ae7 2025-11-29 05:22:54 +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-cli-plan#16
No description provided.