fix(deps): update all dependencies #3

Merged
kjuulh merged 1 commits from renovate/all into main 2024-09-09 02:27:48 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
git2 dependencies minor 0.18.3 -> 0.19.0
nats dependencies minor 0.24.1 -> 0.25.0
reqwest dev-dependencies minor 0.11.24 -> 0.12.0
sqlx dependencies minor 0.7.3 -> 0.8.0

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

rust-lang/git2-rs (git2)

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
seanmonstar/reqwest (reqwest)

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 precendence 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 ClientBuilder::interface() when no TLS is enabled.
  • Fix TlsInfo::peer_certificate() being truncated with rustls.
  • Fix panic if http2 feature disabled but TLS negotiated h2 in ALPN.
  • Fix Display for Error to not include its source error.

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.
launchbadge/sqlx (sqlx)

v0.8.2

Compare Source

10 pull requests were merged this release cycle.

This release addresses a few regressions that have occurred, and refines SQLx's MSRV policy (see the FAQ).

Added
  • [#&#8203;3447]]: Clarify usage of Json/Jsonb in query macros \[\[[@&#8203;Lachstec](https://github.com/Lachstec)]]
    
    
Changed
  • [#&#8203;3424]]: Remove deprecated feature-names from `Cargo.toml` files in examples \[\[[@&#8203;carschandler](https://github.com/carschandler)]]
    
    
Fixed
  • [#&#8203;3403]]: Fix ([#&#8203;3395](https://github.com/launchbadge/sqlx/issues/3395)) sqlx::test macro in 0.8 \[\[[@&#8203;joeydewaal](https://github.com/joeydewaal)]]
    
  • [#&#8203;3411]]: fix: Use rfc3339 to decode date from text \[\[[@&#8203;pierre-wehbe](https://github.com/pierre-wehbe)]]
    
  • [#&#8203;3453]]: fix([#&#8203;3445](https://github.com/launchbadge/sqlx/issues/3445)): PgHasArrayType \[\[[@&#8203;joeydewaal](https://github.com/joeydewaal)]]
    -   Fixes `#[sqlx(no_pg_array)]` being forbidden on `#[derive(Type)]` structs.
    
  • [#&#8203;3454]]: fix: non snake case warning \[\[[@&#8203;joeydewaal](https://github.com/joeydewaal)]]
    
  • [#&#8203;3459]]: Pgsql cube type compile fail \[\[[@&#8203;kdesjard](https://github.com/kdesjard)]]
    
  • [#&#8203;3465]]: fix(postgres): max number of binds is 65535, not 32767 (regression) \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3467]]: fix cancellation issues with `PgListener`, `PgStream::recv()` \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   Fixes cryptic `unknown message: "\\0"` error
    
  • [#&#8203;3474]]: Fix try_get example in README.md \[\[[@&#8203;luveti](https://github.com/luveti)]]
    
    

v0.8.1

Compare Source

16 pull requests were merged this release cycle.

This release contains a fix for RUSTSEC-2024-0363.

Postgres users are advised to upgrade ASAP as a possible exploit has been demonstrated:
#​3440 (comment)

MySQL and SQLite do not appear to be exploitable, but upgrading is recommended nonetheless.

Added
  • [#&#8203;3421]]: correct spelling of `MySqlConnectOptions::no_engine_substitution()` \[\[[@&#8203;kolinfluence](https://github.com/kolinfluence)]]
    -   Deprecates `MySqlConnectOptions::no_engine_subsitution()` (oops) in favor of the correctly spelled version.
    
    
Changed
  • [#&#8203;3376]]: doc: hide `spec_error` module \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   This is a helper module for the macros and was not meant to be exposed.
    -   It is not expected to receive any breaking changes for the 0.8.x release, but is not designed as a public API.
        Use at your own risk.
    
  • [#&#8203;3382]]: feat: bumped to `libsqlite3-sys=0.30.1` to support sqlite 3.46 \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#&#8203;3385]]: chore(examples):Migrated the pg-chat example to ratatui \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#&#8203;3399]]: Upgrade to rustls 0.23 \[\[[@&#8203;djc](https://github.com/djc)]]
    -   RusTLS now has pluggable cryptography providers: `ring` (the existing implementation),
        and `aws-lc-rs` which has optional FIPS certification.
    -   The existing features activating RusTLS (`runtime-tokio-rustls`, `runtime-async-std-rustls`, `tls-rustls`)
        enable the `ring` provider of RusTLS to match the existing behavior so this *should not* be a breaking change.
    -   Switch to the `tls-rustls-aws-lc-rs` feature to use the `aws-lc-rs` provider.
        -   If using `runtime-tokio-rustls` or `runtime-async-std-rustls`,
            this will necessitate switching to the appropriate non-legacy runtime feature:
            `runtime-tokio` or `runtime-async-std`
    -   See the RusTLS README for more details: <https://github.com/rustls/rustls?tab=readme-ov-file#cryptography-providers>
    
    
Fixed
  • [#&#8203;2786]]: fix(sqlx-cli): do not clean sqlx during prepare \[\[[@&#8203;cycraig](https://github.com/cycraig)]]
    
  • [#&#8203;3354]]: sqlite: fix inconsistent read-after-write \[\[[@&#8203;ckampfe](https://github.com/ckampfe)]]
    
  • [#&#8203;3371]]: Fix encoding and decoding of MySQL enums in `sqlx::Type` \[\[[@&#8203;alu](https://github.com/alu)]]
    
  • [#&#8203;3374]]: fix: usage of `node12` in `SQLx` action \[\[[@&#8203;hamirmahal](https://github.com/hamirmahal)]]
    
  • [#&#8203;3380]]: chore: replace structopt with clap in examples \[\[[@&#8203;tottoto](https://github.com/tottoto)]]
    
  • [#&#8203;3381]]: Fix CI after Rust 1.80, remove dead feature references \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3384]]: chore(tests): fixed deprecation warnings \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#&#8203;3386]]: fix(dependencys):bumped cargo_metadata to `v0.18.1` to avoid yanked `v0.14.3` \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#&#8203;3389]]: fix(cli): typo in error for required DB URL \[\[[@&#8203;ods](https://github.com/ods)]]
    
  • [#&#8203;3417]]: Update version to 0.8 in README \[\[[@&#8203;soucosmo](https://github.com/soucosmo)]]
    
  • [#&#8203;3441]]: fix: audit protocol handling \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   This addresses [RUSTSEC-2024-0363] and includes regression tests for MySQL, Postgres and SQLite.
    
    

v0.8.0

Compare Source

70 pull requests were merged this release cycle.

#​2697 was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation.

Breaking
  • [#&#8203;2697]]: fix(macros): only enable chrono when time is disabled \[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]]
    
  • [#&#8203;2973]]: Generic Associated Types in Database, replacing HasValueRef, HasArguments, HasStatement \[\[[@&#8203;nitn3lav](https://github.com/nitn3lav)]]
    
  • [#&#8203;2482]]: chore: bump syn to 2.0 \[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]]
    -   Deprecated type ascription syntax in the query macros was removed.
    
  • [#&#8203;2736]]: Fix describe on PostgreSQL views with rules \[\[[@&#8203;tsing](https://github.com/tsing)]]
    -   Potentially breaking: nullability inference changes for Postgres.
    
  • [#&#8203;2869]]: Implement PgHasArrayType for all references \[\[[@&#8203;tylerhawkes](https://github.com/tylerhawkes)]]
    -   Conflicts with existing manual implementations.
    
  • [#&#8203;2940]]: fix: Decode and Encode derives ([#&#8203;1031](https://github.com/launchbadge/sqlx/issues/1031)) \[\[[@&#8203;benluelo](https://github.com/benluelo)]]
    -   Changes lifetime obligations for field types.
    
  • [#&#8203;3064]]: Sqlite explain graph \[\[[@&#8203;tyrelr](https://github.com/tyrelr)]]
    -   Potentially breaking: nullability inference changes for SQLite.
    
  • [#&#8203;3123]]: Reorder attrs in sqlx::test macro \[\[[@&#8203;bobozaur](https://github.com/bobozaur)]]
    -   Potentially breaking: attributes on `#[sqlx::test]` usages are applied in the correct order now.
    
  • [#&#8203;3126]]: Make Encode return a result \[\[[@&#8203;FSMaxB](https://github.com/FSMaxB)]]
    
  • [#&#8203;3130]]: Add version information for failed cli migration ([#&#8203;3129](https://github.com/launchbadge/sqlx/issues/3129)) \[\[[@&#8203;FlakM](https://github.com/FlakM)]]
    -   Breaking changes to `MigrateError`.
    
  • [#&#8203;3181]]: feat: no tx migration \[\[[@&#8203;cleverjam](https://github.com/cleverjam)]]
    -   (Postgres only) migrations that should not run in a transaction can be flagged by adding `-- no-transaction` to the beginning.
    -   Breaking change: added field to `Migration`
    
  • [#&#8203;3184]]: \[BREAKING} fix(sqlite): always use `i64` as intermediate when decoding \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   integer decoding will now loudly error on overflow instead of silently truncating.
    -   some usages of the query!() macros might change an i32 to an i64.
    
  • [#&#8203;3252]]: fix `#[derive(sqlx::Type)]` in Postgres \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   Manual implementations of PgHasArrayType for enums will conflict with the generated one. Delete the manual impl or add `#[sqlx(no_pg_array)]` where conflicts occur.
    -   Type equality for PgTypeInfo is now schema-aware.
    
  • [#&#8203;3329]]: fix: correct handling of arrays of custom types in Postgres \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   Potential breaking change: `PgTypeInfo::with_name()` infers types that start with `_` to be arrays of the un-prefixed type. Wrap type names in quotes to bypass this behavior.
    
  • [#&#8203;3356]]: breaking: fix name collision in `FromRow`, return `Error::ColumnDecode` for `TryFrom` errors \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   Breaking behavior change: errors with `#[sqlx(try_from = "T")]` now return `Error::ColumnDecode` instead of `Error::ColumnNotFound`.
    -   Breaking because `#[sqlx(default)]` on an individual field or the struct itself would have previously suppressed the error.
        This doesn't seem like good behavior as it could result in some potentially very difficult bugs.
        -   Instead, create a wrapper implementing `From` and apply the default explicitly.
    
  • [#&#8203;3337]]: allow rename with rename_all (close [#&#8203;2896](https://github.com/launchbadge/sqlx/issues/2896)) \[\[[@&#8203;DirectorX](https://github.com/DirectorX)]]
    -   Changes the precedence of `#[sqlx(rename)]` and `#[sqlx(rename_all)]` to match the expected behavior (`rename` wins).
    
  • [#&#8203;3285]]: fix: use correct names for sslmode options \[\[[@&#8203;lily-mosquitoes](https://github.com/lily-mosquitoes)]]
    -   Changes the output of `ConnectOptions::to_url_lossy()` to match what parsing expects.
    
    
Added
  • [#&#8203;2917]]: Add Debug impl for PgRow \[\[[@&#8203;g-bartoszek](https://github.com/g-bartoszek)]]
    
  • [#&#8203;3113]]: feat: new derive feature flag \[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]]
    
  • [#&#8203;3154]]: feat: add `MySqlTime`, audit `mysql::types` for panics \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3188]]: feat(cube): support postgres cube \[\[[@&#8203;jayy-lmao](https://github.com/jayy-lmao)]]
    
  • [#&#8203;3244]]: feat: support `NonZero*` scalar types \[\[[@&#8203;AlphaKeks](https://github.com/AlphaKeks)]]
    
  • [#&#8203;3260]]: feat: Add set_update_hook on SqliteConnection \[\[[@&#8203;gridbox](https://github.com/gridbox)]]
    
  • [#&#8203;3291]]: feat: support the Postgres Bool type for the Any driver \[\[[@&#8203;etorreborre](https://github.com/etorreborre)]]
    
  • [#&#8203;3293]]: Add LICENSE-\* files to crates \[\[[@&#8203;LecrisUT](https://github.com/LecrisUT)]]
    
  • [#&#8203;3303]]: add array support for NonZeroI\* in postgres \[\[[@&#8203;JohannesIBK](https://github.com/JohannesIBK)]]
    
  • [#&#8203;3311]]: Add example on how to use Transaction as Executor \[\[[@&#8203;Lachstec](https://github.com/Lachstec)]]
    
  • [#&#8203;3343]]: Add support for PostgreSQL HSTORE data type \[\[[@&#8203;KobusEllis](https://github.com/KobusEllis)]]
    
    
Changed
  • [#&#8203;2652]]: MySQL: Remove collation compatibility check for strings \[\[[@&#8203;alu](https://github.com/alu)]]
    
  • [#&#8203;2960]]: Removed `Send` trait bound from argument binding \[\[[@&#8203;bobozaur](https://github.com/bobozaur)]]
    
  • [#&#8203;2970]]: refactor: lift type mappings into driver crates \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3148]]: Bump libsqlite3-sys to v0.28 \[\[[@&#8203;NfNitLoop](https://github.com/NfNitLoop)]]
    -   Note: version bumps to `libsqlite3-sys` are not considered breaking changes as per our semver guarantees.
    
  • [#&#8203;3265]]: perf: box `MySqlConnection` to reduce sizes of futures \[\[[@&#8203;stepantubanov](https://github.com/stepantubanov)]]
    
  • [#&#8203;3352]]: chore:added a testcase for `sqlx migrate add ...` \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#&#8203;3340]]: ci: Add job to check that sqlx builds with its declared minimum dependencies \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
    
    
Fixed
  • [#&#8203;2702]]: Constrain cyclic associated types to themselves \[\[[@&#8203;BadBastion](https://github.com/BadBastion)]]
    
  • [#&#8203;2954]]: Fix several inter doc links \[\[[@&#8203;ralpha](https://github.com/ralpha)]]
    
  • [#&#8203;3073]]: feat(logging): Log slow acquires from connection pool \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
    
  • [#&#8203;3137]]: SqliteConnectOptions::filename() memory fix ([#&#8203;3136](https://github.com/launchbadge/sqlx/issues/3136)) \[\[[@&#8203;hoxxep](https://github.com/hoxxep)]]
    
  • [#&#8203;3138]]: PostgreSQL Bugfix: Ensure connection is usable after failed COPY inside a transaction \[\[[@&#8203;feikesteenbergen](https://github.com/feikesteenbergen)]]
    
  • [#&#8203;3146]]: fix(sqlite): delete unused `ConnectionHandleRaw` type \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3162]]: Drop urlencoding dependency \[\[[@&#8203;paolobarbolini](https://github.com/paolobarbolini)]]
    
  • [#&#8203;3165]]: Bump deps that do not need code changes \[\[[@&#8203;GnomedDev](https://github.com/GnomedDev)]]
    
  • [#&#8203;3167]]: fix(ci): use `docker compose` instead of `docker-compose` \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3172]]: fix: Option decoding in any driver \[\[[@&#8203;pxp9](https://github.com/pxp9)]]
    
  • [#&#8203;3173]]: fix(postgres) : int type conversion while decoding \[\[[@&#8203;RaghavRox](https://github.com/RaghavRox)]]
    
  • [#&#8203;3190]]: Update time to 0.3.36 \[\[[@&#8203;BlackSoulHub](https://github.com/BlackSoulHub)]]
    
  • [#&#8203;3191]]: Fix unclean TLS shutdown \[\[[@&#8203;levkk](https://github.com/levkk)]]
    
  • [#&#8203;3194]]: Fix leaking connections in fetch_optional ([#&#8203;2647](https://github.com/launchbadge/sqlx/issues/2647)) \[\[[@&#8203;danjpgriffin](https://github.com/danjpgriffin)]]
    
  • [#&#8203;3216]]: security: bump rustls to 0.21.11 \[\[[@&#8203;toxeus](https://github.com/toxeus)]]
    
  • [#&#8203;3230]]: fix: sqlite pragma order for auto_vacuum \[\[[@&#8203;jasonish](https://github.com/jasonish)]]
    
  • [#&#8203;3233]]: fix: get_filename should not consume self \[\[[@&#8203;jasonish](https://github.com/jasonish)]]
    
  • [#&#8203;3234]]: fix(ci): pin Rust version, ditch unmaintained actions \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3236]]: fix: resolve `path` ownership problems when using `sqlx_macros_unstable` \[\[[@&#8203;lily-mosquitoes](https://github.com/lily-mosquitoes)]]
    
  • [#&#8203;3254]]: fix: hide `sqlx_postgres::any` \[\[[@&#8203;Zarathustra2](https://github.com/Zarathustra2)]]
    
  • [#&#8203;3266]]: ci: MariaDB - add back 11.4 and add 11.5 \[\[[@&#8203;grooverdan](https://github.com/grooverdan)]]
    
  • [#&#8203;3267]]: ci: syntax fix \[\[[@&#8203;grooverdan](https://github.com/grooverdan)]]
    
  • [#&#8203;3271]]: docs(sqlite): fix typo - unixtime() -> unixepoch() \[\[[@&#8203;joelkoen](https://github.com/joelkoen)]]
    
  • [#&#8203;3276]]: Invert boolean for `migrate` error message. ([#&#8203;3275](https://github.com/launchbadge/sqlx/issues/3275)) \[\[[@&#8203;nk9](https://github.com/nk9)]]
    
  • [#&#8203;3279]]: fix Clippy errors \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3288]]: fix: sqlite update_hook char types \[\[[@&#8203;jasonish](https://github.com/jasonish)]]
    
  • [#&#8203;3297]]: Pass the `persistent` query setting when preparing queries with the `Any` driver \[\[[@&#8203;etorreborre](https://github.com/etorreborre)]]
    
  • [#&#8203;3298]]: Track null arguments in order to provide the appropriate type when converting them. \[\[[@&#8203;etorreborre](https://github.com/etorreborre)]]
    
  • [#&#8203;3312]]: doc: Minor rust docs fixes \[\[[@&#8203;SrGesus](https://github.com/SrGesus)]]
    
  • [#&#8203;3327]]: chore: fixed one usage of `select_input_type!()` being unhygenic \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#&#8203;3328]]: fix(ci): comment not separated from other characters \[\[[@&#8203;hamirmahal](https://github.com/hamirmahal)]]
    
  • [#&#8203;3341]]: refactor: Resolve cargo check warnings in postgres examples \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
    
  • [#&#8203;3346]]: fix(postgres): don't panic if `M` or `C` Notice fields are not UTF-8 \[\[[@&#8203;YgorSouza](https://github.com/YgorSouza)]]
    
  • [#&#8203;3350]]: fix:the `json`-feature should activate `sqlx-postgres?/json` as well \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#&#8203;3353]]: fix: build script new line at eof \[\[[@&#8203;Zarthus](https://github.com/Zarthus)]]
    
  • (no PR): activate clock and std features of workspace.dependencies.chrono.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 | |---|---|---|---| | [git2](https://github.com/rust-lang/git2-rs) | dependencies | minor | `0.18.3` -> `0.19.0` | | [nats](https://github.com/nats-io/nats.rs) | dependencies | minor | `0.24.1` -> `0.25.0` | | [reqwest](https://github.com/seanmonstar/reqwest) | dev-dependencies | minor | `0.11.24` -> `0.12.0` | | [sqlx](https://github.com/launchbadge/sqlx) | dependencies | minor | `0.7.3` -> `0.8.0` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>rust-lang/git2-rs (git2)</summary> ### [`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>seanmonstar/reqwest (reqwest)</summary> ### [`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 precendence 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#v0121) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.0...v0.12.1) - Fix `ClientBuilder::interface()` when no TLS is enabled. - Fix `TlsInfo::peer_certificate()` being truncated with rustls. - Fix panic if `http2` feature disabled but TLS negotiated h2 in ALPN. - Fix `Display` for `Error` to not include its source error. ### [`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>launchbadge/sqlx (sqlx)</summary> ### [`v0.8.2`](https://github.com/launchbadge/sqlx/blob/HEAD/CHANGELOG.md#082---2024-09-02) [Compare Source](https://github.com/launchbadge/sqlx/compare/v0.8.1...v0.8.2) 10 pull requests were merged this release cycle. This release addresses a few regressions that have occurred, and refines SQLx's MSRV policy (see [the FAQ](FAQ.md)). ##### Added - \[[#&#8203;3447]]: Clarify usage of Json/Jsonb in query macros \[\[[@&#8203;Lachstec](https://github.com/Lachstec)]] ##### Changed - \[[#&#8203;3424]]: Remove deprecated feature-names from `Cargo.toml` files in examples \[\[[@&#8203;carschandler](https://github.com/carschandler)]] ##### Fixed - \[[#&#8203;3403]]: Fix ([#&#8203;3395](https://github.com/launchbadge/sqlx/issues/3395)) sqlx::test macro in 0.8 \[\[[@&#8203;joeydewaal](https://github.com/joeydewaal)]] - \[[#&#8203;3411]]: fix: Use rfc3339 to decode date from text \[\[[@&#8203;pierre-wehbe](https://github.com/pierre-wehbe)]] - \[[#&#8203;3453]]: fix([#&#8203;3445](https://github.com/launchbadge/sqlx/issues/3445)): PgHasArrayType \[\[[@&#8203;joeydewaal](https://github.com/joeydewaal)]] - Fixes `#[sqlx(no_pg_array)]` being forbidden on `#[derive(Type)]` structs. - \[[#&#8203;3454]]: fix: non snake case warning \[\[[@&#8203;joeydewaal](https://github.com/joeydewaal)]] - \[[#&#8203;3459]]: Pgsql cube type compile fail \[\[[@&#8203;kdesjard](https://github.com/kdesjard)]] - \[[#&#8203;3465]]: fix(postgres): max number of binds is 65535, not 32767 (regression) \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3467]]: fix cancellation issues with `PgListener`, `PgStream::recv()` \[\[[@&#8203;abonander](https://github.com/abonander)]] - Fixes cryptic `unknown message: "\\0"` error - \[[#&#8203;3474]]: Fix try_get example in README.md \[\[[@&#8203;luveti](https://github.com/luveti)]] [#&#8203;3403]: https://github.com/launchbadge/sqlx/pull/3403 [#&#8203;3411]: https://github.com/launchbadge/sqlx/pull/3411 [#&#8203;3424]: https://github.com/launchbadge/sqlx/pull/3424 [#&#8203;3447]: https://github.com/launchbadge/sqlx/pull/3447 [#&#8203;3453]: https://github.com/launchbadge/sqlx/pull/3453 [#&#8203;3454]: https://github.com/launchbadge/sqlx/pull/3454 [#&#8203;3455]: https://github.com/launchbadge/sqlx/pull/3455 [#&#8203;3459]: https://github.com/launchbadge/sqlx/pull/3459 [#&#8203;3465]: https://github.com/launchbadge/sqlx/pull/3465 [#&#8203;3467]: https://github.com/launchbadge/sqlx/pull/3467 [#&#8203;3474]: https://github.com/launchbadge/sqlx/pull/3474 ### [`v0.8.1`](https://github.com/launchbadge/sqlx/blob/HEAD/CHANGELOG.md#081---2024-08-23) [Compare Source](https://github.com/launchbadge/sqlx/compare/v0.8.0...v0.8.1) 16 pull requests were merged this release cycle. This release contains a fix for [RUSTSEC-2024-0363]. Postgres users are advised to upgrade ASAP as a possible exploit has been demonstrated: [#&#8203;3440 (comment)](https://github.com/launchbadge/sqlx/issues/3440#issuecomment-2307956901) MySQL and SQLite do not *appear* to be exploitable, but upgrading is recommended nonetheless. ##### Added - \[[#&#8203;3421]]: correct spelling of `MySqlConnectOptions::no_engine_substitution()` \[\[[@&#8203;kolinfluence](https://github.com/kolinfluence)]] - Deprecates `MySqlConnectOptions::no_engine_subsitution()` (oops) in favor of the correctly spelled version. ##### Changed - \[[#&#8203;3376]]: doc: hide `spec_error` module \[\[[@&#8203;abonander](https://github.com/abonander)]] - This is a helper module for the macros and was not meant to be exposed. - It is not expected to receive any breaking changes for the 0.8.x release, but is not designed as a public API. Use at your own risk. - \[[#&#8203;3382]]: feat: bumped to `libsqlite3-sys=0.30.1` to support sqlite 3.46 \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]] - \[[#&#8203;3385]]: chore(examples):Migrated the pg-chat example to ratatui \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]] - \[[#&#8203;3399]]: Upgrade to rustls 0.23 \[\[[@&#8203;djc](https://github.com/djc)]] - RusTLS now has pluggable cryptography providers: `ring` (the existing implementation), and `aws-lc-rs` which has optional FIPS certification. - The existing features activating RusTLS (`runtime-tokio-rustls`, `runtime-async-std-rustls`, `tls-rustls`) enable the `ring` provider of RusTLS to match the existing behavior so this *should not* be a breaking change. - Switch to the `tls-rustls-aws-lc-rs` feature to use the `aws-lc-rs` provider. - If using `runtime-tokio-rustls` or `runtime-async-std-rustls`, this will necessitate switching to the appropriate non-legacy runtime feature: `runtime-tokio` or `runtime-async-std` - See the RusTLS README for more details: <https://github.com/rustls/rustls?tab=readme-ov-file#cryptography-providers> ##### Fixed - \[[#&#8203;2786]]: fix(sqlx-cli): do not clean sqlx during prepare \[\[[@&#8203;cycraig](https://github.com/cycraig)]] - \[[#&#8203;3354]]: sqlite: fix inconsistent read-after-write \[\[[@&#8203;ckampfe](https://github.com/ckampfe)]] - \[[#&#8203;3371]]: Fix encoding and decoding of MySQL enums in `sqlx::Type` \[\[[@&#8203;alu](https://github.com/alu)]] - \[[#&#8203;3374]]: fix: usage of `node12` in `SQLx` action \[\[[@&#8203;hamirmahal](https://github.com/hamirmahal)]] - \[[#&#8203;3380]]: chore: replace structopt with clap in examples \[\[[@&#8203;tottoto](https://github.com/tottoto)]] - \[[#&#8203;3381]]: Fix CI after Rust 1.80, remove dead feature references \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3384]]: chore(tests): fixed deprecation warnings \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]] - \[[#&#8203;3386]]: fix(dependencys):bumped cargo_metadata to `v0.18.1` to avoid yanked `v0.14.3` \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]] - \[[#&#8203;3389]]: fix(cli): typo in error for required DB URL \[\[[@&#8203;ods](https://github.com/ods)]] - \[[#&#8203;3417]]: Update version to 0.8 in README \[\[[@&#8203;soucosmo](https://github.com/soucosmo)]] - \[[#&#8203;3441]]: fix: audit protocol handling \[\[[@&#8203;abonander](https://github.com/abonander)]] - This addresses [RUSTSEC-2024-0363] and includes regression tests for MySQL, Postgres and SQLite. [#&#8203;2786]: https://github.com/launchbadge/sqlx/pull/2786 [#&#8203;3354]: https://github.com/launchbadge/sqlx/pull/3354 [#&#8203;3371]: https://github.com/launchbadge/sqlx/pull/3371 [#&#8203;3374]: https://github.com/launchbadge/sqlx/pull/3374 [#&#8203;3376]: https://github.com/launchbadge/sqlx/pull/3376 [#&#8203;3380]: https://github.com/launchbadge/sqlx/pull/3380 [#&#8203;3381]: https://github.com/launchbadge/sqlx/pull/3381 [#&#8203;3382]: https://github.com/launchbadge/sqlx/pull/3382 [#&#8203;3384]: https://github.com/launchbadge/sqlx/pull/3384 [#&#8203;3385]: https://github.com/launchbadge/sqlx/pull/3385 [#&#8203;3386]: https://github.com/launchbadge/sqlx/pull/3386 [#&#8203;3389]: https://github.com/launchbadge/sqlx/pull/3389 [#&#8203;3399]: https://github.com/launchbadge/sqlx/pull/3399 [#&#8203;3417]: https://github.com/launchbadge/sqlx/pull/3417 [#&#8203;3421]: https://github.com/launchbadge/sqlx/pull/3421 [#&#8203;3441]: https://github.com/launchbadge/sqlx/pull/3441 [RUSTSEC-2024-0363]: https://rustsec.org/advisories/RUSTSEC-2024-0363.html ### [`v0.8.0`](https://github.com/launchbadge/sqlx/blob/HEAD/CHANGELOG.md#080---2024-07-22) [Compare Source](https://github.com/launchbadge/sqlx/compare/v0.7.4...v0.8.0) 70 pull requests were merged this release cycle. [#&#8203;2697] was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation. ##### Breaking - \[[#&#8203;2697]]: fix(macros): only enable chrono when time is disabled \[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]] - \[[#&#8203;2973]]: Generic Associated Types in Database, replacing HasValueRef, HasArguments, HasStatement \[\[[@&#8203;nitn3lav](https://github.com/nitn3lav)]] - \[[#&#8203;2482]]: chore: bump syn to 2.0 \[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]] - Deprecated type ascription syntax in the query macros was removed. - \[[#&#8203;2736]]: Fix describe on PostgreSQL views with rules \[\[[@&#8203;tsing](https://github.com/tsing)]] - Potentially breaking: nullability inference changes for Postgres. - \[[#&#8203;2869]]: Implement PgHasArrayType for all references \[\[[@&#8203;tylerhawkes](https://github.com/tylerhawkes)]] - Conflicts with existing manual implementations. - \[[#&#8203;2940]]: fix: Decode and Encode derives ([#&#8203;1031](https://github.com/launchbadge/sqlx/issues/1031)) \[\[[@&#8203;benluelo](https://github.com/benluelo)]] - Changes lifetime obligations for field types. - \[[#&#8203;3064]]: Sqlite explain graph \[\[[@&#8203;tyrelr](https://github.com/tyrelr)]] - Potentially breaking: nullability inference changes for SQLite. - \[[#&#8203;3123]]: Reorder attrs in sqlx::test macro \[\[[@&#8203;bobozaur](https://github.com/bobozaur)]] - Potentially breaking: attributes on `#[sqlx::test]` usages are applied in the correct order now. - \[[#&#8203;3126]]: Make Encode return a result \[\[[@&#8203;FSMaxB](https://github.com/FSMaxB)]] - \[[#&#8203;3130]]: Add version information for failed cli migration ([#&#8203;3129](https://github.com/launchbadge/sqlx/issues/3129)) \[\[[@&#8203;FlakM](https://github.com/FlakM)]] - Breaking changes to `MigrateError`. - \[[#&#8203;3181]]: feat: no tx migration \[\[[@&#8203;cleverjam](https://github.com/cleverjam)]] - (Postgres only) migrations that should not run in a transaction can be flagged by adding `-- no-transaction` to the beginning. - Breaking change: added field to `Migration` - \[[#&#8203;3184]]: \[BREAKING} fix(sqlite): always use `i64` as intermediate when decoding \[\[[@&#8203;abonander](https://github.com/abonander)]] - integer decoding will now loudly error on overflow instead of silently truncating. - some usages of the query!() macros might change an i32 to an i64. - \[[#&#8203;3252]]: fix `#[derive(sqlx::Type)]` in Postgres \[\[[@&#8203;abonander](https://github.com/abonander)]] - Manual implementations of PgHasArrayType for enums will conflict with the generated one. Delete the manual impl or add `#[sqlx(no_pg_array)]` where conflicts occur. - Type equality for PgTypeInfo is now schema-aware. - \[[#&#8203;3329]]: fix: correct handling of arrays of custom types in Postgres \[\[[@&#8203;abonander](https://github.com/abonander)]] - Potential breaking change: `PgTypeInfo::with_name()` infers types that start with `_` to be arrays of the un-prefixed type. Wrap type names in quotes to bypass this behavior. - \[[#&#8203;3356]]: breaking: fix name collision in `FromRow`, return `Error::ColumnDecode` for `TryFrom` errors \[\[[@&#8203;abonander](https://github.com/abonander)]] - Breaking behavior change: errors with `#[sqlx(try_from = "T")]` now return `Error::ColumnDecode` instead of `Error::ColumnNotFound`. - Breaking because `#[sqlx(default)]` on an individual field or the struct itself would have previously suppressed the error. This doesn't seem like good behavior as it could result in some potentially very difficult bugs. - Instead, create a wrapper implementing `From` and apply the default explicitly. - \[[#&#8203;3337]]: allow rename with rename_all (close [#&#8203;2896](https://github.com/launchbadge/sqlx/issues/2896)) \[\[[@&#8203;DirectorX](https://github.com/DirectorX)]] - Changes the precedence of `#[sqlx(rename)]` and `#[sqlx(rename_all)]` to match the expected behavior (`rename` wins). - \[[#&#8203;3285]]: fix: use correct names for sslmode options \[\[[@&#8203;lily-mosquitoes](https://github.com/lily-mosquitoes)]] - Changes the output of `ConnectOptions::to_url_lossy()` to match what parsing expects. ##### Added - \[[#&#8203;2917]]: Add Debug impl for PgRow \[\[[@&#8203;g-bartoszek](https://github.com/g-bartoszek)]] - \[[#&#8203;3113]]: feat: new derive feature flag \[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]] - \[[#&#8203;3154]]: feat: add `MySqlTime`, audit `mysql::types` for panics \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3188]]: feat(cube): support postgres cube \[\[[@&#8203;jayy-lmao](https://github.com/jayy-lmao)]] - \[[#&#8203;3244]]: feat: support `NonZero*` scalar types \[\[[@&#8203;AlphaKeks](https://github.com/AlphaKeks)]] - \[[#&#8203;3260]]: feat: Add set_update_hook on SqliteConnection \[\[[@&#8203;gridbox](https://github.com/gridbox)]] - \[[#&#8203;3291]]: feat: support the Postgres Bool type for the Any driver \[\[[@&#8203;etorreborre](https://github.com/etorreborre)]] - \[[#&#8203;3293]]: Add LICENSE-\* files to crates \[\[[@&#8203;LecrisUT](https://github.com/LecrisUT)]] - \[[#&#8203;3303]]: add array support for NonZeroI\* in postgres \[\[[@&#8203;JohannesIBK](https://github.com/JohannesIBK)]] - \[[#&#8203;3311]]: Add example on how to use Transaction as Executor \[\[[@&#8203;Lachstec](https://github.com/Lachstec)]] - \[[#&#8203;3343]]: Add support for PostgreSQL HSTORE data type \[\[[@&#8203;KobusEllis](https://github.com/KobusEllis)]] ##### Changed - \[[#&#8203;2652]]: MySQL: Remove collation compatibility check for strings \[\[[@&#8203;alu](https://github.com/alu)]] - \[[#&#8203;2960]]: Removed `Send` trait bound from argument binding \[\[[@&#8203;bobozaur](https://github.com/bobozaur)]] - \[[#&#8203;2970]]: refactor: lift type mappings into driver crates \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3148]]: Bump libsqlite3-sys to v0.28 \[\[[@&#8203;NfNitLoop](https://github.com/NfNitLoop)]] - Note: version bumps to `libsqlite3-sys` are not considered breaking changes as per our semver guarantees. - \[[#&#8203;3265]]: perf: box `MySqlConnection` to reduce sizes of futures \[\[[@&#8203;stepantubanov](https://github.com/stepantubanov)]] - \[[#&#8203;3352]]: chore:added a testcase for `sqlx migrate add ...` \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]] - \[[#&#8203;3340]]: ci: Add job to check that sqlx builds with its declared minimum dependencies \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]] ##### Fixed - \[[#&#8203;2702]]: Constrain cyclic associated types to themselves \[\[[@&#8203;BadBastion](https://github.com/BadBastion)]] - \[[#&#8203;2954]]: Fix several inter doc links \[\[[@&#8203;ralpha](https://github.com/ralpha)]] - \[[#&#8203;3073]]: feat(logging): Log slow acquires from connection pool \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]] - \[[#&#8203;3137]]: SqliteConnectOptions::filename() memory fix ([#&#8203;3136](https://github.com/launchbadge/sqlx/issues/3136)) \[\[[@&#8203;hoxxep](https://github.com/hoxxep)]] - \[[#&#8203;3138]]: PostgreSQL Bugfix: Ensure connection is usable after failed COPY inside a transaction \[\[[@&#8203;feikesteenbergen](https://github.com/feikesteenbergen)]] - \[[#&#8203;3146]]: fix(sqlite): delete unused `ConnectionHandleRaw` type \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3162]]: Drop urlencoding dependency \[\[[@&#8203;paolobarbolini](https://github.com/paolobarbolini)]] - \[[#&#8203;3165]]: Bump deps that do not need code changes \[\[[@&#8203;GnomedDev](https://github.com/GnomedDev)]] - \[[#&#8203;3167]]: fix(ci): use `docker compose` instead of `docker-compose` \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3172]]: fix: Option decoding in any driver \[\[[@&#8203;pxp9](https://github.com/pxp9)]] - \[[#&#8203;3173]]: fix(postgres) : int type conversion while decoding \[\[[@&#8203;RaghavRox](https://github.com/RaghavRox)]] - \[[#&#8203;3190]]: Update time to 0.3.36 \[\[[@&#8203;BlackSoulHub](https://github.com/BlackSoulHub)]] - \[[#&#8203;3191]]: Fix unclean TLS shutdown \[\[[@&#8203;levkk](https://github.com/levkk)]] - \[[#&#8203;3194]]: Fix leaking connections in fetch_optional ([#&#8203;2647](https://github.com/launchbadge/sqlx/issues/2647)) \[\[[@&#8203;danjpgriffin](https://github.com/danjpgriffin)]] - \[[#&#8203;3216]]: security: bump rustls to 0.21.11 \[\[[@&#8203;toxeus](https://github.com/toxeus)]] - \[[#&#8203;3230]]: fix: sqlite pragma order for auto_vacuum \[\[[@&#8203;jasonish](https://github.com/jasonish)]] - \[[#&#8203;3233]]: fix: get_filename should not consume self \[\[[@&#8203;jasonish](https://github.com/jasonish)]] - \[[#&#8203;3234]]: fix(ci): pin Rust version, ditch unmaintained actions \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3236]]: fix: resolve `path` ownership problems when using `sqlx_macros_unstable` \[\[[@&#8203;lily-mosquitoes](https://github.com/lily-mosquitoes)]] - \[[#&#8203;3254]]: fix: hide `sqlx_postgres::any` \[\[[@&#8203;Zarathustra2](https://github.com/Zarathustra2)]] - \[[#&#8203;3266]]: ci: MariaDB - add back 11.4 and add 11.5 \[\[[@&#8203;grooverdan](https://github.com/grooverdan)]] - \[[#&#8203;3267]]: ci: syntax fix \[\[[@&#8203;grooverdan](https://github.com/grooverdan)]] - \[[#&#8203;3271]]: docs(sqlite): fix typo - unixtime() -> unixepoch() \[\[[@&#8203;joelkoen](https://github.com/joelkoen)]] - \[[#&#8203;3276]]: Invert boolean for `migrate` error message. ([#&#8203;3275](https://github.com/launchbadge/sqlx/issues/3275)) \[\[[@&#8203;nk9](https://github.com/nk9)]] - \[[#&#8203;3279]]: fix Clippy errors \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3288]]: fix: sqlite update_hook char types \[\[[@&#8203;jasonish](https://github.com/jasonish)]] - \[[#&#8203;3297]]: Pass the `persistent` query setting when preparing queries with the `Any` driver \[\[[@&#8203;etorreborre](https://github.com/etorreborre)]] - \[[#&#8203;3298]]: Track null arguments in order to provide the appropriate type when converting them. \[\[[@&#8203;etorreborre](https://github.com/etorreborre)]] - \[[#&#8203;3312]]: doc: Minor rust docs fixes \[\[[@&#8203;SrGesus](https://github.com/SrGesus)]] - \[[#&#8203;3327]]: chore: fixed one usage of `select_input_type!()` being unhygenic \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]] - \[[#&#8203;3328]]: fix(ci): comment not separated from other characters \[\[[@&#8203;hamirmahal](https://github.com/hamirmahal)]] - \[[#&#8203;3341]]: refactor: Resolve cargo check warnings in postgres examples \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]] - \[[#&#8203;3346]]: fix(postgres): don't panic if `M` or `C` Notice fields are not UTF-8 \[\[[@&#8203;YgorSouza](https://github.com/YgorSouza)]] - \[[#&#8203;3350]]: fix:the `json`-feature should activate `sqlx-postgres?/json` as well \[\[[@&#8203;CommanderStorm](https://github.com/CommanderStorm)]] - \[[#&#8203;3353]]: fix: build script new line at eof \[\[[@&#8203;Zarthus](https://github.com/Zarthus)]] - (no PR): activate `clock` and `std` features of `workspace.dependencies.chrono`. [#&#8203;2482]: https://github.com/launchbadge/sqlx/pull/2482 [#&#8203;2652]: https://github.com/launchbadge/sqlx/pull/2652 [#&#8203;2697]: https://github.com/launchbadge/sqlx/pull/2697 [#&#8203;2702]: https://github.com/launchbadge/sqlx/pull/2702 [#&#8203;2736]: https://github.com/launchbadge/sqlx/pull/2736 [#&#8203;2869]: https://github.com/launchbadge/sqlx/pull/2869 [#&#8203;2917]: https://github.com/launchbadge/sqlx/pull/2917 [#&#8203;2940]: https://github.com/launchbadge/sqlx/pull/2940 [#&#8203;2954]: https://github.com/launchbadge/sqlx/pull/2954 [#&#8203;2960]: https://github.com/launchbadge/sqlx/pull/2960 [#&#8203;2970]: https://github.com/launchbadge/sqlx/pull/2970 [#&#8203;2973]: https://github.com/launchbadge/sqlx/pull/2973 [#&#8203;3064]: https://github.com/launchbadge/sqlx/pull/3064 [#&#8203;3073]: https://github.com/launchbadge/sqlx/pull/3073 [#&#8203;3113]: https://github.com/launchbadge/sqlx/pull/3113 [#&#8203;3123]: https://github.com/launchbadge/sqlx/pull/3123 [#&#8203;3126]: https://github.com/launchbadge/sqlx/pull/3126 [#&#8203;3130]: https://github.com/launchbadge/sqlx/pull/3130 [#&#8203;3137]: https://github.com/launchbadge/sqlx/pull/3137 [#&#8203;3138]: https://github.com/launchbadge/sqlx/pull/3138 [#&#8203;3146]: https://github.com/launchbadge/sqlx/pull/3146 [#&#8203;3148]: https://github.com/launchbadge/sqlx/pull/3148 [#&#8203;3154]: https://github.com/launchbadge/sqlx/pull/3154 [#&#8203;3162]: https://github.com/launchbadge/sqlx/pull/3162 [#&#8203;3165]: https://github.com/launchbadge/sqlx/pull/3165 [#&#8203;3167]: https://github.com/launchbadge/sqlx/pull/3167 [#&#8203;3172]: https://github.com/launchbadge/sqlx/pull/3172 [#&#8203;3173]: https://github.com/launchbadge/sqlx/pull/3173 [#&#8203;3181]: https://github.com/launchbadge/sqlx/pull/3181 [#&#8203;3184]: https://github.com/launchbadge/sqlx/pull/3184 [#&#8203;3188]: https://github.com/launchbadge/sqlx/pull/3188 [#&#8203;3190]: https://github.com/launchbadge/sqlx/pull/3190 [#&#8203;3191]: https://github.com/launchbadge/sqlx/pull/3191 [#&#8203;3194]: https://github.com/launchbadge/sqlx/pull/3194 [#&#8203;3216]: https://github.com/launchbadge/sqlx/pull/3216 [#&#8203;3230]: https://github.com/launchbadge/sqlx/pull/3230 [#&#8203;3233]: https://github.com/launchbadge/sqlx/pull/3233 [#&#8203;3234]: https://github.com/launchbadge/sqlx/pull/3234 [#&#8203;3236]: https://github.com/launchbadge/sqlx/pull/3236 [#&#8203;3244]: https://github.com/launchbadge/sqlx/pull/3244 [#&#8203;3252]: https://github.com/launchbadge/sqlx/pull/3252 [#&#8203;3254]: https://github.com/launchbadge/sqlx/pull/3254 [#&#8203;3260]: https://github.com/launchbadge/sqlx/pull/3260 [#&#8203;3265]: https://github.com/launchbadge/sqlx/pull/3265 [#&#8203;3266]: https://github.com/launchbadge/sqlx/pull/3266 [#&#8203;3267]: https://github.com/launchbadge/sqlx/pull/3267 [#&#8203;3271]: https://github.com/launchbadge/sqlx/pull/3271 [#&#8203;3276]: https://github.com/launchbadge/sqlx/pull/3276 [#&#8203;3279]: https://github.com/launchbadge/sqlx/pull/3279 [#&#8203;3285]: https://github.com/launchbadge/sqlx/pull/3285 [#&#8203;3288]: https://github.com/launchbadge/sqlx/pull/3288 [#&#8203;3291]: https://github.com/launchbadge/sqlx/pull/3291 [#&#8203;3293]: https://github.com/launchbadge/sqlx/pull/3293 [#&#8203;3297]: https://github.com/launchbadge/sqlx/pull/3297 [#&#8203;3298]: https://github.com/launchbadge/sqlx/pull/3298 [#&#8203;3303]: https://github.com/launchbadge/sqlx/pull/3303 [#&#8203;3311]: https://github.com/launchbadge/sqlx/pull/3311 [#&#8203;3312]: https://github.com/launchbadge/sqlx/pull/3312 [#&#8203;3327]: https://github.com/launchbadge/sqlx/pull/3327 [#&#8203;3328]: https://github.com/launchbadge/sqlx/pull/3328 [#&#8203;3329]: https://github.com/launchbadge/sqlx/pull/3329 [#&#8203;3337]: https://github.com/launchbadge/sqlx/pull/3337 [#&#8203;3340]: https://github.com/launchbadge/sqlx/pull/3340 [#&#8203;3341]: https://github.com/launchbadge/sqlx/pull/3341 [#&#8203;3343]: https://github.com/launchbadge/sqlx/pull/3343 [#&#8203;3346]: https://github.com/launchbadge/sqlx/pull/3346 [#&#8203;3350]: https://github.com/launchbadge/sqlx/pull/3350 [#&#8203;3352]: https://github.com/launchbadge/sqlx/pull/3352 [#&#8203;3353]: https://github.com/launchbadge/sqlx/pull/3353 [#&#8203;3356]: https://github.com/launchbadge/sqlx/pull/3356 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, 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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
kjuulh added 1 commit 2024-04-06 22:18:53 +02:00
fix(deps): update all dependencies
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
aec1e4a78c
kjuulh force-pushed renovate/all from aec1e4a78c to 07629ac22c 2024-04-08 21:29:53 +02:00 Compare
kjuulh force-pushed renovate/all from 07629ac22c to 45e3ae0e09 2024-04-08 23:58:48 +02:00 Compare
kjuulh force-pushed renovate/all from 45e3ae0e09 to 379fc5d8c7 2024-04-11 19:25:26 +02:00 Compare
kjuulh force-pushed renovate/all from 379fc5d8c7 to 18ed1b8bf8 2024-04-11 21:12:16 +02:00 Compare
kjuulh force-pushed renovate/all from 18ed1b8bf8 to f8c2391a26 2024-04-12 21:21:50 +02:00 Compare
kjuulh force-pushed renovate/all from f8c2391a26 to abb5b8d9d1 2024-04-12 23:59:21 +02:00 Compare
kjuulh force-pushed renovate/all from abb5b8d9d1 to d26add73ac 2024-04-15 12:18:17 +02:00 Compare
kjuulh force-pushed renovate/all from d26add73ac to b62aa430e9 2024-04-16 08:19:50 +02:00 Compare
kjuulh force-pushed renovate/all from b62aa430e9 to 1759b26a79 2024-04-17 00:12:43 +02:00 Compare
kjuulh force-pushed renovate/all from 1759b26a79 to a0413ac6da 2024-04-19 20:40:29 +02:00 Compare
kjuulh force-pushed renovate/all from a0413ac6da to 82a4f32614 2024-04-22 20:06:30 +02:00 Compare
kjuulh force-pushed renovate/all from 82a4f32614 to d6805ec7b1 2024-04-22 21:19:50 +02:00 Compare
kjuulh force-pushed renovate/all from d6805ec7b1 to f9299620b7 2024-04-22 23:34:42 +02:00 Compare
kjuulh force-pushed renovate/all from f9299620b7 to f282b27385 2024-04-27 06:43:01 +02:00 Compare
kjuulh force-pushed renovate/all from f282b27385 to 66e943a07d 2024-05-01 18:47:48 +02:00 Compare
kjuulh force-pushed renovate/all from 66e943a07d to b09a997cb5 2024-05-01 21:41:47 +02:00 Compare
kjuulh force-pushed renovate/all from b09a997cb5 to db4a32c437 2024-05-01 23:23:52 +02:00 Compare
kjuulh force-pushed renovate/all from db4a32c437 to 2b7c1a7545 2024-05-07 23:48:44 +02:00 Compare
kjuulh force-pushed renovate/all from 2b7c1a7545 to 1e229e3646 2024-05-08 02:51:55 +02:00 Compare
kjuulh force-pushed renovate/all from 1e229e3646 to 54cb5dc55d 2024-05-08 21:11:01 +02:00 Compare
kjuulh force-pushed renovate/all from 54cb5dc55d to 339ffc19eb 2024-05-08 23:21:01 +02:00 Compare
kjuulh force-pushed renovate/all from 339ffc19eb to 10077402b7 2024-05-09 21:50:43 +02:00 Compare
kjuulh force-pushed renovate/all from 10077402b7 to 1be1c116a7 2024-05-14 23:24:51 +02:00 Compare
kjuulh force-pushed renovate/all from 1be1c116a7 to 098e78c8b9 2024-05-15 10:06:03 +02:00 Compare
kjuulh force-pushed renovate/all from 098e78c8b9 to b52c62ead6 2024-05-16 16:29:50 +02:00 Compare
kjuulh force-pushed renovate/all from b52c62ead6 to 5725401884 2024-05-16 18:59:43 +02:00 Compare
kjuulh force-pushed renovate/all from 5725401884 to 65669e9f59 2024-05-17 18:21:54 +02:00 Compare
kjuulh changed title from fix(deps): update all dependencies to chore(deps): update all dependencies 2024-05-23 22:07:32 +02:00
kjuulh force-pushed renovate/all from 65669e9f59 to f73dbd5c57 2024-05-23 22:07:34 +02:00 Compare
kjuulh force-pushed renovate/all from f73dbd5c57 to 53c05edc3b 2024-05-25 21:13:59 +02:00 Compare
kjuulh force-pushed renovate/all from 53c05edc3b to a04aa70ef6 2024-05-25 21:46:25 +02:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2024-05-25 23:19:43 +02:00
kjuulh force-pushed renovate/all from a04aa70ef6 to b50d7ce127 2024-05-25 23:19:44 +02:00 Compare
kjuulh force-pushed renovate/all from b50d7ce127 to 604a089e27 2024-05-25 23:51:15 +02:00 Compare
kjuulh force-pushed renovate/all from 604a089e27 to 3ec7e85aab 2024-08-21 22:58:36 +02:00 Compare
kjuulh force-pushed renovate/all from 3ec7e85aab to 43ef100131 2024-08-22 00:29:20 +02:00 Compare
kjuulh force-pushed renovate/all from 43ef100131 to 94554f8e84 2024-08-22 01:28:35 +02:00 Compare
kjuulh force-pushed renovate/all from 94554f8e84 to be6bfb1d80 2024-08-22 02:07:32 +02:00 Compare
kjuulh force-pushed renovate/all from be6bfb1d80 to c81d3520cf 2024-08-22 02:45:01 +02:00 Compare
kjuulh force-pushed renovate/all from c81d3520cf to 50a921ac61 2024-08-22 03:20:30 +02:00 Compare
kjuulh force-pushed renovate/all from 50a921ac61 to 2732f7d934 2024-08-22 03:51:17 +02:00 Compare
kjuulh force-pushed renovate/all from 2732f7d934 to a24e5bd9f0 2024-08-22 04:20:33 +02:00 Compare
kjuulh force-pushed renovate/all from a24e5bd9f0 to 96dc057043 2024-08-22 04:51:24 +02:00 Compare
kjuulh force-pushed renovate/all from 96dc057043 to 01b4410f97 2024-08-22 05:22:44 +02:00 Compare
kjuulh force-pushed renovate/all from 01b4410f97 to e44ffbc124 2024-08-22 05:53:48 +02:00 Compare
kjuulh force-pushed renovate/all from e44ffbc124 to 122bf7e1f1 2024-08-22 06:24:08 +02:00 Compare
kjuulh force-pushed renovate/all from 122bf7e1f1 to 3472b718a5 2024-08-22 07:02:34 +02:00 Compare
kjuulh force-pushed renovate/all from 3472b718a5 to 59d21bbd3f 2024-08-22 07:32:39 +02:00 Compare
kjuulh force-pushed renovate/all from 59d21bbd3f to 93d9d433d8 2024-08-22 08:03:38 +02:00 Compare
kjuulh force-pushed renovate/all from 93d9d433d8 to 3f9f20a274 2024-08-22 08:36:32 +02:00 Compare
kjuulh force-pushed renovate/all from 3f9f20a274 to 8589ad4856 2024-08-22 09:16:04 +02:00 Compare
kjuulh force-pushed renovate/all from 8589ad4856 to 02a74473b2 2024-08-22 09:57:40 +02:00 Compare
kjuulh force-pushed renovate/all from 02a74473b2 to e87a8f8bb1 2024-08-22 10:41:58 +02:00 Compare
kjuulh force-pushed renovate/all from e87a8f8bb1 to 20d2d4275a 2024-08-22 11:27:51 +02:00 Compare
kjuulh force-pushed renovate/all from 20d2d4275a to e0c5ae115b 2024-08-22 12:27:03 +02:00 Compare
kjuulh force-pushed renovate/all from e0c5ae115b to bc892b13a1 2024-08-22 13:17:32 +02:00 Compare
kjuulh force-pushed renovate/all from bc892b13a1 to 3228931e5c 2024-08-22 13:48:28 +02:00 Compare
kjuulh force-pushed renovate/all from 3228931e5c to 21c827e0c6 2024-08-22 14:28:03 +02:00 Compare
kjuulh force-pushed renovate/all from 21c827e0c6 to 403b2732eb 2024-08-22 15:08:54 +02:00 Compare
kjuulh force-pushed renovate/all from 403b2732eb to bfacd7c447 2024-08-22 15:51:38 +02:00 Compare
kjuulh force-pushed renovate/all from bfacd7c447 to e9d4df57aa 2024-08-22 16:35:30 +02:00 Compare
kjuulh force-pushed renovate/all from e9d4df57aa to 3d742211ae 2024-08-22 17:18:29 +02:00 Compare
kjuulh force-pushed renovate/all from 3d742211ae to 0160abc4a8 2024-08-22 17:54:04 +02:00 Compare
kjuulh force-pushed renovate/all from 0160abc4a8 to 7fde5a7ef9 2024-08-22 18:22:36 +02:00 Compare
kjuulh force-pushed renovate/all from 7fde5a7ef9 to dfa1482c34 2024-08-22 19:07:47 +02:00 Compare
kjuulh force-pushed renovate/all from dfa1482c34 to 4da9a1384f 2024-08-22 19:46:09 +02:00 Compare
kjuulh force-pushed renovate/all from 4da9a1384f to d374c6deaf 2024-08-22 20:22:45 +02:00 Compare
kjuulh force-pushed renovate/all from d374c6deaf to 99b75a354f 2024-08-22 20:56:41 +02:00 Compare
kjuulh force-pushed renovate/all from 99b75a354f to 099da32d0b 2024-08-22 21:31:41 +02:00 Compare
kjuulh force-pushed renovate/all from 099da32d0b to f0f08f0c9f 2024-08-22 22:07:26 +02:00 Compare
kjuulh force-pushed renovate/all from f0f08f0c9f to 0307abb2d6 2024-08-22 22:42:10 +02:00 Compare
kjuulh force-pushed renovate/all from 0307abb2d6 to f36056a658 2024-08-22 23:17:01 +02:00 Compare
kjuulh force-pushed renovate/all from f36056a658 to c0dfe609cd 2024-08-22 23:51:37 +02:00 Compare
kjuulh force-pushed renovate/all from c0dfe609cd to 38951b1e56 2024-08-23 00:24:00 +02:00 Compare
kjuulh force-pushed renovate/all from 38951b1e56 to f18cdf61dd 2024-08-23 01:11:37 +02:00 Compare
kjuulh force-pushed renovate/all from f18cdf61dd to b9469f24a0 2024-08-23 01:46:01 +02:00 Compare
kjuulh force-pushed renovate/all from b9469f24a0 to ea5f48b6c8 2024-08-23 02:20:58 +02:00 Compare
kjuulh force-pushed renovate/all from ea5f48b6c8 to c5d3982be2 2024-08-23 02:55:14 +02:00 Compare
kjuulh force-pushed renovate/all from c5d3982be2 to 5f04f02cdb 2024-08-23 04:03:12 +02:00 Compare
kjuulh force-pushed renovate/all from 5f04f02cdb to 1aa62cdc36 2024-08-23 04:37:22 +02:00 Compare
kjuulh force-pushed renovate/all from 1aa62cdc36 to 199393c7bc 2024-08-23 05:12:01 +02:00 Compare
kjuulh force-pushed renovate/all from 199393c7bc to 8584cab108 2024-08-23 05:46:55 +02:00 Compare
kjuulh force-pushed renovate/all from 8584cab108 to 03f3c567de 2024-08-23 06:23:38 +02:00 Compare
kjuulh force-pushed renovate/all from 03f3c567de to aaf25f9a89 2024-08-23 07:06:52 +02:00 Compare
kjuulh force-pushed renovate/all from aaf25f9a89 to c17d7c9939 2024-08-23 07:41:07 +02:00 Compare
kjuulh force-pushed renovate/all from c17d7c9939 to 3c024d1723 2024-08-23 08:16:15 +02:00 Compare
kjuulh force-pushed renovate/all from 3c024d1723 to 3f7f19b5f1 2024-08-23 08:50:15 +02:00 Compare
kjuulh force-pushed renovate/all from 3f7f19b5f1 to 0064c86a3e 2024-08-23 09:25:38 +02:00 Compare
kjuulh force-pushed renovate/all from 0064c86a3e to 6435e28aae 2024-08-23 09:59:35 +02:00 Compare
kjuulh force-pushed renovate/all from 6435e28aae to bd43ebdbad 2024-08-23 10:33:35 +02:00 Compare
kjuulh force-pushed renovate/all from bd43ebdbad to 3dab46eafc 2024-08-23 11:07:15 +02:00 Compare
kjuulh force-pushed renovate/all from 3dab46eafc to 18b30fc6b9 2024-08-23 11:41:12 +02:00 Compare
kjuulh force-pushed renovate/all from 18b30fc6b9 to 6a4c13eee8 2024-08-23 12:22:07 +02:00 Compare
kjuulh force-pushed renovate/all from 6a4c13eee8 to 76af3e7224 2024-08-23 13:03:04 +02:00 Compare
kjuulh force-pushed renovate/all from 76af3e7224 to ac4be58f24 2024-08-23 13:36:47 +02:00 Compare
kjuulh force-pushed renovate/all from ac4be58f24 to 2552790c9f 2024-08-23 14:11:36 +02:00 Compare
kjuulh force-pushed renovate/all from 2552790c9f to e441808926 2024-08-23 14:45:05 +02:00 Compare
kjuulh force-pushed renovate/all from e441808926 to 959da3f0ba 2024-08-23 15:19:09 +02:00 Compare
kjuulh force-pushed renovate/all from 959da3f0ba to e564931db9 2024-08-23 15:53:24 +02:00 Compare
kjuulh force-pushed renovate/all from e564931db9 to 875dbf8800 2024-08-23 16:28:07 +02:00 Compare
kjuulh force-pushed renovate/all from 875dbf8800 to 53b5f47952 2024-08-23 17:02:45 +02:00 Compare
kjuulh force-pushed renovate/all from 53b5f47952 to dd44bf8f88 2024-08-23 17:38:16 +02:00 Compare
kjuulh force-pushed renovate/all from dd44bf8f88 to 46a14317b1 2024-08-23 18:22:51 +02:00 Compare
kjuulh force-pushed renovate/all from 46a14317b1 to 64d121b9d4 2024-08-23 19:05:27 +02:00 Compare
kjuulh force-pushed renovate/all from 64d121b9d4 to d1a62f4dbc 2024-08-23 19:39:57 +02:00 Compare
kjuulh force-pushed renovate/all from d1a62f4dbc to 525b3eab4d 2024-08-23 20:14:59 +02:00 Compare
kjuulh force-pushed renovate/all from 525b3eab4d to c8adcf861a 2024-08-23 20:49:32 +02:00 Compare
kjuulh force-pushed renovate/all from c8adcf861a to 30d325759f 2024-08-23 21:24:56 +02:00 Compare
kjuulh force-pushed renovate/all from 30d325759f to 605617d5b9 2024-08-23 21:59:50 +02:00 Compare
kjuulh force-pushed renovate/all from 605617d5b9 to db1d01ddc7 2024-08-23 22:38:58 +02:00 Compare
kjuulh force-pushed renovate/all from db1d01ddc7 to dd910bc189 2024-08-23 23:17:48 +02:00 Compare
kjuulh force-pushed renovate/all from dd910bc189 to 89592408e1 2024-08-23 23:55:01 +02:00 Compare
kjuulh force-pushed renovate/all from 89592408e1 to dcdd06c066 2024-08-24 00:23:42 +02:00 Compare
kjuulh force-pushed renovate/all from dcdd06c066 to 4cfa9be687 2024-08-24 01:07:41 +02:00 Compare
kjuulh force-pushed renovate/all from 4cfa9be687 to a9b540a77f 2024-08-24 01:42:37 +02:00 Compare
kjuulh force-pushed renovate/all from a9b540a77f to 5c5b3f4f07 2024-08-24 02:18:28 +02:00 Compare
kjuulh force-pushed renovate/all from 5c5b3f4f07 to 6463880467 2024-08-24 02:52:42 +02:00 Compare
kjuulh force-pushed renovate/all from 6463880467 to 03c4deb550 2024-08-24 03:29:07 +02:00 Compare
kjuulh force-pushed renovate/all from 03c4deb550 to 34da556afd 2024-08-24 04:02:41 +02:00 Compare
kjuulh force-pushed renovate/all from 34da556afd to f8fb4d539c 2024-08-24 04:38:16 +02:00 Compare
kjuulh force-pushed renovate/all from f8fb4d539c to 4b2f28efee 2024-08-24 05:14:16 +02:00 Compare
kjuulh force-pushed renovate/all from 4b2f28efee to 38e32be6c2 2024-08-24 05:52:38 +02:00 Compare
kjuulh force-pushed renovate/all from 38e32be6c2 to 59e7aeaedd 2024-08-24 06:24:20 +02:00 Compare
kjuulh force-pushed renovate/all from 59e7aeaedd to 413c61f850 2024-08-24 07:10:10 +02:00 Compare
kjuulh force-pushed renovate/all from 413c61f850 to 92aa3bae60 2024-08-24 07:45:26 +02:00 Compare
kjuulh force-pushed renovate/all from 92aa3bae60 to 0872ecf937 2024-08-24 08:20:58 +02:00 Compare
kjuulh force-pushed renovate/all from 0872ecf937 to f2a2504e03 2024-08-24 08:55:53 +02:00 Compare
kjuulh force-pushed renovate/all from f2a2504e03 to 70fb356591 2024-08-24 09:31:07 +02:00 Compare
kjuulh force-pushed renovate/all from 70fb356591 to 1fbdc2a8cb 2024-08-24 10:06:18 +02:00 Compare
kjuulh force-pushed renovate/all from 1fbdc2a8cb to ec355aea6b 2024-08-24 10:42:34 +02:00 Compare
kjuulh force-pushed renovate/all from ec355aea6b to 90199ba16f 2024-08-24 11:17:56 +02:00 Compare
kjuulh force-pushed renovate/all from 90199ba16f to 1a99d55d85 2024-08-24 11:52:45 +02:00 Compare
kjuulh force-pushed renovate/all from 1a99d55d85 to 64c7b26f74 2024-08-24 12:22:44 +02:00 Compare
kjuulh force-pushed renovate/all from 64c7b26f74 to 98c3732804 2024-08-24 13:06:13 +02:00 Compare
kjuulh force-pushed renovate/all from 98c3732804 to e40abed163 2024-08-24 13:41:36 +02:00 Compare
kjuulh force-pushed renovate/all from e40abed163 to 1c72d0e848 2024-08-24 14:17:31 +02:00 Compare
kjuulh force-pushed renovate/all from 1c72d0e848 to 1d035535e0 2024-08-24 14:52:33 +02:00 Compare
kjuulh force-pushed renovate/all from 1d035535e0 to b032499718 2024-08-24 15:28:25 +02:00 Compare
kjuulh force-pushed renovate/all from b032499718 to 83bb383c98 2024-08-24 16:03:30 +02:00 Compare
kjuulh force-pushed renovate/all from 83bb383c98 to 8810c24291 2024-08-24 16:39:27 +02:00 Compare
kjuulh force-pushed renovate/all from 8810c24291 to d04a1e937e 2024-08-24 17:14:40 +02:00 Compare
kjuulh force-pushed renovate/all from d04a1e937e to d32d304e07 2024-08-24 17:50:25 +02:00 Compare
kjuulh force-pushed renovate/all from d32d304e07 to 2f803fb4a0 2024-08-24 18:23:02 +02:00 Compare
kjuulh force-pushed renovate/all from 2f803fb4a0 to 0938d2cc47 2024-08-24 19:06:40 +02:00 Compare
kjuulh force-pushed renovate/all from 0938d2cc47 to c9fa607b1e 2024-08-24 19:41:54 +02:00 Compare
kjuulh force-pushed renovate/all from c9fa607b1e to b2011034d6 2024-08-24 20:17:46 +02:00 Compare
kjuulh force-pushed renovate/all from b2011034d6 to 350eb211f7 2024-08-24 20:53:06 +02:00 Compare
kjuulh force-pushed renovate/all from 350eb211f7 to 6ac5a557ff 2024-08-24 21:29:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6ac5a557ff to a54d8bfeb2 2024-08-24 22:05:57 +02:00 Compare
kjuulh force-pushed renovate/all from a54d8bfeb2 to ca1934c85c 2024-08-24 22:41:51 +02:00 Compare
kjuulh force-pushed renovate/all from ca1934c85c to b41f5f25ab 2024-08-24 23:17:43 +02:00 Compare
kjuulh force-pushed renovate/all from b41f5f25ab to 96a216186c 2024-08-24 23:52:56 +02:00 Compare
kjuulh force-pushed renovate/all from 96a216186c to 4850b708bb 2024-08-25 00:23:51 +02:00 Compare
kjuulh force-pushed renovate/all from 4850b708bb to 86cad75a5e 2024-08-25 01:08:47 +02:00 Compare
kjuulh force-pushed renovate/all from 86cad75a5e to b3958d0268 2024-08-25 01:44:30 +02:00 Compare
kjuulh force-pushed renovate/all from b3958d0268 to 40e5376278 2024-08-25 02:20:42 +02:00 Compare
kjuulh force-pushed renovate/all from 40e5376278 to 71ccf6f782 2024-08-25 02:55:56 +02:00 Compare
kjuulh force-pushed renovate/all from 71ccf6f782 to cfebfe9804 2024-08-25 03:31:12 +02:00 Compare
kjuulh force-pushed renovate/all from cfebfe9804 to 628e5c8f55 2024-08-25 04:05:37 +02:00 Compare
kjuulh force-pushed renovate/all from 628e5c8f55 to 9b0c5be3c4 2024-08-25 04:40:35 +02:00 Compare
kjuulh force-pushed renovate/all from 9b0c5be3c4 to 618a2054eb 2024-08-25 05:16:18 +02:00 Compare
kjuulh force-pushed renovate/all from 618a2054eb to 13ee1263ef 2024-08-25 05:52:31 +02:00 Compare
kjuulh force-pushed renovate/all from 13ee1263ef to f293648f6f 2024-08-25 06:23:16 +02:00 Compare
kjuulh force-pushed renovate/all from f293648f6f to b5dda442dc 2024-08-25 07:07:18 +02:00 Compare
kjuulh force-pushed renovate/all from b5dda442dc to 48a5fe3c78 2024-08-25 07:42:36 +02:00 Compare
kjuulh force-pushed renovate/all from 48a5fe3c78 to b572f8873a 2024-08-25 08:18:01 +02:00 Compare
kjuulh force-pushed renovate/all from b572f8873a to ad266ef9a0 2024-08-25 08:53:15 +02:00 Compare
kjuulh force-pushed renovate/all from ad266ef9a0 to 461df8cc73 2024-08-25 09:29:22 +02:00 Compare
kjuulh force-pushed renovate/all from 461df8cc73 to 22c890845c 2024-08-25 10:04:46 +02:00 Compare
kjuulh force-pushed renovate/all from 22c890845c to 2b8b2f8508 2024-08-25 10:40:05 +02:00 Compare
kjuulh force-pushed renovate/all from 2b8b2f8508 to f8fe7be22d 2024-08-25 11:15:12 +02:00 Compare
kjuulh force-pushed renovate/all from f8fe7be22d to 5dc20ce6c4 2024-08-25 11:50:20 +02:00 Compare
kjuulh force-pushed renovate/all from 5dc20ce6c4 to 20a76aee64 2024-08-25 12:22:54 +02:00 Compare
kjuulh force-pushed renovate/all from 20a76aee64 to 78ac8aebd3 2024-08-25 13:06:28 +02:00 Compare
kjuulh force-pushed renovate/all from 78ac8aebd3 to b14dd2741f 2024-08-25 13:41:17 +02:00 Compare
kjuulh force-pushed renovate/all from b14dd2741f to d8c334502e 2024-08-25 14:17:25 +02:00 Compare
kjuulh force-pushed renovate/all from d8c334502e to 3c4ed96fa5 2024-08-25 14:52:35 +02:00 Compare
kjuulh force-pushed renovate/all from 3c4ed96fa5 to 6868aea05f 2024-08-25 15:28:55 +02:00 Compare
kjuulh force-pushed renovate/all from 6868aea05f to 0dd016f830 2024-08-25 16:04:36 +02:00 Compare
kjuulh force-pushed renovate/all from 0dd016f830 to 6dbcbdb0c5 2024-08-25 16:40:56 +02:00 Compare
kjuulh force-pushed renovate/all from 6dbcbdb0c5 to b0e86f2723 2024-08-25 17:16:32 +02:00 Compare
kjuulh force-pushed renovate/all from b0e86f2723 to 6f8d6d656d 2024-08-25 17:51:55 +02:00 Compare
kjuulh force-pushed renovate/all from 6f8d6d656d to a53f68608a 2024-08-25 18:22:53 +02:00 Compare
kjuulh force-pushed renovate/all from a53f68608a to 96d1fdb399 2024-08-25 19:06:34 +02:00 Compare
kjuulh force-pushed renovate/all from 96d1fdb399 to 9c884e86ad 2024-08-25 19:41:53 +02:00 Compare
kjuulh force-pushed renovate/all from 9c884e86ad to be192c78e6 2024-08-25 20:17:37 +02:00 Compare
kjuulh force-pushed renovate/all from be192c78e6 to a9e68d3f24 2024-08-25 20:52:20 +02:00 Compare
kjuulh force-pushed renovate/all from a9e68d3f24 to d755c727f9 2024-08-25 21:27:59 +02:00 Compare
kjuulh force-pushed renovate/all from d755c727f9 to c983f21b93 2024-08-25 22:03:23 +02:00 Compare
kjuulh force-pushed renovate/all from c983f21b93 to 2b760c0cec 2024-08-25 22:39:20 +02:00 Compare
kjuulh force-pushed renovate/all from 2b760c0cec to 1342247dc7 2024-08-25 23:14:23 +02:00 Compare
kjuulh force-pushed renovate/all from 1342247dc7 to f8f6c5b928 2024-08-25 23:50:10 +02:00 Compare
kjuulh force-pushed renovate/all from f8f6c5b928 to acab8a4c77 2024-08-26 00:23:53 +02:00 Compare
kjuulh force-pushed renovate/all from acab8a4c77 to 5313859557 2024-08-26 01:08:09 +02:00 Compare
kjuulh force-pushed renovate/all from 5313859557 to d5f8ce01e7 2024-08-26 01:44:01 +02:00 Compare
kjuulh force-pushed renovate/all from d5f8ce01e7 to 9b0557dc83 2024-08-26 02:20:44 +02:00 Compare
kjuulh force-pushed renovate/all from 9b0557dc83 to 1b22e1da8f 2024-08-26 02:56:14 +02:00 Compare
kjuulh force-pushed renovate/all from 1b22e1da8f to 55e46b771d 2024-08-26 03:33:05 +02:00 Compare
kjuulh force-pushed renovate/all from 55e46b771d to 73062933da 2024-08-26 04:08:10 +02:00 Compare
kjuulh force-pushed renovate/all from 73062933da to fbe9f72449 2024-08-26 04:44:20 +02:00 Compare
kjuulh force-pushed renovate/all from fbe9f72449 to 051773ce8a 2024-08-26 05:21:23 +02:00 Compare
kjuulh force-pushed renovate/all from 051773ce8a to ecf136432d 2024-08-26 05:57:49 +02:00 Compare
kjuulh force-pushed renovate/all from ecf136432d to 1c7eb4cf7c 2024-08-26 06:23:42 +02:00 Compare
kjuulh force-pushed renovate/all from 1c7eb4cf7c to cb65112e73 2024-08-26 07:08:30 +02:00 Compare
kjuulh force-pushed renovate/all from cb65112e73 to adff3516e9 2024-08-26 07:43:39 +02:00 Compare
kjuulh force-pushed renovate/all from adff3516e9 to 16c7a912af 2024-08-26 08:20:43 +02:00 Compare
kjuulh force-pushed renovate/all from 16c7a912af to f2f3734483 2024-08-26 08:57:20 +02:00 Compare
kjuulh force-pushed renovate/all from f2f3734483 to 2db18760fe 2024-08-26 09:34:02 +02:00 Compare
kjuulh force-pushed renovate/all from 2db18760fe to 69c2619ea1 2024-08-26 10:10:16 +02:00 Compare
kjuulh force-pushed renovate/all from 69c2619ea1 to 627088118f 2024-08-26 10:46:39 +02:00 Compare
kjuulh force-pushed renovate/all from 627088118f to b893a9f556 2024-08-26 11:23:09 +02:00 Compare
kjuulh force-pushed renovate/all from b893a9f556 to 896b96d645 2024-08-26 12:23:42 +02:00 Compare
kjuulh force-pushed renovate/all from 896b96d645 to b8e6e6669b 2024-08-26 13:07:59 +02:00 Compare
kjuulh force-pushed renovate/all from b8e6e6669b to e450afcc06 2024-08-26 13:44:05 +02:00 Compare
kjuulh force-pushed renovate/all from e450afcc06 to 361818a1d9 2024-08-26 14:21:48 +02:00 Compare
kjuulh force-pushed renovate/all from 361818a1d9 to 6f70f56316 2024-08-26 14:58:59 +02:00 Compare
kjuulh force-pushed renovate/all from 6f70f56316 to d96aee2927 2024-08-26 15:36:24 +02:00 Compare
kjuulh force-pushed renovate/all from d96aee2927 to 5961e58a5c 2024-08-26 16:13:59 +02:00 Compare
kjuulh force-pushed renovate/all from 5961e58a5c to a15b60b6cf 2024-08-26 16:51:28 +02:00 Compare
kjuulh force-pushed renovate/all from a15b60b6cf to 74901419db 2024-08-26 17:28:42 +02:00 Compare
kjuulh force-pushed renovate/all from 74901419db to d2315c589e 2024-08-26 18:22:49 +02:00 Compare
kjuulh force-pushed renovate/all from d2315c589e to 694e073cc7 2024-08-26 19:06:25 +02:00 Compare
kjuulh force-pushed renovate/all from 694e073cc7 to 05a3f8e5c7 2024-08-26 19:41:36 +02:00 Compare
kjuulh force-pushed renovate/all from 05a3f8e5c7 to 0cc80f04de 2024-08-26 20:18:02 +02:00 Compare
kjuulh force-pushed renovate/all from 0cc80f04de to bad7c776ee 2024-08-26 20:53:11 +02:00 Compare
kjuulh force-pushed renovate/all from bad7c776ee to a1d59ddcb3 2024-08-26 21:29:00 +02:00 Compare
kjuulh force-pushed renovate/all from a1d59ddcb3 to 65b0648d08 2024-08-26 22:04:49 +02:00 Compare
kjuulh force-pushed renovate/all from 65b0648d08 to 9d5200e832 2024-08-26 22:40:51 +02:00 Compare
kjuulh force-pushed renovate/all from 9d5200e832 to 22e90dd9af 2024-08-26 23:18:37 +02:00 Compare
kjuulh force-pushed renovate/all from 22e90dd9af to 4d300fb32b 2024-08-26 23:55:47 +02:00 Compare
kjuulh force-pushed renovate/all from 4d300fb32b to 8bfacc4e38 2024-08-27 00:24:47 +02:00 Compare
kjuulh force-pushed renovate/all from 8bfacc4e38 to 2e942a25f6 2024-08-27 01:10:37 +02:00 Compare
kjuulh force-pushed renovate/all from 2e942a25f6 to 6eb9d63c99 2024-08-27 01:46:14 +02:00 Compare
kjuulh force-pushed renovate/all from 6eb9d63c99 to f9c7af7901 2024-08-27 02:22:57 +02:00 Compare
kjuulh force-pushed renovate/all from f9c7af7901 to 7a9fdb4af5 2024-08-27 02:58:48 +02:00 Compare
kjuulh force-pushed renovate/all from 7a9fdb4af5 to 5d77a6101f 2024-08-27 03:35:54 +02:00 Compare
kjuulh force-pushed renovate/all from 5d77a6101f to 0967abc387 2024-08-27 04:10:34 +02:00 Compare
kjuulh force-pushed renovate/all from 0967abc387 to e37d24577e 2024-08-27 04:45:51 +02:00 Compare
kjuulh force-pushed renovate/all from e37d24577e to 7f82f77cee 2024-08-27 05:21:47 +02:00 Compare
kjuulh force-pushed renovate/all from 7f82f77cee to edadbf197b 2024-08-27 05:57:54 +02:00 Compare
kjuulh force-pushed renovate/all from edadbf197b to a8d1ff3a36 2024-08-27 06:23:32 +02:00 Compare
kjuulh force-pushed renovate/all from a8d1ff3a36 to 52f57d073f 2024-08-27 07:07:58 +02:00 Compare
kjuulh force-pushed renovate/all from 52f57d073f to 44b9538cfc 2024-08-27 07:43:26 +02:00 Compare
kjuulh force-pushed renovate/all from 44b9538cfc to 70166c4eab 2024-08-27 08:19:30 +02:00 Compare
kjuulh force-pushed renovate/all from 70166c4eab to bbc97493f5 2024-08-27 08:54:50 +02:00 Compare
kjuulh force-pushed renovate/all from bbc97493f5 to a0525aaa48 2024-08-27 09:30:34 +02:00 Compare
kjuulh force-pushed renovate/all from a0525aaa48 to e0a55c19e8 2024-08-27 10:05:54 +02:00 Compare
kjuulh force-pushed renovate/all from e0a55c19e8 to ead502c9f9 2024-08-27 10:41:10 +02:00 Compare
kjuulh force-pushed renovate/all from ead502c9f9 to 24f3795c54 2024-08-27 11:17:02 +02:00 Compare
kjuulh force-pushed renovate/all from 24f3795c54 to 85ade1d39a 2024-08-27 11:53:21 +02:00 Compare
kjuulh force-pushed renovate/all from 85ade1d39a to f6f020fed0 2024-08-27 12:24:07 +02:00 Compare
kjuulh force-pushed renovate/all from f6f020fed0 to bd0157f619 2024-08-27 13:08:34 +02:00 Compare
kjuulh force-pushed renovate/all from bd0157f619 to 9fb895194e 2024-08-27 13:44:10 +02:00 Compare
kjuulh force-pushed renovate/all from 9fb895194e to 7ccdc9ec7b 2024-08-27 14:21:12 +02:00 Compare
kjuulh force-pushed renovate/all from 7ccdc9ec7b to 28d32a447b 2024-08-27 14:57:02 +02:00 Compare
kjuulh force-pushed renovate/all from 28d32a447b to f5642c82cd 2024-08-27 15:32:54 +02:00 Compare
kjuulh force-pushed renovate/all from f5642c82cd to d04517d6f4 2024-08-27 16:08:34 +02:00 Compare
kjuulh force-pushed renovate/all from d04517d6f4 to 13302d8ad5 2024-08-27 16:44:29 +02:00 Compare
kjuulh force-pushed renovate/all from 13302d8ad5 to fb06a14753 2024-08-27 17:20:54 +02:00 Compare
kjuulh force-pushed renovate/all from fb06a14753 to b47309a49c 2024-08-27 17:57:55 +02:00 Compare
kjuulh force-pushed renovate/all from b47309a49c to ee38b60470 2024-08-27 18:23:56 +02:00 Compare
kjuulh force-pushed renovate/all from ee38b60470 to 5b51cda362 2024-08-27 19:09:41 +02:00 Compare
kjuulh force-pushed renovate/all from 5b51cda362 to 276e405c54 2024-08-27 19:45:57 +02:00 Compare
kjuulh force-pushed renovate/all from 276e405c54 to e0407f2b08 2024-08-27 20:23:01 +02:00 Compare
kjuulh force-pushed renovate/all from e0407f2b08 to e5f84249a8 2024-08-27 20:59:15 +02:00 Compare
kjuulh force-pushed renovate/all from e5f84249a8 to 2948483feb 2024-08-27 21:35:48 +02:00 Compare
kjuulh force-pushed renovate/all from 2948483feb to 01598ba75e 2024-08-27 22:11:53 +02:00 Compare
kjuulh force-pushed renovate/all from 01598ba75e to e03f818338 2024-08-27 22:48:15 +02:00 Compare
kjuulh force-pushed renovate/all from e03f818338 to c07af54daf 2024-08-27 23:25:05 +02:00 Compare
kjuulh force-pushed renovate/all from c07af54daf to 6464838f55 2024-08-28 00:24:29 +02:00 Compare
kjuulh force-pushed renovate/all from 6464838f55 to b95b161528 2024-08-28 01:11:09 +02:00 Compare
kjuulh force-pushed renovate/all from b95b161528 to 43e5856d96 2024-08-28 01:47:21 +02:00 Compare
kjuulh force-pushed renovate/all from 43e5856d96 to c1564721fe 2024-08-28 02:24:27 +02:00 Compare
kjuulh force-pushed renovate/all from c1564721fe to bf490be668 2024-08-28 03:04:04 +02:00 Compare
kjuulh force-pushed renovate/all from bf490be668 to fe30fbe658 2024-08-28 03:42:01 +02:00 Compare
kjuulh force-pushed renovate/all from fe30fbe658 to a7aca60c70 2024-08-28 04:17:07 +02:00 Compare
kjuulh force-pushed renovate/all from a7aca60c70 to 527ba8cec9 2024-08-28 04:53:20 +02:00 Compare
kjuulh force-pushed renovate/all from 527ba8cec9 to dd7c3f05bb 2024-08-28 05:30:16 +02:00 Compare
kjuulh force-pushed renovate/all from dd7c3f05bb to dcac1eae8c 2024-08-28 06:24:00 +02:00 Compare
kjuulh force-pushed renovate/all from dcac1eae8c to f928be6209 2024-08-28 07:08:39 +02:00 Compare
kjuulh force-pushed renovate/all from f928be6209 to af2ed1b337 2024-08-28 07:45:10 +02:00 Compare
kjuulh force-pushed renovate/all from af2ed1b337 to 6018bff638 2024-08-28 08:22:12 +02:00 Compare
kjuulh force-pushed renovate/all from 6018bff638 to 8e372fc11b 2024-08-28 08:58:39 +02:00 Compare
kjuulh force-pushed renovate/all from 8e372fc11b to 4b2a15daa7 2024-08-28 09:36:03 +02:00 Compare
kjuulh force-pushed renovate/all from 4b2a15daa7 to 8b09203426 2024-08-28 10:12:56 +02:00 Compare
kjuulh force-pushed renovate/all from 8b09203426 to 8678b3f30f 2024-08-28 10:49:15 +02:00 Compare
kjuulh force-pushed renovate/all from 8678b3f30f to 1d63783717 2024-08-28 11:25:38 +02:00 Compare
kjuulh force-pushed renovate/all from 1d63783717 to 8ac526cd05 2024-08-28 12:24:03 +02:00 Compare
kjuulh force-pushed renovate/all from 8ac526cd05 to 78c6a7ab81 2024-08-28 13:09:10 +02:00 Compare
kjuulh force-pushed renovate/all from 78c6a7ab81 to 9972ed4cbc 2024-08-28 13:45:18 +02:00 Compare
kjuulh force-pushed renovate/all from 9972ed4cbc to 726c11d5e5 2024-08-28 14:22:05 +02:00 Compare
kjuulh force-pushed renovate/all from 726c11d5e5 to 97c002a302 2024-08-28 14:57:43 +02:00 Compare
kjuulh force-pushed renovate/all from 97c002a302 to 134b1a47fd 2024-08-28 15:33:49 +02:00 Compare
kjuulh force-pushed renovate/all from 134b1a47fd to 6cc94522aa 2024-08-28 16:10:38 +02:00 Compare
kjuulh force-pushed renovate/all from 6cc94522aa to 0cc89758f6 2024-08-28 16:47:36 +02:00 Compare
kjuulh force-pushed renovate/all from 0cc89758f6 to c9726ba22e 2024-08-28 17:24:25 +02:00 Compare
kjuulh force-pushed renovate/all from c9726ba22e to 12107fb7c7 2024-08-28 18:23:45 +02:00 Compare
kjuulh force-pushed renovate/all from 12107fb7c7 to 44a779e6c6 2024-08-28 19:09:32 +02:00 Compare
kjuulh force-pushed renovate/all from 44a779e6c6 to ab998cab22 2024-08-28 19:48:18 +02:00 Compare
kjuulh force-pushed renovate/all from ab998cab22 to 7e1882123b 2024-08-28 20:29:04 +02:00 Compare
kjuulh force-pushed renovate/all from 7e1882123b to a805ee9c38 2024-08-28 21:09:03 +02:00 Compare
kjuulh force-pushed renovate/all from a805ee9c38 to de87635c58 2024-08-28 21:48:41 +02:00 Compare
kjuulh force-pushed renovate/all from de87635c58 to 2a5acac665 2024-08-28 22:30:18 +02:00 Compare
kjuulh force-pushed renovate/all from 2a5acac665 to 4ce191f93a 2024-08-28 23:10:49 +02:00 Compare
kjuulh force-pushed renovate/all from 4ce191f93a to f6d684183c 2024-08-28 23:52:27 +02:00 Compare
kjuulh force-pushed renovate/all from f6d684183c to ae33456db9 2024-08-29 00:26:39 +02:00 Compare
kjuulh force-pushed renovate/all from ae33456db9 to 8047731063 2024-08-29 01:16:59 +02:00 Compare
kjuulh force-pushed renovate/all from 8047731063 to 9c49370940 2024-08-29 01:55:34 +02:00 Compare
kjuulh force-pushed renovate/all from 9c49370940 to 88be80bca6 2024-08-29 02:33:20 +02:00 Compare
kjuulh force-pushed renovate/all from 88be80bca6 to 51295dbc3c 2024-08-29 03:10:57 +02:00 Compare
kjuulh force-pushed renovate/all from 51295dbc3c to f208b2ff42 2024-08-29 03:47:05 +02:00 Compare
kjuulh force-pushed renovate/all from f208b2ff42 to fc1231fb5f 2024-08-29 04:23:24 +02:00 Compare
kjuulh force-pushed renovate/all from fc1231fb5f to 9351a2a25a 2024-08-29 04:59:34 +02:00 Compare
kjuulh force-pushed renovate/all from 9351a2a25a to bc4fb2822f 2024-08-29 05:37:15 +02:00 Compare
kjuulh force-pushed renovate/all from bc4fb2822f to 942a83c841 2024-08-29 06:24:31 +02:00 Compare
kjuulh force-pushed renovate/all from 942a83c841 to e9384b2585 2024-08-29 07:10:17 +02:00 Compare
kjuulh force-pushed renovate/all from e9384b2585 to 547c468808 2024-08-29 07:48:10 +02:00 Compare
kjuulh force-pushed renovate/all from 547c468808 to 966ce2f67f 2024-08-29 08:26:16 +02:00 Compare
kjuulh force-pushed renovate/all from 966ce2f67f to 5002c6f3de 2024-08-29 09:03:12 +02:00 Compare
kjuulh force-pushed renovate/all from 5002c6f3de to 9f244fc33e 2024-08-29 09:40:13 +02:00 Compare
kjuulh force-pushed renovate/all from 9f244fc33e to eb5f800ac1 2024-08-29 10:16:45 +02:00 Compare
kjuulh force-pushed renovate/all from eb5f800ac1 to a5b5b616b8 2024-08-29 10:53:34 +02:00 Compare
kjuulh force-pushed renovate/all from a5b5b616b8 to a050760e26 2024-08-29 11:30:34 +02:00 Compare
kjuulh force-pushed renovate/all from a050760e26 to ca5acb320d 2024-08-29 12:24:14 +02:00 Compare
kjuulh force-pushed renovate/all from ca5acb320d to 9986ae759e 2024-08-29 13:09:47 +02:00 Compare
kjuulh force-pushed renovate/all from 9986ae759e to 2dc818a2b7 2024-08-29 13:46:13 +02:00 Compare
kjuulh force-pushed renovate/all from 2dc818a2b7 to 260a2e193a 2024-08-29 14:23:06 +02:00 Compare
kjuulh force-pushed renovate/all from 260a2e193a to 3fa1db0dda 2024-08-29 14:59:17 +02:00 Compare
kjuulh force-pushed renovate/all from 3fa1db0dda to ec7fad9004 2024-08-29 15:36:09 +02:00 Compare
kjuulh force-pushed renovate/all from ec7fad9004 to b4e435bcc2 2024-08-29 16:14:10 +02:00 Compare
kjuulh force-pushed renovate/all from b4e435bcc2 to 5debd939d7 2024-08-29 16:51:52 +02:00 Compare
kjuulh force-pushed renovate/all from 5debd939d7 to 1e6fe9c98f 2024-08-29 17:29:49 +02:00 Compare
kjuulh force-pushed renovate/all from 1e6fe9c98f to 03382cc888 2024-08-29 18:24:24 +02:00 Compare
kjuulh force-pushed renovate/all from 03382cc888 to 83da772ede 2024-08-29 19:09:52 +02:00 Compare
kjuulh force-pushed renovate/all from 83da772ede to 39a427e44c 2024-08-29 19:46:43 +02:00 Compare
kjuulh force-pushed renovate/all from 39a427e44c to 20dd96dd47 2024-08-29 20:24:15 +02:00 Compare
kjuulh force-pushed renovate/all from 20dd96dd47 to 65d1587b04 2024-08-29 21:00:50 +02:00 Compare
kjuulh force-pushed renovate/all from 65d1587b04 to 42a3c9f8f4 2024-08-29 21:38:31 +02:00 Compare
kjuulh force-pushed renovate/all from 42a3c9f8f4 to c0abbe52a1 2024-08-29 22:15:37 +02:00 Compare
kjuulh force-pushed renovate/all from c0abbe52a1 to 4a44c82b25 2024-08-29 22:52:42 +02:00 Compare
kjuulh force-pushed renovate/all from 4a44c82b25 to ad7c5806fa 2024-08-29 23:31:42 +02:00 Compare
kjuulh force-pushed renovate/all from ad7c5806fa to 77f5cd448c 2024-08-30 00:26:23 +02:00 Compare
kjuulh force-pushed renovate/all from 77f5cd448c to 07c5291f8a 2024-08-30 01:13:53 +02:00 Compare
kjuulh force-pushed renovate/all from 07c5291f8a to 3ecc7587ce 2024-08-30 01:51:58 +02:00 Compare
kjuulh force-pushed renovate/all from 3ecc7587ce to 2eb24b0c94 2024-08-30 02:30:36 +02:00 Compare
kjuulh force-pushed renovate/all from 2eb24b0c94 to 3a52e874dd 2024-08-30 03:08:59 +02:00 Compare
kjuulh force-pushed renovate/all from 3a52e874dd to 3a8905364c 2024-08-30 03:47:15 +02:00 Compare
kjuulh force-pushed renovate/all from 3a8905364c to efbdf5b2bc 2024-08-30 04:25:31 +02:00 Compare
kjuulh force-pushed renovate/all from efbdf5b2bc to 46e0f2e06e 2024-08-30 05:04:32 +02:00 Compare
kjuulh force-pushed renovate/all from 46e0f2e06e to 3d3cf372bd 2024-08-30 05:42:30 +02:00 Compare
kjuulh force-pushed renovate/all from 3d3cf372bd to 65202fdda5 2024-08-30 06:26:10 +02:00 Compare
kjuulh force-pushed renovate/all from 65202fdda5 to da29cee79f 2024-08-30 07:13:21 +02:00 Compare
kjuulh force-pushed renovate/all from da29cee79f to cf263b36c2 2024-08-30 07:51:20 +02:00 Compare
kjuulh force-pushed renovate/all from cf263b36c2 to 73ebe39f00 2024-08-30 08:28:44 +02:00 Compare
kjuulh force-pushed renovate/all from 73ebe39f00 to 462c7a15a8 2024-08-30 09:06:31 +02:00 Compare
kjuulh force-pushed renovate/all from 462c7a15a8 to 432be60876 2024-08-30 09:44:25 +02:00 Compare
kjuulh force-pushed renovate/all from 432be60876 to c98a7228b8 2024-08-30 10:25:13 +02:00 Compare
kjuulh force-pushed renovate/all from c98a7228b8 to eee405fdfb 2024-08-30 11:08:39 +02:00 Compare
kjuulh force-pushed renovate/all from eee405fdfb to ca004f0236 2024-08-30 11:48:21 +02:00 Compare
kjuulh force-pushed renovate/all from ca004f0236 to 241aa255ce 2024-08-30 12:25:21 +02:00 Compare
kjuulh force-pushed renovate/all from 241aa255ce to 06fe7e5169 2024-08-30 13:17:49 +02:00 Compare
kjuulh force-pushed renovate/all from 06fe7e5169 to bf03af2264 2024-08-30 13:54:12 +02:00 Compare
kjuulh force-pushed renovate/all from bf03af2264 to b42c1dfa31 2024-08-30 14:32:02 +02:00 Compare
kjuulh force-pushed renovate/all from b42c1dfa31 to 427f73617b 2024-08-30 15:08:16 +02:00 Compare
kjuulh force-pushed renovate/all from 427f73617b to cdbcce8e7c 2024-08-30 15:45:39 +02:00 Compare
kjuulh force-pushed renovate/all from cdbcce8e7c to 4b2ba78345 2024-08-30 16:21:48 +02:00 Compare
kjuulh force-pushed renovate/all from 4b2ba78345 to 1de25be4f1 2024-08-30 16:58:16 +02:00 Compare
kjuulh force-pushed renovate/all from 1de25be4f1 to d7482b6b35 2024-08-30 17:33:47 +02:00 Compare
kjuulh force-pushed renovate/all from d7482b6b35 to 273fb3bd3a 2024-08-30 18:23:21 +02:00 Compare
kjuulh force-pushed renovate/all from 273fb3bd3a to bee7a69e8c 2024-08-30 19:08:14 +02:00 Compare
kjuulh force-pushed renovate/all from bee7a69e8c to 195e2d1be0 2024-08-30 19:45:09 +02:00 Compare
kjuulh force-pushed renovate/all from 195e2d1be0 to 1e46556d98 2024-08-31 02:25:48 +02:00 Compare
kjuulh force-pushed renovate/all from 1e46556d98 to 1c2e68084a 2024-08-31 06:24:35 +02:00 Compare
kjuulh force-pushed renovate/all from 1c2e68084a to 7e2f22874b 2024-09-01 02:25:15 +02:00 Compare
kjuulh force-pushed renovate/all from 7e2f22874b to a6c48cd6a5 2024-09-01 06:24:44 +02:00 Compare
kjuulh force-pushed renovate/all from a6c48cd6a5 to cdc9b0aa93 2024-09-02 02:25:29 +02:00 Compare
kjuulh force-pushed renovate/all from cdc9b0aa93 to d73fdeb300 2024-09-02 06:24:47 +02:00 Compare
kjuulh force-pushed renovate/all from d73fdeb300 to fc1853d1fb 2024-09-03 02:26:32 +02:00 Compare
kjuulh force-pushed renovate/all from fc1853d1fb to 218a198700 2024-09-03 06:24:50 +02:00 Compare
kjuulh force-pushed renovate/all from 218a198700 to b4ec70611e 2024-09-04 02:25:23 +02:00 Compare
kjuulh force-pushed renovate/all from b4ec70611e to 8565b31273 2024-09-04 06:24:43 +02:00 Compare
kjuulh force-pushed renovate/all from 8565b31273 to 1a69a549af 2024-09-05 02:29:44 +02:00 Compare
kjuulh force-pushed renovate/all from 1a69a549af to cc2e0166b6 2024-09-05 06:26:30 +02:00 Compare
kjuulh force-pushed renovate/all from cc2e0166b6 to db3fe23624 2024-09-06 02:27:56 +02:00 Compare
kjuulh force-pushed renovate/all from db3fe23624 to a186f34472 2024-09-06 06:25:13 +02:00 Compare
kjuulh force-pushed renovate/all from a186f34472 to 09807e4cdd 2024-09-07 02:29:01 +02:00 Compare
kjuulh changed title from fix(deps): update all dependencies to chore(deps): update all dependencies 2024-09-07 02:29:03 +02:00
kjuulh force-pushed renovate/all from 09807e4cdd to ebdd1fd71e 2024-09-07 06:27:07 +02:00 Compare
kjuulh force-pushed renovate/all from ebdd1fd71e to 6800be7db9 2024-09-08 02:29:45 +02:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2024-09-08 02:29:45 +02:00
kjuulh force-pushed renovate/all from 6800be7db9 to f28035fb28 2024-09-08 15:05:53 +02:00 Compare
kjuulh merged commit f28035fb28 into main 2024-09-09 02:27:48 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/flux-releaser#3
No description provided.