dependabot[bot] opened a new pull request, #537: URL: https://github.com/apache/iceberg-rust/pull/537
Updates the requirements on [sqlx](https://github.com/launchbadge/sqlx) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md">sqlx's changelog</a>.</em></p> <blockquote> <h2>0.8.0 - 2024-07-22</h2> <p>70 pull requests were merged this release cycle.</p> <p><a href="https://redirect.github.com/launchbadge/sqlx/issues/2697">#2697</a> was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation.</p> <h3>Breaking</h3> <ul> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2697">#2697</a>]: fix(macros): only enable chrono when time is disabled [[<a href="https://github.com/saiintbrisson"><code>@saiintbrisson</code></a>]]</li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2973">#2973</a>]: Generic Associated Types in Database, replacing HasValueRef, HasArguments, HasStatement [[<a href="https://github.com/nitn3lav"><code>@nitn3lav</code></a>]]</li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2482">#2482</a>]: chore: bump syn to 2.0 [[<a href="https://github.com/saiintbrisson"><code>@saiintbrisson</code></a>]] <ul> <li>Deprecated type ascription syntax in the query macros was removed.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2736">#2736</a>]: Fix describe on PostgreSQL views with rules [[<a href="https://github.com/tsing"><code>@tsing</code></a>]] <ul> <li>Potentially breaking: nullability inference changes for Postgres.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2869">#2869</a>]: Implement PgHasArrayType for all references [[<a href="https://github.com/tylerhawkes"><code>@tylerhawkes</code></a>]] <ul> <li>Conflicts with existing manual implementations.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2940">#2940</a>]: fix: Decode and Encode derives (<a href="https://redirect.github.com/launchbadge/sqlx/issues/1031">#1031</a>) [[<a href="https://github.com/benluelo"><code>@benluelo</code></a>]] <ul> <li>Changes lifetime obligations for field types.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3064">#3064</a>]: Sqlite explain graph [[<a href="https://github.com/tyrelr"><code>@tyrelr</code></a>]] <ul> <li>Potentially breaking: nullability inference changes for SQLite.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3123">#3123</a>]: Reorder attrs in sqlx::test macro [[<a href="https://github.com/bobozaur"><code>@bobozaur</code></a>]] <ul> <li>Potentially breaking: attributes on <code>#[sqlx::test]</code> usages are applied in the correct order now.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3126">#3126</a>]: Make Encode return a result [[<a href="https://github.com/FSMaxB"><code>@FSMaxB</code></a>]]</li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3130">#3130</a>]: Add version information for failed cli migration (<a href="https://redirect.github.com/launchbadge/sqlx/issues/3129">#3129</a>) [[<a href="https://github.com/FlakM"><code>@FlakM</code></a>]] <ul> <li>Breaking changes to <code>MigrateError</code>.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3181">#3181</a>]: feat: no tx migration [[<a href="https://github.com/cleverjam"><code>@cleverjam</code></a>]] <ul> <li>(Postgres only) migrations that should not run in a transaction can be flagged by adding <code>-- no-transaction</code> to the beginning.</li> <li>Breaking change: added field to <code>Migration</code></li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3184">#3184</a>]: [BREAKING} fix(sqlite): always use <code>i64</code> as intermediate when decoding [[<a href="https://github.com/abonander"><code>@abonander</code></a>]] <ul> <li>integer decoding will now loudly error on overflow instead of silently truncating.</li> <li>some usages of the query!() macros might change an i32 to an i64.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3252">#3252</a>]: fix <code>#[derive(sqlx::Type)]</code> in Postgres [[<a href="https://github.com/abonander"><code>@abonander</code></a>]] <ul> <li>Manual implementations of PgHasArrayType for enums will conflict with the generated one. Delete the manual impl or add <code>#[sqlx(no_pg_array)]</code> where conflicts occur.</li> <li>Type equality for PgTypeInfo is now schema-aware.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3329">#3329</a>]: fix: correct handling of arrays of custom types in Postgres [[<a href="https://github.com/abonander"><code>@abonander</code></a>]] <ul> <li>Potential breaking change: <code>PgTypeInfo::with_name()</code> infers types that start with <code>_</code> to be arrays of the un-prefixed type. Wrap type names in quotes to bypass this behavior.</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3356">#3356</a>]: breaking: fix name collision in <code>FromRow</code>, return <code>Error::ColumnDecode</code> for <code>TryFrom</code> errors [[<a href="https://github.com/abonander"><code>@abonander</code></a>]] <ul> <li>Breaking behavior change: errors with <code>#[sqlx(try_from = "T")]</code> now return <code>Error::ColumnDecode</code> instead of <code>Error::ColumnNotFound</code>.</li> <li>Breaking because <code>#[sqlx(default)]</code> 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. <ul> <li>Instead, create a wrapper implementing <code>From</code> and apply the default explicitly.</li> </ul> </li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3337">#3337</a>]: allow rename with rename_all (close <a href="https://redirect.github.com/launchbadge/sqlx/issues/2896">#2896</a>) [[<a href="https://github.com/DirectorX"><code>@DirectorX</code></a>]] <ul> <li>Changes the precedence of <code>#[sqlx(rename)]</code> and <code>#[sqlx(rename_all)]</code> to match the expected behavior (<code>rename</code> wins).</li> </ul> </li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3285">#3285</a>]: fix: use correct names for sslmode options [[<a href="https://github.com/lily-mosquitoes"><code>@lily-mosquitoes</code></a>]] <ul> <li>Changes the output of <code>ConnectOptions::to_url_lossy()</code> to match what parsing expects.</li> </ul> </li> </ul> <h3>Added</h3> <ul> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2917">#2917</a>]: Add Debug impl for PgRow [[<a href="https://github.com/g-bartoszek"><code>@g-bartoszek</code></a>]]</li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3113">#3113</a>]: feat: new derive feature flag [[<a href="https://github.com/saiintbrisson"><code>@saiintbrisson</code></a>]]</li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3154">#3154</a>]: feat: add <code>MySqlTime</code>, audit <code>mysql::types</code> for panics [[<a href="https://github.com/abonander"><code>@abonander</code></a>]]</li> <li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/3188">#3188</a>]: feat(cube): support postgres cube [[<a href="https://github.com/jayy-lmao"><code>@jayy-lmao</code></a>]]</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/launchbadge/sqlx/commit/da0ffd7dcff7112192ef13635608ab286d32d8f3"><code>da0ffd7</code></a> chore: bump version to 0.8.0</li> <li><a href="https://github.com/launchbadge/sqlx/commit/9e1aa748c982fa1c7b8836a962cd32becbfa6d06"><code>9e1aa74</code></a> chore: prepare changelog entry for 0.8.0</li> <li><a href="https://github.com/launchbadge/sqlx/commit/c90a7fff49f107d0183ed244f819734c9f73fa9c"><code>c90a7ff</code></a> fix: enable <code>clock</code> and <code>std</code> features of chrono for the workspace</li> <li><a href="https://github.com/launchbadge/sqlx/commit/c50572eef23cccaa09d71e90e112a963bf7265ec"><code>c50572e</code></a> fix: sqlite update_hook char types (<a href="https://redirect.github.com/launchbadge/sqlx/issues/3288">#3288</a>)</li> <li><a href="https://github.com/launchbadge/sqlx/commit/940d9fb99429b86605b1c1249a362d5609045a23"><code>940d9fb</code></a> Add example on how to use Transaction as Executor (<a href="https://redirect.github.com/launchbadge/sqlx/issues/3311">#3311</a>)</li> <li><a href="https://github.com/launchbadge/sqlx/commit/eaad7b2c9a0ac171327be0aebb5b4249c5685de3"><code>eaad7b2</code></a> doc: Minor rust docs fixes (<a href="https://redirect.github.com/launchbadge/sqlx/issues/3312">#3312</a>)</li> <li><a href="https://github.com/launchbadge/sqlx/commit/4fc5b30d6592dc6ff790a2aebc2cef91e002d00a"><code>4fc5b30</code></a> breaking: fix name collision in <code>FromRow</code>, return <code>Error::ColumnDecode</code> for `...</li> <li><a href="https://github.com/launchbadge/sqlx/commit/b37b34bd046dc6e571a0380db1742e5b6d060e79"><code>b37b34b</code></a> chore:added a testcase for <code>sqlx migrate add ...</code> (<a href="https://redirect.github.com/launchbadge/sqlx/issues/3352">#3352</a>)</li> <li><a href="https://github.com/launchbadge/sqlx/commit/543395d80a3733b717b8adfb24180b68147cd504"><code>543395d</code></a> fix: build script new line at eof (<a href="https://redirect.github.com/launchbadge/sqlx/issues/3353">#3353</a>)</li> <li><a href="https://github.com/launchbadge/sqlx/commit/4683cc34e54188cee98de099816b081e2e64aabf"><code>4683cc3</code></a> Add support for PostgreSQL HSTORE data type (<a href="https://redirect.github.com/launchbadge/sqlx/issues/3343">#3343</a>)</li> <li>Additional commits viewable in <a href="https://github.com/launchbadge/sqlx/compare/v0.7.4...v0.8.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org