fix(deps): update all dependencies #1

Merged
kjuulh merged 1 commits from renovate/all into main 2024-05-09 18:36:56 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
serde (source) dependencies patch 1.0.197 -> 1.0.201
serde_json dependencies patch 1.0.116 -> 1.0.117
serde_json workspace.dependencies patch 1.0.116 -> 1.0.117
sqlx dependencies patch 0.7.3 -> 0.7.4
uuid dependencies minor 1.7.0 -> 1.8.0

Release Notes

serde-rs/serde

v1.0.201

Compare Source

  • Resolve unexpected_cfgs warning (#​2737)

v1.0.200

Compare Source

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#​2733, thanks @​jamessan)

v1.0.199

Compare Source

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#​2732, thanks @​aatifsyed)

v1.0.198

Compare Source

serde-rs/json

v1.0.117

Compare Source

  • Resolve unexpected_cfgs warning (#​1130)
launchbadge/sqlx

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
  • [#​2891]]: feat: expose getters for connect options fields \[\[[@​saiintbrisson](https://github.com/saiintbrisson)]]
    
  • [#​2902]]: feat: add `to_url_lossy` to connect options \[\[[@​lily-mosquitoes](https://github.com/lily-mosquitoes)]]
    
  • [#​2927]]: Support `query!` for cargo-free systems \[\[[@​kshramt](https://github.com/kshramt)]]
    
  • [#​2997]]: doc(FAQ): add entry explaining prepared statements \[\[[@​abonander](https://github.com/abonander)]]
    
  • [#​3001]]: Update README to clarify MariaDB support \[\[[@​iangilfillan](https://github.com/iangilfillan)]]
    
  • [#​3004]]: feat(logging): Add numeric elapsed time field elapsed_secs \[\[[@​iamjpotts](https://github.com/iamjpotts)]]
    
  • [#​3007]]: feat: add `raw_sql` API \[\[[@​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
    
  • [#​3011]]: Added support to IpAddr with MySQL/MariaDB. \[\[[@​Icerath](https://github.com/Icerath)]]
    
  • [#​3013]]: Add default implementation for PgInterval \[\[[@​pawurb](https://github.com/pawurb)]]
    
  • [#​3018]]: Add default implementation for PgMoney \[\[[@​pawurb](https://github.com/pawurb)]]
    
  • [#​3026]]: Update docs to reflect support for MariaDB data types \[\[[@​iangilfillan](https://github.com/iangilfillan)]]
    
  • [#​3037]]: feat(mysql): allow to connect with mysql driver without default behavor \[\[[@​darkecho731](https://github.com/darkecho731)]]
    
    
Changed
  • [#​2900]]: Show latest url to docs for macro.migrate \[\[[@​Vrajs16](https://github.com/Vrajs16)]]
    
  • [#​2914]]: Use `create_new` instead of `atomic-file-write` \[\[[@​mattfbacon](https://github.com/mattfbacon)]]
    
  • [#​2926]]: docs: update example for `PgConnectOptions` \[\[[@​Fyko](https://github.com/Fyko)]]
    
  • [#​2989]]: sqlx-core: Remove dotenvy dependency \[\[[@​joshtriplett](https://github.com/joshtriplett)]]
    
  • [#​2996]]: chore: Update ahash to 0.8.7 \[\[[@​takenoko-gohan](https://github.com/takenoko-gohan)]]
    
  • [#​3006]]: chore(deps): Replace unmaintained tempdir crate with tempfile \[\[[@​iamjpotts](https://github.com/iamjpotts)]]
    
  • [#​3008]]: chore: Ignore .sqlx folder created by running ci steps locally \[\[[@​iamjpotts](https://github.com/iamjpotts)]]
    
  • [#​3009]]: chore(dev-deps): Upgrade env_logger from 0.9 to 0.11 \[\[[@​iamjpotts](https://github.com/iamjpotts)]]
    
  • [#​3010]]: chore(deps): Upgrade criterion to 0.5.1 \[\[[@​iamjpotts](https://github.com/iamjpotts)]]
    
  • [#​3050]]: Optimize SASL auth in sqlx-postgres \[\[[@​mirek26](https://github.com/mirek26)]]
    
  • [#​3055]]: Set TCP_NODELAY option on TCP sockets \[\[[@​mirek26](https://github.com/mirek26)]]
    
  • [#​3065]]: Improve max_lifetime handling \[\[[@​mirek26](https://github.com/mirek26)]]
    
  • [#​3072]]: Change the name of "inner" function generated by `#[sqlx::test]` \[\[[@​ciffelia](https://github.com/ciffelia)]]
    
  • [#​3083]]: Remove sha1 because it's not being used in postgres \[\[[@​rafaelGuerreiro](https://github.com/rafaelGuerreiro)]]
    
    
Fixed
  • [#​2898]]: Fixed docs \[\[[@​Vrajs16](https://github.com/Vrajs16)]]
    
  • [#​2905]]: fix(mysql): Close prepared statement if persistence is disabled \[\[[@​larsschumacher](https://github.com/larsschumacher)]]
    
  • [#​2913]]: Fix handling of deferred constraints \[\[[@​Thomasdezeeuw](https://github.com/Thomasdezeeuw)]]
    
  • [#​2919]]: fix duplicate "\`" in FromRow "default" attribute doc comment \[\[[@​shengsheng](https://github.com/shengsheng)]]
    
  • [#​2932]]: fix(postgres): avoid unnecessary flush in PgCopyIn::read_from \[\[[@​tsing](https://github.com/tsing)]]
    
  • [#​2955]]: Minor fixes \[\[[@​Dawsoncodes](https://github.com/Dawsoncodes)]]
    
  • [#​2963]]: Fixed ReadMe badge styling \[\[[@​tadghh](https://github.com/tadghh)]]
    
  • [#​2976]]: fix: AnyRow not support PgType::Varchar \[\[[@​holicc](https://github.com/holicc)]]
    
  • [#​3053]]: fix: do not panic when binding a large BigDecimal \[\[[@​Ekleog](https://github.com/Ekleog)]]
    
  • [#​3056]]: fix: spans in sqlite tracing ([#​2876](https://github.com/launchbadge/sqlx/issues/2876)) \[\[[@​zoomiti](https://github.com/zoomiti)]]
    
  • [#​3089]]: fix(migrate): improve error message when parsing version from filename \[\[[@​abonander](https://github.com/abonander)]]
    
  • [#​3098]]: Migrations fixes \[\[[@​abonander](https://github.com/abonander)]]
    -   Unhides `sqlx::migrate::Migrator`.
    -   Improves I/O error message when failing to read a file in `migrate!()`.
    
    
uuid-rs/uuid

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 | |---|---|---|---| | [serde](https://serde.rs) ([source](https://github.com/serde-rs/serde)) | dependencies | patch | `1.0.197` -> `1.0.201` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.116` -> `1.0.117` | | [serde_json](https://github.com/serde-rs/json) | workspace.dependencies | patch | `1.0.116` -> `1.0.117` | | [sqlx](https://github.com/launchbadge/sqlx) | dependencies | patch | `0.7.3` -> `0.7.4` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.7.0` -> `1.8.0` | --- ### Release Notes <details> <summary>serde-rs/serde</summary> ### [`v1.0.201`](https://github.com/serde-rs/serde/releases/tag/v1.0.201) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.200...v1.0.201) - Resolve unexpected_cfgs warning ([#&#8203;2737](https://github.com/serde-rs/serde/issues/2737)) ### [`v1.0.200`](https://github.com/serde-rs/serde/releases/tag/v1.0.200) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.199...v1.0.200) - Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats ([#&#8203;2733](https://github.com/serde-rs/serde/issues/2733), thanks [@&#8203;jamessan](https://github.com/jamessan)) ### [`v1.0.199`](https://github.com/serde-rs/serde/releases/tag/v1.0.199) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.198...v1.0.199) - Fix ambiguous associated item when `forward_to_deserialize_any!` is used on an enum with `Error` variant ([#&#8203;2732](https://github.com/serde-rs/serde/issues/2732), thanks [@&#8203;aatifsyed](https://github.com/aatifsyed)) ### [`v1.0.198`](https://github.com/serde-rs/serde/releases/tag/v1.0.198) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.197...v1.0.198) - Support serializing and deserializing `Saturating<T>` ([#&#8203;2709](https://github.com/serde-rs/serde/issues/2709), thanks [@&#8203;jbethune](https://github.com/jbethune)) </details> <details> <summary>serde-rs/json</summary> ### [`v1.0.117`](https://github.com/serde-rs/json/releases/tag/v1.0.117) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.116...v1.0.117) - Resolve unexpected_cfgs warning ([#&#8203;1130](https://github.com/serde-rs/json/issues/1130)) </details> <details> <summary>launchbadge/sqlx</summary> ### [`v0.7.4`](https://github.com/launchbadge/sqlx/blob/HEAD/CHANGELOG.md#&#8203;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>uuid-rs/uuid</summary> ### [`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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
kjuulh added 1 commit 2024-04-30 20:43:29 +02:00
kjuulh force-pushed renovate/all from f6aa45f205 to b8692146f6 2024-05-01 18:49:23 +02:00 Compare
kjuulh force-pushed renovate/all from b8692146f6 to 6b5d7c31ae 2024-05-01 22:53:33 +02:00 Compare
kjuulh force-pushed renovate/all from 6b5d7c31ae to 8e426c1478 2024-05-01 23:56:48 +02:00 Compare
kjuulh force-pushed renovate/all from 8e426c1478 to 6e674b08a1 2024-05-03 00:00:38 +02:00 Compare
kjuulh force-pushed renovate/all from 6e674b08a1 to 26714a62a1 2024-05-05 21:36:32 +02:00 Compare
kjuulh force-pushed renovate/all from 26714a62a1 to d8268267a3 2024-05-05 22:47:21 +02:00 Compare
kjuulh force-pushed renovate/all from d8268267a3 to 9a09b7626b 2024-05-07 23:50:16 +02:00 Compare
kjuulh force-pushed renovate/all from 9a09b7626b to 94a295a5f5 2024-05-08 02:53:34 +02:00 Compare
kjuulh force-pushed renovate/all from 94a295a5f5 to e315671cb6 2024-05-08 13:59:29 +02:00 Compare
kjuulh force-pushed renovate/all from e315671cb6 to 90b34cf1d3 2024-05-08 21:47:38 +02:00 Compare
kjuulh force-pushed renovate/all from 90b34cf1d3 to c803b510c1 2024-05-09 00:25:57 +02:00 Compare
kjuulh force-pushed renovate/all from c803b510c1 to 26aac87a3a 2024-05-09 12:49:14 +02:00 Compare
kjuulh force-pushed renovate/all from 26aac87a3a to 22afa29667 2024-05-09 14:23:05 +02:00 Compare
kjuulh force-pushed renovate/all from 22afa29667 to 50e42509e5 2024-05-09 15:58:06 +02:00 Compare
kjuulh force-pushed renovate/all from 50e42509e5 to 0cac51b5c9 2024-05-09 17:33:22 +02:00 Compare
kjuulh force-pushed renovate/all from 0cac51b5c9 to f284171f5a 2024-05-09 18:05:20 +02:00 Compare
kjuulh merged commit f284171f5a into main 2024-05-09 18:36:56 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/hyperlog#1
No description provided.