fix(deps): update all dependencies #104

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

This PR contains the following updates:

Package Type Update Change
clap dependencies patch 4.5.38 -> 4.5.39
dagger-sdk dependencies minor 0.9.8 -> 0.18.0
dirs dependencies major 5.0.1 -> 6.0.0
envconfig dependencies minor 0.10.0 -> 0.11.0
git2 dependencies minor 0.18.2 -> 0.20.0
inquire dependencies minor 0.6.2 -> 0.7.0
openssl dependencies patch 0.10.72 -> 0.10.73
reqwest dependencies minor 0.11 -> 0.12
rlua dependencies minor 0.19.8 -> 0.20.0

Release Notes

clap-rs/clap (clap)

v4.5.39

Compare Source

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

v0.18.9

Compare Source

Added
Changed
Fixed
What to do next?

v0.18.8

Compare Source

Fixed
What to do next?

v0.18.7

Compare Source

Fixed
Added
  • Add new optional parameters to Query.http by @​jedevc in https://github.com/dagger/dagger/pull/10317
    • name allows overriding the filename to download
    • permissions allows setting the permissions on the resulting file
    • authHeader allows passing a secret in the Authorization HTTP header
What to do next?

v0.18.6

Compare Source

🔥 Breaking Changes
  • Cache URI-based secrets based on their plaintext value rather than the URI by @​sipsma in https://github.com/dagger/dagger/pull/10311
    Previously, the "cache key" for URI-based secrets (e.g. env://FOO, file:///some/path, etc.) was the URI string. This meant that operations including the secret (e.g. as an environment variable in a Container) would be cached based on the URI value. If two secrets from different clients had the same URI but different plaintext values, cache for operations that include them would be shared.

    In many cases, even when URIs were the same, the plaintext of secrets could be meaningfully different, which made this behavior surprising and lead to unexpected results.

    Now, URI-based secrets are cached based on secure hashes of their plaintext value. Two secrets that have the same URI but different plaintext values will be cached separately, and operations that include them will not share cache.

    However, there are cases where users do want secrets with different plaintexts to share cache, e.g. secrets that rotate in plaintext value frequently but aren't meaningfully different and thus shouldn't bust the cache of operations that include them.

    To continue supporting those use cases, there is a new optional cacheKey argument to Secret that can be used to specify a custom cache key. If provided, the cache key will be used instead of the default plaintext-based cache key, allowing any secrets sharing that cache-key to be cached together.

    SDKs can provide this as an optional argument to the Secret constructor. Other example usages:

    dagger shell:

    • dagger shell -c "some-function --secret-arg $(secret env://FOO --cache-key my-cache-key)"

    dagger call (supports a special syntax that sets the cache key via a query param in the URI):

    • dagger call some-function --secret-arg env://FOO?cacheKey=my-cache-key
Added
Fixed
What to do next?

v0.18.5

Compare Source

Added
Fixed
What to do next?

v0.18.4

Compare Source

Fixed
Experimental
What to do next?

v0.18.3

Compare Source

Added
Fixed
Experimental
What to do next?

v0.18.2

Compare Source

Changed
Fixed
What to do next?

v0.18.1

Compare Source

What to do next?

v0.18.0

Compare Source

Changed
Fixed
What to do next?

v0.17.2

Compare Source

Added
Changed
What to do next?

v0.17.1

Compare Source

  • BREAKING(llm): fix go sdk capitalization of "Llm" to "LLM" instead, consistent with engine code and the rest of the go ecosystem (https://github.com/dagger/dagger/pull/9933)
    • this will break compilation of modules referencing the LLM API like dag.Llm. To fix, simply change to dag.LLM
  • when prompting for remote module LLM access, error early in non-interactive situations where we would previously hang indefinitely. (https://github.com/dagger/dagger/pull/9957)
What to do next?

v0.17.0

Compare Source

Added
Changed
What to do next?

v0.16.3

Compare Source

Added
Changed
Dependencies
What to do next?

v0.16.2

Compare Source

Added
Fixed
Dependencies
What to do next?

v0.16.1

Compare Source

Fixed
What to do next?

v0.16.0

Compare Source

🔥 Breaking Changes
  • To match automatic configuration, insecure-entitlements now includes security.insecure when configuring the engine manually by @​jedevc in https://github.com/dagger/dagger/pull/9513

  • Module load performance is improved and related API refactored by @​sipsma in https://github.com/dagger/dagger/pull/9505
    Loading of modules (the load module step shown in progress output) is faster now in many cases. In particular:

    • Cache utilization of module loading is greatly improved, which can decrease load times by up to a factor of 10 when re-calling functions after changing source code in a Daggerized repo.
    • Less extraneous files are loaded from the source repository

    Users of modules with large numbers of dependencies or in large git repositories are expected to see the most immediate benefit.

    For some concrete numbers, here are load module times for the dagger-dev's module in Dagger's repository under different scenarios:

    • dagger call --help on new engines with an empty cache
      • v0.15.4: 1m20s
      • v0.16.0: 1m1s
      • ~23% faster
    • re-running dagger call --help with no file changes in the repo:
      • v0.15.4: 10.9s
      • v0.16.0: 2.8s
      • ~74% faster
    • re-running dagger call --help after making a change to a random source code file in the repo:
      • v0.15.4: 32.1s
      • v0.16.0: 2.8s
      • ~91% faster

    These improvements in cache utilization are also setup for future improvements not only in load module times but function call times more generally.

    This improvement comes with a few breaking changes that are not expected to impact most users. However, the changes require that users upgrade their CLI to v0.16.0 in order to connect to v0.16.0 engines. Older CLIs will error when connecting to newer engines.

    In terms of the breaking changes, impacted users are those who:

    • have function code that imports local libraries outside of the dagger module source directory
    • rely on a package manager configuration file (e.g. go.mod) that exists in a parent directory of the dagger module source directory

    They may need to update their dagger.json configuration file to add an explicit "include" setting to ensure those extra files or directories are loaded with the module. This is because numerous files previously implicitly loaded are now skipped by default, which contributes to the performance improvements.

    For example, if your module code is in .dagger and relies on the go.mod file in the parent directory, you would add the following to your dagger.json file:

    {
      "include": ["../go.mod", "../go.sum"]
    }
    

    The values in the "include" array are relative to the directory containing dagger.json. They can be also be glob patterns (e.g. "**/*.txt"). To explicitly exclude some files matched by a previous include pattern, you can prepend the include pattern with a ! character (e.g. "!**/foo.txt").

    • Previously, the exclude setting existed but has now been superseded by prefixing an include pattern with a ! character. However, this is backwards-compatible, so existing exclude settings will be automatically turned into equivalent !-prefixed include settings when running dagger develop. No user intervention is needed.

    The core API's ModuleSource and Module types have also undergone some cleanup that includes breaking changes. Most users do not interact with these APIs, but any that do may need some minor adjustments to their code. In particular:

    • Module.initialize no longer needs to be called; the module is initialized on creation
    • ResolveFromCaller no longer needs to be called for local module sources; context is automatically loaded and resolved efficiently as needed by other API calls
Added
What to do next?

v0.15.4

Compare Source

Added
Fixed
What to do next?

v0.15.3

Compare Source

Added
Fixed
Dependencies
What to do next?

v0.15.2

Compare Source

Added
Changed
Fixed
What to do next?

v0.15.1

Compare Source

Fixed
What to do next?

v0.13.7

Added
Changed
  • Updated default cache policies to avoid consuming too much disk by @​jedevc in https://github.com/dagger/dagger/pull/8725
    The new policies attempt to co-operate with other applications using the disk
    and will adjust its cache usage accordingly.
  • cli: limit printing objects to state by @​helderco in https://github.com/dagger/dagger/pull/8788
    Previously, when a function chain in dagger call ended in an object, we'd
    print all functions that return a simple value and don't have any arguments.
    Now, only object fields will be included, not all functions.
Fixed
What to do next?

v0.11.9

Compare Source

Fixed
What to do next?
greyblake/envconfig-rs (envconfig)

v0.11.0

Compare Source

  • [breaking] Nested config fields now needs to be marked with #[envconfig(nested)]
  • Environment variable can be automatically derived from a field name (e.g. db_host will be tried to loaded from DB_HOST env var)
  • Add install step in README
  • Update syn dependency to 2.x.x
rust-lang/git2-rs (git2)

v0.20.2

Compare Source

0.20.1...0.20.2

Added
Fixed
  • Added missing codes for GIT_EDIRECTORY, GIT_EMERGECONFLICT, GIT_EUNCHANGED, GIT_ENOTSUPPORTED, and GIT_EREADONLY to Error::raw_code.
    #​1153
  • Fixed missing initialization in Indexer::new.
    #​1160

v0.20.1

Compare Source

0.20.0...0.20.1

Added
  • Added Repository::branch_upstream_merge()
    #​1131
  • Added Index::conflict_get()
    #​1134
  • Added Index::conflict_remove()
    #​1133
  • Added opts::set_cache_object_limit()
    #​1118
  • Added Repo::merge_file_from_index() and associated MergeFileOptions and MergeFileResult.
    #​1062
Changed
  • The url dependency minimum raised to 2.5.4
    #​1128
  • Changed the tracing callback to abort the process if the callback panics instead of randomly detecting the panic in some other function.
    #​1121
  • Credential helper config (loaded with CredentialHelper::config) now checks for helpers that start with something that looks like an absolute path, rather than checking for a / or \ anywhere in the helper string (which resolves an issue if the helper had arguments with / or \).
    #​1137
Fixed
  • Fixed panic in Remote::url_bytes if the url is empty.
    #​1120
  • Fixed incorrect lifetimes on Patch::delta, Patch::hunk, and Patch::line_in_hunk. The return values must not outlive the Patch.
    #​1141
  • Bumped requirement to libgit2-sys 0.18.1, which fixes linking of advapi32 on Windows.
    #​1143

v0.20.0

Compare Source

0.19.0...0.20.0

Added
  • Debug is now implemented for transport::Service
    #​1074
  • Added Repository::commondir
    #​1079
  • Added Repository::merge_base_octopus
    #​1088
  • Restored impls for PartialOrd, Ord, and Hash for bitflags types that were inadvertently removed in a prior release.
    #​1096
  • Added CheckoutBuilder::disable_pathspec_match
    #​1107
  • Added PackBuilder::write
    #​1110
Changed
  • Updated to libgit2 1.9.0
    #​1111
  • Removed the ssh_key_from_memory Cargo feature, it was unused.
    #​1087
  • Errors from Tree::walk are now correctly reported to the caller.
    #​1098
  • The trace_set callback now takes a &[u8] instead of a &str.
    #​1071
  • Error::last_error now returns Error instead of Option<Error>.
    #​1072
Fixed
  • Fixed OdbReader::read return value.
    #​1061
  • When a credential helper executes a shell command, don't pop open a console window on Windows.
    #​1075

v0.19.0

Compare Source

0.18.3...0.19.0

Added
  • Added opts functions to control server timeouts (get_server_connect_timeout_in_milliseconds, set_server_connect_timeout_in_milliseconds, get_server_timeout_in_milliseconds, set_server_timeout_in_milliseconds), and add ErrorCode::Timeout.
    #​1052
Changed
Fixed
  • Fixed some callbacks to relay the error from the callback to libgit2.
    #​1043
mikaelmello/inquire (inquire)

v0.7.5

Compare Source

  • Fix user-provided ANSI escape codes from being removed when rendering.
    • Introduced on 0.7.0, this regression was making it impossible to have colorised text inside the prompt.
    • Now ANSI escape codes are properly emitted when rendering the prompt in the terminal.

v0.7.4

Compare Source

  • Fix unexpected behaviors of keep_filter option in MultiSelect prompts:
    • Filter input is now correcly getting reset only when keep_filter == false.
    • When the filter input is reset, the list of options is now correctly reset as well. Thanks @​Swivelgames for reporting #​238.

v0.7.3

Compare Source

  • Fix cursor occasionally blinking in unexpected places.

v0.7.2

Compare Source

  • Pressing Ctrl+D now cancels the prompt. Thanks @​mikecvet for the PR!
  • Add support for h and l bindings when vim_mode is enabled on MultiSelect prompts, clearing or selecting all options respectively. Thanks @​afh for the PR!
  • Fix render issue #​233 where cursor positioning at the end of a prompt was incorrect. Thanks @​msrd0 and @​Sydonian for reporting!

v0.7.1

Compare Source

  • Fix render issue #​228 when using console crate as the terminal backend. Thanks @​maospr for reporting.

v0.7.0

Compare Source

Breaking Changes
  • The Select and Multiselect Filter now scores input and is now expected to return an Option<i64>, making it possible to order/rank the list of options. #​176
    None: Will not be displayed in the list of options.
    Some(score): score determines the order of options, higher score, higher on the list of options.
  • Improved user experience on Password prompts. When there is a validation error, the input is cleared if the password is rendered using the Hidden display mode, matching the user expectation of having to write the password from scratch again. Thanks to @​CM-IV for the questions on #​149!
  • Allow lifetime customization of RenderConfig. #​101. Thanks to @​arturfast for the suggestion #​95.
  • Implement fuzzy search as default on Select and MultiSelect prompts. #​176
  • Revamped keybindings for DateSelect.
Features
  • Add one-liner helpers for quick scripts. #​144.
  • Add new option on MultiSelect prompts to set all options to be selected by default. Thanks to @​conikeec for the suggestion (#​151)!
  • Add new option on Select/MultiSelect prompts allowing to reset selection to the first item on filter-input changes. #​176
  • Emacs-like keybindings added where applicable:
    • Ctrl-p/Ctrl-n for up/down
    • Ctrl-b/Ctrl-f for left/right
    • Ctrl-j/Ctrl-g for enter/cancel
  • Vim keybindings are always supported in DateSelect prompts.
  • Added 'with_starting_filter_input' to both Select and MultiSelect, which allows for setting an initial value to the filter section of the prompt.
  • Added starting_input for CustomType. #​194
  • Added 'without_filtering' to both Select and MultiSelect, useful when you want to simplify the UX if the filter does not add any value, such as when the list is already short.
  • Added 'with_answered_prompt_prefix' to RenderConfig to allow customization of answered prompt prefix.
  • Improved rendering, with optimizations on incremental rendering and terminal resizing.
Fixes
  • Fixed typos in the code's comments.
  • Fixed issue where inquire, using termion, would crash when receiving piped inputs.
Dependency changes (some breaking)
  • Upgraded underlying termion crate from v1.5 to v2.0.
  • Upgraded underlying bitflags from v1 to v2, which affects the Attributes and KeyModifiers crates. If you use any of bitflag's methods directly, you might be affected, refer to the bitflags changelog for more information.
  • Removed thiserror dependency in favor of implementing InquireError by hand. #​146
  • Raised MSRV to 1.66 due to requirements in downstream dependencies.
  • MSRV is now explicitly set in the package definition.
  • Replaced lazy_static with once_cell as once_cell::sync::Lazy is being standardized and lazy_static is not actively maintained anymore.
  • Added fuzzy-matcher as an optional dependency for fuzzy filtering in Select and MultiSelect prompts #​176
sfackler/rust-openssl (openssl)

v0.10.73

Compare Source

What's Changed

Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.72...openssl-v0.10.73

seanmonstar/reqwest (reqwest)

v0.12.18

Compare Source

  • Fix compilation when socks enabled without TLS.

v0.12.17

Compare Source

  • Fix compilation on macOS.

v0.12.16

Compare Source

  • Add ClientBuilder::http3_congestion_bbr() to enable BBR congestion control.
  • Add ClientBuilder::http3_send_grease() to configure whether to send use QUIC grease.
  • Add ClientBuilder::http3_max_field_section_size() to configure the maximum response headers.
  • Add ClientBuilder::tcp_keepalive_interval() to configure TCP probe interval.
  • Add ClientBuilder::tcp_keepalive_retries() to configure TCP probe count.
  • Add Proxy::headers() to add extra headers that should be sent to a proxy.
  • Fix redirect::Policy::limit() which had an off-by-1 error, allowing 1 more redirect than specified.
  • Fix HTTP/3 to support streaming request bodies.
  • (wasm) Fix null bodies when calling Response::bytes_stream().

v0.12.15

Compare Source

  • Fix Windows to support both ProxyOverride and NO_PROXY.
  • Fix http3 to support streaming response bodies.
  • Fix http3 dependency from public API misuse.

v0.12.14

Compare Source

  • Fix missing fetch_mode_no_cors(), marking as deprecated when not on WASM.

v0.12.13

Compare Source

  • Add Form::into_reader() for blocking multipart forms.
  • Add Form::into_stream() for async multipart forms.
  • Add support for SOCKS4a proxies.
  • Fix decoding responses with multiple zstd frames.
  • Fix RequestBuilder::form() from overwriting a previously set Content-Type header, like the other builder methods.
  • Fix cloning of request timeout in blocking::Request.
  • Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
  • Fix Windows system proxy to use ProxyOverride as a NO_PROXY value.
  • Fix blocking read to correctly reserve and zero read buffer.
  • (wasm) Add support for request timeouts.
  • (wasm) Fix Error::is_timeout() to return true when from a request timeout.

v0.12.12

Compare Source

  • (wasm) Fix compilation by not compiler tokio/time on WASM.

v0.12.11

Compare Source

  • Fix decompression returning an error when HTTP/2 ends with an empty data frame.

v0.12.10

Compare Source

  • Add ClientBuilder::connector_layer() to allow customizing the connector stack.
  • Add ClientBuilder::http2_max_header_list_size() option.
  • Fix propagating body size hint (content-length) information when wrapping bodies.
  • Fix decompression of chunked bodies so the connections can be reused more often.

v0.12.9

Compare Source

  • Add tls::CertificateRevocationLists support.
  • Add crate features to enable webpki roots without selecting a rustls provider.
  • Fix connection_verbose() to output read logs.
  • Fix multipart::Part::file() to automatically include content-length.
  • Fix proxy to internally no longer cache system proxy settings.

v0.12.8

Compare Source

  • Add support for SOCKS4 proxies.
  • Add multipart::Form::file() method for adding files easily.
  • Add Body::wrap() to wrap any http_body::Body type.
  • Fix the pool configuration to use a timer to remove expired connections.

v0.12.7

Compare Source

  • Revert adding impl Service<http::Request<_>> for Client.

v0.12.6

Compare Source

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precedence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.

v0.12.5

Compare Source

  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.

v0.12.4

Compare Source

  • Add zstd support, enabled with zstd Cargo feature.
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.

v0.12.3

Compare Source

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.

v0.12.2

Compare Source

  • Fix missing ALPN when connecting to socks5 proxy with rustls.
  • Fix TLS version limits with rustls.
  • Fix not detected ALPN h2 from server with native-tls.

v0.12.1

Compare Source

  • Fix compilation when socks enabled without TLS.

v0.12.0

Compare Source

  • Upgrade to hyper, http, and http-body v1.
  • Add better support for converting to and from http::Request and http::Response.
  • Add http2 optional cargo feature, default on.
  • Add charset optional cargo feature, default on.
  • Add macos-system-configuration cargo feature, default on.
  • Change all optional dependencies to no longer be exposed as implicit features.
  • Add ClientBuilder::interface(str) to specify the local interface to bind to.
  • Experimental: disables the http3 feature temporarily.

v0.11.27

  • Add hickory-dns feature, deprecating trust-dns.
  • (wasm) Fix Form::text() to not set octet-stream for plain text fields.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.

v0.11.25

  • Fix Certificate::from_pem_bundle() parsing.
  • Fix Apple linker errors from detecting system proxies.

v0.11.24

  • Add Certificate::from_pem_bundle() to add a bundle.
  • Add http3_prior_knowledge() to blocking client builder.
  • Remove Sync bounds requirement for Body::wrap_stream().
  • Fix HTTP/2 to retry REFUSED_STREAM requests.
  • Fix instances of converting Url to Uri that could panic.

v0.11.23

  • Add Proxy::custom_http_auth(val) for setting the raw Proxy-Authorization header when connecting to proxies.
  • Fix redirect to reject locations that are not http:// or https://.
  • Fix setting nodelay when TLS is enabled but URL is HTTP.
  • (wasm) Add ClientBuilder::user_agent(val).
  • (wasm) add multipart::Form::headers(headers).

v0.11.22

  • Fix compilation on Windows when trust-dns is enabled.

v0.11.21

  • Add automatically detecting macOS proxy settings.
  • Add ClientBuilder::tls_info(bool), which will put tls::TlsInfo into the response extensions.
  • Fix trust-dns resolver from possible hangs.
  • Fix connect timeout to be split among multiple IP addresses.

v0.11.20

  • Fix deflate decompression back to using zlib, as outlined in the spec.

v0.11.19

  • Add ClientBuilder::http1_ignore_invalid_headers_in_responses() option.
  • Add ClientBuilder::http1_allow_spaces_after_header_name_in_responses() option.
  • Add support for ALL_PROXY environment variable.
  • Add support for use_preconfigured_tls when combined with HTTP/3.
  • Fix deflate decompression from using the zlib decoder.
  • Fix Response::{text, text_with_charset}() to strip BOM characters.
  • Fix a panic when HTTP/3 is used if UDP isn't able to connect.
  • Fix some dependencies for HTTP/3.
  • Increase MSRV to 1.63.

v0.11.18

  • Fix RequestBuilder::json() method from overriding a previously set content-type header. An existing value will be left in place.
  • Upgrade internal dependencies for rustls and compression.

v0.11.17

  • Upgrade internal dependencies of Experimental HTTP/3 to use quinn v0.9
  • (wasm) Fix blob url support

v0.11.16

  • Chore: set MSRV in Cargo.toml.
  • Docs: fix build on docs.rs

v0.11.15

  • Add RequestBuilder methods to split and reconstruct from its parts.
  • Add experimental HTTP/3 support.
  • Fix connection_verbose to log write_vectored calls.
  • (wasm) Make requests actually cancel if the future is dropped.

v0.11.14

  • Adds Proxy::no_proxy(url) that works like the NO_PROXY environment variable.
  • Adds multipart::Part::headers(headers) method to add custom headers.
  • (wasm) Add Response::bytes_stream().
  • Perf: several internal optimizations reducing copies and memory allocations.

v0.11.13

  • Add ClientBuilder::dns_resolver() option for custom DNS resolvers.
  • Add ClientBuilder::tls_sni(bool) option to enable or disable TLS Server Name Indication.
  • Add Identity::from_pkcs8_pem() constructor when using native-tls.
  • Fix redirect::Policy::limited(0) from following any redirects.

v0.11.12

  • Add ClientBuilder::resolve_to_addrs() which allows a slice of IP addresses to be specified for a single host.
  • Add Response::upgrade() to await whether the server agrees to an HTTP upgrade.

v0.11.11

  • Add HTTP/2 keep-alive configuration methods on ClientBuilder.
  • Add ClientBuilder::http1_allow_obsolete_multiline_headers_in_responses().
  • Add impl Service<Request> for Client and &'_ Client.
  • (wasm) Add RequestBuilder::basic_auth().
  • Fix RequestBuilder::header to not override sensitive if user explicitly set on a HeaderValue.
  • Fix rustls parsing of elliptic curve private keys.
  • Fix Proxy URL parsing of some invalid targets.

v0.11.10

  • Add Error::url() to access the URL of an error.
  • Add Response::extensions() to access the http::Extensions of a response.
  • Fix rustls-native-certs to log an error instead of panicking when loading an invalid system certificate.
  • Fix passing Basic Authorization header to proxies.

v0.11.9

  • Add ClientBuilder::http09_responses(bool) option to allow receiving HTTP/0.9 responses.
  • Fix HTTP/2 to retry requests interrupted by an HTTP/2 graceful shutdown.
  • Fix proxy loading from environment variables to ignore empty values.

v0.11.8

  • Update internal webpki-roots dependency.

v0.11.7

  • Add blocking::ClientBuilder::resolve() option, matching the async builder.
  • Implement From<tokio::fs::File> for Body.
  • Fix blocking request-scoped timeout applying to bodies as well.
  • (wasm) Fix request bodies using multipart vs formdata.
  • Update internal rustls to 0.20.

v0.11.6

  • (wasm) Fix request bodies more.

v0.11.5

  • Add ClientBuilder::http1_only() method.
  • Add tls::Version type, and ClientBuilder::min_tls_version() and ClientBuilder::max_tls_version() methods.
  • Implement TryFrom<Request> for http::Request.
  • Implement Clone for Identity.
  • Fix NO_PROXYenvironment variable parsing to more closely match curl's. Comma-separated entries are now trimmed for whitespace, and * is allowed to match everything.
  • Fix redirection to respect https_only option.
  • (wasm) Add Body::as_bytes() method.
  • (wasm) Fix sometimes wrong conversation of bytes into a JsValue.
  • (wasm) Avoid dependency on serde-serialize feature.

v0.11.4

  • Add ClientBuilder::resolve() option to override DNS resolution for specific domains.
  • Add native-tls-alpn Cargo feature to use ALPN with the native-tls backend.
  • Add ClientBuilder::deflate() option and deflate Cargo feature to support decoding response bodies using deflate.
  • Add RequestBuilder::version() to allow setting the HTTP version of a request.
  • Fix allowing "invalid" certificates with the rustls-tls backend, when the server uses TLS v1.2 or v1.3.
  • (wasm) Add try_clone to Request and RequestBuilder

v0.11.3

  • Add impl From<hyper::Body> for reqwest::Body.
  • (wasm) Add credentials mode methods to RequestBuilder.

v0.11.2

  • Add CookieStore trait to customize the type that stores and retrieves cookies for a session.
  • Add cookie::Jar as a default CookieStore, easing creating some session cookies before creating the Client.
  • Add ClientBuilder::http2_adaptive_window() option to configure an adaptive HTTP2 flow control behavior.
  • Add ClientBuilder::http2_max_frame_size() option to adjust the maximum HTTP2 frame size that can be received.
  • Implement IntoUrl for String, making it more convenient to create requests with format!.

v0.11.1

  • Add ClientBuilder::tls_built_in_root_certs() option to disable built-in root certificates.
  • Fix rustls-tls glue to more often support ALPN to upgrade to HTTP/2.
  • Fix proxy parsing to assume http:// if no scheme is found.
  • Fix connection pool idle reaping by enabling hyper's runtime feature.
  • (wasm) Add Request::new() constructor.
mlua-rs/rlua (rlua)

v0.20.1

Compare Source

  • Add "deprecated" badge

v0.20.0

Compare Source

  • Switch to being a wrapper around mlua

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 | |---|---|---|---| | [clap](https://github.com/clap-rs/clap) | dependencies | patch | `4.5.38` -> `4.5.39` | | [dagger-sdk](https://github.com/dagger/dagger) | dependencies | minor | `0.9.8` -> `0.18.0` | | [dirs](https://github.com/soc/dirs-rs) | dependencies | major | `5.0.1` -> `6.0.0` | | [envconfig](https://github.com/greyblake/envconfig-rs) | dependencies | minor | `0.10.0` -> `0.11.0` | | [git2](https://github.com/rust-lang/git2-rs) | dependencies | minor | `0.18.2` -> `0.20.0` | | [inquire](https://github.com/mikaelmello/inquire) | dependencies | minor | `0.6.2` -> `0.7.0` | | [openssl](https://github.com/sfackler/rust-openssl) | dependencies | patch | `0.10.72` -> `0.10.73` | | [reqwest](https://github.com/seanmonstar/reqwest) | dependencies | minor | `0.11` -> `0.12` | | [rlua](https://github.com/mlua-rs/rlua) | dependencies | minor | `0.19.8` -> `0.20.0` | --- ### Release Notes <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.39`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4539---2025-05-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.38...v4.5.39) ##### Fixes - *(help)* Show short flag aliases before long - *(help)* Merge the short and long flag alias lists </details> <details> <summary>dagger/dagger (dagger-sdk)</summary> ### [`v0.18.9`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0189---2025-05-27) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.8...v0.18.9) ##### Added - New `gc.sweepSize` setting for `engine.json` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10420 \ This setting allows controlling how much data to clear in a single GC sweep. ##### Changed - Add `noCache` arg to `Host.directory` to auto reload contextual directories in persistent shell/prompt sessions by [@&#8203;cwlbraa](https://github.com/cwlbraa) in https://github.com/dagger/dagger/pull/10342 ##### Fixed - shell: fixed `_` prefix not being reserved for interpreter builtins by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10452 - shell: fixed parsing arguments with list of objects by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10441 ##### 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.8`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0188---2025-05-14) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.7...v0.18.8) ##### Fixed - llm: static tool scheme by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/10366 ##### 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.7`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0187---2025-05-13) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.6...v0.18.7) ##### Fixed - Ensure `git` API calls consistently respect proxy settings by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10352 - Lazily load LLM API keys by [@&#8203;cwlbraa](https://github.com/cwlbraa) in https://github.com/dagger/dagger/pull/10357 ##### Added - Add new optional parameters to `Query.http` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10317 - `name` allows overriding the filename to download - `permissions` allows setting the permissions on the resulting file - `authHeader` allows passing a secret in the `Authorization` HTTP header ##### 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.6`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0186---2025-05-06) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.5...v0.18.6) ##### 🔥 Breaking Changes - Cache URI-based secrets based on their plaintext value rather than the URI by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10311 \ Previously, the "cache key" for URI-based secrets (e.g. `env://FOO`, `file:///some/path`, etc.) was the URI string. This meant that operations including the secret (e.g. as an environment variable in a Container) would be cached based on the URI value. If two secrets from different clients had the same URI but different plaintext values, cache for operations that include them would be shared. In many cases, even when URIs were the same, the plaintext of secrets could be meaningfully different, which made this behavior surprising and lead to unexpected results. Now, URI-based secrets are cached based on secure hashes of their plaintext value. Two secrets that have the same URI but different plaintext values will be cached separately, and operations that include them will not share cache. However, there are cases where users do want secrets with different plaintexts to share cache, e.g. secrets that rotate in plaintext value frequently but aren't meaningfully different and thus shouldn't bust the cache of operations that include them. To continue supporting those use cases, there is a new optional `cacheKey` argument to `Secret` that can be used to specify a custom cache key. If provided, the cache key will be used instead of the default plaintext-based cache key, allowing any secrets sharing that cache-key to be cached together. SDKs can provide this as an optional argument to the `Secret` constructor. Other example usages: dagger shell: - `dagger shell -c "some-function --secret-arg $(secret env://FOO --cache-key my-cache-key)"` dagger call (supports a special syntax that sets the cache key via a query param in the URI): - `dagger call some-function --secret-arg env://FOO?cacheKey=my-cache-key` ##### Added - New `GitRepository.branches` API by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10250 - New `File` top-level field added to allow easier creation of `File` objects by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10290 ##### Fixed - `GitRepository.tags` `patterns` arg is now respected for local git repositories by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10250 - Return an error when a function argument conflicts with a persistent flag in `dagger call` by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10305 - Fix "failed to return error" and "failed to emit telemetry" errors when two identical functions execute at the same time and one client cancels the request by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10264 - Fix panic in vault secret provider when path exists but secret doesn't by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10311 - Fix panic when using `Container.build` with a Dockerfile that is `FROM scratch` by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10332 ##### 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.5`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0185---2025-04-25) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.4...v0.18.5) ##### Added - New `depth` arg to `GitRef.tree` to control the depth of a clone by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9980 - New `GitRef.ref` field for resolving the full ref string for a reference by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9980 ##### Fixed - Ensure consistent git state in `Git.tree` checkouts by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9980 - Fix cache invalidation of `withExec` when secrets created by `SetSecret` in function calls are included by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10260 - Fix handling of optional args in LLM by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/10254 - Fix handling of Python SDK modules using requirements.lock by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10252 ##### 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.4`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0184---2025-04-22) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.3...v0.18.4) ##### Fixed - shell: fixed relative paths in `Directory` and `File` flags by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10169 - Fix re-use of LLM config from other concurrently running dagger sessions by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10184 - Fix "session not found" errors when invoking modules by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10168 - Fix errors using `CurrentModule` API during SDK module initialization by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10213 - Fix caching of contextual directory args when multiple clients invoking the same function by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10187 - Fix "client not found" errors when loading cached modules from private repos by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10223 - Fix API authentication errors when calling `llm.withModel` from a module function by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10230 - Fix "buildkit session not found" errors when calling `.plaintext` on a URI-based secret from a module w/ cache hit by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10223 - Fixed error when `setSecret` provided empty plaintext value and passed between function calls by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10223 ##### Experimental - Experimental API methods are now all marked as such by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/10058 ##### 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.3`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0183---2025-04-14) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.2...v0.18.3) ##### Added - New `--recursive` flag for `dagger develop` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9860 - Add the ability to load a module without specifying an SDK by [@&#8203;grouville](https://github.com/grouville) and [@&#8203;tiborvass](https://github.com/tiborvass) in https://github.com/dagger/dagger/pull/9984 - Add support for skipping automatic init process when using `Container.build` and `Directory.dockerBuild` by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/10088 - Allow specifying `ttl` for local secret caching for vault by [@&#8203;rajatjindal](https://github.com/rajatjindal) in https://github.com/dagger/dagger/pull/9997 ##### Fixed - Fix error when parsing multi-line git config files by [@&#8203;marcosnils](https://github.com/marcosnils) in https://github.com/dagger/dagger/pull/10087 - Fix edge-case panic when attempting shell completion by [@&#8203;kasattejaswi](https://github.com/kasattejaswi) in https://github.com/dagger/dagger/pull/10125 ##### Experimental - Expose Dagger Core API as MCP tools by [@&#8203;grouville](https://github.com/grouville) and [@&#8203;tiborvass](https://github.com/tiborvass) in https://github.com/dagger/dagger/pull/10090 ##### 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.2`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0182---2025-04-04) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.1...v0.18.2) ##### Changed - shell: skip CSV flag parsing when spreading `with-exec` positional arguments by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10063 ##### Fixed - client: bump min connect timeout to 10s by [@&#8203;marcosnils](https://github.com/marcosnils) https://github.com/dagger/dagger/pull/10070 ##### 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.1`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0181---2025-04-01) [Compare Source](https://github.com/dagger/dagger/compare/v0.18.0...v0.18.1) ##### 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.0`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0180---2025-03-31) [Compare Source](https://github.com/dagger/dagger/compare/v0.17.2...v0.18.0) ##### Changed - use dockerignore files during docker build by [@&#8203;rajatjindal](https://github.com/rajatjindal) in https://github.com/dagger/dagger/pull/9857 ##### Fixed - Fixed an issue when reusing a variable with a pipeline, in the same run by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10018 - Fixed executing a dagger shell script from the root command by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/10020 ##### 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.17.2`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0172---2025-03-27) [Compare Source](https://github.com/dagger/dagger/compare/v0.17.1...v0.17.2) ##### Added - New `Directory.filter` API for improved ergonomics by [@&#8203;rajatjindal](https://github.com/rajatjindal) in https://github.com/dagger/dagger/pull/9976 \ This was previously possible by doing `Query.directory.withDirectory("", dir)`, but this breaks the chain. ##### Changed - Various LLM API changes and improvements to tool calling scheme by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/9956 ##### 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.17.1`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0171---2025-03-24) [Compare Source](https://github.com/dagger/dagger/compare/v0.17.0...v0.17.1) - BREAKING(llm): fix go sdk capitalization of "Llm" to "LLM" instead, consistent with engine code and the rest of the go ecosystem (https://github.com/dagger/dagger/pull/9933) - this will break compilation of modules referencing the LLM API like `dag.Llm`. To fix, simply change to `dag.LLM` - when prompting for remote module LLM access, error early in non-interactive situations where we would previously hang indefinitely. (https://github.com/dagger/dagger/pull/9957) ##### 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.17.0`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0170---2025-03-20) [Compare Source](https://github.com/dagger/dagger/compare/v0.16.3...v0.17.0) ##### Added - Stabilized Dagger Shell by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/9896 Find out more at <https://docs.dagger.io/features/shell/> - New top-level `LLM` API to allow integrating LLMs with native Dagger types in https://github.com/dagger/dagger/pull/9628 Find out more at <https://docs.dagger.io/ai-agents/> ##### Changed - The default unix socket used to connect to the engine is now at `/run/dagger/engine.sock` by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9866 \ The previous socket path still exists for backwards compatibility but may be removed in a future version. - Fields that return directory paths such as `Directory.glob` and `Directory.entries` now return a trailing slash to distinguish from regular files by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9118 ##### 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.16.3`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0163---2025-03-12) [Compare Source](https://github.com/dagger/dagger/compare/v0.16.2...v0.16.3) ##### Added - Add new `Directory.asGit` API for converting a directory into a git repository by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9730 - Allow CLI flags in `dagger call` for `GitRepository` and `GitRef` types by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9844 - Improved caching of `Container.asTarball` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9395 ##### Changed - Improved visualization of chains with content digests by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/9739 ##### Dependencies - Downgrade go to 1.23 by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9766 - This is due to a regression in go 1.24, see https://github.com/dagger/dagger/issues/9759 ##### 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.16.2`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0162---2025-02-27) [Compare Source](https://github.com/dagger/dagger/compare/v0.16.1...v0.16.2) ##### Added - Add `Directory.name` field to retrieve current directory name by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/9617 ##### Fixed - Fixed panic when `dagger call` or `dagger functions` called in directory with no modules - it now errors cleanly by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9658 - Improve load time when dagger commands run in directories with no `dagger.json` by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9659 - Fixed secret when using context directories from a private HTTPS module by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9697 ##### Dependencies - Bump go to 1.24 by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9673 ##### 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.16.1`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0161---2025-02-19) [Compare Source](https://github.com/dagger/dagger/compare/v0.16.0...v0.16.1) ##### Fixed - Fix typescript modules on arm64 using tsx for wrong platform by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9633 - Fix internal error `cannot sub-select 1th item from *dagql.PostCallTyped` by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9634 ##### 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.16.0`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0160---2025-02-19) [Compare Source](https://github.com/dagger/dagger/compare/v0.15.4...v0.16.0) ##### 🔥 Breaking Changes - To match automatic configuration, `insecure-entitlements` now includes `security.insecure` when configuring the engine manually by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9513 - Module load performance is improved and related API refactored by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9505 \ Loading of modules (the `load module` step shown in progress output) is faster now in many cases. In particular: - Cache utilization of module loading is greatly improved, which can decrease load times by up to a factor of 10 when re-calling functions after changing source code in a Daggerized repo. - Less extraneous files are loaded from the source repository Users of modules with large numbers of dependencies or in large git repositories are expected to see the most immediate benefit. For some concrete numbers, here are `load module` times for the `dagger-dev`'s module in Dagger's repository under different scenarios: - `dagger call --help` on new engines with an empty cache - v0.15.4: 1m20s - v0.16.0: 1m1s - \~23% faster - re-running `dagger call --help` with no file changes in the repo: - v0.15.4: 10.9s - v0.16.0: 2.8s - \~74% faster - re-running `dagger call --help` after making a change to a random source code file in the repo: - v0.15.4: 32.1s - v0.16.0: 2.8s - \~91% faster These improvements in cache utilization are also setup for future improvements not only in `load module` times but function call times more generally. This improvement comes with a few breaking changes that are not expected to impact most users. However, the changes require that users upgrade their CLI to v0.16.0 in order to connect to v0.16.0 engines. Older CLIs will error when connecting to newer engines. In terms of the breaking changes, impacted users are those who: - have function code that imports local libraries outside of the dagger module source directory - rely on a package manager configuration file (e.g. go.mod) that exists in a parent directory of the dagger module source directory They may need to update their dagger.json configuration file to add an explicit `"include"` setting to ensure those extra files or directories are loaded with the module. This is because numerous files previously implicitly loaded are now skipped by default, which contributes to the performance improvements. For example, if your module code is in `.dagger` and relies on the `go.mod` file in the parent directory, you would add the following to your `dagger.json` file: ```json { "include": ["../go.mod", "../go.sum"] } ``` The values in the `"include"` array are relative to the directory containing `dagger.json`. They can be also be glob patterns (e.g. `"**/*.txt"`). To explicitly exclude some files matched by a previous include pattern, you can prepend the include pattern with a `!` character (e.g. `"!**/foo.txt"`). - Previously, the `exclude` setting existed but has now been superseded by prefixing an include pattern with a `!` character. However, this is backwards-compatible, so existing `exclude` settings will be automatically turned into equivalent `!`-prefixed include settings when running `dagger develop`. No user intervention is needed. The core API's `ModuleSource` and `Module` types have also undergone some cleanup that includes breaking changes. Most users do not interact with these APIs, but any that do may need some minor adjustments to their code. In particular: - `Module.initialize` no longer needs to be called; the module is initialized on creation - `ResolveFromCaller` no longer needs to be called for local module sources; context is automatically loaded and resolved efficiently as needed by other API calls ##### Added - Allow tilde home expansion in `dag.Host` operations by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9610 ##### 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.15.4`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0154---2025-02-12) [Compare Source](https://github.com/dagger/dagger/compare/v0.15.3...v0.15.4) ##### Added - Move `dagger.json` `sdk` field to `sdk.source` by [@&#8203;rajatjindal](https://github.com/rajatjindal) in https://github.com/dagger/dagger/pull/9454 ##### Fixed - Fix various memory leaks in dagger engine by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9468 - Fix weird secret transfer errors when using context directories with private modules by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9530 - Cache function calls per-client in a session by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9483 ##### 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.15.3`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0153---2025-01-29) [Compare Source](https://github.com/dagger/dagger/compare/v0.15.2...v0.15.3) ##### Added - Add float support in the engine by [@&#8203;TomChv](https://github.com/TomChv) in https://github.com/dagger/dagger/pull/9396 \ Note: the precision of float is limited to float64 inside the engine. ##### Fixed - Fix incorrectly namespaced cache volumes by [@&#8203;jedevc](https://github.com/jedevc) and [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9400 and https://github.com/dagger/dagger/pull/9204 - Allow trailing slashes in destination directory in `Container.WithFiles` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9457 - Correctly resolve dependency context directories by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9418 - Improve initial engine startup time by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9430 - Allow automatic CA certificate provisioning to work in Wolfi containers by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9404 ##### Dependencies - OTEL bumped to v1.32.0 by [@&#8203;vito](https://github.com/vito) in https://github.com/dagger/dagger/pull/8991 - Modules that use old versions of the OTEL Go SDK may need to be manually updated. ##### 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.15.2`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0152---2025-01-14) [Compare Source](https://github.com/dagger/dagger/compare/v0.15.1...v0.15.2) ##### Added - New `dagger update` command to update dependencies in `dagger.json` by [@&#8203;rajatjindal](https://github.com/rajatjindal) in https://github.com/dagger/dagger/pull/8839 - Allow `$schema` property in `dagger.json` by [@&#8203;JacobLey](https://github.com/JacobLey) in https://github.com/dagger/dagger/pull/9069 ##### Changed - `CacheVolumes` are now namespaced between different modules by [@&#8203;rajatjindal](https://github.com/rajatjindal) in https://github.com/dagger/dagger/pull/8724 - Print `CACHED` operations for `--progress=plain` output by [@&#8203;marcosnils](https://github.com/marcosnils) in https://github.com/dagger/dagger/pull/9344 ##### Fixed - Provide a better out-of-the-box experience for `AsService` by [@&#8203;marcosnils](https://github.com/marcosnils) in https://github.com/dagger/dagger/pull/9247 - Prevent interactive terminal sessions from crashing in Windows terminal by [@&#8203;rajatjindal](https://github.com/rajatjindal) in https://github.com/dagger/dagger/pull/9244 - Allow using old dockerfile syntax pragmas by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9246 - Avoid frozen progress output when using `Container.terminal` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9338 - Ensure that `Container.up` behaves as identically as possible to `Container.AsService.up` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9231 - Ensure `dagger install` always inserts dependencies in the right order by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/9052 ##### 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.15.1`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0151---2024-12-12) [Compare Source](https://github.com/dagger/dagger/compare/v0.13.7...v0.15.1) ##### Fixed - Metrics display in the TUI is fixed to display for all executed containers, rather than just services by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/9171 ##### 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.13.7`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0137---2024-10-31) ##### Added - New `expect` arg for `Container.withExec` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/8466 \ This enum arg allows specifying valid return statuses for which the command can return without failing immediately. - New `Container.exitCode` field to get the exit code of the last `withExec` by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/8466 ##### Changed - Updated default cache policies to avoid consuming too much disk by [@&#8203;jedevc](https://github.com/jedevc) in https://github.com/dagger/dagger/pull/8725 \ The new policies attempt to co-operate with other applications using the disk and will adjust its cache usage accordingly. - cli: limit printing objects to state by [@&#8203;helderco](https://github.com/helderco) in https://github.com/dagger/dagger/pull/8788 \ Previously, when a function chain in `dagger call` ended in an object, we'd print all functions that return a simple value and don't have any arguments. Now, only object fields will be included, not all functions. ##### Fixed - Fix excessive cache invalidation of `withExec`s using the `ExperimentalPrivilegedNesting` flag by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/8776 ##### 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.11.9`](https://github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0119---2024-06-24) [Compare Source](https://github.com/dagger/dagger/compare/v0.9.8...v0.11.9) ##### Fixed - Fix engine local disk cache growing indefinitely by [@&#8203;sipsma](https://github.com/sipsma) in https://github.com/dagger/dagger/pull/7738 ##### 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>greyblake/envconfig-rs (envconfig)</summary> ### [`v0.11.0`](https://github.com/greyblake/envconfig-rs/blob/HEAD/CHANGELOG.md#v0110---2024-09-07) [Compare Source](https://github.com/greyblake/envconfig-rs/compare/v0.10.0...v0.11.0) - \[breaking] Nested config fields now needs to be marked with #\[envconfig(nested)] - Environment variable can be automatically derived from a field name (e.g. `db_host` will be tried to loaded from `DB_HOST` env var) - Add install step in README - Update `syn` dependency to 2.x.x </details> <details> <summary>rust-lang/git2-rs (git2)</summary> ### [`v0.20.2`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#0202---2025-05-05) [Compare Source](https://github.com/rust-lang/git2-rs/compare/git2-0.20.1...git2-0.20.2) [0.20.1...0.20.2](https://github.com/rust-lang/git2-rs/compare/git2-0.20.1...git2-0.20.2) ##### Added - Added `Status::WT_UNREADABLE`. [#&#8203;1151](https://github.com/rust-lang/git2-rs/pull/1151) ##### Fixed - Added missing codes for `GIT_EDIRECTORY`, `GIT_EMERGECONFLICT`, `GIT_EUNCHANGED`, `GIT_ENOTSUPPORTED`, and `GIT_EREADONLY` to `Error::raw_code`. [#&#8203;1153](https://github.com/rust-lang/git2-rs/pull/1153) - Fixed missing initialization in `Indexer::new`. [#&#8203;1160](https://github.com/rust-lang/git2-rs/pull/1160) ### [`v0.20.1`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#0201---2025-03-17) [Compare Source](https://github.com/rust-lang/git2-rs/compare/git2-0.20.0...git2-0.20.1) [0.20.0...0.20.1](https://github.com/rust-lang/git2-rs/compare/git2-0.20.0...git2-0.20.1) ##### Added - Added `Repository::branch_upstream_merge()` [#&#8203;1131](https://github.com/rust-lang/git2-rs/pull/1131) - Added `Index::conflict_get()` [#&#8203;1134](https://github.com/rust-lang/git2-rs/pull/1134) - Added `Index::conflict_remove()` [#&#8203;1133](https://github.com/rust-lang/git2-rs/pull/1133) - Added `opts::set_cache_object_limit()` [#&#8203;1118](https://github.com/rust-lang/git2-rs/pull/1118) - Added `Repo::merge_file_from_index()` and associated `MergeFileOptions` and `MergeFileResult`. [#&#8203;1062](https://github.com/rust-lang/git2-rs/pull/1062) ##### Changed - The `url` dependency minimum raised to 2.5.4 [#&#8203;1128](https://github.com/rust-lang/git2-rs/pull/1128) - Changed the tracing callback to abort the process if the callback panics instead of randomly detecting the panic in some other function. [#&#8203;1121](https://github.com/rust-lang/git2-rs/pull/1121) - Credential helper config (loaded with `CredentialHelper::config`) now checks for helpers that start with something that looks like an absolute path, rather than checking for a `/` or `\` anywhere in the helper string (which resolves an issue if the helper had arguments with `/` or `\`). [#&#8203;1137](https://github.com/rust-lang/git2-rs/pull/1137) ##### Fixed - Fixed panic in `Remote::url_bytes` if the url is empty. [#&#8203;1120](https://github.com/rust-lang/git2-rs/pull/1120) - Fixed incorrect lifetimes on `Patch::delta`, `Patch::hunk`, and `Patch::line_in_hunk`. The return values must not outlive the `Patch`. [#&#8203;1141](https://github.com/rust-lang/git2-rs/pull/1141) - Bumped requirement to libgit2-sys 0.18.1, which fixes linking of advapi32 on Windows. [#&#8203;1143](https://github.com/rust-lang/git2-rs/pull/1143) ### [`v0.20.0`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#0200---2025-01-04) [Compare Source](https://github.com/rust-lang/git2-rs/compare/git2-0.19.0...git2-0.20.0) [0.19.0...0.20.0](https://github.com/rust-lang/git2-rs/compare/git2-0.19.0...git2-0.20.0) ##### Added - `Debug` is now implemented for `transport::Service` [#&#8203;1074](https://github.com/rust-lang/git2-rs/pull/1074) - Added `Repository::commondir` [#&#8203;1079](https://github.com/rust-lang/git2-rs/pull/1079) - Added `Repository::merge_base_octopus` [#&#8203;1088](https://github.com/rust-lang/git2-rs/pull/1088) - Restored impls for `PartialOrd`, `Ord`, and `Hash` for bitflags types that were inadvertently removed in a prior release. [#&#8203;1096](https://github.com/rust-lang/git2-rs/pull/1096) - Added `CheckoutBuilder::disable_pathspec_match` [#&#8203;1107](https://github.com/rust-lang/git2-rs/pull/1107) - Added `PackBuilder::write` [#&#8203;1110](https://github.com/rust-lang/git2-rs/pull/1110) ##### Changed - ❗ Updated to libgit2 [1.9.0](https://github.com/libgit2/libgit2/releases/tag/v1.9.0) [#&#8203;1111](https://github.com/rust-lang/git2-rs/pull/1111) - ❗ Removed the `ssh_key_from_memory` Cargo feature, it was unused. [#&#8203;1087](https://github.com/rust-lang/git2-rs/pull/1087) - ❗ Errors from `Tree::walk` are now correctly reported to the caller. [#&#8203;1098](https://github.com/rust-lang/git2-rs/pull/1098) - ❗ The `trace_set` callback now takes a `&[u8]` instead of a `&str`. [#&#8203;1071](https://github.com/rust-lang/git2-rs/pull/1071) - ❗ `Error::last_error` now returns `Error` instead of `Option<Error>`. [#&#8203;1072](https://github.com/rust-lang/git2-rs/pull/1072) ##### Fixed - Fixed `OdbReader::read` return value. [#&#8203;1061](https://github.com/rust-lang/git2-rs/pull/1061) - When a credential helper executes a shell command, don't pop open a console window on Windows. [#&#8203;1075](https://github.com/rust-lang/git2-rs/pull/1075) ### [`v0.19.0`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#0190---2024-06-13) [Compare Source](https://github.com/rust-lang/git2-rs/compare/git2-0.18.3...git2-0.19.0) [0.18.3...0.19.0](https://github.com/rust-lang/git2-rs/compare/git2-0.18.3...git2-0.19.0) ##### Added - Added `opts` functions to control server timeouts (`get_server_connect_timeout_in_milliseconds`, `set_server_connect_timeout_in_milliseconds`, `get_server_timeout_in_milliseconds`, `set_server_timeout_in_milliseconds`), and add `ErrorCode::Timeout`. [#&#8203;1052](https://github.com/rust-lang/git2-rs/pull/1052) ##### Changed - ❗ Updated to libgit2 [1.8.1](https://github.com/libgit2/libgit2/releases/tag/v1.8.1) [#&#8203;1032](https://github.com/rust-lang/git2-rs/pull/1032) - Reduced size of the `Error` struct. [#&#8203;1053](https://github.com/rust-lang/git2-rs/pull/1053) ##### Fixed - Fixed some callbacks to relay the error from the callback to libgit2. [#&#8203;1043](https://github.com/rust-lang/git2-rs/pull/1043) </details> <details> <summary>mikaelmello/inquire (inquire)</summary> ### [`v0.7.5`](https://github.com/mikaelmello/inquire/blob/HEAD/CHANGELOG.md#075---2024-04-23) [Compare Source](https://github.com/mikaelmello/inquire/compare/v0.7.4...v0.7.5) - Fix user-provided ANSI escape codes from being removed when rendering. - Introduced on 0.7.0, this regression was making it impossible to have colorised text inside the prompt. - Now ANSI escape codes are properly emitted when rendering the prompt in the terminal. ### [`v0.7.4`](https://github.com/mikaelmello/inquire/blob/HEAD/CHANGELOG.md#074---2024-03-25) [Compare Source](https://github.com/mikaelmello/inquire/compare/v0.7.3...v0.7.4) - Fix unexpected behaviors of `keep_filter` option in MultiSelect prompts: - Filter input is now correcly getting reset **only when** `keep_filter == false`. - When the filter input is reset, the list of options is now correctly reset as well. Thanks [@&#8203;Swivelgames](https://github.com/Swivelgames) for reporting [#&#8203;238](https://github.com/mikaelmello/inquire/issues/238). ### [`v0.7.3`](https://github.com/mikaelmello/inquire/blob/HEAD/CHANGELOG.md#073---2024-03-21) [Compare Source](https://github.com/mikaelmello/inquire/compare/v0.7.2...v0.7.3) - Fix cursor occasionally blinking in unexpected places. ### [`v0.7.2`](https://github.com/mikaelmello/inquire/blob/HEAD/CHANGELOG.md#072---2024-03-17) [Compare Source](https://github.com/mikaelmello/inquire/compare/v0.7.1...v0.7.2) - Pressing Ctrl+D now cancels the prompt. Thanks [@&#8203;mikecvet](https://github.com/mikecvet) for the PR! - Add support for `h` and `l` bindings when vim_mode is enabled on MultiSelect prompts, clearing or selecting all options respectively. Thanks [@&#8203;afh](https://github.com/afh) for the PR! - Fix render issue [#&#8203;233](https://github.com/mikaelmello/inquire/issues/233) where cursor positioning at the end of a prompt was incorrect. Thanks [@&#8203;msrd0](https://github.com/msrd0) and [@&#8203;Sydonian](https://github.com/Sydonian) for reporting! ### [`v0.7.1`](https://github.com/mikaelmello/inquire/blob/HEAD/CHANGELOG.md#071---2024-03-10) [Compare Source](https://github.com/mikaelmello/inquire/compare/v0.7.0...v0.7.1) - Fix render issue [#&#8203;228](https://github.com/mikaelmello/inquire/pull/228) when using `console` crate as the terminal backend. Thanks [@&#8203;maospr](https://github.com/maospr) for reporting. ### [`v0.7.0`](https://github.com/mikaelmello/inquire/blob/HEAD/CHANGELOG.md#070---2024-02-24) [Compare Source](https://github.com/mikaelmello/inquire/compare/v0.6.2...v0.7.0) ##### Breaking Changes - The Select and Multiselect Filter now scores input and is now expected to return an `Option<i64>`, making it possible to order/rank the list of options. [#&#8203;176](https://github.com/mikaelmello/inquire/pull/176) `None`: Will not be displayed in the list of options. `Some(score)`: score determines the order of options, higher score, higher on the list of options. - Improved user experience on Password prompts. When there is a validation error, the input is cleared if the password is rendered using the `Hidden` display mode, matching the user expectation of having to write the password from scratch again. Thanks to [@&#8203;CM-IV](https://github.com/CM-IV) for the questions on [#&#8203;149](https://github.com/mikaelmello/inquire/issues/149)! - Allow lifetime customization of RenderConfig. [#&#8203;101](https://github.com/mikaelmello/inquire/pull/101). Thanks to [@&#8203;arturfast](https://github.com/arturfast) for the suggestion [#&#8203;95](https://github.com/mikaelmello/inquire/issues/95). - Implement fuzzy search as default on Select and MultiSelect prompts. [#&#8203;176](https://github.com/mikaelmello/inquire/pull/176) - Revamped keybindings for DateSelect. ##### Features - Add one-liner helpers for quick scripts. [#&#8203;144](https://github.com/mikaelmello/inquire/pull/144). - Add new option on MultiSelect prompts to set all options to be selected by default. Thanks to [@&#8203;conikeec](https://github.com/conikeec) for the suggestion ([#&#8203;151](https://github.com/mikaelmello/inquire/issues/151))! - Add new option on Select/MultiSelect prompts allowing to reset selection to the first item on filter-input changes. [#&#8203;176](https://github.com/mikaelmello/inquire/pull/176) - Emacs-like keybindings added where applicable: - Ctrl-p/Ctrl-n for up/down - Ctrl-b/Ctrl-f for left/right - Ctrl-j/Ctrl-g for enter/cancel - Vim keybindings are always supported in DateSelect prompts. - Added 'with_starting_filter_input' to both Select and MultiSelect, which allows for setting an initial value to the filter section of the prompt. - Added starting_input for CustomType. [#&#8203;194](https://github.com/mikaelmello/inquire/pull/194) - Added 'without_filtering' to both Select and MultiSelect, useful when you want to simplify the UX if the filter does not add any value, such as when the list is already short. - Added 'with_answered_prompt_prefix' to RenderConfig to allow customization of answered prompt prefix. - Improved rendering, with optimizations on incremental rendering and terminal resizing. ##### Fixes - Fixed typos in the code's comments. - Fixed issue where inquire, using termion, would crash when receiving piped inputs. ##### Dependency changes (some breaking) - Upgraded underlying `termion` crate from v1.5 to v2.0. - Upgraded underlying `bitflags` from v1 to v2, which affects the `Attributes` and `KeyModifiers` crates. If you use any of bitflag's methods directly, you might be affected, refer to the [bitflags changelog](https://github.com/bitflags/bitflags/releases/tag/2.0.0) for more information. - Removed `thiserror` dependency in favor of implementing `InquireError` by hand. [#&#8203;146](https://github.com/mikaelmello/inquire/issues/146) - Raised MSRV to 1.66 due to requirements in downstream dependencies. - MSRV is now explicitly set in the package definition. - Replaced `lazy_static` with `once_cell` as `once_cell::sync::Lazy` is being standardized and `lazy_static` is not actively maintained anymore. - Added `fuzzy-matcher` as an optional dependency for fuzzy filtering in Select and MultiSelect prompts [#&#8203;176](https://github.com/mikaelmello/inquire/pull/176) </details> <details> <summary>sfackler/rust-openssl (openssl)</summary> ### [`v0.10.73`](https://github.com/sfackler/rust-openssl/releases/tag/openssl-v0.10.73) [Compare Source](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.72...openssl-v0.10.73) #### What's Changed - test against openssl 3.5.0 by [@&#8203;alex](https://github.com/alex) in https://github.com/sfackler/rust-openssl/pull/2392 - Support Libressl 4.1 by [@&#8203;botovq](https://github.com/botovq) in https://github.com/sfackler/rust-openssl/pull/2398 - Release openssl-sys v0.9.108 by [@&#8203;alex](https://github.com/alex) in https://github.com/sfackler/rust-openssl/pull/2399 - Replace ctest2 with ctest by [@&#8203;botovq](https://github.com/botovq) in https://github.com/sfackler/rust-openssl/pull/2403 - fixed building on the latest boringssl by [@&#8203;alex](https://github.com/alex) in https://github.com/sfackler/rust-openssl/pull/2414 - Release openssl v0.10.73 and openssl-sys v0.9.109 by [@&#8203;alex](https://github.com/alex) in https://github.com/sfackler/rust-openssl/pull/2415 **Full Changelog**: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.72...openssl-v0.10.73 </details> <details> <summary>seanmonstar/reqwest (reqwest)</summary> ### [`v0.12.18`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01218) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.17...v0.12.18) - Fix compilation when `socks` enabled without TLS. ### [`v0.12.17`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01217) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.16...v0.12.17) - Fix compilation on macOS. ### [`v0.12.16`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01216) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.15...v0.12.16) - Add `ClientBuilder::http3_congestion_bbr()` to enable BBR congestion control. - Add `ClientBuilder::http3_send_grease()` to configure whether to send use QUIC grease. - Add `ClientBuilder::http3_max_field_section_size()` to configure the maximum response headers. - Add `ClientBuilder::tcp_keepalive_interval()` to configure TCP probe interval. - Add `ClientBuilder::tcp_keepalive_retries()` to configure TCP probe count. - Add `Proxy::headers()` to add extra headers that should be sent to a proxy. - Fix `redirect::Policy::limit()` which had an off-by-1 error, allowing 1 more redirect than specified. - Fix HTTP/3 to support streaming request bodies. - (wasm) Fix null bodies when calling `Response::bytes_stream()`. ### [`v0.12.15`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01215) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.14...v0.12.15) - Fix Windows to support both `ProxyOverride` and `NO_PROXY`. - Fix http3 to support streaming response bodies. - Fix http3 dependency from public API misuse. ### [`v0.12.14`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01214) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.13...v0.12.14) - Fix missing `fetch_mode_no_cors()`, marking as deprecated when not on WASM. ### [`v0.12.13`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01213) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.12...v0.12.13) - Add `Form::into_reader()` for blocking `multipart` forms. - Add `Form::into_stream()` for async `multipart` forms. - Add support for SOCKS4a proxies. - Fix decoding responses with multiple zstd frames. - Fix `RequestBuilder::form()` from overwriting a previously set `Content-Type` header, like the other builder methods. - Fix cloning of request timeout in `blocking::Request`. - Fix http3 synchronization of connection creation, reducing unneccesary extra connections. - Fix Windows system proxy to use `ProxyOverride` as a `NO_PROXY` value. - Fix blocking read to correctly reserve and zero read buffer. - (wasm) Add support for request timeouts. - (wasm) Fix `Error::is_timeout()` to return true when from a request timeout. ### [`v0.12.12`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01212) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.11...v0.12.12) - (wasm) Fix compilation by not compiler `tokio/time` on WASM. ### [`v0.12.11`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01211) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.10...v0.12.11) - Fix decompression returning an error when HTTP/2 ends with an empty data frame. ### [`v0.12.10`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01210) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.9...v0.12.10) - Add `ClientBuilder::connector_layer()` to allow customizing the connector stack. - Add `ClientBuilder::http2_max_header_list_size()` option. - Fix propagating body size hint (`content-length`) information when wrapping bodies. - Fix decompression of chunked bodies so the connections can be reused more often. ### [`v0.12.9`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0129) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.8...v0.12.9) - Add `tls::CertificateRevocationLists` support. - Add crate features to enable webpki roots without selecting a rustls provider. - Fix `connection_verbose()` to output read logs. - Fix `multipart::Part::file()` to automatically include content-length. - Fix proxy to internally no longer cache system proxy settings. ### [`v0.12.8`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0128) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.7...v0.12.8) - Add support for SOCKS4 proxies. - Add `multipart::Form::file()` method for adding files easily. - Add `Body::wrap()` to wrap any `http_body::Body` type. - Fix the pool configuration to use a timer to remove expired connections. ### [`v0.12.7`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0127) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.6...v0.12.7) - Revert adding `impl Service<http::Request<_>>` for `Client`. ### [`v0.12.6`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0126) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.6) - Add support for `danger_accept_invalid_hostnames` for `rustls`. - Add `impl Service<http::Request<Body>>` for `Client` and `&'_ Client`. - Add support for `!Sync` bodies in `Body::wrap_stream()`. - Enable happy eyeballs when `hickory-dns` is used. - Fix `Proxy` so that `HTTP(S)_PROXY` values take precedence over `ALL_PROXY`. - Fix `blocking::RequestBuilder::header()` from unsetting `sensitive` on passed header values. ### [`v0.12.5`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0125) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.4...v0.12.5) - Add `blocking::ClientBuilder::dns_resolver()` method to change DNS resolver in blocking client. - Add `http3` feature back, still requiring `reqwest_unstable`. - Add `rustls-tls-no-provider` Cargo feature to use rustls without a crypto provider. - Fix `Accept-Encoding` header combinations. - Fix http3 resolving IPv6 addresses. - Internal: upgrade to rustls 0.23. ### [`v0.12.4`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0124) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.3...v0.12.4) - Add `zstd` support, enabled with `zstd` Cargo feature. - Add `ClientBuilder::read_timeout(Duration)`, which applies the duration for each read operation. The timeout resets after a successful read. ### [`v0.12.3`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0123) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.2...v0.12.3) - Add `FromStr` for `dns::Name`. - Add `ClientBuilder::built_in_webpki_certs(bool)` to enable them separately. - Add `ClientBuilder::built_in_native_certs(bool)` to enable them separately. - Fix sending `content-length: 0` for GET requests. - Fix response body `content_length()` to return value when timeout is configured. - Fix `ClientBuilder::resolve()` to use lowercase domain names. ### [`v0.12.2`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0122) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.1...v0.12.2) - Fix missing ALPN when connecting to socks5 proxy with rustls. - Fix TLS version limits with rustls. - Fix not detected ALPN h2 from server with native-tls. ### [`v0.12.1`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01218) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.0...v0.12.1) - Fix compilation when `socks` enabled without TLS. ### [`v0.12.0`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0120) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.11.27...v0.12.0) - Upgrade to `hyper`, `http`, and `http-body` v1. - Add better support for converting to and from `http::Request` and `http::Response`. - Add `http2` optional cargo feature, default on. - Add `charset` optional cargo feature, default on. - Add `macos-system-configuration` cargo feature, default on. - Change all optional dependencies to no longer be exposed as implicit features. - Add `ClientBuilder::interface(str)` to specify the local interface to bind to. - Experimental: disables the `http3` feature temporarily. #### v0.11.27 - Add `hickory-dns` feature, deprecating `trust-dns`. - (wasm) Fix `Form::text()` to not set octet-stream for plain text fields. #### v0.11.26 - Revert `system-configuration` upgrade, which broke MSRV on macOS. #### v0.11.25 - Fix `Certificate::from_pem_bundle()` parsing. - Fix Apple linker errors from detecting system proxies. #### v0.11.24 - Add `Certificate::from_pem_bundle()` to add a bundle. - Add `http3_prior_knowledge()` to blocking client builder. - Remove `Sync` bounds requirement for `Body::wrap_stream()`. - Fix HTTP/2 to retry `REFUSED_STREAM` requests. - Fix instances of converting `Url` to `Uri` that could panic. #### v0.11.23 - Add `Proxy::custom_http_auth(val)` for setting the raw `Proxy-Authorization` header when connecting to proxies. - Fix redirect to reject locations that are not `http://` or `https://`. - Fix setting `nodelay` when TLS is enabled but URL is HTTP. - (wasm) Add `ClientBuilder::user_agent(val)`. - (wasm) add `multipart::Form::headers(headers)`. #### v0.11.22 - Fix compilation on Windows when `trust-dns` is enabled. #### v0.11.21 - Add automatically detecting macOS proxy settings. - Add `ClientBuilder::tls_info(bool)`, which will put `tls::TlsInfo` into the response extensions. - Fix trust-dns resolver from possible hangs. - Fix connect timeout to be split among multiple IP addresses. #### v0.11.20 - Fix `deflate` decompression back to using zlib, as outlined in the spec. #### v0.11.19 - Add `ClientBuilder::http1_ignore_invalid_headers_in_responses()` option. - Add `ClientBuilder::http1_allow_spaces_after_header_name_in_responses()` option. - Add support for `ALL_PROXY` environment variable. - Add support for `use_preconfigured_tls` when combined with HTTP/3. - Fix `deflate` decompression from using the zlib decoder. - Fix `Response::{text, text_with_charset}()` to strip BOM characters. - Fix a panic when HTTP/3 is used if UDP isn't able to connect. - Fix some dependencies for HTTP/3. - Increase MSRV to 1.63. #### v0.11.18 - Fix `RequestBuilder::json()` method from overriding a previously set `content-type` header. An existing value will be left in place. - Upgrade internal dependencies for rustls and compression. #### v0.11.17 - Upgrade internal dependencies of Experimental HTTP/3 to use quinn v0.9 - (wasm) Fix blob url support #### v0.11.16 - Chore: set MSRV in `Cargo.toml`. - Docs: fix build on docs.rs #### v0.11.15 - Add `RequestBuilder` methods to split and reconstruct from its parts. - Add experimental HTTP/3 support. - Fix `connection_verbose` to log `write_vectored` calls. - (wasm) Make requests actually cancel if the future is dropped. #### v0.11.14 - Adds `Proxy::no_proxy(url)` that works like the NO_PROXY environment variable. - Adds `multipart::Part::headers(headers)` method to add custom headers. - (wasm) Add `Response::bytes_stream()`. - Perf: several internal optimizations reducing copies and memory allocations. #### v0.11.13 - Add `ClientBuilder::dns_resolver()` option for custom DNS resolvers. - Add `ClientBuilder::tls_sni(bool)` option to enable or disable TLS Server Name Indication. - Add `Identity::from_pkcs8_pem()` constructor when using `native-tls`. - Fix `redirect::Policy::limited(0)` from following any redirects. #### v0.11.12 - Add `ClientBuilder::resolve_to_addrs()` which allows a slice of IP addresses to be specified for a single host. - Add `Response::upgrade()` to await whether the server agrees to an HTTP upgrade. #### v0.11.11 - Add HTTP/2 keep-alive configuration methods on `ClientBuilder`. - Add `ClientBuilder::http1_allow_obsolete_multiline_headers_in_responses()`. - Add `impl Service<Request>` for `Client` and `&'_ Client`. - (wasm) Add `RequestBuilder::basic_auth()`. - Fix `RequestBuilder::header` to not override `sensitive` if user explicitly set on a `HeaderValue`. - Fix rustls parsing of elliptic curve private keys. - Fix Proxy URL parsing of some invalid targets. #### v0.11.10 - Add `Error::url()` to access the URL of an error. - Add `Response::extensions()` to access the `http::Extensions` of a response. - Fix `rustls-native-certs` to log an error instead of panicking when loading an invalid system certificate. - Fix passing Basic Authorization header to proxies. #### v0.11.9 - Add `ClientBuilder::http09_responses(bool)` option to allow receiving HTTP/0.9 responses. - Fix HTTP/2 to retry requests interrupted by an HTTP/2 graceful shutdown. - Fix proxy loading from environment variables to ignore empty values. #### v0.11.8 - Update internal webpki-roots dependency. #### v0.11.7 - Add `blocking::ClientBuilder::resolve()` option, matching the async builder. - Implement `From<tokio::fs::File>` for `Body`. - Fix `blocking` request-scoped timeout applying to bodies as well. - (wasm) Fix request bodies using multipart vs formdata. - Update internal `rustls` to 0.20. #### v0.11.6 - (wasm) Fix request bodies more. #### v0.11.5 - Add `ClientBuilder::http1_only()` method. - Add `tls::Version` type, and `ClientBuilder::min_tls_version()` and `ClientBuilder::max_tls_version()` methods. - Implement `TryFrom<Request>` for `http::Request`. - Implement `Clone` for `Identity`. - Fix `NO_PROXY`environment variable parsing to more closely match curl's. Comma-separated entries are now trimmed for whitespace, and `*` is allowed to match everything. - Fix redirection to respect `https_only` option. - (wasm) Add `Body::as_bytes()` method. - (wasm) Fix sometimes wrong conversation of bytes into a `JsValue`. - (wasm) Avoid dependency on serde-serialize feature. #### v0.11.4 - Add `ClientBuilder::resolve()` option to override DNS resolution for specific domains. - Add `native-tls-alpn` Cargo feature to use ALPN with the native-tls backend. - Add `ClientBuilder::deflate()` option and `deflate` Cargo feature to support decoding response bodies using deflate. - Add `RequestBuilder::version()` to allow setting the HTTP version of a request. - Fix allowing "invalid" certificates with the `rustls-tls` backend, when the server uses TLS v1.2 or v1.3. - (wasm) Add `try_clone` to `Request` and `RequestBuilder` #### v0.11.3 - Add `impl From<hyper::Body> for reqwest::Body`. - (wasm) Add credentials mode methods to `RequestBuilder`. #### v0.11.2 - Add `CookieStore` trait to customize the type that stores and retrieves cookies for a session. - Add `cookie::Jar` as a default `CookieStore`, easing creating some session cookies before creating the `Client`. - Add `ClientBuilder::http2_adaptive_window()` option to configure an adaptive HTTP2 flow control behavior. - Add `ClientBuilder::http2_max_frame_size()` option to adjust the maximum HTTP2 frame size that can be received. - Implement `IntoUrl` for `String`, making it more convenient to create requests with `format!`. #### v0.11.1 - Add `ClientBuilder::tls_built_in_root_certs()` option to disable built-in root certificates. - Fix `rustls-tls` glue to more often support ALPN to upgrade to HTTP/2. - Fix proxy parsing to assume `http://` if no scheme is found. - Fix connection pool idle reaping by enabling hyper's `runtime` feature. - (wasm) Add `Request::new()` constructor. </details> <details> <summary>mlua-rs/rlua (rlua)</summary> ### [`v0.20.1`](https://github.com/mlua-rs/rlua/blob/HEAD/CHANGELOG.md#0201) [Compare Source](https://github.com/mlua-rs/rlua/compare/v0.20.0...0.20.1) - Add "deprecated" badge ### [`v0.20.0`](https://github.com/mlua-rs/rlua/blob/HEAD/CHANGELOG.md#0200) [Compare Source](https://github.com/mlua-rs/rlua/compare/v0.19.8...v0.20.0) - Switch to being a wrapper around mlua </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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
kjuulh force-pushed renovate/all from 72a44d2f82 to d091a5cc88 2024-02-08 19:12:43 +01:00 Compare
kjuulh changed title from fix(deps): update rust crate rlua to 0.20.0 to fix(deps): update all dependencies 2024-02-08 19:12:43 +01:00
kjuulh force-pushed renovate/all from d091a5cc88 to e0fcdaa569 2024-02-16 15:06:11 +01:00 Compare
kjuulh force-pushed renovate/all from e0fcdaa569 to 8f5891b6ef 2024-02-19 06:16:06 +01:00 Compare
kjuulh force-pushed renovate/all from 8f5891b6ef to fff1f0ee50 2024-02-19 07:37:45 +01:00 Compare
kjuulh force-pushed renovate/all from fff1f0ee50 to 3adff2b20d 2024-02-19 22:39:53 +01:00 Compare
kjuulh force-pushed renovate/all from 3adff2b20d to 2e28aa7657 2024-02-20 02:43:34 +01:00 Compare
kjuulh force-pushed renovate/all from 2e28aa7657 to 97eb5d75d7 2024-02-24 07:32:36 +01:00 Compare
kjuulh force-pushed renovate/all from 97eb5d75d7 to a2901b8967 2024-02-26 23:56:47 +01:00 Compare
kjuulh force-pushed renovate/all from a2901b8967 to bd4a331ae4 2024-02-28 22:28:09 +01:00 Compare
kjuulh force-pushed renovate/all from bd4a331ae4 to ea26cdf7a2 2024-03-01 19:04:14 +01:00 Compare
kjuulh force-pushed renovate/all from ea26cdf7a2 to 16d319552d 2024-03-06 18:16:49 +01:00 Compare
kjuulh force-pushed renovate/all from 16d319552d to dc628304e6 2024-03-09 21:15:29 +01:00 Compare
kjuulh force-pushed renovate/all from dc628304e6 to bcd1a95f38 2024-03-11 00:55:00 +01:00 Compare
kjuulh force-pushed renovate/all from bcd1a95f38 to 306d83471f 2024-03-12 04:14:33 +01:00 Compare
kjuulh force-pushed renovate/all from 306d83471f to a201d404c9 2024-03-12 09:22:31 +01:00 Compare
kjuulh force-pushed renovate/all from a201d404c9 to 8f13396c41 2024-03-15 14:30:40 +01:00 Compare
kjuulh force-pushed renovate/all from 8f13396c41 to bf425a5309 2024-03-17 07:43:35 +01:00 Compare
kjuulh force-pushed renovate/all from bf425a5309 to 6ea0c5d991 2024-03-17 16:27:58 +01:00 Compare
kjuulh force-pushed renovate/all from 6ea0c5d991 to 28572bc264 2024-03-19 17:10:28 +01:00 Compare
kjuulh force-pushed renovate/all from 28572bc264 to 558a551a1e 2024-03-20 17:46:52 +01:00 Compare
kjuulh force-pushed renovate/all from 558a551a1e to f2f7c731c7 2024-03-21 16:16:44 +01:00 Compare
kjuulh force-pushed renovate/all from f2f7c731c7 to 3bc1a1f0ab 2024-03-21 21:15:48 +01:00 Compare
kjuulh force-pushed renovate/all from 3bc1a1f0ab to a999b8068f 2024-03-25 01:59:24 +01:00 Compare
kjuulh force-pushed renovate/all from a999b8068f to e770a19da4 2024-03-25 06:12:58 +01:00 Compare
kjuulh force-pushed renovate/all from e770a19da4 to 7cadb99222 2024-03-25 22:45:04 +01:00 Compare
kjuulh force-pushed renovate/all from 7cadb99222 to ec5e5ac899 2024-03-26 07:36:22 +01:00 Compare
kjuulh force-pushed renovate/all from ec5e5ac899 to 6bd3a95b60 2024-03-28 18:28:50 +01:00 Compare
kjuulh force-pushed renovate/all from 6bd3a95b60 to ac9cdf7e60 2024-04-10 06:35:59 +02:00 Compare
kjuulh force-pushed renovate/all from ac9cdf7e60 to 2ba6f4457e 2024-04-16 08:15:23 +02:00 Compare
kjuulh force-pushed renovate/all from 2ba6f4457e to a0de23c953 2024-04-17 00:07:39 +02:00 Compare
kjuulh force-pushed renovate/all from a0de23c953 to 15405bdef7 2024-04-23 06:21:09 +02:00 Compare
kjuulh force-pushed renovate/all from 15405bdef7 to 4c1125be95 2024-04-27 07:11:44 +02:00 Compare
kjuulh force-pushed renovate/all from 4c1125be95 to a657cfc99c 2024-05-01 18:43:10 +02:00 Compare
kjuulh force-pushed renovate/all from a657cfc99c to 3beec5794e 2024-05-04 20:35:14 +02:00 Compare
kjuulh force-pushed renovate/all from 3beec5794e to e6efe4e9a4 2024-05-06 20:26:01 +02:00 Compare
kjuulh force-pushed renovate/all from e6efe4e9a4 to 37edc65f73 2024-05-08 02:47:28 +02:00 Compare
kjuulh force-pushed renovate/all from 37edc65f73 to 52b0901047 2024-05-15 10:01:15 +02:00 Compare
kjuulh force-pushed renovate/all from 52b0901047 to 89222384d8 2024-05-17 08:25:42 +02:00 Compare
kjuulh force-pushed renovate/all from 89222384d8 to 31f316117a 2024-05-17 11:22:52 +02:00 Compare
kjuulh force-pushed renovate/all from 31f316117a to 759b61d3e0 2024-05-17 20:24:31 +02:00 Compare
kjuulh force-pushed renovate/all from 759b61d3e0 to c7671875ec 2024-05-18 00:47:51 +02:00 Compare
kjuulh force-pushed renovate/all from c7671875ec to d6ec5b88da 2024-05-18 14:32:31 +02:00 Compare
kjuulh force-pushed renovate/all from d6ec5b88da to d4ea46cfb5 2024-05-23 22:01:49 +02:00 Compare
kjuulh force-pushed renovate/all from d4ea46cfb5 to be7e081004 2024-05-24 17:38:22 +02:00 Compare
kjuulh force-pushed renovate/all from be7e081004 to c359048af0 2024-05-24 20:41:04 +02:00 Compare
kjuulh force-pushed renovate/all from c359048af0 to f58faa286d 2024-05-25 21:09:44 +02:00 Compare
kjuulh force-pushed renovate/all from f58faa286d to 1f60873e21 2024-05-25 21:42:20 +02:00 Compare
kjuulh force-pushed renovate/all from 1f60873e21 to df4def0807 2024-07-06 15:30:04 +02:00 Compare
kjuulh force-pushed renovate/all from df4def0807 to d840db869b 2024-08-21 22:48:01 +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 cuddle/Cargo.toml --package dirs@5.0.1 --precise 6.0.0
    Updating crates.io index
error: failed to select a version for the requirement `dirs = "^5.0.1"`
candidate versions found which didn't match: 6.0.0
location searched: crates.io index
required by package `dagger-sdk v0.18.9`
    ... which satisfies dependency `dagger-sdk = "^0.18.0"` (locked to 0.18.9) of package `ci v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/cuddle/ci)`

### ⚠️ 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 cuddle/Cargo.toml --package dirs@5.0.1 --precise 6.0.0 Updating crates.io index error: failed to select a version for the requirement `dirs = "^5.0.1"` candidate versions found which didn't match: 6.0.0 location searched: crates.io index required by package `dagger-sdk v0.18.9` ... which satisfies dependency `dagger-sdk = "^0.18.0"` (locked to 0.18.9) of package `ci v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/cuddle/ci)` ```
kjuulh force-pushed renovate/all from d840db869b to 1b954c2c4f 2024-08-22 00:21:45 +02:00 Compare
kjuulh force-pushed renovate/all from 1b954c2c4f to 6405436e0b 2024-08-22 01:23:06 +02:00 Compare
kjuulh force-pushed renovate/all from 6405436e0b to 471ef46ba2 2024-08-22 02:01:40 +02:00 Compare
kjuulh force-pushed renovate/all from 471ef46ba2 to 473b8f6188 2024-08-22 02:40:21 +02:00 Compare
kjuulh force-pushed renovate/all from 473b8f6188 to 4a4118da3b 2024-08-22 03:16:15 +02:00 Compare
kjuulh force-pushed renovate/all from 4a4118da3b to 3d1227f4a6 2024-08-22 03:47:17 +02:00 Compare
kjuulh force-pushed renovate/all from 3d1227f4a6 to 7c4b01992a 2024-08-22 04:16:29 +02:00 Compare
kjuulh force-pushed renovate/all from 7c4b01992a to 347abffb29 2024-08-22 04:47:00 +02:00 Compare
kjuulh force-pushed renovate/all from 347abffb29 to 492c9c9f37 2024-08-22 05:18:25 +02:00 Compare
kjuulh force-pushed renovate/all from 492c9c9f37 to 958cf25f2b 2024-08-22 05:49:27 +02:00 Compare
kjuulh force-pushed renovate/all from 958cf25f2b to e5732a9659 2024-08-22 06:18:53 +02:00 Compare
kjuulh force-pushed renovate/all from e5732a9659 to e36847a5cd 2024-08-22 06:58:05 +02:00 Compare
kjuulh force-pushed renovate/all from e36847a5cd to f0a98f7445 2024-08-22 07:28:14 +02:00 Compare
kjuulh force-pushed renovate/all from f0a98f7445 to 07c5b358b5 2024-08-22 07:59:11 +02:00 Compare
kjuulh force-pushed renovate/all from 07c5b358b5 to 3997c510a3 2024-08-22 08:30:18 +02:00 Compare
kjuulh force-pushed renovate/all from 3997c510a3 to a5518015b0 2024-08-22 09:10:06 +02:00 Compare
kjuulh force-pushed renovate/all from a5518015b0 to c7f13ad038 2024-08-22 09:51:41 +02:00 Compare
kjuulh force-pushed renovate/all from c7f13ad038 to 0d9e98a22a 2024-08-22 10:35:38 +02:00 Compare
kjuulh force-pushed renovate/all from 0d9e98a22a to d224a24112 2024-08-22 11:21:32 +02:00 Compare
kjuulh force-pushed renovate/all from d224a24112 to a679feca4e 2024-08-22 12:19:46 +02:00 Compare
kjuulh force-pushed renovate/all from a679feca4e to b2bcd71c25 2024-08-22 13:13:16 +02:00 Compare
kjuulh force-pushed renovate/all from b2bcd71c25 to 50ad723f5b 2024-08-22 13:43:22 +02:00 Compare
kjuulh force-pushed renovate/all from 50ad723f5b to ce2974c24a 2024-08-22 14:22:22 +02:00 Compare
kjuulh force-pushed renovate/all from ce2974c24a to 1793fd62f8 2024-08-22 15:03:16 +02:00 Compare
kjuulh force-pushed renovate/all from 1793fd62f8 to e524738843 2024-08-22 15:46:32 +02:00 Compare
kjuulh force-pushed renovate/all from e524738843 to 43e49ec386 2024-08-22 16:28:42 +02:00 Compare
kjuulh force-pushed renovate/all from 43e49ec386 to 3e013ee73e 2024-08-22 17:13:39 +02:00 Compare
kjuulh force-pushed renovate/all from 3e013ee73e to 947bc81bb8 2024-08-22 17:49:41 +02:00 Compare
kjuulh force-pushed renovate/all from 947bc81bb8 to 5c5dac5800 2024-08-22 18:17:22 +02:00 Compare
kjuulh force-pushed renovate/all from 5c5dac5800 to 2e8bd95cc1 2024-08-22 19:02:29 +02:00 Compare
kjuulh force-pushed renovate/all from 2e8bd95cc1 to 2754c33d54 2024-08-22 19:41:04 +02:00 Compare
kjuulh force-pushed renovate/all from 2754c33d54 to 8f287b2bfb 2024-08-22 20:18:15 +02:00 Compare
kjuulh force-pushed renovate/all from 8f287b2bfb to 3e1af1bfc8 2024-08-22 20:52:12 +02:00 Compare
kjuulh force-pushed renovate/all from 3e1af1bfc8 to f1bb8e33ed 2024-08-22 21:27:10 +02:00 Compare
kjuulh force-pushed renovate/all from f1bb8e33ed to d96fb0a627 2024-08-22 22:02:42 +02:00 Compare
kjuulh force-pushed renovate/all from d96fb0a627 to fe1ee3b764 2024-08-22 22:37:44 +02:00 Compare
kjuulh force-pushed renovate/all from fe1ee3b764 to 4564323d2c 2024-08-22 23:12:24 +02:00 Compare
kjuulh force-pushed renovate/all from 4564323d2c to db03e25614 2024-08-22 23:47:04 +02:00 Compare
kjuulh force-pushed renovate/all from db03e25614 to 66ff4f3c4d 2024-08-23 00:18:19 +02:00 Compare
kjuulh force-pushed renovate/all from 66ff4f3c4d to 88f822f0a2 2024-08-23 01:07:15 +02:00 Compare
kjuulh force-pushed renovate/all from 88f822f0a2 to bde6abbbff 2024-08-23 01:41:33 +02:00 Compare
kjuulh force-pushed renovate/all from bde6abbbff to be61ddfc65 2024-08-23 02:16:40 +02:00 Compare
kjuulh force-pushed renovate/all from be61ddfc65 to 2e18ca355c 2024-08-23 02:50:54 +02:00 Compare
kjuulh force-pushed renovate/all from 2e18ca355c to 5b1420cdfe 2024-08-23 03:26:15 +02:00 Compare
kjuulh force-pushed renovate/all from 5b1420cdfe to bd3140469a 2024-08-23 03:58:54 +02:00 Compare
kjuulh force-pushed renovate/all from bd3140469a to 1bf3b3f0b0 2024-08-23 04:32:59 +02:00 Compare
kjuulh force-pushed renovate/all from 1bf3b3f0b0 to 5aa5ccda50 2024-08-23 05:07:32 +02:00 Compare
kjuulh force-pushed renovate/all from 5aa5ccda50 to ffc3be541a 2024-08-23 05:42:33 +02:00 Compare
kjuulh force-pushed renovate/all from ffc3be541a to c398b2cbb9 2024-08-23 06:18:04 +02:00 Compare
kjuulh force-pushed renovate/all from c398b2cbb9 to b8e5bed497 2024-08-23 07:01:54 +02:00 Compare
kjuulh force-pushed renovate/all from b8e5bed497 to 0b0225b169 2024-08-23 07:36:27 +02:00 Compare
kjuulh force-pushed renovate/all from 0b0225b169 to e79f190673 2024-08-23 08:11:25 +02:00 Compare
kjuulh force-pushed renovate/all from e79f190673 to 774f99fe35 2024-08-23 08:45:36 +02:00 Compare
kjuulh force-pushed renovate/all from 774f99fe35 to f5a2b19912 2024-08-23 09:21:15 +02:00 Compare
kjuulh force-pushed renovate/all from f5a2b19912 to b59602a55e 2024-08-23 09:55:10 +02:00 Compare
kjuulh force-pushed renovate/all from b59602a55e to 138f83877e 2024-08-23 10:29:08 +02:00 Compare
kjuulh force-pushed renovate/all from 138f83877e to f920ec0869 2024-08-23 11:02:46 +02:00 Compare
kjuulh force-pushed renovate/all from f920ec0869 to 7600f0a8b0 2024-08-23 11:36:45 +02:00 Compare
kjuulh force-pushed renovate/all from 7600f0a8b0 to 512eba6bbf 2024-08-23 12:16:57 +02:00 Compare
kjuulh force-pushed renovate/all from 512eba6bbf to 2da1dba686 2024-08-23 12:58:36 +02:00 Compare
kjuulh force-pushed renovate/all from 2da1dba686 to c75d30d93d 2024-08-23 13:32:19 +02:00 Compare
kjuulh force-pushed renovate/all from c75d30d93d to 9deb62d1df 2024-08-23 14:07:11 +02:00 Compare
kjuulh force-pushed renovate/all from 9deb62d1df to cf2c550c89 2024-08-23 14:40:45 +02:00 Compare
kjuulh force-pushed renovate/all from cf2c550c89 to cd07ce6484 2024-08-23 15:14:46 +02:00 Compare
kjuulh force-pushed renovate/all from cd07ce6484 to d33b4f44e4 2024-08-23 15:48:36 +02:00 Compare
kjuulh force-pushed renovate/all from d33b4f44e4 to 6015326cfe 2024-08-23 16:23:28 +02:00 Compare
kjuulh force-pushed renovate/all from 6015326cfe to cfba1c712b 2024-08-23 16:57:48 +02:00 Compare
kjuulh force-pushed renovate/all from cfba1c712b to 06e43d9a4d 2024-08-23 17:33:19 +02:00 Compare
kjuulh force-pushed renovate/all from 06e43d9a4d to 7b34695818 2024-08-23 18:17:19 +02:00 Compare
kjuulh force-pushed renovate/all from 7b34695818 to baa01390f5 2024-08-23 19:00:37 +02:00 Compare
kjuulh force-pushed renovate/all from baa01390f5 to db2b169e74 2024-08-23 19:35:25 +02:00 Compare
kjuulh force-pushed renovate/all from db2b169e74 to 048dd8f813 2024-08-23 20:10:13 +02:00 Compare
kjuulh force-pushed renovate/all from 048dd8f813 to ec3465b8bd 2024-08-23 20:44:49 +02:00 Compare
kjuulh force-pushed renovate/all from ec3465b8bd to c869d17938 2024-08-23 21:20:14 +02:00 Compare
kjuulh force-pushed renovate/all from c869d17938 to d57e074ef6 2024-08-23 21:54:55 +02:00 Compare
kjuulh force-pushed renovate/all from d57e074ef6 to d9fc5ed5dc 2024-08-23 22:33:08 +02:00 Compare
kjuulh force-pushed renovate/all from d9fc5ed5dc to 56caf48965 2024-08-23 23:12:22 +02:00 Compare
kjuulh force-pushed renovate/all from 56caf48965 to 8957f57ec6 2024-08-23 23:50:15 +02:00 Compare
kjuulh force-pushed renovate/all from 8957f57ec6 to d1b53237ee 2024-08-24 00:18:12 +02:00 Compare
kjuulh force-pushed renovate/all from d1b53237ee to 720dbbf355 2024-08-24 01:02:41 +02:00 Compare
kjuulh force-pushed renovate/all from 720dbbf355 to 56ba591d0d 2024-08-24 01:37:44 +02:00 Compare
kjuulh force-pushed renovate/all from 56ba591d0d to 653eed94b4 2024-08-24 02:13:44 +02:00 Compare
kjuulh force-pushed renovate/all from 653eed94b4 to 1cbf28db42 2024-08-24 02:48:17 +02:00 Compare
kjuulh force-pushed renovate/all from 1cbf28db42 to c55e569400 2024-08-24 03:24:24 +02:00 Compare
kjuulh force-pushed renovate/all from c55e569400 to 300b6bc39b 2024-08-24 03:57:08 +02:00 Compare
kjuulh force-pushed renovate/all from 300b6bc39b to 31d1784274 2024-08-24 04:33:30 +02:00 Compare
kjuulh force-pushed renovate/all from 31d1784274 to b82b8a54f3 2024-08-24 05:09:34 +02:00 Compare
kjuulh force-pushed renovate/all from b82b8a54f3 to d5d6baea16 2024-08-24 05:46:39 +02:00 Compare
kjuulh force-pushed renovate/all from d5d6baea16 to ef085d425e 2024-08-24 06:18:08 +02:00 Compare
kjuulh force-pushed renovate/all from ef085d425e to 7e17578841 2024-08-24 06:18:40 +02:00 Compare
kjuulh force-pushed renovate/all from 7e17578841 to 16fef5fb4f 2024-08-24 07:05:26 +02:00 Compare
kjuulh force-pushed renovate/all from 16fef5fb4f to 0c3d77c3aa 2024-08-24 07:41:06 +02:00 Compare
kjuulh force-pushed renovate/all from 0c3d77c3aa to fb2e8ddaff 2024-08-24 08:16:24 +02:00 Compare
kjuulh force-pushed renovate/all from fb2e8ddaff to a980875ce2 2024-08-24 08:51:25 +02:00 Compare
kjuulh force-pushed renovate/all from a980875ce2 to 7eb924e80f 2024-08-24 09:26:42 +02:00 Compare
kjuulh force-pushed renovate/all from 7eb924e80f to cac9f1a243 2024-08-24 10:01:38 +02:00 Compare
kjuulh force-pushed renovate/all from cac9f1a243 to ff782b047b 2024-08-24 10:37:51 +02:00 Compare
kjuulh force-pushed renovate/all from ff782b047b to 1c18bf5736 2024-08-24 11:13:21 +02:00 Compare
kjuulh force-pushed renovate/all from 1c18bf5736 to f31dd7b23e 2024-08-24 11:48:23 +02:00 Compare
kjuulh force-pushed renovate/all from f31dd7b23e to efd18a7771 2024-08-24 12:17:12 +02:00 Compare
kjuulh force-pushed renovate/all from efd18a7771 to 826610b3b7 2024-08-24 13:01:10 +02:00 Compare
kjuulh force-pushed renovate/all from 826610b3b7 to d702e1cc49 2024-08-24 13:36:50 +02:00 Compare
kjuulh force-pushed renovate/all from d702e1cc49 to 2e1733bfeb 2024-08-24 14:12:50 +02:00 Compare
kjuulh force-pushed renovate/all from 2e1733bfeb to 77804bde9f 2024-08-24 14:47:57 +02:00 Compare
kjuulh force-pushed renovate/all from 77804bde9f to d7cb430b8a 2024-08-24 15:23:48 +02:00 Compare
kjuulh force-pushed renovate/all from d7cb430b8a to 488a562090 2024-08-24 15:58:43 +02:00 Compare
kjuulh force-pushed renovate/all from 488a562090 to 53ee601796 2024-08-24 16:34:41 +02:00 Compare
kjuulh force-pushed renovate/all from 53ee601796 to 4cd4a7415b 2024-08-24 17:10:00 +02:00 Compare
kjuulh force-pushed renovate/all from 4cd4a7415b to 7ff9002040 2024-08-24 17:45:39 +02:00 Compare
kjuulh force-pushed renovate/all from 7ff9002040 to 57f227382f 2024-08-24 18:17:28 +02:00 Compare
kjuulh force-pushed renovate/all from 57f227382f to 7c33490f78 2024-08-24 19:01:41 +02:00 Compare
kjuulh force-pushed renovate/all from 7c33490f78 to 484509580a 2024-08-24 19:37:10 +02:00 Compare
kjuulh force-pushed renovate/all from 484509580a to 8afdba79f0 2024-08-24 20:13:08 +02:00 Compare
kjuulh force-pushed renovate/all from 8afdba79f0 to 155acaba8c 2024-08-24 20:48:27 +02:00 Compare
kjuulh force-pushed renovate/all from 155acaba8c to 63b2a2f28f 2024-08-24 21:24:32 +02:00 Compare
kjuulh force-pushed renovate/all from 63b2a2f28f to f7e68f654f 2024-08-24 22:01:16 +02:00 Compare
kjuulh force-pushed renovate/all from f7e68f654f to 4a18726d55 2024-08-24 22:37:08 +02:00 Compare
kjuulh force-pushed renovate/all from 4a18726d55 to 0a26d0761f 2024-08-24 23:13:03 +02:00 Compare
kjuulh force-pushed renovate/all from 0a26d0761f to d3be12c8aa 2024-08-24 23:48:12 +02:00 Compare
kjuulh force-pushed renovate/all from d3be12c8aa to 664f38a16a 2024-08-25 00:18:10 +02:00 Compare
kjuulh force-pushed renovate/all from 664f38a16a to 5c689114d0 2024-08-25 01:03:51 +02:00 Compare
kjuulh force-pushed renovate/all from 5c689114d0 to 8431c4b141 2024-08-25 01:39:44 +02:00 Compare
kjuulh force-pushed renovate/all from 8431c4b141 to 7c6474de15 2024-08-25 02:16:00 +02:00 Compare
kjuulh force-pushed renovate/all from 7c6474de15 to 08c93cc098 2024-08-25 02:51:12 +02:00 Compare
kjuulh force-pushed renovate/all from 08c93cc098 to 193b45d280 2024-08-25 03:27:22 +02:00 Compare
kjuulh force-pushed renovate/all from 193b45d280 to f18988a5ed 2024-08-25 04:01:07 +02:00 Compare
kjuulh force-pushed renovate/all from f18988a5ed to 1115175e62 2024-08-25 04:35:48 +02:00 Compare
kjuulh force-pushed renovate/all from 1115175e62 to 8d0e82d40b 2024-08-25 05:11:28 +02:00 Compare
kjuulh force-pushed renovate/all from 8d0e82d40b to 1fd6398075 2024-08-25 05:47:45 +02:00 Compare
kjuulh force-pushed renovate/all from 1fd6398075 to 8094dfb4a1 2024-08-25 06:17:28 +02:00 Compare
kjuulh force-pushed renovate/all from 8094dfb4a1 to 7397a019ea 2024-08-25 07:02:19 +02:00 Compare
kjuulh force-pushed renovate/all from 7397a019ea to 94fc28af81 2024-08-25 07:37:57 +02:00 Compare
kjuulh force-pushed renovate/all from 94fc28af81 to 9bac30a74f 2024-08-25 08:13:19 +02:00 Compare
kjuulh force-pushed renovate/all from 9bac30a74f to b6cac40e1c 2024-08-25 08:48:28 +02:00 Compare
kjuulh force-pushed renovate/all from b6cac40e1c to 7488ffc8b3 2024-08-25 09:24:38 +02:00 Compare
kjuulh force-pushed renovate/all from 7488ffc8b3 to 9bfaadea68 2024-08-25 09:59:59 +02:00 Compare
kjuulh force-pushed renovate/all from 9bfaadea68 to 9946714744 2024-08-25 10:35:20 +02:00 Compare
kjuulh force-pushed renovate/all from 9946714744 to adc52d92d1 2024-08-25 11:10:36 +02:00 Compare
kjuulh force-pushed renovate/all from adc52d92d1 to 5756ab2983 2024-08-25 11:45:46 +02:00 Compare
kjuulh force-pushed renovate/all from 5756ab2983 to a84a9e8366 2024-08-25 12:17:10 +02:00 Compare
kjuulh force-pushed renovate/all from a84a9e8366 to 9732b56b94 2024-08-25 13:01:36 +02:00 Compare
kjuulh force-pushed renovate/all from 9732b56b94 to eebed4db88 2024-08-25 13:36:35 +02:00 Compare
kjuulh force-pushed renovate/all from eebed4db88 to 9c7d44606c 2024-08-25 14:12:41 +02:00 Compare
kjuulh force-pushed renovate/all from 9c7d44606c to f6c659362c 2024-08-25 14:47:52 +02:00 Compare
kjuulh force-pushed renovate/all from f6c659362c to 29889022f5 2024-08-25 15:24:08 +02:00 Compare
kjuulh force-pushed renovate/all from 29889022f5 to 2dac6209d9 2024-08-25 15:59:42 +02:00 Compare
kjuulh force-pushed renovate/all from 2dac6209d9 to 7444707ab7 2024-08-25 16:36:18 +02:00 Compare
kjuulh force-pushed renovate/all from 7444707ab7 to deaa063f4a 2024-08-25 17:11:55 +02:00 Compare
kjuulh force-pushed renovate/all from deaa063f4a to a1a32c0f78 2024-08-25 17:47:04 +02:00 Compare
kjuulh force-pushed renovate/all from a1a32c0f78 to a9c47b69ca 2024-08-25 18:17:17 +02:00 Compare
kjuulh force-pushed renovate/all from a9c47b69ca to c51543de60 2024-08-25 19:01:38 +02:00 Compare
kjuulh force-pushed renovate/all from c51543de60 to 044b9f5a80 2024-08-25 19:37:21 +02:00 Compare
kjuulh force-pushed renovate/all from 044b9f5a80 to 399c24d132 2024-08-25 20:13:02 +02:00 Compare
kjuulh force-pushed renovate/all from 399c24d132 to edeac0a66f 2024-08-25 20:47:44 +02:00 Compare
kjuulh force-pushed renovate/all from edeac0a66f to 7b758a2798 2024-08-25 21:23:21 +02:00 Compare
kjuulh force-pushed renovate/all from 7b758a2798 to f3744a4164 2024-08-25 21:58:35 +02:00 Compare
kjuulh force-pushed renovate/all from f3744a4164 to 91eebfe1be 2024-08-25 22:34:40 +02:00 Compare
kjuulh force-pushed renovate/all from 91eebfe1be to 73e08a36d9 2024-08-25 23:09:42 +02:00 Compare
kjuulh force-pushed renovate/all from 73e08a36d9 to 7529bce0bf 2024-08-25 23:45:17 +02:00 Compare
kjuulh force-pushed renovate/all from 7529bce0bf to ca931069dc 2024-08-26 00:18:13 +02:00 Compare
kjuulh force-pushed renovate/all from ca931069dc to 1c04c910cb 2024-08-26 01:03:02 +02:00 Compare
kjuulh force-pushed renovate/all from 1c04c910cb to b1415eb756 2024-08-26 01:39:14 +02:00 Compare
kjuulh force-pushed renovate/all from b1415eb756 to e7c3493aef 2024-08-26 02:15:56 +02:00 Compare
kjuulh force-pushed renovate/all from e7c3493aef to 48c4f8ece6 2024-08-26 02:51:30 +02:00 Compare
kjuulh force-pushed renovate/all from 48c4f8ece6 to 057f392914 2024-08-26 03:27:44 +02:00 Compare
kjuulh force-pushed renovate/all from 057f392914 to 608010ee71 2024-08-26 04:03:26 +02:00 Compare
kjuulh force-pushed renovate/all from 608010ee71 to 946603fa60 2024-08-26 04:39:27 +02:00 Compare
kjuulh force-pushed renovate/all from 946603fa60 to 61d17dcd9f 2024-08-26 05:16:21 +02:00 Compare
kjuulh force-pushed renovate/all from 61d17dcd9f to 6b73d888b7 2024-08-26 05:52:57 +02:00 Compare
kjuulh force-pushed renovate/all from 6b73d888b7 to a0d646948a 2024-08-26 06:17:50 +02:00 Compare
kjuulh force-pushed renovate/all from a0d646948a to fb6de437da 2024-08-26 07:03:40 +02:00 Compare
kjuulh force-pushed renovate/all from fb6de437da to 15f6d40492 2024-08-26 07:38:44 +02:00 Compare
kjuulh force-pushed renovate/all from 15f6d40492 to cc4df02805 2024-08-26 08:15:52 +02:00 Compare
kjuulh force-pushed renovate/all from cc4df02805 to a47d161640 2024-08-26 08:52:28 +02:00 Compare
kjuulh force-pushed renovate/all from a47d161640 to 9ac6a49b03 2024-08-26 09:29:19 +02:00 Compare
kjuulh force-pushed renovate/all from 9ac6a49b03 to 7520d06dc9 2024-08-26 10:05:30 +02:00 Compare
kjuulh force-pushed renovate/all from 7520d06dc9 to ef4c8a50d0 2024-08-26 10:41:44 +02:00 Compare
kjuulh force-pushed renovate/all from ef4c8a50d0 to 07e5e96571 2024-08-26 11:18:09 +02:00 Compare
kjuulh force-pushed renovate/all from 07e5e96571 to 57631631c0 2024-08-26 11:55:13 +02:00 Compare
kjuulh force-pushed renovate/all from 57631631c0 to 967426a844 2024-08-26 12:17:38 +02:00 Compare
kjuulh force-pushed renovate/all from 967426a844 to be07b15d79 2024-08-26 13:03:08 +02:00 Compare
kjuulh force-pushed renovate/all from be07b15d79 to 7692ac16ab 2024-08-26 13:38:59 +02:00 Compare
kjuulh force-pushed renovate/all from 7692ac16ab to 75f0cd696a 2024-08-26 14:16:55 +02:00 Compare
kjuulh force-pushed renovate/all from 75f0cd696a to 9b1d497fa3 2024-08-26 14:54:01 +02:00 Compare
kjuulh force-pushed renovate/all from 9b1d497fa3 to 7164055df0 2024-08-26 15:31:26 +02:00 Compare
kjuulh force-pushed renovate/all from 7164055df0 to acfa74ff17 2024-08-26 16:09:01 +02:00 Compare
kjuulh force-pushed renovate/all from acfa74ff17 to d212f444b4 2024-08-26 16:46:12 +02:00 Compare
kjuulh force-pushed renovate/all from d212f444b4 to c87bca0e83 2024-08-26 17:23:49 +02:00 Compare
kjuulh force-pushed renovate/all from c87bca0e83 to 0556f5b521 2024-08-26 18:17:17 +02:00 Compare
kjuulh force-pushed renovate/all from 0556f5b521 to a6f68f9129 2024-08-26 19:01:32 +02:00 Compare
kjuulh force-pushed renovate/all from a6f68f9129 to 58b38d484d 2024-08-26 19:36:56 +02:00 Compare
kjuulh force-pushed renovate/all from 58b38d484d to 7c31dc7d89 2024-08-26 20:13:19 +02:00 Compare
kjuulh force-pushed renovate/all from 7c31dc7d89 to 32a94e24cc 2024-08-26 20:48:33 +02:00 Compare
kjuulh force-pushed renovate/all from 32a94e24cc to 87b32c5241 2024-08-26 21:24:29 +02:00 Compare
kjuulh force-pushed renovate/all from 87b32c5241 to 7e505f532b 2024-08-26 21:59:57 +02:00 Compare
kjuulh force-pushed renovate/all from 7e505f532b to 088ab20aea 2024-08-26 22:35:55 +02:00 Compare
kjuulh force-pushed renovate/all from 088ab20aea to 6ed66dc121 2024-08-26 23:13:31 +02:00 Compare
kjuulh force-pushed renovate/all from 6ed66dc121 to 300a57eecc 2024-08-26 23:50:47 +02:00 Compare
kjuulh force-pushed renovate/all from 300a57eecc to d14cb30425 2024-08-27 00:18:33 +02:00 Compare
kjuulh force-pushed renovate/all from d14cb30425 to bf2f1b4901 2024-08-27 01:05:40 +02:00 Compare
kjuulh force-pushed renovate/all from bf2f1b4901 to 08e56163bc 2024-08-27 01:41:28 +02:00 Compare
kjuulh force-pushed renovate/all from 08e56163bc to d4fee6d648 2024-08-27 02:18:21 +02:00 Compare
kjuulh force-pushed renovate/all from d4fee6d648 to b4d99bb3d3 2024-08-27 02:54:04 +02:00 Compare
kjuulh force-pushed renovate/all from b4d99bb3d3 to 38cb5ec23a 2024-08-27 03:31:26 +02:00 Compare
kjuulh force-pushed renovate/all from 38cb5ec23a to eaa1572db4 2024-08-27 04:05:57 +02:00 Compare
kjuulh force-pushed renovate/all from eaa1572db4 to 2ab96da839 2024-08-27 04:41:12 +02:00 Compare
kjuulh force-pushed renovate/all from 2ab96da839 to 6f8e5f13af 2024-08-27 05:17:00 +02:00 Compare
kjuulh force-pushed renovate/all from 6f8e5f13af to 9bb658744d 2024-08-27 05:53:18 +02:00 Compare
kjuulh force-pushed renovate/all from 9bb658744d to 2bf198e082 2024-08-27 06:17:40 +02:00 Compare
kjuulh force-pushed renovate/all from 2bf198e082 to e654b4b6d8 2024-08-27 07:02:43 +02:00 Compare
kjuulh force-pushed renovate/all from e654b4b6d8 to 152a5a2d09 2024-08-27 07:38:32 +02:00 Compare
kjuulh force-pushed renovate/all from 152a5a2d09 to 1789917e7b 2024-08-27 08:14:43 +02:00 Compare
kjuulh force-pushed renovate/all from 1789917e7b to a1481fa6de 2024-08-27 08:49:59 +02:00 Compare
kjuulh force-pushed renovate/all from a1481fa6de to efe5e4a8e0 2024-08-27 09:25:54 +02:00 Compare
kjuulh force-pushed renovate/all from efe5e4a8e0 to 027208f73c 2024-08-27 10:01:08 +02:00 Compare
kjuulh force-pushed renovate/all from 027208f73c to 8305e77244 2024-08-27 10:36:26 +02:00 Compare
kjuulh force-pushed renovate/all from 8305e77244 to 1930bd6408 2024-08-27 11:11:53 +02:00 Compare
kjuulh force-pushed renovate/all from 1930bd6408 to 5c46db0517 2024-08-27 11:48:29 +02:00 Compare
kjuulh force-pushed renovate/all from 5c46db0517 to b02e871083 2024-08-27 12:17:53 +02:00 Compare
kjuulh force-pushed renovate/all from b02e871083 to 7e1648ac3a 2024-08-27 13:03:35 +02:00 Compare
kjuulh force-pushed renovate/all from 7e1648ac3a to 38cde52ae3 2024-08-27 13:39:18 +02:00 Compare
kjuulh force-pushed renovate/all from 38cde52ae3 to 5120fdd733 2024-08-27 14:16:18 +02:00 Compare
kjuulh force-pushed renovate/all from 5120fdd733 to bef565ade3 2024-08-27 14:52:06 +02:00 Compare
kjuulh force-pushed renovate/all from bef565ade3 to 81b7dc7c97 2024-08-27 15:28:08 +02:00 Compare
kjuulh force-pushed renovate/all from 81b7dc7c97 to 90a3d54d35 2024-08-27 16:03:39 +02:00 Compare
kjuulh force-pushed renovate/all from 90a3d54d35 to a4fe42bae2 2024-08-27 16:39:43 +02:00 Compare
kjuulh force-pushed renovate/all from a4fe42bae2 to 06941b3cdf 2024-08-27 17:15:24 +02:00 Compare
kjuulh force-pushed renovate/all from 06941b3cdf to 34d2bac7bd 2024-08-27 17:52:49 +02:00 Compare
kjuulh force-pushed renovate/all from 34d2bac7bd to cb0df9493b 2024-08-27 18:17:52 +02:00 Compare
kjuulh force-pushed renovate/all from cb0df9493b to fcc25d36ca 2024-08-27 19:04:39 +02:00 Compare
kjuulh force-pushed renovate/all from fcc25d36ca to 44b1f2b29f 2024-08-27 19:41:04 +02:00 Compare
kjuulh force-pushed renovate/all from 44b1f2b29f to 37be9398df 2024-08-27 20:18:22 +02:00 Compare
kjuulh force-pushed renovate/all from 37be9398df to e650e79e87 2024-08-27 20:54:14 +02:00 Compare
kjuulh force-pushed renovate/all from e650e79e87 to 0c052cc574 2024-08-27 21:30:54 +02:00 Compare
kjuulh force-pushed renovate/all from 0c052cc574 to 0744bb2df5 2024-08-27 22:06:56 +02:00 Compare
kjuulh force-pushed renovate/all from 0744bb2df5 to b48967917b 2024-08-27 22:43:16 +02:00 Compare
kjuulh force-pushed renovate/all from b48967917b to cf67c26f12 2024-08-27 23:20:11 +02:00 Compare
kjuulh force-pushed renovate/all from cf67c26f12 to b24ed97445 2024-08-27 23:56:28 +02:00 Compare
kjuulh force-pushed renovate/all from b24ed97445 to 87dbf91a63 2024-08-28 00:18:23 +02:00 Compare
kjuulh force-pushed renovate/all from 87dbf91a63 to 1fa3d77574 2024-08-28 01:06:06 +02:00 Compare
kjuulh force-pushed renovate/all from 1fa3d77574 to 242697b86b 2024-08-28 01:42:38 +02:00 Compare
kjuulh force-pushed renovate/all from 242697b86b to 1c840ac5eb 2024-08-28 02:19:43 +02:00 Compare
kjuulh force-pushed renovate/all from 1c840ac5eb to 2802faeeef 2024-08-28 02:58:48 +02:00 Compare
kjuulh force-pushed renovate/all from 2802faeeef to 932f4859a3 2024-08-28 03:37:30 +02:00 Compare
kjuulh force-pushed renovate/all from 932f4859a3 to ffb52f8323 2024-08-28 04:12:32 +02:00 Compare
kjuulh force-pushed renovate/all from ffb52f8323 to 1dba47638d 2024-08-28 04:48:34 +02:00 Compare
kjuulh force-pushed renovate/all from 1dba47638d to e437c87380 2024-08-28 05:25:12 +02:00 Compare
kjuulh force-pushed renovate/all from e437c87380 to 2c8f8f1237 2024-08-28 06:17:44 +02:00 Compare
kjuulh force-pushed renovate/all from 2c8f8f1237 to fc75822f87 2024-08-28 07:03:34 +02:00 Compare
kjuulh force-pushed renovate/all from fc75822f87 to 2c520408d7 2024-08-28 07:40:11 +02:00 Compare
kjuulh force-pushed renovate/all from 2c520408d7 to 0b5412e894 2024-08-28 08:17:08 +02:00 Compare
kjuulh force-pushed renovate/all from 0b5412e894 to e4de9668d7 2024-08-28 08:53:43 +02:00 Compare
kjuulh force-pushed renovate/all from e4de9668d7 to 1308ffcd3c 2024-08-28 09:31:14 +02:00 Compare
kjuulh force-pushed renovate/all from 1308ffcd3c to 6f8cae262c 2024-08-28 10:08:04 +02:00 Compare
kjuulh force-pushed renovate/all from 6f8cae262c to 3d48bd2dd4 2024-08-28 10:44:16 +02:00 Compare
kjuulh force-pushed renovate/all from 3d48bd2dd4 to 9fb2a91836 2024-08-28 11:20:41 +02:00 Compare
kjuulh force-pushed renovate/all from 9fb2a91836 to dabcc721cf 2024-08-28 11:57:01 +02:00 Compare
kjuulh force-pushed renovate/all from dabcc721cf to 8bbcea6b11 2024-08-28 12:17:44 +02:00 Compare
kjuulh force-pushed renovate/all from 8bbcea6b11 to db390dfce5 2024-08-28 13:03:51 +02:00 Compare
kjuulh force-pushed renovate/all from db390dfce5 to c8977c8ac0 2024-08-28 13:40:30 +02:00 Compare
kjuulh force-pushed renovate/all from c8977c8ac0 to 5549b4ec0a 2024-08-28 14:17:14 +02:00 Compare
kjuulh force-pushed renovate/all from 5549b4ec0a to 646aca84ba 2024-08-28 14:52:54 +02:00 Compare
kjuulh force-pushed renovate/all from 646aca84ba to 9e2d325d49 2024-08-28 15:28:59 +02:00 Compare
kjuulh force-pushed renovate/all from 9e2d325d49 to 468f5a3bff 2024-08-28 16:05:39 +02:00 Compare
kjuulh force-pushed renovate/all from 468f5a3bff to e325c9502a 2024-08-28 16:42:20 +02:00 Compare
kjuulh force-pushed renovate/all from e325c9502a to b409d2f0be 2024-08-28 17:19:35 +02:00 Compare
kjuulh force-pushed renovate/all from b409d2f0be to 530d1e8f63 2024-08-28 17:56:12 +02:00 Compare
kjuulh force-pushed renovate/all from 530d1e8f63 to afcbaee6a4 2024-08-28 18:17:41 +02:00 Compare
kjuulh force-pushed renovate/all from afcbaee6a4 to 54cef22a64 2024-08-28 19:04:19 +02:00 Compare
kjuulh force-pushed renovate/all from 54cef22a64 to 7042707ba4 2024-08-28 19:42:52 +02:00 Compare
kjuulh force-pushed renovate/all from 7042707ba4 to fde3ba2d3a 2024-08-28 20:23:40 +02:00 Compare
kjuulh force-pushed renovate/all from fde3ba2d3a to 2b3f2ba808 2024-08-28 21:03:26 +02:00 Compare
kjuulh force-pushed renovate/all from 2b3f2ba808 to 404ff60d2d 2024-08-28 21:43:18 +02:00 Compare
kjuulh force-pushed renovate/all from 404ff60d2d to ddc299f79c 2024-08-28 22:24:28 +02:00 Compare
kjuulh force-pushed renovate/all from ddc299f79c to e32ab942f0 2024-08-28 23:05:24 +02:00 Compare
kjuulh force-pushed renovate/all from e32ab942f0 to 8d50ce1204 2024-08-28 23:47:07 +02:00 Compare
kjuulh force-pushed renovate/all from 8d50ce1204 to 8325900a41 2024-08-29 00:19:55 +02:00 Compare
kjuulh force-pushed renovate/all from 8325900a41 to 8e17fa22b6 2024-08-29 01:11:38 +02:00 Compare
kjuulh force-pushed renovate/all from 8e17fa22b6 to 256254fdf6 2024-08-29 01:50:46 +02:00 Compare
kjuulh force-pushed renovate/all from 256254fdf6 to 07a909e691 2024-08-29 02:28:30 +02:00 Compare
kjuulh force-pushed renovate/all from 07a909e691 to 6aa2808659 2024-08-29 03:05:58 +02:00 Compare
kjuulh force-pushed renovate/all from 6aa2808659 to 1cf61d3e2d 2024-08-29 03:42:25 +02:00 Compare
kjuulh force-pushed renovate/all from 1cf61d3e2d to df78a9b187 2024-08-29 04:18:36 +02:00 Compare
kjuulh force-pushed renovate/all from df78a9b187 to 6405b65679 2024-08-29 04:54:45 +02:00 Compare
kjuulh force-pushed renovate/all from 6405b65679 to d81e7b93d4 2024-08-29 05:32:26 +02:00 Compare
kjuulh force-pushed renovate/all from d81e7b93d4 to 751d311723 2024-08-29 06:18:17 +02:00 Compare
kjuulh force-pushed renovate/all from 751d311723 to 3449b147d3 2024-08-29 07:05:07 +02:00 Compare
kjuulh force-pushed renovate/all from 3449b147d3 to 3b94a386ee 2024-08-29 07:43:12 +02:00 Compare
kjuulh force-pushed renovate/all from 3b94a386ee to 7fbe64ca1d 2024-08-29 08:21:17 +02:00 Compare
kjuulh force-pushed renovate/all from 7fbe64ca1d to 2a39021f1c 2024-08-29 08:58:04 +02:00 Compare
kjuulh force-pushed renovate/all from 2a39021f1c to 376bb85833 2024-08-29 09:35:24 +02:00 Compare
kjuulh force-pushed renovate/all from 376bb85833 to 05614610fd 2024-08-29 10:11:36 +02:00 Compare
kjuulh force-pushed renovate/all from 05614610fd to 0ce18112ac 2024-08-29 10:48:40 +02:00 Compare
kjuulh force-pushed renovate/all from 0ce18112ac to 7e69bfc35b 2024-08-29 11:25:35 +02:00 Compare
kjuulh force-pushed renovate/all from 7e69bfc35b to 591db173ff 2024-08-29 12:18:03 +02:00 Compare
kjuulh force-pushed renovate/all from 591db173ff to ed6f60a2a0 2024-08-29 13:04:36 +02:00 Compare
kjuulh force-pushed renovate/all from ed6f60a2a0 to 4cba3ca62b 2024-08-29 13:41:20 +02:00 Compare
kjuulh force-pushed renovate/all from 4cba3ca62b to e5fca37e1e 2024-08-29 14:18:20 +02:00 Compare
kjuulh force-pushed renovate/all from e5fca37e1e to acc79408de 2024-08-29 14:54:19 +02:00 Compare
kjuulh force-pushed renovate/all from acc79408de to 4447825bc8 2024-08-29 15:31:14 +02:00 Compare
kjuulh force-pushed renovate/all from 4447825bc8 to 4ede41950e 2024-08-29 16:09:11 +02:00 Compare
kjuulh force-pushed renovate/all from 4ede41950e to 8021060259 2024-08-29 16:46:30 +02:00 Compare
kjuulh force-pushed renovate/all from 8021060259 to b120db7a34 2024-08-29 17:24:53 +02:00 Compare
kjuulh force-pushed renovate/all from b120db7a34 to 960c8b1999 2024-08-29 18:18:14 +02:00 Compare
kjuulh force-pushed renovate/all from 960c8b1999 to be24435b70 2024-08-29 19:04:39 +02:00 Compare
kjuulh force-pushed renovate/all from be24435b70 to 86020810de 2024-08-29 19:41:43 +02:00 Compare
kjuulh force-pushed renovate/all from 86020810de to 8f599b58be 2024-08-29 20:19:19 +02:00 Compare
kjuulh force-pushed renovate/all from 8f599b58be to daf78bc396 2024-08-29 20:55:30 +02:00 Compare
kjuulh force-pushed renovate/all from daf78bc396 to db43cd5ae5 2024-08-29 21:33:33 +02:00 Compare
kjuulh force-pushed renovate/all from db43cd5ae5 to 3f1821fe3f 2024-08-29 22:10:36 +02:00 Compare
kjuulh force-pushed renovate/all from 3f1821fe3f to 5366f35dbf 2024-08-29 22:47:34 +02:00 Compare
kjuulh force-pushed renovate/all from 5366f35dbf to af5543ca94 2024-08-29 23:26:42 +02:00 Compare
kjuulh force-pushed renovate/all from af5543ca94 to bbaa722c02 2024-08-30 00:19:56 +02:00 Compare
kjuulh force-pushed renovate/all from bbaa722c02 to 14d902eb89 2024-08-30 01:08:42 +02:00 Compare
kjuulh force-pushed renovate/all from 14d902eb89 to dc6c30e868 2024-08-30 01:46:56 +02:00 Compare
kjuulh force-pushed renovate/all from dc6c30e868 to a6f5ea80e9 2024-08-30 02:25:39 +02:00 Compare
kjuulh force-pushed renovate/all from a6f5ea80e9 to fc03d5726f 2024-08-30 03:03:52 +02:00 Compare
kjuulh force-pushed renovate/all from fc03d5726f to dffc7a6ee6 2024-08-30 03:42:28 +02:00 Compare
kjuulh force-pushed renovate/all from dffc7a6ee6 to 87e87c399c 2024-08-30 04:20:05 +02:00 Compare
kjuulh force-pushed renovate/all from 87e87c399c to 62da52b336 2024-08-30 04:59:12 +02:00 Compare
kjuulh force-pushed renovate/all from 62da52b336 to 71a81538ae 2024-08-30 05:37:28 +02:00 Compare
kjuulh force-pushed renovate/all from 71a81538ae to c265bfd484 2024-08-30 06:19:32 +02:00 Compare
kjuulh force-pushed renovate/all from c265bfd484 to ca04d14b6d 2024-08-30 07:07:59 +02:00 Compare
kjuulh force-pushed renovate/all from ca04d14b6d to b7cd93e4be 2024-08-30 07:46:21 +02:00 Compare
kjuulh force-pushed renovate/all from b7cd93e4be to 91b60b2edd 2024-08-30 08:24:02 +02:00 Compare
kjuulh force-pushed renovate/all from 91b60b2edd to 9c1ccb8e32 2024-08-30 09:01:29 +02:00 Compare
kjuulh force-pushed renovate/all from 9c1ccb8e32 to a5f7192a02 2024-08-30 09:39:37 +02:00 Compare
kjuulh force-pushed renovate/all from a5f7192a02 to f6ef9d5162 2024-08-30 10:18:08 +02:00 Compare
kjuulh force-pushed renovate/all from f6ef9d5162 to 12b137eff5 2024-08-30 11:02:30 +02:00 Compare
kjuulh force-pushed renovate/all from 12b137eff5 to 65f75fbc94 2024-08-30 11:43:12 +02:00 Compare
kjuulh force-pushed renovate/all from 65f75fbc94 to c3b6135184 2024-08-30 12:18:29 +02:00 Compare
kjuulh force-pushed renovate/all from c3b6135184 to 1bbb9c1248 2024-08-30 13:12:58 +02:00 Compare
kjuulh force-pushed renovate/all from 1bbb9c1248 to 32b5482052 2024-08-30 13:49:30 +02:00 Compare
kjuulh force-pushed renovate/all from 32b5482052 to 6aee11de57 2024-08-30 14:27:18 +02:00 Compare
kjuulh force-pushed renovate/all from 6aee11de57 to c66d2065b6 2024-08-30 15:03:30 +02:00 Compare
kjuulh force-pushed renovate/all from c66d2065b6 to ffe82f496c 2024-08-30 15:40:39 +02:00 Compare
kjuulh force-pushed renovate/all from ffe82f496c to 066db34b88 2024-08-30 16:17:07 +02:00 Compare
kjuulh force-pushed renovate/all from 066db34b88 to 48acb00b3e 2024-08-30 16:53:42 +02:00 Compare
kjuulh force-pushed renovate/all from 48acb00b3e to 3db65e78db 2024-08-30 17:29:12 +02:00 Compare
kjuulh force-pushed renovate/all from 3db65e78db to 006674ddf8 2024-08-30 18:17:22 +02:00 Compare
kjuulh force-pushed renovate/all from 006674ddf8 to 7c01532af4 2024-08-30 19:03:14 +02:00 Compare
kjuulh force-pushed renovate/all from 7c01532af4 to 95d745f796 2024-08-30 19:40:23 +02:00 Compare
kjuulh force-pushed renovate/all from 95d745f796 to 5b7dcafed9 2024-08-31 02:18:09 +02:00 Compare
kjuulh force-pushed renovate/all from 5b7dcafed9 to 29c7a94745 2024-08-31 06:17:59 +02:00 Compare
kjuulh force-pushed renovate/all from 29c7a94745 to 1e833f1839 2024-09-01 02:18:19 +02:00 Compare
kjuulh force-pushed renovate/all from 1e833f1839 to 25413fc478 2024-09-01 06:18:11 +02:00 Compare
kjuulh force-pushed renovate/all from 25413fc478 to 0c5efc98a1 2024-09-02 02:18:03 +02:00 Compare
kjuulh force-pushed renovate/all from 0c5efc98a1 to 5bea7d1775 2024-09-02 06:18:12 +02:00 Compare
kjuulh force-pushed renovate/all from 5bea7d1775 to 21334fffa9 2024-09-03 02:18:37 +02:00 Compare
kjuulh force-pushed renovate/all from 21334fffa9 to 51db7790c8 2024-09-03 06:17:42 +02:00 Compare
kjuulh force-pushed renovate/all from 51db7790c8 to 8c29229b1e 2024-09-04 02:18:38 +02:00 Compare
kjuulh force-pushed renovate/all from 8c29229b1e to 2fa213ceef 2024-09-04 06:18:12 +02:00 Compare
kjuulh force-pushed renovate/all from 2fa213ceef to ad4f0f60cd 2024-09-05 02:20:22 +02:00 Compare
kjuulh force-pushed renovate/all from ad4f0f60cd to e739fcf898 2024-09-05 06:18:45 +02:00 Compare
kjuulh force-pushed renovate/all from e739fcf898 to 442f701a42 2024-09-06 02:20:44 +02:00 Compare
kjuulh force-pushed renovate/all from 442f701a42 to 0e9a48e0b1 2024-09-06 06:18:33 +02:00 Compare
kjuulh force-pushed renovate/all from 0e9a48e0b1 to 6c60baafb8 2024-09-07 02:20:06 +02:00 Compare
kjuulh force-pushed renovate/all from 6c60baafb8 to 17a9677773 2024-09-07 06:19:12 +02:00 Compare
kjuulh force-pushed renovate/all from 17a9677773 to dc884897cb 2024-09-08 02:21:30 +02:00 Compare
kjuulh force-pushed renovate/all from dc884897cb to cfc5adaf0d 2024-09-08 06:20:46 +02:00 Compare
kjuulh force-pushed renovate/all from cfc5adaf0d to 69d1b6bf45 2024-09-08 14:59:43 +02:00 Compare
kjuulh force-pushed renovate/all from 69d1b6bf45 to 68e96876df 2024-09-09 02:20:43 +02:00 Compare
kjuulh force-pushed renovate/all from 68e96876df to 8bce262f73 2024-09-09 06:21:20 +02:00 Compare
kjuulh force-pushed renovate/all from 8bce262f73 to beae516ba7 2024-09-10 02:22:00 +02:00 Compare
kjuulh force-pushed renovate/all from beae516ba7 to 9e61aedde5 2024-09-10 06:20:56 +02:00 Compare
kjuulh force-pushed renovate/all from 9e61aedde5 to c36cc40ead 2024-09-11 02:20:49 +02:00 Compare
kjuulh force-pushed renovate/all from c36cc40ead to 4bacca0203 2024-09-11 06:20:33 +02:00 Compare
kjuulh force-pushed renovate/all from 4bacca0203 to 69ddc66abd 2024-09-12 02:22:26 +02:00 Compare
kjuulh force-pushed renovate/all from 69ddc66abd to c2dbaa4f4f 2024-09-12 06:22:08 +02:00 Compare
kjuulh force-pushed renovate/all from c2dbaa4f4f to dae9cf889f 2024-09-13 02:20:31 +02:00 Compare
kjuulh force-pushed renovate/all from dae9cf889f to b906c68b4c 2024-09-13 06:19:23 +02:00 Compare
kjuulh force-pushed renovate/all from b906c68b4c to 1bc42fd162 2024-09-14 02:19:51 +02:00 Compare
kjuulh force-pushed renovate/all from 1bc42fd162 to ec8f8eff80 2024-09-14 06:19:38 +02:00 Compare
kjuulh force-pushed renovate/all from ec8f8eff80 to a56826dc1d 2024-09-15 02:19:53 +02:00 Compare
kjuulh force-pushed renovate/all from a56826dc1d to 482aac3848 2024-09-15 06:20:33 +02:00 Compare
kjuulh force-pushed renovate/all from 482aac3848 to a554e1c815 2024-09-16 02:20:07 +02:00 Compare
kjuulh force-pushed renovate/all from a554e1c815 to c4766d8ea0 2024-09-16 06:21:47 +02:00 Compare
kjuulh force-pushed renovate/all from c4766d8ea0 to 90e2c20c87 2024-09-17 02:22:09 +02:00 Compare
kjuulh force-pushed renovate/all from 90e2c20c87 to 21f8beb4e1 2024-09-17 06:20:09 +02:00 Compare
kjuulh force-pushed renovate/all from 21f8beb4e1 to e263df9aa4 2024-09-18 02:24:28 +02:00 Compare
kjuulh force-pushed renovate/all from e263df9aa4 to e5a7374408 2024-09-18 06:21:29 +02:00 Compare
kjuulh force-pushed renovate/all from e5a7374408 to 75ef96c8df 2024-09-19 02:23:52 +02:00 Compare
kjuulh force-pushed renovate/all from 75ef96c8df to 7aee445de7 2024-09-19 06:21:50 +02:00 Compare
kjuulh force-pushed renovate/all from 7aee445de7 to a212f94667 2024-09-20 02:29:11 +02:00 Compare
kjuulh force-pushed renovate/all from a212f94667 to a1fe9ae9a2 2024-09-20 06:33:43 +02:00 Compare
kjuulh force-pushed renovate/all from a1fe9ae9a2 to 48f5be2bc6 2024-09-21 02:43:11 +02:00 Compare
kjuulh force-pushed renovate/all from 48f5be2bc6 to 220487db22 2024-09-21 06:21:26 +02:00 Compare
kjuulh force-pushed renovate/all from 220487db22 to 1569ad1b72 2024-09-22 02:21:28 +02:00 Compare
kjuulh force-pushed renovate/all from 1569ad1b72 to 2c215bbb46 2024-09-22 06:20:18 +02:00 Compare
kjuulh force-pushed renovate/all from 2c215bbb46 to cb2b7c7576 2024-09-23 02:27:15 +02:00 Compare
kjuulh force-pushed renovate/all from cb2b7c7576 to 4177f16d6e 2024-09-23 06:20:49 +02:00 Compare
kjuulh force-pushed renovate/all from 4177f16d6e to 501f797849 2024-09-24 02:20:43 +02:00 Compare
kjuulh force-pushed renovate/all from 501f797849 to e0afe8dadd 2024-09-24 06:21:05 +02:00 Compare
kjuulh force-pushed renovate/all from e0afe8dadd to ad180abe2a 2024-09-25 02:23:33 +02:00 Compare
kjuulh force-pushed renovate/all from ad180abe2a to 9aa91e5250 2024-09-25 06:20:59 +02:00 Compare
kjuulh force-pushed renovate/all from 9aa91e5250 to 8d6f3ffcaf 2024-09-26 02:21:08 +02:00 Compare
kjuulh force-pushed renovate/all from 8d6f3ffcaf to a9505f66e6 2024-09-26 06:20:37 +02:00 Compare
kjuulh force-pushed renovate/all from a9505f66e6 to 3db747025f 2024-09-27 02:21:46 +02:00 Compare
kjuulh force-pushed renovate/all from 3db747025f to eaefb7280f 2024-09-27 06:21:20 +02:00 Compare
kjuulh force-pushed renovate/all from eaefb7280f to b24206f042 2024-09-28 02:26:48 +02:00 Compare
kjuulh force-pushed renovate/all from b24206f042 to d89c90d8c4 2024-09-28 06:21:29 +02:00 Compare
kjuulh force-pushed renovate/all from d89c90d8c4 to 5784c9402a 2024-09-29 02:23:25 +02:00 Compare
kjuulh force-pushed renovate/all from 5784c9402a to 2bbdbd418e 2024-09-29 06:20:55 +02:00 Compare
kjuulh force-pushed renovate/all from 2bbdbd418e to 967fa3c4cb 2024-09-30 02:21:40 +02:00 Compare
kjuulh force-pushed renovate/all from 967fa3c4cb to ba98d14cc6 2024-09-30 06:21:30 +02:00 Compare
kjuulh force-pushed renovate/all from ba98d14cc6 to dce72f8b2a 2024-10-01 02:24:30 +02:00 Compare
kjuulh force-pushed renovate/all from dce72f8b2a to 8375a40d62 2024-10-01 06:22:21 +02:00 Compare
kjuulh force-pushed renovate/all from 8375a40d62 to 3f584a8332 2024-10-02 02:23:08 +02:00 Compare
kjuulh force-pushed renovate/all from 3f584a8332 to 0e54c3a2bb 2024-10-02 06:21:11 +02:00 Compare
kjuulh force-pushed renovate/all from 0e54c3a2bb to 0d7a22b038 2024-10-03 02:24:03 +02:00 Compare
kjuulh force-pushed renovate/all from 0d7a22b038 to f6e268b472 2024-10-03 06:21:09 +02:00 Compare
kjuulh force-pushed renovate/all from f6e268b472 to 8fa5884b7f 2024-10-04 02:22:15 +02:00 Compare
kjuulh force-pushed renovate/all from 8fa5884b7f to 45d9dacf18 2024-10-04 06:19:28 +02:00 Compare
kjuulh force-pushed renovate/all from 45d9dacf18 to 576b937f22 2024-10-05 02:20:41 +02:00 Compare
kjuulh force-pushed renovate/all from 576b937f22 to 37a7588e9d 2024-10-05 06:20:04 +02:00 Compare
kjuulh force-pushed renovate/all from 37a7588e9d to 748f1ac2fa 2024-10-06 02:22:47 +02:00 Compare
kjuulh force-pushed renovate/all from 748f1ac2fa to 20f4ab3d03 2024-10-06 06:21:53 +02:00 Compare
kjuulh force-pushed renovate/all from 20f4ab3d03 to fee363485f 2024-10-07 02:20:25 +02:00 Compare
kjuulh force-pushed renovate/all from fee363485f to 5b191ba02e 2024-10-07 06:20:09 +02:00 Compare
kjuulh force-pushed renovate/all from 5b191ba02e to ea9be09843 2024-10-08 02:22:04 +02:00 Compare
kjuulh force-pushed renovate/all from ea9be09843 to 8cdee28ac8 2024-10-08 06:20:00 +02:00 Compare
kjuulh force-pushed renovate/all from 8cdee28ac8 to 4b803172f3 2024-10-09 02:22:26 +02:00 Compare
kjuulh force-pushed renovate/all from 4b803172f3 to d352d730ac 2024-10-09 06:21:30 +02:00 Compare
kjuulh force-pushed renovate/all from d352d730ac to 0ff33e5fee 2024-10-10 02:24:22 +02:00 Compare
kjuulh force-pushed renovate/all from 0ff33e5fee to 529e6cff04 2024-10-10 06:22:31 +02:00 Compare
kjuulh force-pushed renovate/all from 529e6cff04 to 353a2814df 2024-10-11 02:22:49 +02:00 Compare
kjuulh force-pushed renovate/all from 353a2814df to dacda37a4a 2024-10-11 06:22:08 +02:00 Compare
kjuulh force-pushed renovate/all from dacda37a4a to 238f3ba766 2024-10-12 02:22:27 +02:00 Compare
kjuulh force-pushed renovate/all from 238f3ba766 to 0b8c45d2c9 2024-10-12 06:22:17 +02:00 Compare
kjuulh force-pushed renovate/all from 0b8c45d2c9 to dfc8190372 2024-10-13 02:20:39 +02:00 Compare
kjuulh force-pushed renovate/all from dfc8190372 to 12c743cfa1 2024-10-13 06:20:26 +02:00 Compare
kjuulh force-pushed renovate/all from 12c743cfa1 to 60c96dc5fb 2024-10-14 02:21:23 +02:00 Compare
kjuulh force-pushed renovate/all from 60c96dc5fb to f3c5b6ecfe 2024-10-14 06:21:13 +02:00 Compare
kjuulh force-pushed renovate/all from f3c5b6ecfe to 8d6314dc05 2024-10-15 02:20:52 +02:00 Compare
kjuulh force-pushed renovate/all from 8d6314dc05 to 7d22a22206 2024-10-15 06:21:18 +02:00 Compare
kjuulh force-pushed renovate/all from 7d22a22206 to 015dc69f8d 2024-10-16 02:21:47 +02:00 Compare
kjuulh force-pushed renovate/all from 015dc69f8d to 6468233369 2024-10-16 06:22:00 +02:00 Compare
kjuulh force-pushed renovate/all from 6468233369 to 7ff25ed427 2024-10-17 02:25:14 +02:00 Compare
kjuulh force-pushed renovate/all from 7ff25ed427 to fd5f92670f 2024-10-17 06:22:30 +02:00 Compare
kjuulh force-pushed renovate/all from fd5f92670f to a0c1f545ee 2024-10-18 02:25:20 +02:00 Compare
kjuulh force-pushed renovate/all from a0c1f545ee to 0b171d54ad 2024-10-18 06:22:22 +02:00 Compare
kjuulh force-pushed renovate/all from 0b171d54ad to 7c8245c298 2024-10-19 02:23:59 +02:00 Compare
kjuulh force-pushed renovate/all from 7c8245c298 to fa75db1636 2024-10-19 06:24:08 +02:00 Compare
kjuulh force-pushed renovate/all from fa75db1636 to 94b7a22f3d 2024-10-20 02:25:12 +02:00 Compare
kjuulh force-pushed renovate/all from 94b7a22f3d to fe0e5b1e12 2024-10-20 06:23:32 +02:00 Compare
kjuulh force-pushed renovate/all from fe0e5b1e12 to 519a99f70f 2024-10-21 02:21:52 +02:00 Compare
kjuulh force-pushed renovate/all from 519a99f70f to 333c0bc685 2024-10-21 06:21:36 +02:00 Compare
kjuulh force-pushed renovate/all from 333c0bc685 to 3cbc1400bc 2024-10-22 02:23:10 +02:00 Compare
kjuulh force-pushed renovate/all from 3cbc1400bc to 3b3c5eaeee 2024-10-22 06:22:13 +02:00 Compare
kjuulh force-pushed renovate/all from 3b3c5eaeee to 8b1d33e80a 2024-10-23 02:26:11 +02:00 Compare
kjuulh force-pushed renovate/all from 8b1d33e80a to 441d303f67 2024-10-23 06:27:19 +02:00 Compare
kjuulh force-pushed renovate/all from 441d303f67 to c7ad820799 2024-10-24 02:29:35 +02:00 Compare
kjuulh force-pushed renovate/all from c7ad820799 to 043d1bf68a 2024-10-24 06:24:05 +02:00 Compare
kjuulh force-pushed renovate/all from 043d1bf68a to 032d81861a 2024-10-25 02:24:05 +02:00 Compare
kjuulh force-pushed renovate/all from 032d81861a to 10458028ea 2024-10-25 06:23:14 +02:00 Compare
kjuulh force-pushed renovate/all from 10458028ea to e881179416 2024-10-26 02:23:48 +02:00 Compare
kjuulh force-pushed renovate/all from e881179416 to 0947915921 2024-10-26 06:22:26 +02:00 Compare
kjuulh force-pushed renovate/all from 0947915921 to 37af0d46cc 2024-10-27 02:39:46 +02:00 Compare
kjuulh force-pushed renovate/all from 37af0d46cc to 6ce8f6bb90 2024-10-27 06:22:54 +01:00 Compare
kjuulh force-pushed renovate/all from 6ce8f6bb90 to 3f60322587 2024-10-28 02:22:30 +01:00 Compare
kjuulh force-pushed renovate/all from 3f60322587 to c97e30500b 2024-10-28 06:23:39 +01:00 Compare
kjuulh force-pushed renovate/all from c97e30500b to 795919bc49 2024-10-29 02:25:51 +01:00 Compare
kjuulh force-pushed renovate/all from 795919bc49 to ef9fdefdb1 2024-10-29 06:23:25 +01:00 Compare
kjuulh force-pushed renovate/all from ef9fdefdb1 to 70e596e1c0 2024-10-30 02:24:21 +01:00 Compare
kjuulh force-pushed renovate/all from 70e596e1c0 to 6f21e47995 2024-10-30 06:23:08 +01:00 Compare
kjuulh force-pushed renovate/all from 6f21e47995 to fbb3ff21c3 2024-10-31 02:24:28 +01:00 Compare
kjuulh force-pushed renovate/all from fbb3ff21c3 to ebb2ca7a7a 2024-10-31 06:23:18 +01:00 Compare
kjuulh force-pushed renovate/all from ebb2ca7a7a to bd66b35bd3 2024-11-01 02:25:59 +01:00 Compare
kjuulh force-pushed renovate/all from bd66b35bd3 to 70f7dc6205 2024-11-01 06:23:52 +01:00 Compare
kjuulh force-pushed renovate/all from 70f7dc6205 to 79888e4fd5 2024-11-02 02:24:26 +01:00 Compare
kjuulh force-pushed renovate/all from 79888e4fd5 to e3b4bc7a59 2024-11-02 06:22:52 +01:00 Compare
kjuulh force-pushed renovate/all from e3b4bc7a59 to 8ddbc27970 2024-11-04 02:20:17 +01:00 Compare
kjuulh force-pushed renovate/all from 8ddbc27970 to 513670e3c8 2024-11-04 06:18:59 +01:00 Compare
kjuulh force-pushed renovate/all from 513670e3c8 to b15b3db84f 2024-11-05 02:21:08 +01:00 Compare
kjuulh force-pushed renovate/all from b15b3db84f to 01eb40a120 2024-11-05 06:20:31 +01:00 Compare
kjuulh force-pushed renovate/all from 01eb40a120 to 08f489e7a7 2024-11-06 02:19:20 +01:00 Compare
kjuulh force-pushed renovate/all from 08f489e7a7 to d308a265e1 2024-11-06 06:19:34 +01:00 Compare
kjuulh force-pushed renovate/all from d308a265e1 to ecbe95087d 2024-11-07 02:22:03 +01:00 Compare
kjuulh force-pushed renovate/all from ecbe95087d to a7407e2456 2024-11-07 06:20:06 +01:00 Compare
kjuulh force-pushed renovate/all from a7407e2456 to 32a5044c32 2024-11-08 02:22:05 +01:00 Compare
kjuulh force-pushed renovate/all from 32a5044c32 to 4ceb423149 2024-11-08 06:20:54 +01:00 Compare
kjuulh force-pushed renovate/all from 4ceb423149 to 8d780bcbd0 2024-11-09 02:21:51 +01:00 Compare
kjuulh force-pushed renovate/all from 8d780bcbd0 to fb3f563dd3 2024-11-09 06:20:37 +01:00 Compare
kjuulh force-pushed renovate/all from fb3f563dd3 to ebb2655142 2024-11-10 02:20:50 +01:00 Compare
kjuulh force-pushed renovate/all from ebb2655142 to ab49e97ed5 2024-11-10 06:24:49 +01:00 Compare
kjuulh force-pushed renovate/all from ab49e97ed5 to 8913be367a 2024-11-11 02:21:22 +01:00 Compare
kjuulh force-pushed renovate/all from 8913be367a to 5d39cd67b8 2024-11-11 06:20:00 +01:00 Compare
kjuulh force-pushed renovate/all from 5d39cd67b8 to e62043e732 2024-11-12 02:20:52 +01:00 Compare
kjuulh force-pushed renovate/all from e62043e732 to d6b3a55f24 2024-11-12 06:21:01 +01:00 Compare
kjuulh force-pushed renovate/all from d6b3a55f24 to 7e143c762c 2024-11-13 02:30:34 +01:00 Compare
kjuulh force-pushed renovate/all from 7e143c762c to e5225a0af3 2024-11-13 06:24:43 +01:00 Compare
kjuulh force-pushed renovate/all from e5225a0af3 to 650c857fda 2024-11-14 02:22:55 +01:00 Compare
kjuulh force-pushed renovate/all from 650c857fda to a14b81972f 2024-11-14 06:26:16 +01:00 Compare
kjuulh force-pushed renovate/all from a14b81972f to 09226fe766 2024-11-15 02:21:45 +01:00 Compare
kjuulh force-pushed renovate/all from 09226fe766 to 1a035cd068 2024-11-15 06:22:47 +01:00 Compare
kjuulh force-pushed renovate/all from 1a035cd068 to a0c59bc7c5 2024-11-16 02:24:43 +01:00 Compare
kjuulh force-pushed renovate/all from a0c59bc7c5 to cd44e256b6 2024-11-16 06:23:45 +01:00 Compare
kjuulh force-pushed renovate/all from cd44e256b6 to ed37f87b6f 2024-11-17 02:22:01 +01:00 Compare
kjuulh force-pushed renovate/all from ed37f87b6f to 8ea0a7d028 2024-11-17 06:21:57 +01:00 Compare
kjuulh force-pushed renovate/all from 8ea0a7d028 to 0b134cfafe 2024-11-18 02:20:37 +01:00 Compare
kjuulh force-pushed renovate/all from 0b134cfafe to e7c836bc51 2024-11-18 06:20:09 +01:00 Compare
kjuulh force-pushed renovate/all from e7c836bc51 to c5c8b67a8e 2024-11-19 02:20:44 +01:00 Compare
kjuulh force-pushed renovate/all from c5c8b67a8e to ff501802ef 2024-11-19 06:20:20 +01:00 Compare
kjuulh force-pushed renovate/all from ff501802ef to 717ceb0895 2024-11-20 02:22:02 +01:00 Compare
kjuulh force-pushed renovate/all from 717ceb0895 to d2f94df727 2024-11-20 06:20:38 +01:00 Compare
kjuulh force-pushed renovate/all from d2f94df727 to ec961ec1f7 2024-11-21 02:22:12 +01:00 Compare
kjuulh force-pushed renovate/all from ec961ec1f7 to 31ee5ed1fa 2024-11-21 06:19:44 +01:00 Compare
kjuulh force-pushed renovate/all from 31ee5ed1fa to 0b7454ec53 2024-11-22 02:25:00 +01:00 Compare
kjuulh force-pushed renovate/all from 0b7454ec53 to 0801f518d9 2024-11-22 06:24:19 +01:00 Compare
kjuulh force-pushed renovate/all from 0801f518d9 to de1344669c 2024-11-23 02:28:15 +01:00 Compare
kjuulh force-pushed renovate/all from de1344669c to da58934382 2024-11-23 06:30:04 +01:00 Compare
kjuulh force-pushed renovate/all from da58934382 to ddd7e80d3f 2024-11-24 02:29:32 +01:00 Compare
kjuulh force-pushed renovate/all from ddd7e80d3f to c513f93e58 2024-11-24 06:26:31 +01:00 Compare
kjuulh force-pushed renovate/all from c513f93e58 to 36a97b2984 2024-11-25 02:24:22 +01:00 Compare
kjuulh force-pushed renovate/all from 36a97b2984 to 8ba2e4e45a 2024-11-25 06:26:12 +01:00 Compare
kjuulh force-pushed renovate/all from 8ba2e4e45a to e288123646 2024-11-26 02:41:32 +01:00 Compare
kjuulh force-pushed renovate/all from e288123646 to 24050b6aca 2024-11-26 06:25:37 +01:00 Compare
kjuulh force-pushed renovate/all from 24050b6aca to 230c67909b 2024-11-27 02:53:40 +01:00 Compare
kjuulh force-pushed renovate/all from 230c67909b to 09e35081d2 2024-11-27 06:24:37 +01:00 Compare
kjuulh force-pushed renovate/all from 09e35081d2 to 30c0acba6a 2024-11-28 02:25:57 +01:00 Compare
kjuulh force-pushed renovate/all from 30c0acba6a to c208befc1a 2024-11-28 06:23:32 +01:00 Compare
kjuulh force-pushed renovate/all from c208befc1a to 5fb359a01e 2024-11-28 06:24:07 +01:00 Compare
kjuulh force-pushed renovate/all from 5fb359a01e to 7a23a19be2 2024-11-29 02:23:21 +01:00 Compare
kjuulh force-pushed renovate/all from 7a23a19be2 to 3b9127b408 2024-11-29 06:22:55 +01:00 Compare
kjuulh force-pushed renovate/all from 3b9127b408 to dd3bf57235 2024-11-30 02:40:32 +01:00 Compare
kjuulh force-pushed renovate/all from dd3bf57235 to 0633c34cba 2024-11-30 06:43:15 +01:00 Compare
kjuulh force-pushed renovate/all from 0633c34cba to 637fd40c32 2024-12-01 02:24:33 +01:00 Compare
kjuulh force-pushed renovate/all from 637fd40c32 to ba3499b84c 2024-12-01 06:23:43 +01:00 Compare
kjuulh force-pushed renovate/all from ba3499b84c to bcc7385b54 2024-12-02 02:48:13 +01:00 Compare
kjuulh force-pushed renovate/all from bcc7385b54 to 2cc3d49b22 2024-12-02 06:33:23 +01:00 Compare
kjuulh force-pushed renovate/all from 2cc3d49b22 to bf2ee4f64a 2024-12-03 02:22:41 +01:00 Compare
kjuulh force-pushed renovate/all from bf2ee4f64a to 54fe20b6f2 2024-12-03 06:22:57 +01:00 Compare
kjuulh force-pushed renovate/all from 54fe20b6f2 to 4427739b6b 2024-12-04 02:29:03 +01:00 Compare
kjuulh force-pushed renovate/all from 4427739b6b to 039f8f94e2 2024-12-04 06:24:22 +01:00 Compare
kjuulh force-pushed renovate/all from 039f8f94e2 to bf7f72f7ac 2024-12-05 02:27:15 +01:00 Compare
kjuulh force-pushed renovate/all from bf7f72f7ac to 070757d9fc 2024-12-05 06:23:33 +01:00 Compare
kjuulh force-pushed renovate/all from 070757d9fc to 89a90f8560 2024-12-06 02:30:42 +01:00 Compare
kjuulh force-pushed renovate/all from 89a90f8560 to 551155a704 2024-12-06 06:24:44 +01:00 Compare
kjuulh force-pushed renovate/all from 551155a704 to 258b2b8716 2024-12-07 02:29:34 +01:00 Compare
kjuulh force-pushed renovate/all from 258b2b8716 to d6e2773783 2024-12-07 06:24:38 +01:00 Compare
kjuulh force-pushed renovate/all from d6e2773783 to 4637f626cc 2024-12-08 02:23:39 +01:00 Compare
kjuulh force-pushed renovate/all from 4637f626cc to e6afc8b723 2024-12-08 06:26:10 +01:00 Compare
kjuulh force-pushed renovate/all from e6afc8b723 to 0212f46cb8 2024-12-09 02:24:45 +01:00 Compare
kjuulh force-pushed renovate/all from 0212f46cb8 to ccff722052 2024-12-09 06:35:40 +01:00 Compare
kjuulh force-pushed renovate/all from ccff722052 to 562696d65b 2024-12-10 02:25:15 +01:00 Compare
kjuulh force-pushed renovate/all from 562696d65b to f80cf224e5 2024-12-10 06:25:13 +01:00 Compare
kjuulh force-pushed renovate/all from f80cf224e5 to 5b8949e2e3 2024-12-11 02:32:55 +01:00 Compare
kjuulh force-pushed renovate/all from 5b8949e2e3 to 9fb5aeb4d5 2024-12-11 06:23:15 +01:00 Compare
kjuulh force-pushed renovate/all from 9fb5aeb4d5 to 1c1a451e1f 2024-12-12 02:25:28 +01:00 Compare
kjuulh force-pushed renovate/all from 1c1a451e1f to 640be29a58 2024-12-12 02:26:00 +01:00 Compare
kjuulh force-pushed renovate/all from 640be29a58 to b149a29293 2024-12-12 06:22:25 +01:00 Compare
kjuulh force-pushed renovate/all from b149a29293 to 21045903d2 2024-12-13 02:23:51 +01:00 Compare
kjuulh force-pushed renovate/all from 21045903d2 to 13e9ed3780 2024-12-13 06:22:39 +01:00 Compare
kjuulh force-pushed renovate/all from 13e9ed3780 to d63b599df1 2024-12-14 02:23:02 +01:00 Compare
kjuulh force-pushed renovate/all from d63b599df1 to 61708c23bd 2024-12-14 06:22:42 +01:00 Compare
kjuulh force-pushed renovate/all from 61708c23bd to b398422fec 2024-12-15 02:22:00 +01:00 Compare
kjuulh force-pushed renovate/all from b398422fec to db88906e46 2024-12-15 06:21:36 +01:00 Compare
kjuulh force-pushed renovate/all from db88906e46 to 0428541715 2024-12-16 02:26:41 +01:00 Compare
kjuulh force-pushed renovate/all from 0428541715 to ef843b4035 2024-12-16 06:24:27 +01:00 Compare
kjuulh force-pushed renovate/all from ef843b4035 to 97604f2c5c 2024-12-17 02:24:11 +01:00 Compare
kjuulh force-pushed renovate/all from 97604f2c5c to eef0e74c48 2024-12-17 06:25:31 +01:00 Compare
kjuulh force-pushed renovate/all from eef0e74c48 to 3917dc3f6b 2024-12-18 02:25:45 +01:00 Compare
kjuulh force-pushed renovate/all from 3917dc3f6b to a29f81f11f 2024-12-18 06:22:04 +01:00 Compare
kjuulh force-pushed renovate/all from a29f81f11f to 23ba064fb8 2024-12-19 02:26:01 +01:00 Compare
kjuulh force-pushed renovate/all from 23ba064fb8 to 2bcb34ac94 2024-12-19 06:22:12 +01:00 Compare
kjuulh force-pushed renovate/all from 2bcb34ac94 to 52dd51cfe2 2024-12-20 02:23:39 +01:00 Compare
kjuulh force-pushed renovate/all from 52dd51cfe2 to 98d64c0eb6 2024-12-20 06:23:59 +01:00 Compare
kjuulh force-pushed renovate/all from 98d64c0eb6 to 9200461985 2024-12-21 02:25:58 +01:00 Compare
kjuulh force-pushed renovate/all from 9200461985 to b0230c2441 2024-12-21 06:22:08 +01:00 Compare
kjuulh force-pushed renovate/all from b0230c2441 to 0d3bd04327 2024-12-22 02:24:05 +01:00 Compare
kjuulh force-pushed renovate/all from 0d3bd04327 to 2908483166 2024-12-22 06:22:07 +01:00 Compare
kjuulh force-pushed renovate/all from 2908483166 to bb77b0240e 2024-12-23 02:27:52 +01:00 Compare
kjuulh force-pushed renovate/all from bb77b0240e to c0927c20e7 2024-12-23 06:29:26 +01:00 Compare
kjuulh force-pushed renovate/all from c0927c20e7 to 952be2b492 2024-12-24 02:30:40 +01:00 Compare
kjuulh force-pushed renovate/all from 952be2b492 to 73c939b5d5 2024-12-24 06:22:18 +01:00 Compare
kjuulh force-pushed renovate/all from 73c939b5d5 to 6daa80a77e 2024-12-25 02:27:11 +01:00 Compare
kjuulh force-pushed renovate/all from 6daa80a77e to bee260851e 2024-12-25 06:23:31 +01:00 Compare
kjuulh force-pushed renovate/all from bee260851e to a311c4e0aa 2024-12-26 02:25:01 +01:00 Compare
kjuulh force-pushed renovate/all from a311c4e0aa to e06226b751 2024-12-26 06:23:45 +01:00 Compare
kjuulh force-pushed renovate/all from e06226b751 to 94d9774877 2024-12-27 02:23:12 +01:00 Compare
kjuulh force-pushed renovate/all from 94d9774877 to 027ce0f914 2024-12-27 06:21:13 +01:00 Compare
kjuulh force-pushed renovate/all from 027ce0f914 to 696d75705f 2024-12-28 02:27:13 +01:00 Compare
kjuulh force-pushed renovate/all from 696d75705f to aa2c9be83a 2024-12-28 06:22:51 +01:00 Compare
kjuulh force-pushed renovate/all from aa2c9be83a to 0f506c26e2 2024-12-28 06:23:33 +01:00 Compare
kjuulh force-pushed renovate/all from 0f506c26e2 to 710cde4af1 2024-12-29 02:29:00 +01:00 Compare
kjuulh force-pushed renovate/all from 710cde4af1 to 41c274eb9f 2024-12-29 06:22:03 +01:00 Compare
kjuulh force-pushed renovate/all from 41c274eb9f to 4f18959ece 2024-12-30 02:23:15 +01:00 Compare
kjuulh force-pushed renovate/all from 4f18959ece to 427595655d 2024-12-30 06:22:31 +01:00 Compare
kjuulh force-pushed renovate/all from 427595655d to 30faa8cbc9 2024-12-31 02:24:37 +01:00 Compare
kjuulh force-pushed renovate/all from 30faa8cbc9 to bfa3f56203 2024-12-31 06:24:35 +01:00 Compare
kjuulh force-pushed renovate/all from bfa3f56203 to 21cd92f498 2025-01-01 02:25:56 +01:00 Compare
kjuulh force-pushed renovate/all from 21cd92f498 to d45c98109f 2025-01-01 06:23:43 +01:00 Compare
kjuulh force-pushed renovate/all from d45c98109f to 3e05761308 2025-01-02 02:23:53 +01:00 Compare
kjuulh force-pushed renovate/all from 3e05761308 to ff5a714c28 2025-01-02 06:22:03 +01:00 Compare
kjuulh force-pushed renovate/all from ff5a714c28 to ab87857a60 2025-01-03 02:21:23 +01:00 Compare
kjuulh force-pushed renovate/all from ab87857a60 to 97f4c7ee8b 2025-01-03 06:22:53 +01:00 Compare
kjuulh force-pushed renovate/all from 97f4c7ee8b to ba89f121ee 2025-01-04 02:23:54 +01:00 Compare
kjuulh force-pushed renovate/all from ba89f121ee to 936dacc86c 2025-01-04 06:22:54 +01:00 Compare
kjuulh force-pushed renovate/all from 936dacc86c to e6f365608b 2025-01-05 02:25:31 +01:00 Compare
kjuulh force-pushed renovate/all from e6f365608b to 934d8808a1 2025-01-05 06:22:18 +01:00 Compare
kjuulh force-pushed renovate/all from 934d8808a1 to 37888c42cb 2025-01-06 02:21:24 +01:00 Compare
kjuulh force-pushed renovate/all from 37888c42cb to 81c1378394 2025-01-06 06:21:29 +01:00 Compare
kjuulh force-pushed renovate/all from 81c1378394 to bb630fb079 2025-01-07 02:25:10 +01:00 Compare
kjuulh force-pushed renovate/all from bb630fb079 to 6e7ac6383a 2025-01-07 06:22:16 +01:00 Compare
kjuulh force-pushed renovate/all from 6e7ac6383a to 343ccaed16 2025-01-08 02:22:49 +01:00 Compare
kjuulh force-pushed renovate/all from 343ccaed16 to 227d5dd6ea 2025-01-08 06:24:00 +01:00 Compare
kjuulh force-pushed renovate/all from 227d5dd6ea to 430e9de3d6 2025-01-09 02:25:24 +01:00 Compare
kjuulh force-pushed renovate/all from 430e9de3d6 to d061fca89e 2025-01-09 06:22:33 +01:00 Compare
kjuulh force-pushed renovate/all from d061fca89e to a20fc80f26 2025-01-10 02:23:37 +01:00 Compare
kjuulh force-pushed renovate/all from a20fc80f26 to 91c1182ff5 2025-01-10 06:23:47 +01:00 Compare
kjuulh force-pushed renovate/all from 91c1182ff5 to e506b662e6 2025-01-11 02:23:29 +01:00 Compare
kjuulh force-pushed renovate/all from e506b662e6 to 169a6d726b 2025-01-11 06:24:28 +01:00 Compare
kjuulh force-pushed renovate/all from 169a6d726b to f223120478 2025-01-12 02:26:07 +01:00 Compare
kjuulh force-pushed renovate/all from f223120478 to e386133bcc 2025-01-12 06:24:43 +01:00 Compare
kjuulh force-pushed renovate/all from e386133bcc to 8bf40ef787 2025-01-13 02:27:42 +01:00 Compare
kjuulh force-pushed renovate/all from 8bf40ef787 to 42a2bafac8 2025-01-13 06:25:39 +01:00 Compare
kjuulh force-pushed renovate/all from 42a2bafac8 to 60e781b6de 2025-01-14 02:25:13 +01:00 Compare
kjuulh force-pushed renovate/all from 60e781b6de to ab5ec4999b 2025-01-14 06:24:58 +01:00 Compare
kjuulh force-pushed renovate/all from ab5ec4999b to 8f46098279 2025-01-15 02:32:12 +01:00 Compare
kjuulh force-pushed renovate/all from 8f46098279 to aed1f68e7e 2025-01-15 06:29:19 +01:00 Compare
kjuulh force-pushed renovate/all from aed1f68e7e to 23865b7aed 2025-01-16 02:28:07 +01:00 Compare
kjuulh force-pushed renovate/all from 23865b7aed to ec5b3d66ae 2025-01-16 06:25:29 +01:00 Compare
kjuulh force-pushed renovate/all from ec5b3d66ae to bcc0da313e 2025-01-17 02:27:14 +01:00 Compare
kjuulh force-pushed renovate/all from bcc0da313e to d1ac7e97dd 2025-01-17 06:25:27 +01:00 Compare
kjuulh force-pushed renovate/all from d1ac7e97dd to 1291896e0f 2025-01-18 02:29:05 +01:00 Compare
kjuulh force-pushed renovate/all from 1291896e0f to c041d873f8 2025-01-18 06:26:12 +01:00 Compare
kjuulh force-pushed renovate/all from c041d873f8 to 32e3b46e51 2025-01-19 02:29:00 +01:00 Compare
kjuulh force-pushed renovate/all from 32e3b46e51 to aad7c98ab0 2025-01-19 06:26:24 +01:00 Compare
kjuulh force-pushed renovate/all from aad7c98ab0 to dfb9272184 2025-01-20 02:27:32 +01:00 Compare
kjuulh force-pushed renovate/all from dfb9272184 to d38f8c2780 2025-01-20 06:26:35 +01:00 Compare
kjuulh force-pushed renovate/all from d38f8c2780 to 133d676499 2025-01-21 02:27:02 +01:00 Compare
kjuulh force-pushed renovate/all from 133d676499 to e91cd7eb83 2025-01-21 06:28:56 +01:00 Compare
kjuulh force-pushed renovate/all from e91cd7eb83 to 25a580fa10 2025-01-22 02:27:49 +01:00 Compare
kjuulh force-pushed renovate/all from 25a580fa10 to 9f35c4085a 2025-01-22 06:26:56 +01:00 Compare
kjuulh force-pushed renovate/all from 9f35c4085a to 1e87630ca3 2025-01-23 02:27:44 +01:00 Compare
kjuulh force-pushed renovate/all from 1e87630ca3 to 276eabe42c 2025-01-23 06:26:48 +01:00 Compare
kjuulh force-pushed renovate/all from 276eabe42c to 1b86eebeb4 2025-01-24 02:31:21 +01:00 Compare
kjuulh force-pushed renovate/all from 1b86eebeb4 to 546a79c4de 2025-01-24 06:29:55 +01:00 Compare
kjuulh force-pushed renovate/all from 546a79c4de to f7e7bb600c 2025-01-25 02:29:17 +01:00 Compare
kjuulh force-pushed renovate/all from f7e7bb600c to f30cdb147c 2025-01-25 06:28:34 +01:00 Compare
kjuulh force-pushed renovate/all from f30cdb147c to 1cacc4d74b 2025-01-26 02:29:38 +01:00 Compare
kjuulh force-pushed renovate/all from 1cacc4d74b to b52d56c344 2025-01-26 06:28:10 +01:00 Compare
kjuulh force-pushed renovate/all from b52d56c344 to 1702ec367c 2025-01-27 02:31:10 +01:00 Compare
kjuulh force-pushed renovate/all from 1702ec367c to e05542c308 2025-01-27 06:28:43 +01:00 Compare
kjuulh force-pushed renovate/all from e05542c308 to fec8ef53b4 2025-01-28 02:27:56 +01:00 Compare
kjuulh force-pushed renovate/all from fec8ef53b4 to ea3d4aa60f 2025-01-28 06:28:27 +01:00 Compare
kjuulh force-pushed renovate/all from ea3d4aa60f to b1d3249c53 2025-01-29 02:30:42 +01:00 Compare
kjuulh force-pushed renovate/all from b1d3249c53 to 768d94cf17 2025-01-29 06:30:15 +01:00 Compare
kjuulh force-pushed renovate/all from 768d94cf17 to dad397af28 2025-01-30 02:32:44 +01:00 Compare
kjuulh force-pushed renovate/all from dad397af28 to af0e36f8c4 2025-01-30 06:33:15 +01:00 Compare
kjuulh force-pushed renovate/all from af0e36f8c4 to ce9a9206b6 2025-01-31 02:29:56 +01:00 Compare
kjuulh force-pushed renovate/all from ce9a9206b6 to 5b1bffb932 2025-01-31 06:28:31 +01:00 Compare
kjuulh force-pushed renovate/all from 5b1bffb932 to 3f6805384d 2025-02-01 02:27:54 +01:00 Compare
kjuulh force-pushed renovate/all from 3f6805384d to 0493584103 2025-02-01 06:28:41 +01:00 Compare
kjuulh force-pushed renovate/all from 0493584103 to 17fbe54f36 2025-02-02 02:28:31 +01:00 Compare
kjuulh force-pushed renovate/all from 17fbe54f36 to a05ce52faf 2025-02-02 06:26:29 +01:00 Compare
kjuulh force-pushed renovate/all from a05ce52faf to 7a6d9fd494 2025-02-03 02:27:11 +01:00 Compare
kjuulh force-pushed renovate/all from 7a6d9fd494 to beaca20797 2025-02-03 06:26:51 +01:00 Compare
kjuulh force-pushed renovate/all from beaca20797 to 0fc066683e 2025-02-04 02:28:39 +01:00 Compare
kjuulh force-pushed renovate/all from 0fc066683e to 037d4bc6cd 2025-02-04 06:28:05 +01:00 Compare
kjuulh force-pushed renovate/all from 037d4bc6cd to 21638c18fc 2025-02-05 02:28:32 +01:00 Compare
kjuulh force-pushed renovate/all from 21638c18fc to a4999cf971 2025-02-05 06:31:00 +01:00 Compare
kjuulh force-pushed renovate/all from a4999cf971 to 47169db97d 2025-02-06 02:29:11 +01:00 Compare
kjuulh force-pushed renovate/all from 47169db97d to c73b230bc3 2025-02-06 06:27:14 +01:00 Compare
kjuulh force-pushed renovate/all from c73b230bc3 to 783ed34c99 2025-02-07 02:27:53 +01:00 Compare
kjuulh force-pushed renovate/all from 783ed34c99 to 6901e8ffb7 2025-02-07 06:26:32 +01:00 Compare
kjuulh force-pushed renovate/all from 6901e8ffb7 to 7bd71240f8 2025-02-08 02:29:30 +01:00 Compare
kjuulh force-pushed renovate/all from 7bd71240f8 to c5cbc1249d 2025-02-08 06:26:57 +01:00 Compare
kjuulh force-pushed renovate/all from c5cbc1249d to 4c0dcf3221 2025-02-09 02:28:43 +01:00 Compare
kjuulh force-pushed renovate/all from 4c0dcf3221 to aef770b786 2025-02-09 06:27:15 +01:00 Compare
kjuulh force-pushed renovate/all from aef770b786 to fa9479d36d 2025-02-10 02:28:06 +01:00 Compare
kjuulh force-pushed renovate/all from fa9479d36d to 510c719a91 2025-02-10 06:27:20 +01:00 Compare
kjuulh force-pushed renovate/all from 510c719a91 to 201e98d86d 2025-02-11 02:29:24 +01:00 Compare
kjuulh force-pushed renovate/all from 201e98d86d to f2e852975f 2025-02-11 06:27:27 +01:00 Compare
kjuulh force-pushed renovate/all from f2e852975f to af5cdd1318 2025-02-12 02:30:51 +01:00 Compare
kjuulh force-pushed renovate/all from af5cdd1318 to a7151e85cd 2025-02-12 06:28:25 +01:00 Compare
kjuulh force-pushed renovate/all from a7151e85cd to 2dd440d8db 2025-02-13 02:28:07 +01:00 Compare
kjuulh force-pushed renovate/all from 2dd440d8db to c5a462e1a1 2025-02-13 06:26:55 +01:00 Compare
kjuulh force-pushed renovate/all from c5a462e1a1 to b5de2acbfd 2025-02-14 02:27:29 +01:00 Compare
kjuulh force-pushed renovate/all from b5de2acbfd to 5bd858b957 2025-02-14 06:25:14 +01:00 Compare
kjuulh force-pushed renovate/all from 5bd858b957 to 8e3e9aee68 2025-02-15 02:27:07 +01:00 Compare
kjuulh force-pushed renovate/all from 8e3e9aee68 to 150e824e70 2025-02-15 06:25:20 +01:00 Compare
kjuulh force-pushed renovate/all from 150e824e70 to d0ddfd6c9c 2025-02-16 02:26:56 +01:00 Compare
kjuulh force-pushed renovate/all from d0ddfd6c9c to 47e8824ae4 2025-02-16 06:25:05 +01:00 Compare
kjuulh force-pushed renovate/all from 47e8824ae4 to 2b63eb7d94 2025-02-17 02:28:11 +01:00 Compare
kjuulh force-pushed renovate/all from 2b63eb7d94 to 937020bdd2 2025-02-17 06:26:16 +01:00 Compare
kjuulh force-pushed renovate/all from 937020bdd2 to f078024fcc 2025-02-18 02:29:31 +01:00 Compare
kjuulh force-pushed renovate/all from f078024fcc to e24c2347c6 2025-02-18 06:27:10 +01:00 Compare
kjuulh force-pushed renovate/all from e24c2347c6 to 9790bfba2f 2025-02-19 02:28:28 +01:00 Compare
kjuulh force-pushed renovate/all from 9790bfba2f to 903ff757ba 2025-02-19 06:26:53 +01:00 Compare
kjuulh force-pushed renovate/all from 903ff757ba to a57213096f 2025-02-20 02:32:29 +01:00 Compare
kjuulh force-pushed renovate/all from a57213096f to 977b1a15d2 2025-02-20 06:28:04 +01:00 Compare
kjuulh force-pushed renovate/all from 977b1a15d2 to 91411c1948 2025-02-21 02:30:32 +01:00 Compare
kjuulh force-pushed renovate/all from 91411c1948 to 473182b965 2025-02-21 06:26:35 +01:00 Compare
kjuulh force-pushed renovate/all from 473182b965 to 95f4069ec0 2025-02-22 02:26:58 +01:00 Compare
kjuulh force-pushed renovate/all from 95f4069ec0 to 601ca45225 2025-02-22 06:29:13 +01:00 Compare
kjuulh force-pushed renovate/all from 601ca45225 to 7daa5252c2 2025-02-23 02:27:16 +01:00 Compare
kjuulh force-pushed renovate/all from 7daa5252c2 to 5bac35c4cc 2025-02-23 06:29:04 +01:00 Compare
kjuulh force-pushed renovate/all from 5bac35c4cc to dce9ac2f68 2025-02-24 02:28:47 +01:00 Compare
kjuulh force-pushed renovate/all from dce9ac2f68 to ac5dd8678a 2025-02-24 06:27:09 +01:00 Compare
kjuulh force-pushed renovate/all from ac5dd8678a to b7848bf962 2025-02-25 02:28:56 +01:00 Compare
kjuulh force-pushed renovate/all from b7848bf962 to 4d1ebbfb20 2025-02-25 06:28:00 +01:00 Compare
kjuulh force-pushed renovate/all from 4d1ebbfb20 to e92f82685d 2025-02-26 02:28:37 +01:00 Compare
kjuulh force-pushed renovate/all from e92f82685d to 585eae642d 2025-02-26 06:28:40 +01:00 Compare
kjuulh force-pushed renovate/all from 585eae642d to ff3edff73b 2025-02-27 02:31:58 +01:00 Compare
kjuulh force-pushed renovate/all from ff3edff73b to ced5f8ed58 2025-02-27 06:28:46 +01:00 Compare
kjuulh force-pushed renovate/all from ced5f8ed58 to db88b736bc 2025-02-28 02:31:11 +01:00 Compare
kjuulh force-pushed renovate/all from db88b736bc to 30f436f073 2025-02-28 06:29:24 +01:00 Compare
kjuulh force-pushed renovate/all from 30f436f073 to a4da945387 2025-03-01 02:29:50 +01:00 Compare
kjuulh force-pushed renovate/all from a4da945387 to f9bdbc0913 2025-03-01 06:28:02 +01:00 Compare
kjuulh force-pushed renovate/all from f9bdbc0913 to dc361748d5 2025-03-02 02:28:38 +01:00 Compare
kjuulh force-pushed renovate/all from dc361748d5 to 5a39d58652 2025-03-02 06:39:14 +01:00 Compare
kjuulh force-pushed renovate/all from 5a39d58652 to 360f0c1e61 2025-03-03 02:27:14 +01:00 Compare
kjuulh force-pushed renovate/all from 360f0c1e61 to 8028a2360a 2025-03-03 06:28:43 +01:00 Compare
kjuulh force-pushed renovate/all from 8028a2360a to 5ea75dbf01 2025-03-04 02:31:06 +01:00 Compare
kjuulh force-pushed renovate/all from 5ea75dbf01 to cf37b31354 2025-03-04 06:29:23 +01:00 Compare
kjuulh force-pushed renovate/all from cf37b31354 to 8b1d55db10 2025-03-05 02:30:03 +01:00 Compare
kjuulh force-pushed renovate/all from 8b1d55db10 to ead48acd34 2025-03-05 06:28:47 +01:00 Compare
kjuulh force-pushed renovate/all from ead48acd34 to cdb9a2cb0e 2025-03-06 02:31:10 +01:00 Compare
kjuulh force-pushed renovate/all from cdb9a2cb0e to 57766a04b4 2025-03-06 06:29:49 +01:00 Compare
kjuulh force-pushed renovate/all from 57766a04b4 to 79b8d2084a 2025-03-25 23:46:55 +01:00 Compare
kjuulh force-pushed renovate/all from 79b8d2084a to 7e15a7f09c 2025-03-26 00:39:31 +01:00 Compare
kjuulh force-pushed renovate/all from 7e15a7f09c to 7f92bb34c8 2025-03-26 01:05:35 +01:00 Compare
kjuulh force-pushed renovate/all from 7f92bb34c8 to f55a1cf618 2025-03-26 01:42:01 +01:00 Compare
kjuulh force-pushed renovate/all from f55a1cf618 to a286607778 2025-03-26 02:10:49 +01:00 Compare
kjuulh force-pushed renovate/all from a286607778 to 91ba364270 2025-03-26 02:40:59 +01:00 Compare
kjuulh force-pushed renovate/all from 91ba364270 to 127f8283d4 2025-03-26 03:10:46 +01:00 Compare
kjuulh force-pushed renovate/all from 127f8283d4 to 4f6fefe584 2025-03-26 03:40:26 +01:00 Compare
kjuulh force-pushed renovate/all from 4f6fefe584 to bb592605bd 2025-03-26 04:09:39 +01:00 Compare
kjuulh force-pushed renovate/all from bb592605bd to 516d3f2c93 2025-03-26 04:38:35 +01:00 Compare
kjuulh force-pushed renovate/all from 516d3f2c93 to 1bbe3f243a 2025-03-26 05:08:29 +01:00 Compare
kjuulh force-pushed renovate/all from 1bbe3f243a to 8920478095 2025-03-26 05:38:05 +01:00 Compare
kjuulh force-pushed renovate/all from 8920478095 to f26d5b8a40 2025-03-26 06:07:51 +01:00 Compare
kjuulh force-pushed renovate/all from f26d5b8a40 to a682e59cc7 2025-03-26 06:37:53 +01:00 Compare
kjuulh force-pushed renovate/all from a682e59cc7 to 00a01ff8db 2025-03-26 07:07:12 +01:00 Compare
kjuulh force-pushed renovate/all from 00a01ff8db to 6cb070cc4b 2025-03-26 07:36:44 +01:00 Compare
kjuulh force-pushed renovate/all from 6cb070cc4b to 9afebaa28e 2025-03-26 08:04:28 +01:00 Compare
kjuulh force-pushed renovate/all from 9afebaa28e to 8862e9f34f 2025-03-26 08:33:23 +01:00 Compare
kjuulh force-pushed renovate/all from 8862e9f34f to fe4d73e83a 2025-03-26 09:01:55 +01:00 Compare
kjuulh force-pushed renovate/all from fe4d73e83a to e3254bf368 2025-03-26 09:30:31 +01:00 Compare
kjuulh force-pushed renovate/all from e3254bf368 to 1085e09a12 2025-03-26 09:58:38 +01:00 Compare
kjuulh force-pushed renovate/all from 1085e09a12 to 282fa7b02b 2025-03-26 10:27:38 +01:00 Compare
kjuulh force-pushed renovate/all from 282fa7b02b to 7dc82daa68 2025-03-26 11:02:39 +01:00 Compare
kjuulh force-pushed renovate/all from 7dc82daa68 to 14d7324647 2025-03-26 11:37:43 +01:00 Compare
kjuulh force-pushed renovate/all from 14d7324647 to 42b5dc9a7f 2025-03-26 12:07:34 +01:00 Compare
kjuulh force-pushed renovate/all from 42b5dc9a7f to 4dd13c3a4d 2025-03-26 12:37:02 +01:00 Compare
kjuulh force-pushed renovate/all from 4dd13c3a4d to 18cf8ef4c4 2025-03-26 13:04:30 +01:00 Compare
kjuulh force-pushed renovate/all from 18cf8ef4c4 to bcbefd2ac8 2025-03-26 13:33:48 +01:00 Compare
kjuulh force-pushed renovate/all from bcbefd2ac8 to ba0385fcaf 2025-03-26 14:01:27 +01:00 Compare
kjuulh force-pushed renovate/all from ba0385fcaf to 7feb5ed4f5 2025-03-26 14:31:07 +01:00 Compare
kjuulh force-pushed renovate/all from 7feb5ed4f5 to 5deda233df 2025-03-26 14:59:24 +01:00 Compare
kjuulh force-pushed renovate/all from 5deda233df to cb2fb39aed 2025-03-26 15:29:02 +01:00 Compare
kjuulh force-pushed renovate/all from cb2fb39aed to 8b04b24534 2025-03-26 16:02:39 +01:00 Compare
kjuulh force-pushed renovate/all from 8b04b24534 to 89e13672d6 2025-03-26 16:38:16 +01:00 Compare
kjuulh force-pushed renovate/all from 89e13672d6 to a7a72e0a90 2025-03-26 17:07:07 +01:00 Compare
kjuulh force-pushed renovate/all from a7a72e0a90 to 164840ab39 2025-03-26 17:36:16 +01:00 Compare
kjuulh force-pushed renovate/all from 164840ab39 to a81b45429e 2025-03-26 18:05:57 +01:00 Compare
kjuulh force-pushed renovate/all from a81b45429e to 0668c17eff 2025-03-26 18:35:13 +01:00 Compare
kjuulh force-pushed renovate/all from 0668c17eff to 695f796d58 2025-03-26 19:02:59 +01:00 Compare
kjuulh force-pushed renovate/all from 695f796d58 to f5a04a8d69 2025-03-26 19:21:52 +01:00 Compare
kjuulh force-pushed renovate/all from f5a04a8d69 to cecf04b4f1 2025-03-26 19:58:13 +01:00 Compare
kjuulh force-pushed renovate/all from cecf04b4f1 to 91867b89ff 2025-03-26 20:27:39 +01:00 Compare
kjuulh force-pushed renovate/all from 91867b89ff to d178f4614a 2025-03-26 20:58:45 +01:00 Compare
kjuulh force-pushed renovate/all from d178f4614a to 6200c24785 2025-03-26 21:32:02 +01:00 Compare
kjuulh force-pushed renovate/all from 6200c24785 to 88a8504a4b 2025-03-26 22:03:33 +01:00 Compare
kjuulh force-pushed renovate/all from 88a8504a4b to 25af52b3f1 2025-03-26 22:32:55 +01:00 Compare
kjuulh force-pushed renovate/all from 25af52b3f1 to 40e8a6df99 2025-03-26 23:02:50 +01:00 Compare
kjuulh force-pushed renovate/all from 40e8a6df99 to faaf83dac9 2025-03-26 23:33:37 +01:00 Compare
kjuulh force-pushed renovate/all from faaf83dac9 to 48356cc797 2025-03-27 00:04:46 +01:00 Compare
kjuulh force-pushed renovate/all from 48356cc797 to 974061c116 2025-03-27 00:35:08 +01:00 Compare
kjuulh force-pushed renovate/all from 974061c116 to 463593600e 2025-03-27 01:04:31 +01:00 Compare
kjuulh force-pushed renovate/all from 463593600e to 3030481e06 2025-03-27 01:31:56 +01:00 Compare
kjuulh force-pushed renovate/all from 3030481e06 to e95221c0db 2025-03-27 02:00:54 +01:00 Compare
kjuulh force-pushed renovate/all from e95221c0db to a3197fb3d7 2025-03-27 02:29:15 +01:00 Compare
kjuulh force-pushed renovate/all from a3197fb3d7 to e15b726c59 2025-03-27 02:59:17 +01:00 Compare
kjuulh force-pushed renovate/all from e15b726c59 to 98680b3a7e 2025-03-27 03:32:05 +01:00 Compare
kjuulh force-pushed renovate/all from 98680b3a7e to 949d38f299 2025-03-27 04:04:15 +01:00 Compare
kjuulh force-pushed renovate/all from 949d38f299 to daa655db39 2025-03-27 04:33:59 +01:00 Compare
kjuulh force-pushed renovate/all from daa655db39 to 6347f41a4f 2025-03-27 05:06:45 +01:00 Compare
kjuulh force-pushed renovate/all from 6347f41a4f to c6e311f0f2 2025-03-27 05:37:54 +01:00 Compare
kjuulh force-pushed renovate/all from c6e311f0f2 to 21e854648e 2025-03-27 06:08:24 +01:00 Compare
kjuulh force-pushed renovate/all from 21e854648e to 3e1ba7b393 2025-03-27 06:36:41 +01:00 Compare
kjuulh force-pushed renovate/all from 3e1ba7b393 to 9fd3e90a47 2025-03-27 07:06:14 +01:00 Compare
kjuulh force-pushed renovate/all from 9fd3e90a47 to 41fe402f7f 2025-03-27 07:34:59 +01:00 Compare
kjuulh force-pushed renovate/all from 41fe402f7f to 404077fe3e 2025-03-27 08:03:49 +01:00 Compare
kjuulh force-pushed renovate/all from 404077fe3e to 32a84d624b 2025-03-27 08:32:43 +01:00 Compare
kjuulh force-pushed renovate/all from 32a84d624b to e8c32613e9 2025-03-27 09:01:19 +01:00 Compare
kjuulh force-pushed renovate/all from e8c32613e9 to 530097d695 2025-03-27 09:29:34 +01:00 Compare
kjuulh force-pushed renovate/all from 530097d695 to f9155e99f5 2025-03-27 09:59:04 +01:00 Compare
kjuulh force-pushed renovate/all from f9155e99f5 to 60df9539a5 2025-03-27 10:22:11 +01:00 Compare
kjuulh force-pushed renovate/all from 60df9539a5 to c101516af5 2025-03-27 10:58:44 +01:00 Compare
kjuulh force-pushed renovate/all from c101516af5 to e7877b8d5b 2025-03-27 11:27:28 +01:00 Compare
kjuulh force-pushed renovate/all from e7877b8d5b to f9b7b5e6fb 2025-03-27 11:56:33 +01:00 Compare
kjuulh force-pushed renovate/all from f9b7b5e6fb to c242bc31ed 2025-03-27 12:25:39 +01:00 Compare
kjuulh force-pushed renovate/all from c242bc31ed to 36606491cf 2025-03-27 12:55:14 +01:00 Compare
kjuulh force-pushed renovate/all from 36606491cf to 2604bf2c3a 2025-03-27 13:42:34 +01:00 Compare
kjuulh force-pushed renovate/all from 2604bf2c3a to 9ac5409adc 2025-03-27 14:20:25 +01:00 Compare
kjuulh force-pushed renovate/all from 9ac5409adc to 0fba18a5dc 2025-03-27 14:50:36 +01:00 Compare
kjuulh force-pushed renovate/all from 0fba18a5dc to 32b77386ac 2025-03-27 15:22:45 +01:00 Compare
kjuulh force-pushed renovate/all from 32b77386ac to 4c599fae21 2025-03-27 15:59:37 +01:00 Compare
kjuulh force-pushed renovate/all from 4c599fae21 to 5bca8d9c1d 2025-03-27 16:28:25 +01:00 Compare
kjuulh force-pushed renovate/all from 5bca8d9c1d to a9d64129a1 2025-03-27 16:58:04 +01:00 Compare
kjuulh force-pushed renovate/all from a9d64129a1 to 9945f458e4 2025-03-27 17:28:41 +01:00 Compare
kjuulh force-pushed renovate/all from 9945f458e4 to c645c648eb 2025-03-27 17:59:58 +01:00 Compare
kjuulh force-pushed renovate/all from c645c648eb to b9cd5f750d 2025-03-27 18:30:53 +01:00 Compare
kjuulh force-pushed renovate/all from b9cd5f750d to 0b66569c6b 2025-03-27 19:01:09 +01:00 Compare
kjuulh force-pushed renovate/all from 0b66569c6b to c5f9d49077 2025-03-27 19:29:15 +01:00 Compare
kjuulh force-pushed renovate/all from c5f9d49077 to c044a52081 2025-03-27 19:58:46 +01:00 Compare
kjuulh force-pushed renovate/all from c044a52081 to 96e64160eb 2025-03-27 20:27:06 +01:00 Compare
kjuulh force-pushed renovate/all from 96e64160eb to 5a81cb2676 2025-03-27 20:56:54 +01:00 Compare
kjuulh force-pushed renovate/all from 5a81cb2676 to c2b3a42311 2025-03-27 21:25:22 +01:00 Compare
kjuulh force-pushed renovate/all from c2b3a42311 to 36b518005f 2025-03-27 21:56:03 +01:00 Compare
kjuulh force-pushed renovate/all from 36b518005f to 5788492250 2025-03-28 23:22:31 +01:00 Compare
kjuulh force-pushed renovate/all from 5788492250 to 6f5d9d6be1 2025-03-29 02:17:37 +01:00 Compare
kjuulh force-pushed renovate/all from 6f5d9d6be1 to 3565131a38 2025-03-29 05:18:14 +01:00 Compare
kjuulh force-pushed renovate/all from 3565131a38 to 7291279c11 2025-03-30 05:18:55 +02:00 Compare
kjuulh force-pushed renovate/all from 7291279c11 to 34632e1053 2025-03-31 02:17:15 +02:00 Compare
kjuulh force-pushed renovate/all from 34632e1053 to c2fd26e48b 2025-03-31 05:17:45 +02:00 Compare
kjuulh force-pushed renovate/all from c2fd26e48b to e96376d8fe 2025-04-01 02:18:02 +02:00 Compare
kjuulh force-pushed renovate/all from e96376d8fe to 61d049d2ff 2025-04-01 05:18:13 +02:00 Compare
kjuulh force-pushed renovate/all from 61d049d2ff to 0e6a36a5a7 2025-04-02 02:20:11 +02:00 Compare
kjuulh force-pushed renovate/all from 0e6a36a5a7 to 0e0823b88c 2025-04-02 05:18:10 +02:00 Compare
kjuulh force-pushed renovate/all from 0e0823b88c to 0f6fcfe836 2025-04-03 02:19:53 +02:00 Compare
kjuulh force-pushed renovate/all from 0f6fcfe836 to 43db8f096b 2025-04-03 05:17:39 +02:00 Compare
kjuulh force-pushed renovate/all from 43db8f096b to 408e785532 2025-04-04 02:18:11 +02:00 Compare
kjuulh force-pushed renovate/all from 408e785532 to 8bc90debfb 2025-04-04 05:17:22 +02:00 Compare
kjuulh force-pushed renovate/all from 8bc90debfb to 821f2d5886 2025-04-05 02:17:56 +02:00 Compare
kjuulh force-pushed renovate/all from 821f2d5886 to 0ab1f47690 2025-04-05 05:18:32 +02:00 Compare
kjuulh force-pushed renovate/all from 0ab1f47690 to 802f561480 2025-04-06 02:18:11 +02:00 Compare
kjuulh force-pushed renovate/all from 802f561480 to f2296985db 2025-04-06 05:18:57 +02:00 Compare
kjuulh force-pushed renovate/all from f2296985db to 2b8d93469d 2025-04-07 02:18:42 +02:00 Compare
kjuulh force-pushed renovate/all from 2b8d93469d to 2655d5cb4f 2025-04-07 05:17:47 +02:00 Compare
kjuulh force-pushed renovate/all from 2655d5cb4f to 25fdccad53 2025-04-08 02:18:33 +02:00 Compare
kjuulh force-pushed renovate/all from 25fdccad53 to d2c98f07b2 2025-04-08 05:18:44 +02:00 Compare
kjuulh force-pushed renovate/all from d2c98f07b2 to 63d18b8fda 2025-04-09 02:18:48 +02:00 Compare
kjuulh force-pushed renovate/all from 63d18b8fda to 1f3a55bceb 2025-04-09 05:18:02 +02:00 Compare
kjuulh force-pushed renovate/all from 1f3a55bceb to 66f373264a 2025-04-10 02:18:54 +02:00 Compare
kjuulh force-pushed renovate/all from 66f373264a to e600779b5c 2025-04-10 05:18:06 +02:00 Compare
kjuulh force-pushed renovate/all from e600779b5c to c2fa647707 2025-04-11 02:18:48 +02:00 Compare
kjuulh force-pushed renovate/all from c2fa647707 to 398dc61ab0 2025-04-11 05:18:31 +02:00 Compare
kjuulh force-pushed renovate/all from 398dc61ab0 to fae2d3f905 2025-04-12 02:20:33 +02:00 Compare
kjuulh force-pushed renovate/all from fae2d3f905 to 51e7c9ea7b 2025-04-12 05:18:59 +02:00 Compare
kjuulh force-pushed renovate/all from 51e7c9ea7b to ef4dd7d6b6 2025-04-13 02:19:57 +02:00 Compare
kjuulh force-pushed renovate/all from ef4dd7d6b6 to 51eecb9b23 2025-04-13 05:18:35 +02:00 Compare
kjuulh force-pushed renovate/all from 51eecb9b23 to 46435e75b4 2025-04-14 02:18:11 +02:00 Compare
kjuulh force-pushed renovate/all from 46435e75b4 to 7b172e1f4b 2025-04-14 05:18:58 +02:00 Compare
kjuulh force-pushed renovate/all from 7b172e1f4b to 2f2f6b6d4a 2025-04-15 02:20:58 +02:00 Compare
kjuulh force-pushed renovate/all from 2f2f6b6d4a to b17ea4b651 2025-04-15 05:18:24 +02:00 Compare
kjuulh force-pushed renovate/all from b17ea4b651 to 9dc4074980 2025-04-16 02:19:17 +02:00 Compare
kjuulh force-pushed renovate/all from 9dc4074980 to b5455e252d 2025-04-16 05:18:22 +02:00 Compare
kjuulh force-pushed renovate/all from b5455e252d to 7e6a55a865 2025-04-17 02:17:35 +02:00 Compare
kjuulh force-pushed renovate/all from 7e6a55a865 to a34e3216ba 2025-04-17 05:18:19 +02:00 Compare
kjuulh force-pushed renovate/all from a34e3216ba to 85042db605 2025-04-18 02:19:10 +02:00 Compare
kjuulh force-pushed renovate/all from 85042db605 to 50f34528f0 2025-04-18 05:17:45 +02:00 Compare
kjuulh force-pushed renovate/all from 50f34528f0 to 2aa6dd2a88 2025-04-19 02:18:57 +02:00 Compare
kjuulh force-pushed renovate/all from 2aa6dd2a88 to 996098b613 2025-04-19 05:19:01 +02:00 Compare
kjuulh force-pushed renovate/all from 996098b613 to 7d0442bc48 2025-04-20 02:18:30 +02:00 Compare
kjuulh force-pushed renovate/all from 7d0442bc48 to 82755d6b8e 2025-04-20 05:18:04 +02:00 Compare
kjuulh force-pushed renovate/all from 82755d6b8e to 3faa2a931d 2025-04-21 02:18:50 +02:00 Compare
kjuulh force-pushed renovate/all from 3faa2a931d to 685b5706b7 2025-04-21 05:17:40 +02:00 Compare
kjuulh force-pushed renovate/all from 685b5706b7 to cbb3d77aca 2025-04-22 02:20:30 +02:00 Compare
kjuulh force-pushed renovate/all from cbb3d77aca to 4ce945f8c8 2025-04-22 05:18:36 +02:00 Compare
kjuulh force-pushed renovate/all from 4ce945f8c8 to 5cecf8776d 2025-04-23 02:19:47 +02:00 Compare
kjuulh force-pushed renovate/all from 5cecf8776d to d9a1839677 2025-04-23 05:19:14 +02:00 Compare
kjuulh force-pushed renovate/all from d9a1839677 to 1c4020df2a 2025-04-24 02:18:14 +02:00 Compare
kjuulh force-pushed renovate/all from 1c4020df2a to 6bdb17a191 2025-04-24 05:18:21 +02:00 Compare
kjuulh force-pushed renovate/all from 6bdb17a191 to 0a6eda13e6 2025-04-25 02:19:27 +02:00 Compare
kjuulh force-pushed renovate/all from 0a6eda13e6 to 947320f2e0 2025-04-25 05:18:25 +02:00 Compare
kjuulh force-pushed renovate/all from 947320f2e0 to 11093ad503 2025-04-26 02:20:00 +02:00 Compare
kjuulh force-pushed renovate/all from 11093ad503 to 422f056e9a 2025-04-26 05:19:00 +02:00 Compare
kjuulh force-pushed renovate/all from 422f056e9a to 51e2427d93 2025-04-27 02:18:05 +02:00 Compare
kjuulh force-pushed renovate/all from 51e2427d93 to 192ca357ee 2025-04-27 05:18:15 +02:00 Compare
kjuulh force-pushed renovate/all from 192ca357ee to 34efa55833 2025-04-28 02:19:25 +02:00 Compare
kjuulh force-pushed renovate/all from 34efa55833 to c48181e33f 2025-04-28 05:19:10 +02:00 Compare
kjuulh force-pushed renovate/all from c48181e33f to 6d44b62e39 2025-04-29 02:19:43 +02:00 Compare
kjuulh force-pushed renovate/all from 6d44b62e39 to 8f422a9409 2025-04-29 05:19:43 +02:00 Compare
kjuulh force-pushed renovate/all from 8f422a9409 to 593ffc9b02 2025-04-30 02:20:14 +02:00 Compare
kjuulh force-pushed renovate/all from 593ffc9b02 to 8b0bd66a53 2025-04-30 05:18:45 +02:00 Compare
kjuulh force-pushed renovate/all from 8b0bd66a53 to d4327d0cc5 2025-05-01 02:18:36 +02:00 Compare
kjuulh force-pushed renovate/all from d4327d0cc5 to 9eab732722 2025-05-01 05:18:07 +02:00 Compare
kjuulh force-pushed renovate/all from 9eab732722 to 348be6e896 2025-05-02 02:18:28 +02:00 Compare
kjuulh force-pushed renovate/all from 348be6e896 to 53b85527ef 2025-05-02 05:18:31 +02:00 Compare
kjuulh force-pushed renovate/all from 53b85527ef to 74193fcfea 2025-05-03 02:20:30 +02:00 Compare
kjuulh force-pushed renovate/all from 74193fcfea to 7c727b2328 2025-05-03 05:19:08 +02:00 Compare
kjuulh force-pushed renovate/all from 7c727b2328 to 2f8c7db921 2025-05-04 02:18:43 +02:00 Compare
kjuulh force-pushed renovate/all from 2f8c7db921 to 3d66f796cc 2025-05-04 05:17:56 +02:00 Compare
kjuulh force-pushed renovate/all from 3d66f796cc to 77d4c85054 2025-05-05 02:18:25 +02:00 Compare
kjuulh force-pushed renovate/all from 77d4c85054 to 56f7840966 2025-05-05 05:18:08 +02:00 Compare
kjuulh force-pushed renovate/all from 56f7840966 to a0e28969c9 2025-05-06 02:18:17 +02:00 Compare
kjuulh force-pushed renovate/all from a0e28969c9 to dfa6aa68ca 2025-05-06 05:18:50 +02:00 Compare
kjuulh force-pushed renovate/all from dfa6aa68ca to 4d204dbcfe 2025-05-07 02:19:35 +02:00 Compare
kjuulh force-pushed renovate/all from 4d204dbcfe to d5f692643b 2025-05-07 05:19:03 +02:00 Compare
kjuulh force-pushed renovate/all from d5f692643b to 8d455e2aa2 2025-05-08 02:18:51 +02:00 Compare
kjuulh force-pushed renovate/all from 8d455e2aa2 to 28f95c43c5 2025-05-08 05:18:04 +02:00 Compare
kjuulh force-pushed renovate/all from 28f95c43c5 to c8f37317ac 2025-05-09 02:18:54 +02:00 Compare
kjuulh force-pushed renovate/all from c8f37317ac to 43d180b252 2025-05-09 05:18:00 +02:00 Compare
kjuulh force-pushed renovate/all from 43d180b252 to d8e77ccefb 2025-05-10 02:18:53 +02:00 Compare
kjuulh force-pushed renovate/all from d8e77ccefb to 58ca15e2a1 2025-05-10 05:17:59 +02:00 Compare
kjuulh force-pushed renovate/all from 58ca15e2a1 to 5e23c6578e 2025-05-11 02:18:35 +02:00 Compare
kjuulh force-pushed renovate/all from 5e23c6578e to 10e53d3022 2025-05-11 05:18:42 +02:00 Compare
kjuulh force-pushed renovate/all from 10e53d3022 to 8c25fd3e7c 2025-05-12 02:19:24 +02:00 Compare
kjuulh force-pushed renovate/all from 8c25fd3e7c to d350e14ca2 2025-05-12 05:17:59 +02:00 Compare
kjuulh force-pushed renovate/all from d350e14ca2 to 8ac743cf35 2025-05-13 02:19:36 +02:00 Compare
kjuulh force-pushed renovate/all from 8ac743cf35 to d2b886a272 2025-05-13 05:18:13 +02:00 Compare
kjuulh force-pushed renovate/all from d2b886a272 to 01b09760a3 2025-05-14 02:18:13 +02:00 Compare
kjuulh force-pushed renovate/all from 01b09760a3 to 9b7797a7ec 2025-05-14 05:18:37 +02:00 Compare
kjuulh force-pushed renovate/all from 9b7797a7ec to d3e96f7cb3 2025-05-15 02:18:02 +02:00 Compare
kjuulh force-pushed renovate/all from d3e96f7cb3 to 6fbe0e183e 2025-05-15 05:17:16 +02:00 Compare
kjuulh force-pushed renovate/all from 6fbe0e183e to feb818593e 2025-05-17 02:17:59 +02:00 Compare
kjuulh force-pushed renovate/all from feb818593e to 2ac3326223 2025-05-17 05:17:51 +02:00 Compare
kjuulh force-pushed renovate/all from 2ac3326223 to 2f18828efc 2025-05-18 02:18:21 +02:00 Compare
kjuulh force-pushed renovate/all from 2f18828efc to b5b4333773 2025-05-18 05:18:00 +02:00 Compare
kjuulh force-pushed renovate/all from b5b4333773 to 3285606aed 2025-05-19 02:18:40 +02:00 Compare
kjuulh force-pushed renovate/all from 3285606aed to 0f7e619c28 2025-05-19 05:19:27 +02:00 Compare
kjuulh force-pushed renovate/all from 0f7e619c28 to 81e0b731f9 2025-05-20 02:17:56 +02:00 Compare
kjuulh force-pushed renovate/all from 81e0b731f9 to 006c9bf724 2025-05-20 05:17:58 +02:00 Compare
kjuulh force-pushed renovate/all from 006c9bf724 to 6e4a1eebc6 2025-05-21 02:18:40 +02:00 Compare
kjuulh force-pushed renovate/all from 6e4a1eebc6 to c10cb96e5c 2025-05-21 05:17:11 +02:00 Compare
kjuulh force-pushed renovate/all from c10cb96e5c to dac707ce3e 2025-05-22 02:19:39 +02:00 Compare
kjuulh force-pushed renovate/all from dac707ce3e to f74ea4dc01 2025-05-22 05:17:50 +02:00 Compare
kjuulh force-pushed renovate/all from f74ea4dc01 to 688ca4882b 2025-05-23 02:18:00 +02:00 Compare
kjuulh force-pushed renovate/all from 688ca4882b to 5f04fe598a 2025-05-23 05:18:45 +02:00 Compare
kjuulh force-pushed renovate/all from 5f04fe598a to 104e060750 2025-05-24 02:19:29 +02:00 Compare
kjuulh force-pushed renovate/all from 104e060750 to 6dd10decc4 2025-05-24 05:18:32 +02:00 Compare
kjuulh force-pushed renovate/all from 6dd10decc4 to 1bfa03fcc7 2025-05-25 02:18:35 +02:00 Compare
kjuulh force-pushed renovate/all from 1bfa03fcc7 to 38153a96d5 2025-05-25 05:18:34 +02:00 Compare
kjuulh force-pushed renovate/all from 38153a96d5 to c02f812147 2025-05-26 02:18:35 +02:00 Compare
kjuulh force-pushed renovate/all from c02f812147 to 785d684990 2025-05-28 02:20:19 +02:00 Compare
kjuulh force-pushed renovate/all from 785d684990 to 3b720fd217 2025-05-28 05:17:30 +02:00 Compare
kjuulh force-pushed renovate/all from 3b720fd217 to 936198fdc3 2025-05-29 02:18:37 +02:00 Compare
kjuulh force-pushed renovate/all from 936198fdc3 to c8e1c2eca5 2025-05-29 05:17:38 +02:00 Compare
kjuulh force-pushed renovate/all from c8e1c2eca5 to a408dc92d2 2025-05-30 02:19:22 +02:00 Compare
kjuulh force-pushed renovate/all from a408dc92d2 to 95a5501668 2025-05-30 05:18:09 +02:00 Compare
kjuulh force-pushed renovate/all from 95a5501668 to bdc055e45f 2025-05-31 02:18:39 +02:00 Compare
kjuulh force-pushed renovate/all from bdc055e45f to e54e0414a7 2025-05-31 05:18:03 +02:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
This pull request can be merged automatically.
You are not authorized to merge this pull request.

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#104
No description provided.