chore(deps): update all dependencies #3

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

This PR contains the following updates:

Package Type Update Change
@types/node (source) devDependencies minor 20.12.4 -> 20.16.10
autoprefixer devDependencies patch 10.4.19 -> 10.4.20
axum workspace.dependencies patch 0.7.5 -> 0.7.7
leptos workspace.dependencies patch 0.6.14 -> 0.6.15
leptos_axum workspace.dependencies patch 0.6.14 -> 0.6.15
leptos_meta workspace.dependencies patch 0.6.14 -> 0.6.15
leptos_router workspace.dependencies patch 0.6.14 -> 0.6.15
postcss (source) devDependencies patch 8.4.38 -> 8.4.47
server_fn workspace.dependencies patch 0.6.14 -> 0.6.15
sqlx dependencies minor 0.7.3 -> 0.8.0
tailwindcss (source) devDependencies patch 3.4.3 -> 3.4.13
thiserror workspace.dependencies patch 1.0.63 -> 1.0.64
tokio (source) workspace.dependencies minor 1.39.3 -> 1.40.0
tower workspace.dependencies patch 0.5.0 -> 0.5.1
tower-http dependencies minor 0.5.2 -> 0.6.0
tower-http workspace.dependencies minor 0.5 -> 0.6
typescript (source) devDependencies minor 5.4.4 -> 5.6.2
uuid dependencies minor 1.7.0 -> 1.10.0

⚠️ Warning

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


Release Notes

postcss/autoprefixer (autoprefixer)

v10.4.20

Compare Source

  • Fixed fit-content prefix for Firefox.
tokio-rs/axum (axum)

v0.7.7: axum v0.7.7

Compare Source

  • change: Remove manual tables of content from the documentation, since
    rustdoc now generates tables of content in the sidebar (#​2921)

v0.7.6: axum - v0.7.6

Compare Source

  • change: Avoid cloning Arc during deserialization of Path
  • added: axum::serve::Serve::tcp_nodelay and axum::serve::WithGracefulShutdown::tcp_nodelay (#​2653)
  • added: Router::has_routes function (#​2790)
  • change: Update tokio-tungstenite to 0.23 (#​2841)
  • added: Serve::local_addr and WithGracefulShutdown::local_addr functions (#​2881)
leptos-rs/leptos (leptos)

v0.6.15

Compare Source

Belated release notes for 0.6.15. This was a quick patch release to incorporate two changes, one to improve rust-analyzer support and the other to switch from the unmaintained proc-macro-error to proc-macro-error2 per RUSTSEC.

What's Changed
  • 0.6] fix: Rust-Analyzer hover information / redundant spans by [@​chrisp60](https://github.com/chrisp60) in https://github.com/leptos-rs/leptos/pull/2840
    
  • leptos 0.6: Switch to proc-macro-error2 to address unmaintained security advisory. by @​azriel91 in https://github.com/leptos-rs/leptos/pull/2935

Full Changelog: https://github.com/leptos-rs/leptos/compare/v0.6.14...v0.6.15

postcss/postcss (postcss)

v8.4.47

Compare Source

  • Removed debug code.

v8.4.46

Compare Source

  • Fixed Cannot read properties of undefined (reading 'before').

v8.4.45

Compare Source

  • Removed unnecessary fix which could lead to infinite loop.

v8.4.44

Compare Source

  • Another way to fix markClean is not a function error.

v8.4.43

Compare Source

  • Fixed markClean is not a function error.

v8.4.42

Compare Source

  • Fixed CSS syntax error on long minified files (by @​varpstar).

v8.4.41

Compare Source

v8.4.40

Compare Source

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

v8.4.39

Compare Source

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
  • [#​3447]]: Clarify usage of Json/Jsonb in query macros \[\[[@​Lachstec](https://github.com/Lachstec)]]
    
    
Changed
  • [#​3424]]: Remove deprecated feature-names from `Cargo.toml` files in examples \[\[[@​carschandler](https://github.com/carschandler)]]
    
    
Fixed
  • [#​3403]]: Fix ([#​3395](https://github.com/launchbadge/sqlx/issues/3395)) sqlx::test macro in 0.8 \[\[[@​joeydewaal](https://github.com/joeydewaal)]]
    
  • [#​3411]]: fix: Use rfc3339 to decode date from text \[\[[@​pierre-wehbe](https://github.com/pierre-wehbe)]]
    
  • [#​3453]]: fix([#​3445](https://github.com/launchbadge/sqlx/issues/3445)): PgHasArrayType \[\[[@​joeydewaal](https://github.com/joeydewaal)]]
    -   Fixes `#[sqlx(no_pg_array)]` being forbidden on `#[derive(Type)]` structs.
    
  • [#​3454]]: fix: non snake case warning \[\[[@​joeydewaal](https://github.com/joeydewaal)]]
    
  • [#​3459]]: Pgsql cube type compile fail \[\[[@​kdesjard](https://github.com/kdesjard)]]
    
  • [#​3465]]: fix(postgres): max number of binds is 65535, not 32767 (regression) \[\[[@​abonander](https://github.com/abonander)]]
    
  • [#​3467]]: fix cancellation issues with `PgListener`, `PgStream::recv()` \[\[[@​abonander](https://github.com/abonander)]]
    -   Fixes cryptic `unknown message: "\\0"` error
    
  • [#​3474]]: Fix try_get example in README.md \[\[[@​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
  • [#​3421]]: correct spelling of `MySqlConnectOptions::no_engine_substitution()` \[\[[@​kolinfluence](https://github.com/kolinfluence)]]
    -   Deprecates `MySqlConnectOptions::no_engine_subsitution()` (oops) in favor of the correctly spelled version.
    
    
Changed
  • [#​3376]]: doc: hide `spec_error` module \[\[[@​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.
    
  • [#​3382]]: feat: bumped to `libsqlite3-sys=0.30.1` to support sqlite 3.46 \[\[[@​CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#​3385]]: chore(examples):Migrated the pg-chat example to ratatui \[\[[@​CommanderStorm](https://github.com/CommanderStorm)]]
    
  • [#​3399]]: Upgrade to rustls 0.23 \[\[[@​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.

v0.7.4

Compare Source

38 pull requests were merged this release cycle.

This is officially the last release of the 0.7.x release cycle.

As of this release, development of 0.8.0 has begun on main and only high-priority bugfixes may be backported.

Added
  • [#&#8203;2891]]: feat: expose getters for connect options fields \[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]]
    
  • [#&#8203;2902]]: feat: add `to_url_lossy` to connect options \[\[[@&#8203;lily-mosquitoes](https://github.com/lily-mosquitoes)]]
    
  • [#&#8203;2927]]: Support `query!` for cargo-free systems \[\[[@&#8203;kshramt](https://github.com/kshramt)]]
    
  • [#&#8203;2997]]: doc(FAQ): add entry explaining prepared statements \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3001]]: Update README to clarify MariaDB support \[\[[@&#8203;iangilfillan](https://github.com/iangilfillan)]]
    
  • [#&#8203;3004]]: feat(logging): Add numeric elapsed time field elapsed_secs \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
    
  • [#&#8203;3007]]: feat: add `raw_sql` API \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   This hopefully makes it easier to find how to execute statements which are not supported by the default
        prepared statement interfaces `query*()` and `query!()`.
    -   Improved documentation across the board for the `query*()` functions.
    -   Deprecated: `execute_many()` and `fetch_many()` on interfaces that use prepared statements.
        -   Multiple SQL statements in one query string were only supported by SQLite because its prepared statement
            interface is the *only* way to execute SQL. All other database flavors forbid multiple statements in
            one prepared statement string as an extra defense against SQL injection.
        -   The new `raw_sql` API retains this functionality because it explicitly does *not* use prepared statements.
            Raw or text-mode query interfaces generally allow multiple statements in one query string, and this is
            supported by all current databases. Due to their nature, however, one cannot use bind parameters with them.
        -   If this change affects you, an issue is open for discussion: https://github.com/launchbadge/sqlx/issues/3108
    
  • [#&#8203;3011]]: Added support to IpAddr with MySQL/MariaDB. \[\[[@&#8203;Icerath](https://github.com/Icerath)]]
    
  • [#&#8203;3013]]: Add default implementation for PgInterval \[\[[@&#8203;pawurb](https://github.com/pawurb)]]
    
  • [#&#8203;3018]]: Add default implementation for PgMoney \[\[[@&#8203;pawurb](https://github.com/pawurb)]]
    
  • [#&#8203;3026]]: Update docs to reflect support for MariaDB data types \[\[[@&#8203;iangilfillan](https://github.com/iangilfillan)]]
    
  • [#&#8203;3037]]: feat(mysql): allow to connect with mysql driver without default behavor \[\[[@&#8203;darkecho731](https://github.com/darkecho731)]]
    
    
Changed
  • [#&#8203;2900]]: Show latest url to docs for macro.migrate \[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]]
    
  • [#&#8203;2914]]: Use `create_new` instead of `atomic-file-write` \[\[[@&#8203;mattfbacon](https://github.com/mattfbacon)]]
    
  • [#&#8203;2926]]: docs: update example for `PgConnectOptions` \[\[[@&#8203;Fyko](https://github.com/Fyko)]]
    
  • [#&#8203;2989]]: sqlx-core: Remove dotenvy dependency \[\[[@&#8203;joshtriplett](https://github.com/joshtriplett)]]
    
  • [#&#8203;2996]]: chore: Update ahash to 0.8.7 \[\[[@&#8203;takenoko-gohan](https://github.com/takenoko-gohan)]]
    
  • [#&#8203;3006]]: chore(deps): Replace unmaintained tempdir crate with tempfile \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
    
  • [#&#8203;3008]]: chore: Ignore .sqlx folder created by running ci steps locally \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
    
  • [#&#8203;3009]]: chore(dev-deps): Upgrade env_logger from 0.9 to 0.11 \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
    
  • [#&#8203;3010]]: chore(deps): Upgrade criterion to 0.5.1 \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
    
  • [#&#8203;3050]]: Optimize SASL auth in sqlx-postgres \[\[[@&#8203;mirek26](https://github.com/mirek26)]]
    
  • [#&#8203;3055]]: Set TCP_NODELAY option on TCP sockets \[\[[@&#8203;mirek26](https://github.com/mirek26)]]
    
  • [#&#8203;3065]]: Improve max_lifetime handling \[\[[@&#8203;mirek26](https://github.com/mirek26)]]
    
  • [#&#8203;3072]]: Change the name of "inner" function generated by `#[sqlx::test]` \[\[[@&#8203;ciffelia](https://github.com/ciffelia)]]
    
  • [#&#8203;3083]]: Remove sha1 because it's not being used in postgres \[\[[@&#8203;rafaelGuerreiro](https://github.com/rafaelGuerreiro)]]
    
    
Fixed
  • [#&#8203;2898]]: Fixed docs \[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]]
    
  • [#&#8203;2905]]: fix(mysql): Close prepared statement if persistence is disabled \[\[[@&#8203;larsschumacher](https://github.com/larsschumacher)]]
    
  • [#&#8203;2913]]: Fix handling of deferred constraints \[\[[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw)]]
    
  • [#&#8203;2919]]: fix duplicate "\`" in FromRow "default" attribute doc comment \[\[[@&#8203;shengsheng](https://github.com/shengsheng)]]
    
  • [#&#8203;2932]]: fix(postgres): avoid unnecessary flush in PgCopyIn::read_from \[\[[@&#8203;tsing](https://github.com/tsing)]]
    
  • [#&#8203;2955]]: Minor fixes \[\[[@&#8203;Dawsoncodes](https://github.com/Dawsoncodes)]]
    
  • [#&#8203;2963]]: Fixed ReadMe badge styling \[\[[@&#8203;tadghh](https://github.com/tadghh)]]
    
  • [#&#8203;2976]]: fix: AnyRow not support PgType::Varchar \[\[[@&#8203;holicc](https://github.com/holicc)]]
    
  • [#&#8203;3053]]: fix: do not panic when binding a large BigDecimal \[\[[@&#8203;Ekleog](https://github.com/Ekleog)]]
    
  • [#&#8203;3056]]: fix: spans in sqlite tracing ([#&#8203;2876](https://github.com/launchbadge/sqlx/issues/2876)) \[\[[@&#8203;zoomiti](https://github.com/zoomiti)]]
    
  • [#&#8203;3089]]: fix(migrate): improve error message when parsing version from filename \[\[[@&#8203;abonander](https://github.com/abonander)]]
    
  • [#&#8203;3098]]: Migrations fixes \[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   Unhides `sqlx::migrate::Migrator`.
    -   Improves I/O error message when failing to read a file in `migrate!()`.
    
    
tailwindlabs/tailwindcss (tailwindcss)

v3.4.13

Compare Source

Fixed
  • Improve source glob verification performance (#​14481)

v3.4.12

Compare Source

Fixed
  • Ensure using @apply with utilities that use @defaults works with rules defined in the base layer when using optimizeUniversalDefaults (#​14427)

v3.4.11

Compare Source

Fixed
  • Allow anchor-size(…) in arbitrary values (#​14393)

v3.4.10

Compare Source

Fixed
  • Bump versions of plugins in the Standalone CLI (#​14185)

v3.4.9

Compare Source

Fixed
  • No longer warns when broad glob patterns are detecting vendor folders

v3.4.8

Compare Source

Fixed
  • Fix minification when using nested CSS (#​14105)
  • Warn when broad glob patterns are used in the content configuration (#​14140)

v3.4.7

Compare Source

Fixed
  • Fix class detection in Slim templates with attached attributes and ID (#​14019)
  • Ensure attribute values in data-* and aria-* modifiers are always quoted in the generated CSS (#​14037)

v3.4.6

Compare Source

Fixed
  • Fix detection of some utilities in Slim/Pug templates (#​14006)
Changed
  • Loosen :is() wrapping rules when using an important selector (#​13900)

v3.4.5

Compare Source

Fixed
  • Disable automatic var() injection for anchor properties (#​13826)
  • Use no value instead of blur(0px) for backdrop-blur-none and blur-none utilities (#​13830)
  • Add .mts and .cts config file detection (#​13940)
  • Don't generate utilities like px-1 unnecessarily when using utilities like px-1.5 (#​13959)
  • Always generate -webkit-backdrop-filter for backdrop-* utilities (#​13997)

v3.4.4

Compare Source

Fixed
  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#​13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#​13770)
  • Support negative values for {col,row}-{start,end} utilities (#​13781)
  • Update embedded browserslist database (#​13792)
dtolnay/thiserror (thiserror)

v1.0.64

Compare Source

tokio-rs/tokio (tokio)

v1.40.0: Tokio v1.40.0

Compare Source

1.40.0 (August 30th, 2024)

Added
  • io: add util::SimplexStream (#​6589)
  • process: stabilize Command::process_group (#​6731)
  • sync: add {TrySendError,SendTimeoutError}::into_inner (#​6755)
  • task: add JoinSet::join_all (#​6784)
Added (unstable)
  • runtime: add Builder::{on_task_spawn, on_task_terminate} (#​6742)
Changed
  • io: use vectored io for write_all_buf when possible (#​6724)
  • runtime: prevent niche-optimization to avoid triggering miri (#​6744)
  • sync: mark mpsc types as UnwindSafe (#​6783)
  • sync,time: make Sleep and BatchSemaphore instrumentation explicit roots (#​6727)
  • task: use NonZeroU64 for task::Id (#​6733)
  • task: include panic message when printing JoinError (#​6753)
  • task: add #[must_use] to JoinHandle::abort_handle (#​6762)
  • time: eliminate timer wheel allocations (#​6779)
Documented
  • docs: clarify that [build] section doesn't go in Cargo.toml (#​6728)
  • io: clarify zero remaining capacity case (#​6790)
  • macros: improve documentation for select! (#​6774)
  • sync: document mpsc channel allocation behavior (#​6773)
tower-rs/tower (tower)

v0.5.1: tower 0.5.1

Compare Source

  • Fix minimum version of tower-layer dependency (#​787)
tower-rs/tower-http (tower-http)

v0.6.1: v0.6.1

Compare Source

Fixed
  • decompression: reuse scratch buffer to significantly reduce allocations and improve performance (#​521)
New Contributors

v0.6.0: v0.6.0

Compare Source

Changed:
  • body module is disabled except for catch-panic, decompression-*, fs, or limit features (BREAKING) (#​477)
  • Update to tower 0.5 (#​503)
Fixed
  • fs: Precompression of static files now supports files without a file extension (#​507)
microsoft/TypeScript (typescript)

v5.6.2: TypeScript 5.6

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.3: TypeScript 5.5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.2: TypeScript 5.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.5: TypeScript 5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

uuid-rs/uuid (uuid)

v1.10.0

Compare Source

Deprecations

This release deprecates and renames the following functions:

  • Builder::from_rfc4122_timestamp -> Builder::from_gregorian_timestamp
  • Builder::from_sorted_rfc4122_timestamp -> Builder::from_sorted_gregorian_timestamp
  • Timestamp::from_rfc4122 -> Timestamp::from_gregorian
  • Timestamp::to_rfc4122 -> Timestamp::to_gregorian

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0

v1.9.1

Compare Source

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.0...1.9.1

v1.9.0

Compare Source

Uuid::now_v7() is guaranteed to be monotonic

Before this release, Uuid::now_v7() would only use the millisecond-precision timestamp for ordering. It now also uses a global 42-bit counter that's re-initialized each millisecond so that the following will always pass:

let a = Uuid::now_v7();
let b = Uuid::now_v7();

assert!(a < b);

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.0

v1.8.0

Compare Source

⚠️ Potential Breakage ⚠️

A new impl AsRef<Uuid> for Uuid bound has been added, which can break inference on code like:

let b = uuid.as_ref();

You can fix these by explicitly typing the result of the conversion:

let b: &[u8] = uuid.as_ref();

or by calling as_bytes instead:

let b = uuid.as_bytes();

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0


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 | |---|---|---|---| | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | minor | [`20.12.4` -> `20.16.10`](https://renovatebot.com/diffs/npm/@types%2fnode/20.12.4/20.16.10) | | [autoprefixer](https://github.com/postcss/autoprefixer) | devDependencies | patch | [`10.4.19` -> `10.4.20`](https://renovatebot.com/diffs/npm/autoprefixer/10.4.19/10.4.20) | | [axum](https://github.com/tokio-rs/axum) | workspace.dependencies | patch | `0.7.5` -> `0.7.7` | | [leptos](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.6.14` -> `0.6.15` | | [leptos_axum](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.6.14` -> `0.6.15` | | [leptos_meta](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.6.14` -> `0.6.15` | | [leptos_router](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.6.14` -> `0.6.15` | | [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | devDependencies | patch | [`8.4.38` -> `8.4.47`](https://renovatebot.com/diffs/npm/postcss/8.4.38/8.4.47) | | [server_fn](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.6.14` -> `0.6.15` | | [sqlx](https://github.com/launchbadge/sqlx) | dependencies | minor | `0.7.3` -> `0.8.0` | | [tailwindcss](https://tailwindcss.com) ([source](https://github.com/tailwindlabs/tailwindcss)) | devDependencies | patch | [`3.4.3` -> `3.4.13`](https://renovatebot.com/diffs/npm/tailwindcss/3.4.3/3.4.13) | | [thiserror](https://github.com/dtolnay/thiserror) | workspace.dependencies | patch | `1.0.63` -> `1.0.64` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.39.3` -> `1.40.0` | | [tower](https://github.com/tower-rs/tower) | workspace.dependencies | patch | `0.5.0` -> `0.5.1` | | [tower-http](https://github.com/tower-rs/tower-http) | dependencies | minor | `0.5.2` -> `0.6.0` | | [tower-http](https://github.com/tower-rs/tower-http) | workspace.dependencies | minor | `0.5` -> `0.6` | | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | devDependencies | minor | [`5.4.4` -> `5.6.2`](https://renovatebot.com/diffs/npm/typescript/5.4.4/5.6.2) | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.7.0` -> `1.10.0` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>postcss/autoprefixer (autoprefixer)</summary> ### [`v10.4.20`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10420) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.4.19...10.4.20) - Fixed `fit-content` prefix for Firefox. </details> <details> <summary>tokio-rs/axum (axum)</summary> ### [`v0.7.7`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.7.7): axum v0.7.7 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.7.6...axum-v0.7.7) - **change**: Remove manual tables of content from the documentation, since rustdoc now generates tables of content in the sidebar ([#&#8203;2921]) [#&#8203;2921]: https://github.com/tokio-rs/axum/pull/2921 ### [`v0.7.6`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.7.6): axum - v0.7.6 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.7.5...axum-v0.7.6) - **change:** Avoid cloning `Arc` during deserialization of `Path` - **added:** `axum::serve::Serve::tcp_nodelay` and `axum::serve::WithGracefulShutdown::tcp_nodelay` ([#&#8203;2653]) - **added:** `Router::has_routes` function ([#&#8203;2790]) - **change:** Update tokio-tungstenite to 0.23 ([#&#8203;2841]) - **added:** `Serve::local_addr` and `WithGracefulShutdown::local_addr` functions ([#&#8203;2881]) [#&#8203;2653]: https://github.com/tokio-rs/axum/pull/2653 [#&#8203;2790]: https://github.com/tokio-rs/axum/pull/2790 [#&#8203;2841]: https://github.com/tokio-rs/axum/pull/2841 [#&#8203;2881]: https://github.com/tokio-rs/axum/pull/2881 </details> <details> <summary>leptos-rs/leptos (leptos)</summary> ### [`v0.6.15`](https://github.com/leptos-rs/leptos/releases/tag/v0.6.15) [Compare Source](https://github.com/leptos-rs/leptos/compare/v0.6.14...v0.6.15) Belated release notes for 0.6.15. This was a quick patch release to incorporate two changes, one to improve rust-analyzer support and the other to switch from the unmaintained `proc-macro-error` to `proc-macro-error2` per [RUSTSEC](https://rustsec.org/advisories/RUSTSEC-2024-0370.html). ##### What's Changed - \[0.6] fix: Rust-Analyzer hover information / redundant spans by [@&#8203;chrisp60](https://github.com/chrisp60) in https://github.com/leptos-rs/leptos/pull/2840 - leptos 0.6: Switch to `proc-macro-error2` to address unmaintained security advisory. by [@&#8203;azriel91](https://github.com/azriel91) in https://github.com/leptos-rs/leptos/pull/2935 **Full Changelog**: https://github.com/leptos-rs/leptos/compare/v0.6.14...v0.6.15 </details> <details> <summary>postcss/postcss (postcss)</summary> ### [`v8.4.47`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8447) [Compare Source](https://github.com/postcss/postcss/compare/8.4.46...8.4.47) - Removed debug code. ### [`v8.4.46`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8446) [Compare Source](https://github.com/postcss/postcss/compare/8.4.45...8.4.46) - Fixed `Cannot read properties of undefined (reading 'before')`. ### [`v8.4.45`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8445) [Compare Source](https://github.com/postcss/postcss/compare/8.4.44...8.4.45) - Removed unnecessary fix which could lead to infinite loop. ### [`v8.4.44`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8444) [Compare Source](https://github.com/postcss/postcss/compare/8.4.43...8.4.44) - Another way to fix `markClean is not a function` error. ### [`v8.4.43`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8443) [Compare Source](https://github.com/postcss/postcss/compare/8.4.42...8.4.43) - Fixed `markClean is not a function` error. ### [`v8.4.42`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8442) [Compare Source](https://github.com/postcss/postcss/compare/8.4.41...8.4.42) - Fixed CSS syntax error on long minified files (by [@&#8203;varpstar](https://github.com/varpstar)). ### [`v8.4.41`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8441) [Compare Source](https://github.com/postcss/postcss/compare/8.4.40...8.4.41) - Fixed types (by [@&#8203;nex3](https://github.com/nex3) and [@&#8203;querkmachine](https://github.com/querkmachine)). - Cleaned up RegExps (by [@&#8203;bluwy](https://github.com/bluwy)). ### [`v8.4.40`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8440) [Compare Source](https://github.com/postcss/postcss/compare/8.4.39...8.4.40) - Moved to getter/setter in nodes types to help Sass team (by [@&#8203;nex3](https://github.com/nex3)). ### [`v8.4.39`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8439) [Compare Source](https://github.com/postcss/postcss/compare/8.4.38...8.4.39) - Fixed `CssSyntaxError` types (by [@&#8203;romainmenke](https://github.com/romainmenke)). </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 ### [`v0.7.4`](https://github.com/launchbadge/sqlx/blob/HEAD/CHANGELOG.md#074---2024-03-11) [Compare Source](https://github.com/launchbadge/sqlx/compare/v0.7.3...v0.7.4) 38 pull requests were merged this release cycle. This is officially the **last** release of the 0.7.x release cycle. As of this release, development of 0.8.0 has begun on `main` and only high-priority bugfixes may be backported. ##### Added - \[[#&#8203;2891]]: feat: expose getters for connect options fields \[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]] - \[[#&#8203;2902]]: feat: add `to_url_lossy` to connect options \[\[[@&#8203;lily-mosquitoes](https://github.com/lily-mosquitoes)]] - \[[#&#8203;2927]]: Support `query!` for cargo-free systems \[\[[@&#8203;kshramt](https://github.com/kshramt)]] - \[[#&#8203;2997]]: doc(FAQ): add entry explaining prepared statements \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3001]]: Update README to clarify MariaDB support \[\[[@&#8203;iangilfillan](https://github.com/iangilfillan)]] - \[[#&#8203;3004]]: feat(logging): Add numeric elapsed time field elapsed_secs \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]] - \[[#&#8203;3007]]: feat: add `raw_sql` API \[\[[@&#8203;abonander](https://github.com/abonander)]] - This hopefully makes it easier to find how to execute statements which are not supported by the default prepared statement interfaces `query*()` and `query!()`. - Improved documentation across the board for the `query*()` functions. - Deprecated: `execute_many()` and `fetch_many()` on interfaces that use prepared statements. - Multiple SQL statements in one query string were only supported by SQLite because its prepared statement interface is the *only* way to execute SQL. All other database flavors forbid multiple statements in one prepared statement string as an extra defense against SQL injection. - The new `raw_sql` API retains this functionality because it explicitly does *not* use prepared statements. Raw or text-mode query interfaces generally allow multiple statements in one query string, and this is supported by all current databases. Due to their nature, however, one cannot use bind parameters with them. - If this change affects you, an issue is open for discussion: https://github.com/launchbadge/sqlx/issues/3108 - \[[#&#8203;3011]]: Added support to IpAddr with MySQL/MariaDB. \[\[[@&#8203;Icerath](https://github.com/Icerath)]] - \[[#&#8203;3013]]: Add default implementation for PgInterval \[\[[@&#8203;pawurb](https://github.com/pawurb)]] - \[[#&#8203;3018]]: Add default implementation for PgMoney \[\[[@&#8203;pawurb](https://github.com/pawurb)]] - \[[#&#8203;3026]]: Update docs to reflect support for MariaDB data types \[\[[@&#8203;iangilfillan](https://github.com/iangilfillan)]] - \[[#&#8203;3037]]: feat(mysql): allow to connect with mysql driver without default behavor \[\[[@&#8203;darkecho731](https://github.com/darkecho731)]] ##### Changed - \[[#&#8203;2900]]: Show latest url to docs for macro.migrate \[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]] - \[[#&#8203;2914]]: Use `create_new` instead of `atomic-file-write` \[\[[@&#8203;mattfbacon](https://github.com/mattfbacon)]] - \[[#&#8203;2926]]: docs: update example for `PgConnectOptions` \[\[[@&#8203;Fyko](https://github.com/Fyko)]] - \[[#&#8203;2989]]: sqlx-core: Remove dotenvy dependency \[\[[@&#8203;joshtriplett](https://github.com/joshtriplett)]] - \[[#&#8203;2996]]: chore: Update ahash to 0.8.7 \[\[[@&#8203;takenoko-gohan](https://github.com/takenoko-gohan)]] - \[[#&#8203;3006]]: chore(deps): Replace unmaintained tempdir crate with tempfile \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]] - \[[#&#8203;3008]]: chore: Ignore .sqlx folder created by running ci steps locally \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]] - \[[#&#8203;3009]]: chore(dev-deps): Upgrade env_logger from 0.9 to 0.11 \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]] - \[[#&#8203;3010]]: chore(deps): Upgrade criterion to 0.5.1 \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]] - \[[#&#8203;3050]]: Optimize SASL auth in sqlx-postgres \[\[[@&#8203;mirek26](https://github.com/mirek26)]] - \[[#&#8203;3055]]: Set TCP_NODELAY option on TCP sockets \[\[[@&#8203;mirek26](https://github.com/mirek26)]] - \[[#&#8203;3065]]: Improve max_lifetime handling \[\[[@&#8203;mirek26](https://github.com/mirek26)]] - \[[#&#8203;3072]]: Change the name of "inner" function generated by `#[sqlx::test]` \[\[[@&#8203;ciffelia](https://github.com/ciffelia)]] - \[[#&#8203;3083]]: Remove sha1 because it's not being used in postgres \[\[[@&#8203;rafaelGuerreiro](https://github.com/rafaelGuerreiro)]] ##### Fixed - \[[#&#8203;2898]]: Fixed docs \[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]] - \[[#&#8203;2905]]: fix(mysql): Close prepared statement if persistence is disabled \[\[[@&#8203;larsschumacher](https://github.com/larsschumacher)]] - \[[#&#8203;2913]]: Fix handling of deferred constraints \[\[[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw)]] - \[[#&#8203;2919]]: fix duplicate "\`" in FromRow "default" attribute doc comment \[\[[@&#8203;shengsheng](https://github.com/shengsheng)]] - \[[#&#8203;2932]]: fix(postgres): avoid unnecessary flush in PgCopyIn::read_from \[\[[@&#8203;tsing](https://github.com/tsing)]] - \[[#&#8203;2955]]: Minor fixes \[\[[@&#8203;Dawsoncodes](https://github.com/Dawsoncodes)]] - \[[#&#8203;2963]]: Fixed ReadMe badge styling \[\[[@&#8203;tadghh](https://github.com/tadghh)]] - \[[#&#8203;2976]]: fix: AnyRow not support PgType::Varchar \[\[[@&#8203;holicc](https://github.com/holicc)]] - \[[#&#8203;3053]]: fix: do not panic when binding a large BigDecimal \[\[[@&#8203;Ekleog](https://github.com/Ekleog)]] - \[[#&#8203;3056]]: fix: spans in sqlite tracing ([#&#8203;2876](https://github.com/launchbadge/sqlx/issues/2876)) \[\[[@&#8203;zoomiti](https://github.com/zoomiti)]] - \[[#&#8203;3089]]: fix(migrate): improve error message when parsing version from filename \[\[[@&#8203;abonander](https://github.com/abonander)]] - \[[#&#8203;3098]]: Migrations fixes \[\[[@&#8203;abonander](https://github.com/abonander)]] - Unhides `sqlx::migrate::Migrator`. - Improves I/O error message when failing to read a file in `migrate!()`. [#&#8203;2891]: https://github.com/launchbadge/sqlx/pull/2891 [#&#8203;2898]: https://github.com/launchbadge/sqlx/pull/2898 [#&#8203;2900]: https://github.com/launchbadge/sqlx/pull/2900 [#&#8203;2902]: https://github.com/launchbadge/sqlx/pull/2902 [#&#8203;2905]: https://github.com/launchbadge/sqlx/pull/2905 [#&#8203;2913]: https://github.com/launchbadge/sqlx/pull/2913 [#&#8203;2914]: https://github.com/launchbadge/sqlx/pull/2914 [#&#8203;2919]: https://github.com/launchbadge/sqlx/pull/2919 [#&#8203;2926]: https://github.com/launchbadge/sqlx/pull/2926 [#&#8203;2927]: https://github.com/launchbadge/sqlx/pull/2927 [#&#8203;2932]: https://github.com/launchbadge/sqlx/pull/2932 [#&#8203;2955]: https://github.com/launchbadge/sqlx/pull/2955 [#&#8203;2963]: https://github.com/launchbadge/sqlx/pull/2963 [#&#8203;2976]: https://github.com/launchbadge/sqlx/pull/2976 [#&#8203;2989]: https://github.com/launchbadge/sqlx/pull/2989 [#&#8203;2996]: https://github.com/launchbadge/sqlx/pull/2996 [#&#8203;2997]: https://github.com/launchbadge/sqlx/pull/2997 [#&#8203;3001]: https://github.com/launchbadge/sqlx/pull/3001 [#&#8203;3004]: https://github.com/launchbadge/sqlx/pull/3004 [#&#8203;3006]: https://github.com/launchbadge/sqlx/pull/3006 [#&#8203;3007]: https://github.com/launchbadge/sqlx/pull/3007 [#&#8203;3008]: https://github.com/launchbadge/sqlx/pull/3008 [#&#8203;3009]: https://github.com/launchbadge/sqlx/pull/3009 [#&#8203;3010]: https://github.com/launchbadge/sqlx/pull/3010 [#&#8203;3011]: https://github.com/launchbadge/sqlx/pull/3011 [#&#8203;3013]: https://github.com/launchbadge/sqlx/pull/3013 [#&#8203;3018]: https://github.com/launchbadge/sqlx/pull/3018 [#&#8203;3026]: https://github.com/launchbadge/sqlx/pull/3026 [#&#8203;3037]: https://github.com/launchbadge/sqlx/pull/3037 [#&#8203;3050]: https://github.com/launchbadge/sqlx/pull/3050 [#&#8203;3053]: https://github.com/launchbadge/sqlx/pull/3053 [#&#8203;3055]: https://github.com/launchbadge/sqlx/pull/3055 [#&#8203;3056]: https://github.com/launchbadge/sqlx/pull/3056 [#&#8203;3065]: https://github.com/launchbadge/sqlx/pull/3065 [#&#8203;3072]: https://github.com/launchbadge/sqlx/pull/3072 [#&#8203;3083]: https://github.com/launchbadge/sqlx/pull/3083 [#&#8203;3089]: https://github.com/launchbadge/sqlx/pull/3089 [#&#8203;3098]: https://github.com/launchbadge/sqlx/pull/3098 </details> <details> <summary>tailwindlabs/tailwindcss (tailwindcss)</summary> ### [`v3.4.13`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.13) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.12...v3.4.13) ##### Fixed - Improve source glob verification performance ([#&#8203;14481](https://github.com/tailwindlabs/tailwindcss/pull/14481)) ### [`v3.4.12`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.12) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.11...v3.4.12) ##### Fixed - Ensure using `@apply` with utilities that use `@defaults` works with rules defined in the base layer when using `optimizeUniversalDefaults` ([#&#8203;14427](https://github.com/tailwindlabs/tailwindcss/pull/14427)) ### [`v3.4.11`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.11) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.10...v3.4.11) ##### Fixed - Allow `anchor-size(…)` in arbitrary values ([#&#8203;14393](https://github.com/tailwindlabs/tailwindcss/pull/14393)) ### [`v3.4.10`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.10) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.9...v3.4.10) ##### Fixed - Bump versions of plugins in the Standalone CLI ([#&#8203;14185](https://github.com/tailwindlabs/tailwindcss/pull/14185)) ### [`v3.4.9`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.9) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.8...v3.4.9) ##### Fixed - No longer warns when broad glob patterns are detecting `vendor` folders ### [`v3.4.8`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.8) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.7...v3.4.8) ##### Fixed - Fix minification when using nested CSS ([#&#8203;14105](https://github.com/tailwindlabs/tailwindcss/pull/14105)) - Warn when broad glob patterns are used in the content configuration ([#&#8203;14140](https://github.com/tailwindlabs/tailwindcss/pull/14140)) ### [`v3.4.7`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.7) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.6...v3.4.7) ##### Fixed - Fix class detection in Slim templates with attached attributes and ID ([#&#8203;14019](https://github.com/tailwindlabs/tailwindcss/pull/14019)) - Ensure attribute values in `data-*` and `aria-*` modifiers are always quoted in the generated CSS ([#&#8203;14037](https://github.com/tailwindlabs/tailwindcss/pull/14037)) ### [`v3.4.6`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.6) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.5...v3.4.6) ##### Fixed - Fix detection of some utilities in Slim/Pug templates ([#&#8203;14006](https://github.com/tailwindlabs/tailwindcss/pull/14006)) ##### Changed - Loosen `:is()` wrapping rules when using an important selector ([#&#8203;13900](https://github.com/tailwindlabs/tailwindcss/pull/13900)) ### [`v3.4.5`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.5) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.4...v3.4.5) ##### Fixed - Disable automatic `var()` injection for anchor properties ([#&#8203;13826](https://github.com/tailwindlabs/tailwindcss/pull/13826)) - Use no value instead of `blur(0px)` for `backdrop-blur-none` and `blur-none` utilities ([#&#8203;13830](https://github.com/tailwindlabs/tailwindcss/pull/13830)) - Add `.mts` and `.cts` config file detection ([#&#8203;13940](https://github.com/tailwindlabs/tailwindcss/pull/13940)) - Don't generate utilities like `px-1` unnecessarily when using utilities like `px-1.5` ([#&#8203;13959](https://github.com/tailwindlabs/tailwindcss/pull/13959)) - Always generate `-webkit-backdrop-filter` for `backdrop-*` utilities ([#&#8203;13997](https://github.com/tailwindlabs/tailwindcss/pull/13997)) ### [`v3.4.4`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.4) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.3...v3.4.4) ##### Fixed - Make it possible to use multiple `<alpha-value>` placeholders in a single color definition ([#&#8203;13740](https://github.com/tailwindlabs/tailwindcss/pull/13740)) - Don't prefix classes in arbitrary values of `has-*`, `group-has-*`, and `peer-has-*` variants ([#&#8203;13770](https://github.com/tailwindlabs/tailwindcss/pull/13770)) - Support negative values for `{col,row}-{start,end}` utilities ([#&#8203;13781](https://github.com/tailwindlabs/tailwindcss/pull/13781)) - Update embedded browserslist database ([#&#8203;13792](https://github.com/tailwindlabs/tailwindcss/pull/13792)) </details> <details> <summary>dtolnay/thiserror (thiserror)</summary> ### [`v1.0.64`](https://github.com/dtolnay/thiserror/releases/tag/1.0.64) [Compare Source](https://github.com/dtolnay/thiserror/compare/1.0.63...1.0.64) - Exclude derived impls from coverage instrumentation ([#&#8203;322](https://github.com/dtolnay/thiserror/issues/322), thanks [@&#8203;oxalica](https://github.com/oxalica)) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.40.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.40.0): Tokio v1.40.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) ### 1.40.0 (August 30th, 2024) ##### Added - io: add `util::SimplexStream` ([#&#8203;6589]) - process: stabilize `Command::process_group` ([#&#8203;6731]) - sync: add `{TrySendError,SendTimeoutError}::into_inner` ([#&#8203;6755]) - task: add `JoinSet::join_all` ([#&#8203;6784]) ##### Added (unstable) - runtime: add `Builder::{on_task_spawn, on_task_terminate}` ([#&#8203;6742]) ##### Changed - io: use vectored io for `write_all_buf` when possible ([#&#8203;6724]) - runtime: prevent niche-optimization to avoid triggering miri ([#&#8203;6744]) - sync: mark mpsc types as `UnwindSafe` ([#&#8203;6783]) - sync,time: make `Sleep` and `BatchSemaphore` instrumentation explicit roots ([#&#8203;6727]) - task: use `NonZeroU64` for `task::Id` ([#&#8203;6733]) - task: include panic message when printing `JoinError` ([#&#8203;6753]) - task: add `#[must_use]` to `JoinHandle::abort_handle` ([#&#8203;6762]) - time: eliminate timer wheel allocations ([#&#8203;6779]) ##### Documented - docs: clarify that `[build]` section doesn't go in Cargo.toml ([#&#8203;6728]) - io: clarify zero remaining capacity case ([#&#8203;6790]) - macros: improve documentation for `select!` ([#&#8203;6774]) - sync: document mpsc channel allocation behavior ([#&#8203;6773]) [#&#8203;6589]: https://github.com/tokio-rs/tokio/pull/6589 [#&#8203;6724]: https://github.com/tokio-rs/tokio/pull/6724 [#&#8203;6727]: https://github.com/tokio-rs/tokio/pull/6727 [#&#8203;6728]: https://github.com/tokio-rs/tokio/pull/6728 [#&#8203;6731]: https://github.com/tokio-rs/tokio/pull/6731 [#&#8203;6733]: https://github.com/tokio-rs/tokio/pull/6733 [#&#8203;6742]: https://github.com/tokio-rs/tokio/pull/6742 [#&#8203;6744]: https://github.com/tokio-rs/tokio/pull/6744 [#&#8203;6753]: https://github.com/tokio-rs/tokio/pull/6753 [#&#8203;6755]: https://github.com/tokio-rs/tokio/pull/6755 [#&#8203;6762]: https://github.com/tokio-rs/tokio/pull/6762 [#&#8203;6773]: https://github.com/tokio-rs/tokio/pull/6773 [#&#8203;6774]: https://github.com/tokio-rs/tokio/pull/6774 [#&#8203;6779]: https://github.com/tokio-rs/tokio/pull/6779 [#&#8203;6783]: https://github.com/tokio-rs/tokio/pull/6783 [#&#8203;6784]: https://github.com/tokio-rs/tokio/pull/6784 [#&#8203;6790]: https://github.com/tokio-rs/tokio/pull/6790 </details> <details> <summary>tower-rs/tower (tower)</summary> ### [`v0.5.1`](https://github.com/tower-rs/tower/releases/tag/tower-0.5.1): tower 0.5.1 [Compare Source](https://github.com/tower-rs/tower/compare/tower-0.5.0...tower-0.5.1) - Fix minimum version of `tower-layer` dependency ([#&#8203;787]) [#&#8203;787]: https://github.com/tower-rs/tower/pull/787 </details> <details> <summary>tower-rs/tower-http (tower-http)</summary> ### [`v0.6.1`](https://github.com/tower-rs/tower-http/releases/tag/tower-http-0.6.1): v0.6.1 [Compare Source](https://github.com/tower-rs/tower-http/compare/tower-http-0.6.0...tower-http-0.6.1) ##### Fixed - **decompression:** reuse scratch buffer to significantly reduce allocations and improve performance ([#&#8203;521]) [#&#8203;521]: https://github.com/tower-rs/tower-http/pull/521 ##### New Contributors - [@&#8203;magurotuna](https://github.com/magurotuna) made their first contribution in https://github.com/tower-rs/tower-http/pull/521 ### [`v0.6.0`](https://github.com/tower-rs/tower-http/releases/tag/tower-http-0.6.0): v0.6.0 [Compare Source](https://github.com/tower-rs/tower-http/compare/tower-http-0.5.2...tower-http-0.6.0) ##### Changed: - `body` module is disabled except for `catch-panic`, `decompression-*`, `fs`, or `limit` features (BREAKING) ([#&#8203;477]) - Update to `tower` 0.5 ([#&#8203;503]) ##### Fixed - **fs:** Precompression of static files now supports files without a file extension ([#&#8203;507]) [#&#8203;477]: https://github.com/tower-rs/tower-http/pull/477 [#&#8203;503]: https://github.com/tower-rs/tower-http/pull/503 [#&#8203;507]: https://github.com/tower-rs/tower-http/pull/507 </details> <details> <summary>microsoft/TypeScript (typescript)</summary> ### [`v5.6.2`](https://github.com/microsoft/TypeScript/releases/tag/v5.6.2): TypeScript 5.6 [Compare Source](https://github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.2) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/). For the complete list of fixed issues, check out the - [fixed issues query for Typescript 5.6.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+). - [fixed issues query for Typescript 5.6.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+). - [fixed issues query for Typescript 5.6.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) ### [`v5.5.4`](https://github.com/microsoft/TypeScript/releases/tag/v5.5.4): TypeScript 5.5.4 [Compare Source](https://github.com/microsoft/TypeScript/compare/v5.5.3...v5.5.4) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/). For the complete list of fixed issues, check out the - [fixed issues query for TypeScript v5.5.4 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.4%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.3 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.3%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.2%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.1%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.0%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) (soon!) ### [`v5.5.3`](https://github.com/microsoft/TypeScript/releases/tag/v5.5.3): TypeScript 5.5.3 [Compare Source](https://github.com/microsoft/TypeScript/compare/v5.5.2...v5.5.3) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/). For the complete list of fixed issues, check out the - [fixed issues query for TypeScript v5.5.3 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.3%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.2%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.1%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.0%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) ### [`v5.5.2`](https://github.com/microsoft/TypeScript/releases/tag/v5.5.2): TypeScript 5.5 [Compare Source](https://github.com/microsoft/TypeScript/compare/v5.4.5...v5.5.2) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/). For the complete list of fixed issues, check out the - [fixed issues query for TypeScript v5.5.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.2%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.1%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.0%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) ### [`v5.4.5`](https://github.com/microsoft/TypeScript/releases/tag/v5.4.5): TypeScript 5.4.5 [Compare Source](https://github.com/microsoft/TypeScript/compare/v5.4.4...v5.4.5) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-4/). For the complete list of fixed issues, check out the - [fixed issues query for Typescript 5.4.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.0%22+is%3Aclosed+). - [fixed issues query for Typescript 5.4.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.1%22+is%3Aclosed+). - [fixed issues query for Typescript 5.4.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.2%22+is%3Aclosed+). - [fixed issues query for Typescript 5.4.3 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.3%22+is%3Aclosed+). - [fixed issues query for Typescript 5.4.4 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.4%22+is%3Aclosed+). - [fixed issues query for Typescript 5.4.5 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.4.5%22+is%3Aclosed+). Downloads are available on: - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.10.0`](https://github.com/uuid-rs/uuid/releases/tag/1.10.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0) #### Deprecations This release deprecates and renames the following functions: - `Builder::from_rfc4122_timestamp` -> `Builder::from_gregorian_timestamp` - `Builder::from_sorted_rfc4122_timestamp` -> `Builder::from_sorted_gregorian_timestamp` - `Timestamp::from_rfc4122` -> `Timestamp::from_gregorian` - `Timestamp::to_rfc4122` -> `Timestamp::to_gregorian` #### What's Changed - Use const identifier in uuid macro by [@&#8203;Vrajs16](https://github.com/Vrajs16) in https://github.com/uuid-rs/uuid/pull/764 - Rename most methods referring to RFC4122 by [@&#8203;Mikopet](https://github.com/Mikopet) / [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/765 - prepare for 1.10.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/766 #### New Contributors - [@&#8203;Vrajs16](https://github.com/Vrajs16) made their first contribution in https://github.com/uuid-rs/uuid/pull/764 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0 ### [`v1.9.1`](https://github.com/uuid-rs/uuid/releases/tag/1.9.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.9.0...1.9.1) #### What's Changed - Add an example of generating bulk v7 UUIDs by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/761 - Avoid taking the shared lock when getting usable bits in Uuid::now_v7 by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/762 - Prepare for 1.9.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/763 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.9.0...1.9.1 ### [`v1.9.0`](https://github.com/uuid-rs/uuid/releases/tag/1.9.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.0) #### `Uuid::now_v7()` is guaranteed to be monotonic Before this release, `Uuid::now_v7()` would only use the millisecond-precision timestamp for ordering. It now also uses a global 42-bit counter that's re-initialized each millisecond so that the following will always pass: ```rust let a = Uuid::now_v7(); let b = Uuid::now_v7(); assert!(a < b); ``` #### What's Changed - Add a get_node_id method for v1 and v6 UUIDs by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/748 - Update atomic and zerocopy to latest by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/750 - Add repository field to uuid-macro-internal crate by [@&#8203;paolobarbolini](https://github.com/paolobarbolini) in https://github.com/uuid-rs/uuid/pull/752 - update docs to updated RFC (from 4122 to 9562) by [@&#8203;Mikopet](https://github.com/Mikopet) in https://github.com/uuid-rs/uuid/pull/753 - Support counters in v7 UUIDs by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/755 #### New Contributors - [@&#8203;paolobarbolini](https://github.com/paolobarbolini) made their first contribution in https://github.com/uuid-rs/uuid/pull/752 - [@&#8203;Mikopet](https://github.com/Mikopet) made their first contribution in https://github.com/uuid-rs/uuid/pull/753 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.0 ### [`v1.8.0`](https://github.com/uuid-rs/uuid/releases/tag/1.8.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0) #### ⚠️ Potential Breakage ⚠️ A new `impl AsRef<Uuid> for Uuid` bound has been added, which can break inference on code like: ```rust let b = uuid.as_ref(); ``` You can fix these by explicitly typing the result of the conversion: ```rust let b: &[u8] = uuid.as_ref(); ``` or by calling `as_bytes` instead: ```rust let b = uuid.as_bytes(); ``` #### What's Changed - docs: fix small spelling mistake by [@&#8203;bengsparks](https://github.com/bengsparks) in https://github.com/uuid-rs/uuid/pull/737 - serde serialize_with support by [@&#8203;dakaizou](https://github.com/dakaizou) in https://github.com/uuid-rs/uuid/pull/735 - Fix up CI builds by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/744 - Only add `wasm-bindgen` as a dependency on `wasm32-unknown-unknown` by [@&#8203;emilk](https://github.com/emilk) in https://github.com/uuid-rs/uuid/pull/738 - impl AsRef<Uuid> for Uuid by [@&#8203;koshell](https://github.com/koshell) in https://github.com/uuid-rs/uuid/pull/743 - Add v6 to v8 draft link to README by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/746 - Add a workflow for running cargo outdated by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/745 - Prepare for 1.8.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/747 #### New Contributors - [@&#8203;bengsparks](https://github.com/bengsparks) made their first contribution in https://github.com/uuid-rs/uuid/pull/737 - [@&#8203;dakaizou](https://github.com/dakaizou) made their first contribution in https://github.com/uuid-rs/uuid/pull/735 - [@&#8203;emilk](https://github.com/emilk) made their first contribution in https://github.com/uuid-rs/uuid/pull/738 - [@&#8203;koshell](https://github.com/koshell) made their first contribution in https://github.com/uuid-rs/uuid/pull/743 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0 </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-03-12 06:28:48 +01:00
fix(deps): update rust crate sqlx to 0.7.4
Some checks failed
renovate/artifacts Artifact file update failure
ed960475a7
Author
Owner

⚠ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: cuddle-rust-service/Cargo.lock
Command failed: cargo update --manifest-path cuddle-rust-service/crates/%%name%%/Cargo.toml --workspace
error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`)
 --> cuddle-rust-service/crates/%%name%%/Cargo.toml:2:8
  |
2 | name = "%%name%%"
  |        ^^^^^^^^^^
  |

File name: cuddle-rust-cli/Cargo.lock
Command failed: cargo update --manifest-path cuddle-rust-cli/crates/%%name%%/Cargo.toml --workspace
error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`)
 --> cuddle-rust-cli/crates/%%name%%/Cargo.toml:2:8
  |
2 | name = "%%name%%"
  |        ^^^^^^^^^^
  |

File name: cuddle-node-service/yarn.lock
error package.json: Name contains illegal characters

### ⚠ Artifact update problem Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: cuddle-rust-service/Cargo.lock ``` Command failed: cargo update --manifest-path cuddle-rust-service/crates/%%name%%/Cargo.toml --workspace error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`) --> cuddle-rust-service/crates/%%name%%/Cargo.toml:2:8 | 2 | name = "%%name%%" | ^^^^^^^^^^ | ``` ##### File name: cuddle-rust-cli/Cargo.lock ``` Command failed: cargo update --manifest-path cuddle-rust-cli/crates/%%name%%/Cargo.toml --workspace error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`) --> cuddle-rust-cli/crates/%%name%%/Cargo.toml:2:8 | 2 | name = "%%name%%" | ^^^^^^^^^^ | ``` ##### File name: cuddle-node-service/yarn.lock ``` error package.json: Name contains illegal characters ```
kjuulh changed title from fix(deps): update rust crate sqlx to 0.7.4 to fix(deps): update all dependencies 2024-03-19 02:02:06 +01:00
kjuulh force-pushed renovate/all from ed960475a7 to 113a18958b 2024-03-19 02:02:08 +01:00 Compare
kjuulh force-pushed renovate/all from 113a18958b to d7166d2fba 2024-03-30 00:51:00 +01:00 Compare
kjuulh force-pushed renovate/all from d7166d2fba to 1c73fbd3cb 2024-03-30 16:15:46 +01:00 Compare
kjuulh force-pushed renovate/all from 1c73fbd3cb to c41e25a588 2024-03-31 00:06:44 +01:00 Compare
kjuulh force-pushed renovate/all from c41e25a588 to 6e7871db46 2024-04-05 21:41:16 +02:00 Compare
kjuulh force-pushed renovate/all from 6e7871db46 to 7b15f5b2d1 2024-04-05 22:17:13 +02:00 Compare
kjuulh force-pushed renovate/all from 7b15f5b2d1 to f3e895927c 2024-04-05 23:01:01 +02:00 Compare
kjuulh changed title from fix(deps): update all dependencies to chore(deps): update all dependencies 2024-04-05 23:01:03 +02:00
kjuulh force-pushed renovate/all from f3e895927c to 3e2a49c5ee 2024-04-06 23:28:59 +02:00 Compare
kjuulh force-pushed renovate/all from 3e2a49c5ee to 8273c5ce7a 2024-04-07 00:02:56 +02:00 Compare
kjuulh force-pushed renovate/all from 8273c5ce7a to b076f67062 2024-04-17 00:09:22 +02:00 Compare
kjuulh force-pushed renovate/all from b076f67062 to 314987c789 2024-04-27 06:39:51 +02:00 Compare
kjuulh force-pushed renovate/all from 314987c789 to f28fcf5e09 2024-05-01 18:44:35 +02:00 Compare
kjuulh force-pushed renovate/all from f28fcf5e09 to cfd2ba5900 2024-05-08 02:48:45 +02:00 Compare
kjuulh force-pushed renovate/all from cfd2ba5900 to 1fb81c0645 2024-05-15 10:02:46 +02:00 Compare
Author
Owner

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: cuddle-leptos/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path cuddle-leptos/Cargo.toml --workspace
error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`)
 --> cuddle-leptos/crates/%%name%%/Cargo.toml:2:8
  |
2 | name = "%%name%%"
  |        ^^^^^^^^^^
  |
error: failed to load manifest for workspace member `/tmp/renovate/repos/gitea/kjuulh/cuddle-templates/cuddle-leptos/crates/%%name%%`
referenced by workspace at `/tmp/renovate/repos/gitea/kjuulh/cuddle-templates/cuddle-leptos/Cargo.toml`

File name: cuddle-rust-service/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path cuddle-rust-service/crates/%%name%%/Cargo.toml --workspace
error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`)
 --> cuddle-rust-service/crates/%%name%%/Cargo.toml:2:8
  |
2 | name = "%%name%%"
  |        ^^^^^^^^^^
  |

File name: cuddle-rust-cli/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path cuddle-rust-cli/crates/%%name%%/Cargo.toml --workspace
error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`)
 --> cuddle-rust-cli/crates/%%name%%/Cargo.toml:2:8
  |
2 | name = "%%name%%"
  |        ^^^^^^^^^^
  |

File name: cuddle-node-service/yarn.lock
error package.json: Name contains illegal characters

### ⚠️ Artifact update problem Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: cuddle-leptos/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path cuddle-leptos/Cargo.toml --workspace error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`) --> cuddle-leptos/crates/%%name%%/Cargo.toml:2:8 | 2 | name = "%%name%%" | ^^^^^^^^^^ | error: failed to load manifest for workspace member `/tmp/renovate/repos/gitea/kjuulh/cuddle-templates/cuddle-leptos/crates/%%name%%` referenced by workspace at `/tmp/renovate/repos/gitea/kjuulh/cuddle-templates/cuddle-leptos/Cargo.toml` ``` ##### File name: cuddle-rust-service/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path cuddle-rust-service/crates/%%name%%/Cargo.toml --workspace error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`) --> cuddle-rust-service/crates/%%name%%/Cargo.toml:2:8 | 2 | name = "%%name%%" | ^^^^^^^^^^ | ``` ##### File name: cuddle-rust-cli/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path cuddle-rust-cli/crates/%%name%%/Cargo.toml --workspace error: invalid character `%` in package name: `%%name%%`, the first character must be a Unicode XID start character (most letters or `_`) --> cuddle-rust-cli/crates/%%name%%/Cargo.toml:2:8 | 2 | name = "%%name%%" | ^^^^^^^^^^ | ``` ##### File name: cuddle-node-service/yarn.lock ``` error package.json: Name contains illegal characters ```
kjuulh force-pushed renovate/all from 1fb81c0645 to 5af597e7cf 2024-05-23 22:03:25 +02:00 Compare
kjuulh force-pushed renovate/all from 5af597e7cf to 9f5dcb0f14 2024-07-06 15:32:35 +02:00 Compare
kjuulh force-pushed renovate/all from 9f5dcb0f14 to 6229a1bb13 2024-08-21 22:51:29 +02:00 Compare
kjuulh force-pushed renovate/all from 6229a1bb13 to fc9cbc2f86 2024-08-22 00:23:55 +02:00 Compare
kjuulh force-pushed renovate/all from fc9cbc2f86 to 242541d23d 2024-08-22 01:24:26 +02:00 Compare
kjuulh force-pushed renovate/all from 242541d23d to 822ad06b95 2024-08-22 02:02:53 +02:00 Compare
kjuulh force-pushed renovate/all from 822ad06b95 to b4c96caab4 2024-08-22 02:41:40 +02:00 Compare
kjuulh force-pushed renovate/all from b4c96caab4 to 8ba92ad3f3 2024-08-22 03:17:31 +02:00 Compare
kjuulh force-pushed renovate/all from 8ba92ad3f3 to fa548c4ebd 2024-08-22 03:48:32 +02:00 Compare
kjuulh force-pushed renovate/all from fa548c4ebd to f59b1de593 2024-08-22 04:17:44 +02:00 Compare
kjuulh force-pushed renovate/all from f59b1de593 to f31a3cb689 2024-08-22 04:48:21 +02:00 Compare
kjuulh force-pushed renovate/all from f31a3cb689 to 93d4bcb38a 2024-08-22 05:19:43 +02:00 Compare
kjuulh force-pushed renovate/all from 93d4bcb38a to ee58181258 2024-08-22 05:50:47 +02:00 Compare
kjuulh force-pushed renovate/all from ee58181258 to b026840b2e 2024-08-22 06:20:34 +02:00 Compare
kjuulh force-pushed renovate/all from b026840b2e to 8a87016a05 2024-08-22 06:59:22 +02:00 Compare
kjuulh force-pushed renovate/all from 8a87016a05 to 60708a804c 2024-08-22 07:29:35 +02:00 Compare
kjuulh force-pushed renovate/all from 60708a804c to 73256b2533 2024-08-22 08:00:42 +02:00 Compare
kjuulh force-pushed renovate/all from 73256b2533 to 47b0dad80b 2024-08-22 08:32:13 +02:00 Compare
kjuulh force-pushed renovate/all from 47b0dad80b to 22c45b94ef 2024-08-22 09:11:49 +02:00 Compare
kjuulh force-pushed renovate/all from 22c45b94ef to af592e5b74 2024-08-22 09:53:37 +02:00 Compare
kjuulh force-pushed renovate/all from af592e5b74 to a685ba402b 2024-08-22 10:37:35 +02:00 Compare
kjuulh force-pushed renovate/all from a685ba402b to cdb019cbbb 2024-08-22 11:23:30 +02:00 Compare
kjuulh force-pushed renovate/all from cdb019cbbb to 575dbb1c5c 2024-08-22 12:22:17 +02:00 Compare
kjuulh force-pushed renovate/all from 575dbb1c5c to 75c5456a9b 2024-08-22 13:14:37 +02:00 Compare
kjuulh force-pushed renovate/all from 75c5456a9b to 68e7460308 2024-08-22 13:44:57 +02:00 Compare
kjuulh force-pushed renovate/all from 68e7460308 to 137c7feb91 2024-08-22 14:24:11 +02:00 Compare
kjuulh force-pushed renovate/all from 137c7feb91 to ff258581f6 2024-08-22 15:05:07 +02:00 Compare
kjuulh force-pushed renovate/all from ff258581f6 to 5e601ed252 2024-08-22 15:48:21 +02:00 Compare
kjuulh force-pushed renovate/all from 5e601ed252 to d37c32e68b 2024-08-22 16:30:54 +02:00 Compare
kjuulh force-pushed renovate/all from d37c32e68b to 35adeb0fd5 2024-08-22 17:15:20 +02:00 Compare
kjuulh force-pushed renovate/all from 35adeb0fd5 to 28adcb5b1d 2024-08-22 17:51:07 +02:00 Compare
kjuulh force-pushed renovate/all from 28adcb5b1d to 89f44bc70d 2024-08-22 18:19:15 +02:00 Compare
kjuulh force-pushed renovate/all from 89f44bc70d to ce50528250 2024-08-22 19:04:26 +02:00 Compare
kjuulh force-pushed renovate/all from ce50528250 to 156537e50d 2024-08-22 19:42:51 +02:00 Compare
kjuulh force-pushed renovate/all from 156537e50d to c587f509a3 2024-08-22 20:19:48 +02:00 Compare
kjuulh force-pushed renovate/all from c587f509a3 to 56759d72d0 2024-08-22 20:53:43 +02:00 Compare
kjuulh force-pushed renovate/all from 56759d72d0 to bf636c4969 2024-08-22 21:28:43 +02:00 Compare
kjuulh force-pushed renovate/all from bf636c4969 to 1b444a9068 2024-08-22 22:04:20 +02:00 Compare
kjuulh force-pushed renovate/all from 1b444a9068 to 21c383606f 2024-08-22 22:39:15 +02:00 Compare
kjuulh force-pushed renovate/all from 21c383606f to 4c4cb8fa92 2024-08-22 23:13:57 +02:00 Compare
kjuulh force-pushed renovate/all from 4c4cb8fa92 to 1fb39859fe 2024-08-22 23:48:43 +02:00 Compare
kjuulh force-pushed renovate/all from 1fb39859fe to 4a4c1d4526 2024-08-23 00:20:21 +02:00 Compare
kjuulh force-pushed renovate/all from 4a4c1d4526 to 9a86d96240 2024-08-23 01:08:39 +02:00 Compare
kjuulh force-pushed renovate/all from 9a86d96240 to 3b1bb83b35 2024-08-23 01:42:58 +02:00 Compare
kjuulh force-pushed renovate/all from 3b1bb83b35 to 9f5a9b976b 2024-08-23 02:18:03 +02:00 Compare
kjuulh force-pushed renovate/all from 9f5a9b976b to 6a4d562ee8 2024-08-23 02:52:15 +02:00 Compare
kjuulh force-pushed renovate/all from 6a4d562ee8 to 84ccd07ed8 2024-08-23 03:27:36 +02:00 Compare
kjuulh force-pushed renovate/all from 84ccd07ed8 to 7f89f7b63c 2024-08-23 04:00:17 +02:00 Compare
kjuulh force-pushed renovate/all from 7f89f7b63c to b3145c274e 2024-08-23 04:34:21 +02:00 Compare
kjuulh force-pushed renovate/all from b3145c274e to 2c0068d185 2024-08-23 05:08:59 +02:00 Compare
kjuulh force-pushed renovate/all from 2c0068d185 to 4bb7b49518 2024-08-23 05:43:54 +02:00 Compare
kjuulh force-pushed renovate/all from 4bb7b49518 to 6e854a8029 2024-08-23 06:20:01 +02:00 Compare
kjuulh force-pushed renovate/all from 6e854a8029 to 0402627464 2024-08-23 07:03:39 +02:00 Compare
kjuulh force-pushed renovate/all from 0402627464 to f6ddc9c882 2024-08-23 07:38:10 +02:00 Compare
kjuulh force-pushed renovate/all from f6ddc9c882 to 6f9b388de2 2024-08-23 08:13:14 +02:00 Compare
kjuulh force-pushed renovate/all from 6f9b388de2 to 4795291a09 2024-08-23 08:47:20 +02:00 Compare
kjuulh force-pushed renovate/all from 4795291a09 to 22f564a004 2024-08-23 09:22:44 +02:00 Compare
kjuulh force-pushed renovate/all from 22f564a004 to 28b756fd18 2024-08-23 09:56:42 +02:00 Compare
kjuulh force-pushed renovate/all from 28b756fd18 to 9f22acdb2f 2024-08-23 10:30:41 +02:00 Compare
kjuulh force-pushed renovate/all from 9f22acdb2f to f2a28a67a3 2024-08-23 11:04:21 +02:00 Compare
kjuulh force-pushed renovate/all from f2a28a67a3 to 0340d0041a 2024-08-23 11:38:16 +02:00 Compare
kjuulh force-pushed renovate/all from 0340d0041a to af874758dc 2024-08-23 12:18:50 +02:00 Compare
kjuulh force-pushed renovate/all from af874758dc to 13ffc3c8dd 2024-08-23 13:00:07 +02:00 Compare
kjuulh force-pushed renovate/all from 13ffc3c8dd to 0bb7a062b4 2024-08-23 13:33:54 +02:00 Compare
kjuulh force-pushed renovate/all from 0bb7a062b4 to 6eb5839f89 2024-08-23 14:08:42 +02:00 Compare
kjuulh force-pushed renovate/all from 6eb5839f89 to 13cddc458f 2024-08-23 14:42:16 +02:00 Compare
kjuulh force-pushed renovate/all from 13cddc458f to 9aeca2a8b8 2024-08-23 15:16:17 +02:00 Compare
kjuulh force-pushed renovate/all from 9aeca2a8b8 to e0844f1377 2024-08-23 15:50:09 +02:00 Compare
kjuulh force-pushed renovate/all from e0844f1377 to 1fb0ac6cbb 2024-08-23 16:25:02 +02:00 Compare
kjuulh force-pushed renovate/all from 1fb0ac6cbb to f1c782a789 2024-08-23 16:59:25 +02:00 Compare
kjuulh force-pushed renovate/all from f1c782a789 to 8fdf396bcf 2024-08-23 17:34:56 +02:00 Compare
kjuulh force-pushed renovate/all from 8fdf396bcf to 11b119e388 2024-08-23 18:19:16 +02:00 Compare
kjuulh force-pushed renovate/all from 11b119e388 to 825d3df187 2024-08-23 19:02:12 +02:00 Compare
kjuulh force-pushed renovate/all from 825d3df187 to a5f38dd620 2024-08-23 19:36:56 +02:00 Compare
kjuulh force-pushed renovate/all from a5f38dd620 to 1c6dcd881f 2024-08-23 20:11:46 +02:00 Compare
kjuulh force-pushed renovate/all from 1c6dcd881f to 3406983789 2024-08-23 20:46:27 +02:00 Compare
kjuulh force-pushed renovate/all from 3406983789 to 4ca1f693da 2024-08-23 21:21:45 +02:00 Compare
kjuulh force-pushed renovate/all from 4ca1f693da to 3471c099e3 2024-08-23 21:56:35 +02:00 Compare
kjuulh force-pushed renovate/all from 3471c099e3 to c4ea7473cc 2024-08-23 22:34:55 +02:00 Compare
kjuulh force-pushed renovate/all from c4ea7473cc to 93716a4202 2024-08-23 23:13:57 +02:00 Compare
kjuulh force-pushed renovate/all from 93716a4202 to 6da44adee2 2024-08-23 23:51:49 +02:00 Compare
kjuulh force-pushed renovate/all from 6da44adee2 to 81184a3b3e 2024-08-24 00:20:03 +02:00 Compare
kjuulh force-pushed renovate/all from 81184a3b3e to 9bc05ff934 2024-08-24 01:04:26 +02:00 Compare
kjuulh force-pushed renovate/all from 9bc05ff934 to 61111f2314 2024-08-24 01:39:36 +02:00 Compare
kjuulh force-pushed renovate/all from 61111f2314 to ed9e9e91b4 2024-08-24 02:15:20 +02:00 Compare
kjuulh force-pushed renovate/all from ed9e9e91b4 to c3c24bc86f 2024-08-24 02:49:44 +02:00 Compare
kjuulh force-pushed renovate/all from c3c24bc86f to 2830111da5 2024-08-24 03:25:53 +02:00 Compare
kjuulh force-pushed renovate/all from 2830111da5 to 04762bd148 2024-08-24 03:58:37 +02:00 Compare
kjuulh force-pushed renovate/all from 04762bd148 to ad018fd40b 2024-08-24 04:35:05 +02:00 Compare
kjuulh force-pushed renovate/all from ad018fd40b to 618c18ff82 2024-08-24 05:11:09 +02:00 Compare
kjuulh force-pushed renovate/all from 618c18ff82 to 150a5d7489 2024-08-24 05:48:47 +02:00 Compare
kjuulh force-pushed renovate/all from 150a5d7489 to 575c129cd8 2024-08-24 06:20:33 +02:00 Compare
kjuulh force-pushed renovate/all from 575c129cd8 to 02dcfde26c 2024-08-24 07:07:01 +02:00 Compare
kjuulh force-pushed renovate/all from 02dcfde26c to 70aa37a331 2024-08-24 07:42:27 +02:00 Compare
kjuulh force-pushed renovate/all from 70aa37a331 to 78f40f1ba3 2024-08-24 08:17:47 +02:00 Compare
kjuulh force-pushed renovate/all from 78f40f1ba3 to ae0ef4ee47 2024-08-24 08:52:46 +02:00 Compare
kjuulh force-pushed renovate/all from ae0ef4ee47 to eaf89c71b8 2024-08-24 09:28:01 +02:00 Compare
kjuulh force-pushed renovate/all from eaf89c71b8 to 572bcd8370 2024-08-24 10:03:05 +02:00 Compare
kjuulh force-pushed renovate/all from 572bcd8370 to 618e1d50c7 2024-08-24 10:39:29 +02:00 Compare
kjuulh force-pushed renovate/all from 618e1d50c7 to 61d65c6b9b 2024-08-24 11:14:48 +02:00 Compare
kjuulh force-pushed renovate/all from 61d65c6b9b to 6c59fc8f51 2024-08-24 11:49:44 +02:00 Compare
kjuulh force-pushed renovate/all from 6c59fc8f51 to 3cdee0f4e1 2024-08-24 12:19:07 +02:00 Compare
kjuulh force-pushed renovate/all from 3cdee0f4e1 to a5e5141393 2024-08-24 13:02:56 +02:00 Compare
kjuulh force-pushed renovate/all from a5e5141393 to eb98d576e6 2024-08-24 13:38:26 +02:00 Compare
kjuulh force-pushed renovate/all from eb98d576e6 to 0143a6bf26 2024-08-24 14:14:23 +02:00 Compare
kjuulh force-pushed renovate/all from 0143a6bf26 to 13af1d3f72 2024-08-24 14:49:28 +02:00 Compare
kjuulh force-pushed renovate/all from 13af1d3f72 to 922a495429 2024-08-24 15:25:20 +02:00 Compare
kjuulh force-pushed renovate/all from 922a495429 to 91b1a6ccd3 2024-08-24 16:00:16 +02:00 Compare
kjuulh force-pushed renovate/all from 91b1a6ccd3 to e2e4865e35 2024-08-24 16:36:16 +02:00 Compare
kjuulh force-pushed renovate/all from e2e4865e35 to e629c4f292 2024-08-24 17:11:35 +02:00 Compare
kjuulh force-pushed renovate/all from e629c4f292 to 97c60f1f72 2024-08-24 17:47:12 +02:00 Compare
kjuulh force-pushed renovate/all from 97c60f1f72 to 8094713fe7 2024-08-24 18:19:23 +02:00 Compare
kjuulh force-pushed renovate/all from 8094713fe7 to d14f68a1b6 2024-08-24 19:03:24 +02:00 Compare
kjuulh force-pushed renovate/all from d14f68a1b6 to 171546580b 2024-08-24 19:38:45 +02:00 Compare
kjuulh force-pushed renovate/all from 171546580b to d0e487b24d 2024-08-24 20:14:41 +02:00 Compare
kjuulh force-pushed renovate/all from d0e487b24d to d94520db2f 2024-08-24 20:50:03 +02:00 Compare
kjuulh force-pushed renovate/all from d94520db2f to 8d0e7f93f7 2024-08-24 21:26:04 +02:00 Compare
kjuulh force-pushed renovate/all from 8d0e7f93f7 to 210af378b5 2024-08-24 22:02:49 +02:00 Compare
kjuulh force-pushed renovate/all from 210af378b5 to 9ffe02e2d6 2024-08-24 22:38:39 +02:00 Compare
kjuulh force-pushed renovate/all from 9ffe02e2d6 to 52dc2b1c24 2024-08-24 23:14:34 +02:00 Compare
kjuulh force-pushed renovate/all from 52dc2b1c24 to 2a9aee2e39 2024-08-24 23:49:43 +02:00 Compare
kjuulh force-pushed renovate/all from 2a9aee2e39 to f6954d562d 2024-08-25 00:20:09 +02:00 Compare
kjuulh force-pushed renovate/all from f6954d562d to d811117695 2024-08-25 01:05:36 +02:00 Compare
kjuulh force-pushed renovate/all from d811117695 to b247c71214 2024-08-25 01:41:25 +02:00 Compare
kjuulh force-pushed renovate/all from b247c71214 to 085562936f 2024-08-25 02:17:31 +02:00 Compare
kjuulh force-pushed renovate/all from 085562936f to 891b3e2e24 2024-08-25 02:52:45 +02:00 Compare
kjuulh force-pushed renovate/all from 891b3e2e24 to 635478f40d 2024-08-25 03:28:53 +02:00 Compare
kjuulh force-pushed renovate/all from 635478f40d to 31a347f387 2024-08-25 04:02:36 +02:00 Compare
kjuulh force-pushed renovate/all from 31a347f387 to a0ea895105 2024-08-25 04:37:24 +02:00 Compare
kjuulh force-pushed renovate/all from a0ea895105 to e7414a09ec 2024-08-25 05:13:03 +02:00 Compare
kjuulh force-pushed renovate/all from e7414a09ec to 113ad7f35c 2024-08-25 05:49:18 +02:00 Compare
kjuulh force-pushed renovate/all from 113ad7f35c to 50f7e9da76 2024-08-25 06:19:27 +02:00 Compare
kjuulh force-pushed renovate/all from 50f7e9da76 to 2e0710fedc 2024-08-25 07:04:06 +02:00 Compare
kjuulh force-pushed renovate/all from 2e0710fedc to 143e6db574 2024-08-25 07:39:31 +02:00 Compare
kjuulh force-pushed renovate/all from 143e6db574 to b55c8234c4 2024-08-25 08:14:48 +02:00 Compare
kjuulh force-pushed renovate/all from b55c8234c4 to 34b1cb2672 2024-08-25 08:50:04 +02:00 Compare
kjuulh force-pushed renovate/all from 34b1cb2672 to 34772957d4 2024-08-25 09:26:13 +02:00 Compare
kjuulh force-pushed renovate/all from 34772957d4 to 0f4464cfc8 2024-08-25 10:01:43 +02:00 Compare
kjuulh force-pushed renovate/all from 0f4464cfc8 to 1180d35d0c 2024-08-25 10:36:57 +02:00 Compare
kjuulh force-pushed renovate/all from 1180d35d0c to 7a785e846d 2024-08-25 11:12:09 +02:00 Compare
kjuulh force-pushed renovate/all from 7a785e846d to b4c6fb7b31 2024-08-25 11:47:17 +02:00 Compare
kjuulh force-pushed renovate/all from b4c6fb7b31 to f6f9862b0b 2024-08-25 12:19:07 +02:00 Compare
kjuulh force-pushed renovate/all from f6f9862b0b to 1ee23cf8dd 2024-08-25 13:03:19 +02:00 Compare
kjuulh force-pushed renovate/all from 1ee23cf8dd to 53ef4296b3 2024-08-25 13:38:18 +02:00 Compare
kjuulh force-pushed renovate/all from 53ef4296b3 to d2e99dfd82 2024-08-25 14:14:08 +02:00 Compare
kjuulh force-pushed renovate/all from d2e99dfd82 to 4976f88994 2024-08-25 14:49:23 +02:00 Compare
kjuulh force-pushed renovate/all from 4976f88994 to a6305872b3 2024-08-25 15:25:43 +02:00 Compare
kjuulh force-pushed renovate/all from a6305872b3 to 22bbaf4526 2024-08-25 16:01:27 +02:00 Compare
kjuulh force-pushed renovate/all from 22bbaf4526 to bf437a1e5e 2024-08-25 16:37:49 +02:00 Compare
kjuulh force-pushed renovate/all from bf437a1e5e to fadfbe251f 2024-08-25 17:13:27 +02:00 Compare
kjuulh force-pushed renovate/all from fadfbe251f to ae6b6b094f 2024-08-25 17:48:42 +02:00 Compare
kjuulh force-pushed renovate/all from ae6b6b094f to faf4844740 2024-08-25 18:19:12 +02:00 Compare
kjuulh force-pushed renovate/all from faf4844740 to a4811b8979 2024-08-25 19:03:21 +02:00 Compare
kjuulh force-pushed renovate/all from a4811b8979 to 3833b2373f 2024-08-25 19:38:54 +02:00 Compare
kjuulh force-pushed renovate/all from 3833b2373f to 9e012efade 2024-08-25 20:14:32 +02:00 Compare
kjuulh force-pushed renovate/all from 9e012efade to 3a485a4854 2024-08-25 20:49:13 +02:00 Compare
kjuulh force-pushed renovate/all from 3a485a4854 to 13899d028a 2024-08-25 21:24:52 +02:00 Compare
kjuulh force-pushed renovate/all from 13899d028a to 0f12ca161a 2024-08-25 22:00:08 +02:00 Compare
kjuulh force-pushed renovate/all from 0f12ca161a to a724724e3e 2024-08-25 22:36:11 +02:00 Compare
kjuulh force-pushed renovate/all from a724724e3e to 7e82353815 2024-08-25 23:11:18 +02:00 Compare
kjuulh force-pushed renovate/all from 7e82353815 to 71ac8f6843 2024-08-25 23:46:53 +02:00 Compare
kjuulh force-pushed renovate/all from 71ac8f6843 to 3545a073d4 2024-08-26 00:20:10 +02:00 Compare
kjuulh force-pushed renovate/all from 3545a073d4 to c6eab4f165 2024-08-26 01:04:51 +02:00 Compare
kjuulh force-pushed renovate/all from c6eab4f165 to 96334eabbc 2024-08-26 01:40:50 +02:00 Compare
kjuulh force-pushed renovate/all from 96334eabbc to 84dfc12525 2024-08-26 02:17:31 +02:00 Compare
kjuulh force-pushed renovate/all from 84dfc12525 to 96ecb7b4ba 2024-08-26 02:53:07 +02:00 Compare
kjuulh force-pushed renovate/all from 96ecb7b4ba to 412e818aa0 2024-08-26 03:29:13 +02:00 Compare
kjuulh force-pushed renovate/all from 412e818aa0 to 6ae38f6bf2 2024-08-26 04:05:01 +02:00 Compare
kjuulh force-pushed renovate/all from 6ae38f6bf2 to 85e5ba080b 2024-08-26 04:41:07 +02:00 Compare
kjuulh force-pushed renovate/all from 85e5ba080b to f67a3a252f 2024-08-26 05:18:10 +02:00 Compare
kjuulh force-pushed renovate/all from f67a3a252f to c3680afda3 2024-08-26 05:54:30 +02:00 Compare
kjuulh force-pushed renovate/all from c3680afda3 to ad308058a7 2024-08-26 06:19:53 +02:00 Compare
kjuulh force-pushed renovate/all from ad308058a7 to 69e39c3caf 2024-08-26 07:05:23 +02:00 Compare
kjuulh force-pushed renovate/all from 69e39c3caf to ccb04d1aaf 2024-08-26 07:40:30 +02:00 Compare
kjuulh force-pushed renovate/all from ccb04d1aaf to 038fc8517e 2024-08-26 08:17:28 +02:00 Compare
kjuulh force-pushed renovate/all from 038fc8517e to b6ec4df80f 2024-08-26 08:54:05 +02:00 Compare
kjuulh force-pushed renovate/all from b6ec4df80f to 01800614a5 2024-08-26 09:30:54 +02:00 Compare
kjuulh force-pushed renovate/all from 01800614a5 to 6cc08f9ea2 2024-08-26 10:07:09 +02:00 Compare
kjuulh force-pushed renovate/all from 6cc08f9ea2 to c33184397c 2024-08-26 10:43:19 +02:00 Compare
kjuulh force-pushed renovate/all from c33184397c to 3f554df4b0 2024-08-26 11:19:58 +02:00 Compare
kjuulh force-pushed renovate/all from 3f554df4b0 to 91dfb3e675 2024-08-26 11:56:49 +02:00 Compare
kjuulh force-pushed renovate/all from 91dfb3e675 to 8dcb280a1c 2024-08-26 12:19:41 +02:00 Compare
kjuulh force-pushed renovate/all from 8dcb280a1c to bafc4429a9 2024-08-26 13:04:57 +02:00 Compare
kjuulh force-pushed renovate/all from bafc4429a9 to b4b4b4633a 2024-08-26 13:40:36 +02:00 Compare
kjuulh force-pushed renovate/all from b4b4b4633a to 7e4cf48495 2024-08-26 14:18:32 +02:00 Compare
kjuulh force-pushed renovate/all from 7e4cf48495 to 5a443d6e5f 2024-08-26 14:55:36 +02:00 Compare
kjuulh force-pushed renovate/all from 5a443d6e5f to b77198592c 2024-08-26 15:33:07 +02:00 Compare
kjuulh force-pushed renovate/all from b77198592c to 5c7830e049 2024-08-26 16:10:34 +02:00 Compare
kjuulh force-pushed renovate/all from 5c7830e049 to c6c071748f 2024-08-26 16:48:07 +02:00 Compare
kjuulh force-pushed renovate/all from c6c071748f to 3f0340afa6 2024-08-26 17:25:27 +02:00 Compare
kjuulh force-pushed renovate/all from 3f0340afa6 to 21dea53001 2024-08-26 18:19:12 +02:00 Compare
kjuulh force-pushed renovate/all from 21dea53001 to e662955080 2024-08-26 19:03:13 +02:00 Compare
kjuulh force-pushed renovate/all from e662955080 to 4a51ffa919 2024-08-26 19:38:31 +02:00 Compare
kjuulh force-pushed renovate/all from 4a51ffa919 to 72905349a5 2024-08-26 20:14:54 +02:00 Compare
kjuulh force-pushed renovate/all from 72905349a5 to 367a0256ae 2024-08-26 20:50:06 +02:00 Compare
kjuulh force-pushed renovate/all from 367a0256ae to 68796e3667 2024-08-26 21:25:56 +02:00 Compare
kjuulh force-pushed renovate/all from 68796e3667 to eba6aeed84 2024-08-26 22:01:40 +02:00 Compare
kjuulh force-pushed renovate/all from eba6aeed84 to b48f91f17c 2024-08-26 22:37:42 +02:00 Compare
kjuulh force-pushed renovate/all from b48f91f17c to ca7fe3ba0f 2024-08-26 23:15:27 +02:00 Compare
kjuulh force-pushed renovate/all from ca7fe3ba0f to 4832246f57 2024-08-26 23:52:36 +02:00 Compare
kjuulh force-pushed renovate/all from 4832246f57 to c1e19a317d 2024-08-27 00:20:44 +02:00 Compare
kjuulh force-pushed renovate/all from c1e19a317d to 8f5bf3ea22 2024-08-27 01:07:30 +02:00 Compare
kjuulh force-pushed renovate/all from 8f5bf3ea22 to 566db578b9 2024-08-27 01:43:03 +02:00 Compare
kjuulh force-pushed renovate/all from 566db578b9 to 2221ddcb57 2024-08-27 02:19:50 +02:00 Compare
kjuulh force-pushed renovate/all from 2221ddcb57 to 35324f9234 2024-08-27 02:55:34 +02:00 Compare
kjuulh force-pushed renovate/all from 35324f9234 to ee2b4d50d0 2024-08-27 03:32:55 +02:00 Compare
kjuulh force-pushed renovate/all from ee2b4d50d0 to 755c6a513b 2024-08-27 04:07:24 +02:00 Compare
kjuulh force-pushed renovate/all from 755c6a513b to 629d032e4f 2024-08-27 04:42:40 +02:00 Compare
kjuulh force-pushed renovate/all from 629d032e4f to 4b1f64098d 2024-08-27 05:18:30 +02:00 Compare
kjuulh force-pushed renovate/all from 4b1f64098d to aba39c22cb 2024-08-27 05:54:46 +02:00 Compare
kjuulh force-pushed renovate/all from aba39c22cb to 02df466bd8 2024-08-27 06:19:45 +02:00 Compare
kjuulh force-pushed renovate/all from 02df466bd8 to 112070d3ab 2024-08-27 07:04:40 +02:00 Compare
kjuulh force-pushed renovate/all from 112070d3ab to 9b7c385b99 2024-08-27 07:40:17 +02:00 Compare
kjuulh force-pushed renovate/all from 9b7c385b99 to 98573f2258 2024-08-27 08:16:25 +02:00 Compare
kjuulh force-pushed renovate/all from 98573f2258 to daf7d28853 2024-08-27 08:51:43 +02:00 Compare
kjuulh force-pushed renovate/all from daf7d28853 to d0310d5291 2024-08-27 09:27:35 +02:00 Compare
kjuulh force-pushed renovate/all from d0310d5291 to 4daf5dbd99 2024-08-27 10:02:49 +02:00 Compare
kjuulh force-pushed renovate/all from 4daf5dbd99 to 62beec6a1a 2024-08-27 10:38:05 +02:00 Compare
kjuulh force-pushed renovate/all from 62beec6a1a to e058610a7a 2024-08-27 11:13:40 +02:00 Compare
kjuulh force-pushed renovate/all from e058610a7a to 3f8e3ecb77 2024-08-27 11:50:20 +02:00 Compare
kjuulh force-pushed renovate/all from 3f8e3ecb77 to 5c59fb36b4 2024-08-27 12:20:06 +02:00 Compare
kjuulh force-pushed renovate/all from 5c59fb36b4 to 01a85bf175 2024-08-27 13:05:25 +02:00 Compare
kjuulh force-pushed renovate/all from 01a85bf175 to 33c2d4bb52 2024-08-27 13:41:02 +02:00 Compare
kjuulh force-pushed renovate/all from 33c2d4bb52 to dc0de62f21 2024-08-27 14:18:03 +02:00 Compare
kjuulh force-pushed renovate/all from dc0de62f21 to abf1edba21 2024-08-27 14:53:51 +02:00 Compare
kjuulh force-pushed renovate/all from abf1edba21 to 4a1f409bea 2024-08-27 15:29:51 +02:00 Compare
kjuulh force-pushed renovate/all from 4a1f409bea to 1c638262b8 2024-08-27 16:05:22 +02:00 Compare
kjuulh force-pushed renovate/all from 1c638262b8 to bdc36b5176 2024-08-27 16:41:24 +02:00 Compare
kjuulh force-pushed renovate/all from bdc36b5176 to 90d7b31496 2024-08-27 17:17:07 +02:00 Compare
kjuulh force-pushed renovate/all from 90d7b31496 to d9d2b915c4 2024-08-27 17:54:39 +02:00 Compare
kjuulh force-pushed renovate/all from d9d2b915c4 to 48d465f2cb 2024-08-27 18:19:58 +02:00 Compare
kjuulh force-pushed renovate/all from 48d465f2cb to 53f441c1eb 2024-08-27 19:06:35 +02:00 Compare
kjuulh force-pushed renovate/all from 53f441c1eb to db897299c5 2024-08-27 19:42:44 +02:00 Compare
kjuulh force-pushed renovate/all from db897299c5 to ab151a0d8a 2024-08-27 20:19:58 +02:00 Compare
kjuulh force-pushed renovate/all from ab151a0d8a to 8e9b063da0 2024-08-27 20:55:56 +02:00 Compare
kjuulh force-pushed renovate/all from 8e9b063da0 to dc9b4a0539 2024-08-27 21:32:39 +02:00 Compare
kjuulh force-pushed renovate/all from dc9b4a0539 to 6f58a8707e 2024-08-27 22:08:40 +02:00 Compare
kjuulh force-pushed renovate/all from 6f58a8707e to b1bf0241cd 2024-08-27 22:45:10 +02:00 Compare
kjuulh force-pushed renovate/all from b1bf0241cd to dd9ce48eec 2024-08-27 23:21:52 +02:00 Compare
kjuulh force-pushed renovate/all from dd9ce48eec to 24448d90d3 2024-08-27 23:58:11 +02:00 Compare
kjuulh force-pushed renovate/all from 24448d90d3 to fe246f8582 2024-08-28 00:20:36 +02:00 Compare
kjuulh force-pushed renovate/all from fe246f8582 to fa5a73d9dd 2024-08-28 01:07:50 +02:00 Compare
kjuulh force-pushed renovate/all from fa5a73d9dd to e53148f436 2024-08-28 01:44:12 +02:00 Compare
kjuulh force-pushed renovate/all from e53148f436 to cf695cdcad 2024-08-28 02:21:16 +02:00 Compare
kjuulh force-pushed renovate/all from cf695cdcad to 06eeb59926 2024-08-28 03:00:24 +02:00 Compare
kjuulh force-pushed renovate/all from 06eeb59926 to 785918b0df 2024-08-28 03:38:58 +02:00 Compare
kjuulh force-pushed renovate/all from 785918b0df to bf6cab4be8 2024-08-28 04:14:04 +02:00 Compare
kjuulh force-pushed renovate/all from bf6cab4be8 to 700b0495cd 2024-08-28 04:50:03 +02:00 Compare
kjuulh force-pushed renovate/all from 700b0495cd to 04c18abeec 2024-08-28 05:27:01 +02:00 Compare
kjuulh force-pushed renovate/all from 04c18abeec to b6c913eeba 2024-08-28 06:19:59 +02:00 Compare
kjuulh force-pushed renovate/all from b6c913eeba to 61f5d33177 2024-08-28 07:05:30 +02:00 Compare
kjuulh force-pushed renovate/all from 61f5d33177 to 837e54a4e0 2024-08-28 07:41:59 +02:00 Compare
kjuulh force-pushed renovate/all from 837e54a4e0 to ce6bf06967 2024-08-28 08:18:55 +02:00 Compare
kjuulh force-pushed renovate/all from ce6bf06967 to 976d1e7ca9 2024-08-28 08:55:28 +02:00 Compare
kjuulh force-pushed renovate/all from 976d1e7ca9 to 3b7ae841ab 2024-08-28 09:32:52 +02:00 Compare
kjuulh force-pushed renovate/all from 3b7ae841ab to ca22381c9e 2024-08-28 10:09:45 +02:00 Compare
kjuulh force-pushed renovate/all from ca22381c9e to 7d0d502936 2024-08-28 10:46:08 +02:00 Compare
kjuulh force-pushed renovate/all from 7d0d502936 to 619d2a4c2f 2024-08-28 11:22:21 +02:00 Compare
kjuulh force-pushed renovate/all from 619d2a4c2f to a2e00c0dbd 2024-08-28 11:58:43 +02:00 Compare
kjuulh force-pushed renovate/all from a2e00c0dbd to 7f250f4514 2024-08-28 12:20:04 +02:00 Compare
kjuulh force-pushed renovate/all from 7f250f4514 to f47c1e32c8 2024-08-28 13:05:45 +02:00 Compare
kjuulh force-pushed renovate/all from f47c1e32c8 to ccc7a1cd72 2024-08-28 13:42:12 +02:00 Compare
kjuulh force-pushed renovate/all from ccc7a1cd72 to bee4f7e79d 2024-08-28 14:18:54 +02:00 Compare
kjuulh force-pushed renovate/all from bee4f7e79d to da6dc13d03 2024-08-28 14:54:34 +02:00 Compare
kjuulh force-pushed renovate/all from da6dc13d03 to 3901f643d4 2024-08-28 15:30:39 +02:00 Compare
kjuulh force-pushed renovate/all from 3901f643d4 to 50581e0383 2024-08-28 16:07:21 +02:00 Compare
kjuulh force-pushed renovate/all from 50581e0383 to f325aadfd7 2024-08-28 16:44:15 +02:00 Compare
kjuulh force-pushed renovate/all from f325aadfd7 to 81cb284270 2024-08-28 17:21:19 +02:00 Compare
kjuulh force-pushed renovate/all from 81cb284270 to e3a40b3a17 2024-08-28 17:58:00 +02:00 Compare
kjuulh force-pushed renovate/all from e3a40b3a17 to 837578300b 2024-08-28 18:19:46 +02:00 Compare
kjuulh force-pushed renovate/all from 837578300b to 8874b49b87 2024-08-28 19:06:16 +02:00 Compare
kjuulh force-pushed renovate/all from 8874b49b87 to c358d25084 2024-08-28 19:44:42 +02:00 Compare
kjuulh force-pushed renovate/all from c358d25084 to dff9b272db 2024-08-28 20:25:35 +02:00 Compare
kjuulh force-pushed renovate/all from dff9b272db to accbce2a7e 2024-08-28 21:05:17 +02:00 Compare
kjuulh force-pushed renovate/all from accbce2a7e to 90649c62d6 2024-08-28 21:45:08 +02:00 Compare
kjuulh force-pushed renovate/all from 90649c62d6 to 7bf977c092 2024-08-28 22:26:32 +02:00 Compare
kjuulh force-pushed renovate/all from 7bf977c092 to 76823006ed 2024-08-28 23:07:18 +02:00 Compare
kjuulh force-pushed renovate/all from 76823006ed to 3e4527ef2f 2024-08-28 23:48:54 +02:00 Compare
kjuulh force-pushed renovate/all from 3e4527ef2f to 6409352955 2024-08-29 00:22:14 +02:00 Compare
kjuulh force-pushed renovate/all from 6409352955 to 92a6bf2bee 2024-08-29 01:13:22 +02:00 Compare
kjuulh force-pushed renovate/all from 92a6bf2bee to 74b759937b 2024-08-29 01:52:21 +02:00 Compare
kjuulh force-pushed renovate/all from 74b759937b to 3db66703da 2024-08-29 02:30:03 +02:00 Compare
kjuulh force-pushed renovate/all from 3db66703da to e3c7b4328a 2024-08-29 03:07:36 +02:00 Compare
kjuulh force-pushed renovate/all from e3c7b4328a to 4f9de334e6 2024-08-29 03:43:54 +02:00 Compare
kjuulh force-pushed renovate/all from 4f9de334e6 to 579aa50c76 2024-08-29 04:20:18 +02:00 Compare
kjuulh force-pushed renovate/all from 579aa50c76 to d0a4670ea5 2024-08-29 04:56:17 +02:00 Compare
kjuulh force-pushed renovate/all from d0a4670ea5 to 5a85c5f1a6 2024-08-29 05:34:00 +02:00 Compare
kjuulh force-pushed renovate/all from 5a85c5f1a6 to 5dc4a188e3 2024-08-29 06:20:25 +02:00 Compare
kjuulh force-pushed renovate/all from 5dc4a188e3 to aa9e7b2d7f 2024-08-29 07:07:02 +02:00 Compare
kjuulh force-pushed renovate/all from aa9e7b2d7f to ef6d884f77 2024-08-29 07:44:59 +02:00 Compare
kjuulh force-pushed renovate/all from ef6d884f77 to c55bbe04b1 2024-08-29 08:22:59 +02:00 Compare
kjuulh force-pushed renovate/all from c55bbe04b1 to b2e1ba27af 2024-08-29 08:59:46 +02:00 Compare
kjuulh force-pushed renovate/all from b2e1ba27af to e74365c641 2024-08-29 09:37:06 +02:00 Compare
kjuulh force-pushed renovate/all from e74365c641 to 9394e1f6ec 2024-08-29 10:13:34 +02:00 Compare
kjuulh force-pushed renovate/all from 9394e1f6ec to 15d565454e 2024-08-29 10:50:23 +02:00 Compare
kjuulh force-pushed renovate/all from 15d565454e to 6c87906e62 2024-08-29 11:27:19 +02:00 Compare
kjuulh force-pushed renovate/all from 6c87906e62 to 0dd49da848 2024-08-29 12:20:12 +02:00 Compare
kjuulh force-pushed renovate/all from 0dd49da848 to df2cafeb36 2024-08-29 13:06:28 +02:00 Compare
kjuulh force-pushed renovate/all from df2cafeb36 to 2678d10059 2024-08-29 13:43:06 +02:00 Compare
kjuulh force-pushed renovate/all from 2678d10059 to b77dd52102 2024-08-29 14:20:03 +02:00 Compare
kjuulh force-pushed renovate/all from b77dd52102 to 5b3bbe03f7 2024-08-29 14:56:02 +02:00 Compare
kjuulh force-pushed renovate/all from 5b3bbe03f7 to 9c0e202ebe 2024-08-29 15:32:54 +02:00 Compare
kjuulh force-pushed renovate/all from 9c0e202ebe to 076b59585c 2024-08-29 16:10:54 +02:00 Compare
kjuulh force-pushed renovate/all from 076b59585c to 757e53afdf 2024-08-29 16:48:32 +02:00 Compare
kjuulh force-pushed renovate/all from 757e53afdf to ec0c349bee 2024-08-29 17:26:38 +02:00 Compare
kjuulh force-pushed renovate/all from ec0c349bee to e0fd33fbd0 2024-08-29 18:20:21 +02:00 Compare
kjuulh force-pushed renovate/all from e0fd33fbd0 to f3f1ffa331 2024-08-29 19:06:39 +02:00 Compare
kjuulh force-pushed renovate/all from f3f1ffa331 to 7585748538 2024-08-29 19:43:31 +02:00 Compare
kjuulh force-pushed renovate/all from 7585748538 to 371b17f7d9 2024-08-29 20:21:04 +02:00 Compare
kjuulh force-pushed renovate/all from 371b17f7d9 to 24d1e70718 2024-08-29 20:57:17 +02:00 Compare
kjuulh force-pushed renovate/all from 24d1e70718 to 858bd04519 2024-08-29 21:35:17 +02:00 Compare
kjuulh force-pushed renovate/all from 858bd04519 to 9b175d24e6 2024-08-29 22:12:22 +02:00 Compare
kjuulh force-pushed renovate/all from 9b175d24e6 to 0bea3be44d 2024-08-29 22:49:30 +02:00 Compare
kjuulh force-pushed renovate/all from 0bea3be44d to 89b99c155a 2024-08-29 23:28:26 +02:00 Compare
kjuulh force-pushed renovate/all from 89b99c155a to 45d6b7151e 2024-08-30 00:22:16 +02:00 Compare
kjuulh force-pushed renovate/all from 45d6b7151e to 78273c648d 2024-08-30 01:10:28 +02:00 Compare
kjuulh force-pushed renovate/all from 78273c648d to 1af8f88468 2024-08-30 01:48:35 +02:00 Compare
kjuulh force-pushed renovate/all from 1af8f88468 to a4544739c2 2024-08-30 02:27:13 +02:00 Compare
kjuulh force-pushed renovate/all from a4544739c2 to 1efd4d8433 2024-08-30 03:05:40 +02:00 Compare
kjuulh force-pushed renovate/all from 1efd4d8433 to c8667a1556 2024-08-30 03:44:00 +02:00 Compare
kjuulh force-pushed renovate/all from c8667a1556 to 85b91e9ad8 2024-08-30 04:21:52 +02:00 Compare
kjuulh force-pushed renovate/all from 85b91e9ad8 to fc7214418d 2024-08-30 05:01:01 +02:00 Compare
kjuulh force-pushed renovate/all from fc7214418d to 199cfc3093 2024-08-30 05:39:06 +02:00 Compare
kjuulh force-pushed renovate/all from 199cfc3093 to c0f0433dc6 2024-08-30 06:21:51 +02:00 Compare
kjuulh force-pushed renovate/all from c0f0433dc6 to 50a5d2475e 2024-08-30 07:09:50 +02:00 Compare
kjuulh force-pushed renovate/all from 50a5d2475e to 47d78869f9 2024-08-30 07:47:55 +02:00 Compare
kjuulh force-pushed renovate/all from 47d78869f9 to 1682e28ab5 2024-08-30 08:25:34 +02:00 Compare
kjuulh force-pushed renovate/all from 1682e28ab5 to 34cabd37c4 2024-08-30 09:03:06 +02:00 Compare
kjuulh force-pushed renovate/all from 34cabd37c4 to 768d2861b2 2024-08-30 09:41:12 +02:00 Compare
kjuulh force-pushed renovate/all from 768d2861b2 to d15117fe5b 2024-08-30 10:20:36 +02:00 Compare
kjuulh force-pushed renovate/all from d15117fe5b to 33c2b3a470 2024-08-30 11:04:46 +02:00 Compare
kjuulh force-pushed renovate/all from 33c2b3a470 to 243b87310b 2024-08-30 11:44:46 +02:00 Compare
kjuulh force-pushed renovate/all from 243b87310b to 2522614e98 2024-08-30 12:20:34 +02:00 Compare
kjuulh force-pushed renovate/all from 2522614e98 to 7466f7cd03 2024-08-30 13:14:21 +02:00 Compare
kjuulh force-pushed renovate/all from 7466f7cd03 to b045387871 2024-08-30 13:50:57 +02:00 Compare
kjuulh force-pushed renovate/all from b045387871 to d6eff09fc7 2024-08-30 14:28:43 +02:00 Compare
kjuulh force-pushed renovate/all from d6eff09fc7 to fa0fed8b3f 2024-08-30 15:04:57 +02:00 Compare
kjuulh force-pushed renovate/all from fa0fed8b3f to c9beeb21d0 2024-08-30 15:42:20 +02:00 Compare
kjuulh force-pushed renovate/all from c9beeb21d0 to 8680c77e45 2024-08-30 16:18:34 +02:00 Compare
kjuulh force-pushed renovate/all from 8680c77e45 to 9a93fcb47c 2024-08-30 16:55:05 +02:00 Compare
kjuulh force-pushed renovate/all from 9a93fcb47c to e42abf212d 2024-08-30 17:30:37 +02:00 Compare
kjuulh force-pushed renovate/all from e42abf212d to 0a01068c7a 2024-08-30 18:19:21 +02:00 Compare
kjuulh force-pushed renovate/all from 0a01068c7a to c1c49bdca8 2024-08-30 19:05:00 +02:00 Compare
kjuulh force-pushed renovate/all from c1c49bdca8 to 23be62a298 2024-08-30 19:41:56 +02:00 Compare
kjuulh force-pushed renovate/all from 23be62a298 to 5741ae72f6 2024-08-31 02:20:16 +02:00 Compare
kjuulh force-pushed renovate/all from 5741ae72f6 to a68bafc737 2024-08-31 06:20:06 +02:00 Compare
kjuulh force-pushed renovate/all from a68bafc737 to f8d6759467 2024-09-01 02:20:24 +02:00 Compare
kjuulh force-pushed renovate/all from f8d6759467 to 2e12f3dc8f 2024-09-01 06:20:12 +02:00 Compare
kjuulh force-pushed renovate/all from 2e12f3dc8f to 0280e95e9a 2024-09-02 02:20:11 +02:00 Compare
kjuulh force-pushed renovate/all from 0280e95e9a to cf667861ab 2024-09-02 06:20:15 +02:00 Compare
kjuulh force-pushed renovate/all from cf667861ab to 8b70020f77 2024-09-03 02:21:19 +02:00 Compare
kjuulh force-pushed renovate/all from 8b70020f77 to 54b537e84f 2024-09-03 06:20:36 +02:00 Compare
kjuulh force-pushed renovate/all from 54b537e84f to 03405314bc 2024-09-04 02:20:43 +02:00 Compare
kjuulh force-pushed renovate/all from 03405314bc to ecd2a59d4d 2024-09-04 06:20:15 +02:00 Compare
kjuulh force-pushed renovate/all from ecd2a59d4d to 27337f95c7 2024-09-05 02:23:45 +02:00 Compare
kjuulh force-pushed renovate/all from 27337f95c7 to 26f75b8d8c 2024-09-05 06:21:47 +02:00 Compare
kjuulh force-pushed renovate/all from 26f75b8d8c to 99598e887b 2024-09-06 02:23:20 +02:00 Compare
kjuulh force-pushed renovate/all from 99598e887b to dc2d145fee 2024-09-06 06:20:49 +02:00 Compare
kjuulh force-pushed renovate/all from dc2d145fee to d624ef6f39 2024-09-07 02:23:25 +02:00 Compare
kjuulh force-pushed renovate/all from d624ef6f39 to d24704d0fb 2024-09-07 06:21:48 +02:00 Compare
kjuulh force-pushed renovate/all from d24704d0fb to 455477d0ed 2024-09-08 02:24:02 +02:00 Compare
kjuulh force-pushed renovate/all from 455477d0ed to 0910bc5c88 2024-09-08 06:23:06 +02:00 Compare
kjuulh force-pushed renovate/all from 0910bc5c88 to 5216f2ba12 2024-09-08 15:01:59 +02:00 Compare
kjuulh force-pushed renovate/all from 5216f2ba12 to bbbc7c608b 2024-09-09 02:23:05 +02:00 Compare
kjuulh force-pushed renovate/all from bbbc7c608b to 81fe3d2efc 2024-09-09 06:23:54 +02:00 Compare
kjuulh force-pushed renovate/all from 81fe3d2efc to 029d6e3eba 2024-09-10 02:24:14 +02:00 Compare
kjuulh force-pushed renovate/all from 029d6e3eba to 9aba0661e9 2024-09-10 06:23:06 +02:00 Compare
kjuulh force-pushed renovate/all from 9aba0661e9 to b56718fede 2024-09-11 02:23:03 +02:00 Compare
kjuulh force-pushed renovate/all from b56718fede to 4ca3af8e9d 2024-09-11 06:22:49 +02:00 Compare
kjuulh force-pushed renovate/all from 4ca3af8e9d to 90d480b141 2024-09-12 02:25:45 +02:00 Compare
kjuulh force-pushed renovate/all from 90d480b141 to 7cafaf382f 2024-09-12 06:24:40 +02:00 Compare
kjuulh force-pushed renovate/all from 7cafaf382f to bb96c59071 2024-09-13 02:22:36 +02:00 Compare
kjuulh force-pushed renovate/all from bb96c59071 to c626fdeb4d 2024-09-13 06:21:26 +02:00 Compare
kjuulh force-pushed renovate/all from c626fdeb4d to 582236814c 2024-09-14 02:21:56 +02:00 Compare
kjuulh force-pushed renovate/all from 582236814c to f1b5ac54ce 2024-09-14 06:21:43 +02:00 Compare
kjuulh force-pushed renovate/all from f1b5ac54ce to 0688682491 2024-09-15 02:22:13 +02:00 Compare
kjuulh force-pushed renovate/all from 0688682491 to 111a4d1006 2024-09-15 06:23:46 +02:00 Compare
kjuulh force-pushed renovate/all from 111a4d1006 to 6bdbee6655 2024-09-16 02:22:38 +02:00 Compare
kjuulh force-pushed renovate/all from 6bdbee6655 to 3e7ebba6a1 2024-09-16 06:24:09 +02:00 Compare
kjuulh force-pushed renovate/all from 3e7ebba6a1 to 120f0776ba 2024-09-17 02:24:55 +02:00 Compare
kjuulh force-pushed renovate/all from 120f0776ba to 79edc69843 2024-09-17 06:22:25 +02:00 Compare
kjuulh force-pushed renovate/all from 79edc69843 to a061097b2f 2024-09-18 02:26:55 +02:00 Compare
kjuulh force-pushed renovate/all from a061097b2f to 5e0a310c15 2024-09-18 06:23:42 +02:00 Compare
kjuulh force-pushed renovate/all from 5e0a310c15 to a9a21206dc 2024-09-19 02:26:04 +02:00 Compare
kjuulh force-pushed renovate/all from a9a21206dc to 21519a41a9 2024-09-19 06:24:15 +02:00 Compare
kjuulh force-pushed renovate/all from 21519a41a9 to 54f19337fe 2024-09-20 02:31:24 +02:00 Compare
kjuulh force-pushed renovate/all from 54f19337fe to 5a6db710ef 2024-09-20 06:39:20 +02:00 Compare
kjuulh force-pushed renovate/all from 5a6db710ef to 13012a38f5 2024-09-21 02:47:40 +02:00 Compare
kjuulh force-pushed renovate/all from 13012a38f5 to 2408eb1948 2024-09-21 06:26:34 +02:00 Compare
kjuulh force-pushed renovate/all from 2408eb1948 to e27430d17d 2024-09-22 02:25:27 +02:00 Compare
kjuulh force-pushed renovate/all from e27430d17d to 1093caa2b3 2024-09-22 06:22:28 +02:00 Compare
kjuulh force-pushed renovate/all from 1093caa2b3 to 330426a9b7 2024-09-23 02:31:43 +02:00 Compare
kjuulh force-pushed renovate/all from 330426a9b7 to e48fbbdc30 2024-09-23 06:23:58 +02:00 Compare
kjuulh force-pushed renovate/all from e48fbbdc30 to 1540f255af 2024-09-24 02:23:07 +02:00 Compare
kjuulh force-pushed renovate/all from 1540f255af to b9eedfa4b9 2024-09-24 06:23:16 +02:00 Compare
kjuulh force-pushed renovate/all from b9eedfa4b9 to aa6dbefa07 2024-09-25 02:27:23 +02:00 Compare
kjuulh force-pushed renovate/all from aa6dbefa07 to 3f157e23ca 2024-09-25 06:23:48 +02:00 Compare
kjuulh force-pushed renovate/all from 3f157e23ca to 53a2d05e46 2024-09-26 02:23:42 +02:00 Compare
kjuulh force-pushed renovate/all from 53a2d05e46 to b47ed4bb08 2024-09-26 06:23:12 +02:00 Compare
kjuulh force-pushed renovate/all from b47ed4bb08 to f71b1a625c 2024-09-27 02:24:04 +02:00 Compare
kjuulh force-pushed renovate/all from f71b1a625c to 6132d55b4b 2024-09-27 06:23:47 +02:00 Compare
kjuulh force-pushed renovate/all from 6132d55b4b to 350c16f6ff 2024-09-28 02:29:23 +02:00 Compare
kjuulh force-pushed renovate/all from 350c16f6ff to 7376571132 2024-09-28 06:23:51 +02:00 Compare
kjuulh closed this pull request 2024-09-28 23:48:35 +02:00
Some checks failed
renovate/artifacts Artifact file update failure

Pull request closed

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/cuddle-templates#3
No description provided.