Update rusqlite requirement from ~0.26 to ~0.28 #318

Closed
dependabot[bot] wants to merge 1 commit from dependabot/cargo/rusqlite-approx-0.28 into master
dependabot[bot] commented 2022-07-15 09:50:16 +00:00 (Migrated from github.com)

Updates the requirements on rusqlite to permit the latest version.

Release notes

Sourced from rusqlite's releases.

0.28.0

What's Changed

  • Update bundled SQLcipher to v4.5.1 (equivalent to SQLite 3.37.2) #1131
  • Implement Params for tuples, improve documentation some. #1133
  • Force use of buildtime_bindgen under winsqlite3 for now #1135
  • Add some missing wrappers #1139
  • Upgrade SQLite bundled version to 3.39.0 #1200
  • Disable winsqlite3 on 32 bit targets #1151
  • Fix non-bundled tests against macOS system SQLite #1153
  • Expose sqlite3_changes (or sqlite3_changes64 if available) #1152
  • Improve the docs for opening the connection a bit #1155
  • Small doc grammar fix #1156
  • Add support to updatable virtual tables #1141
  • Add Error methods to get SQLite error values by #1158
  • Add Connection::release_memory method #1164
  • derive Eq for Type #1165
  • Upgrade uuid dependency #1167
  • Params for 28-length arrays #1169
  • Introduce SqlInputError with offset #1137
  • Derive Debug for Savepoint #1179
  • document winsqlite3 #1109
  • Fix typo in libsqlite flags variable #1115
  • Upgrade bindgen to version 0.60 #1196

Full Changelog: https://github.com/rusqlite/rusqlite/compare/v0.27.0...v0.28.0

Changelog

Sourced from rusqlite's changelog.

For version 0.15.0 and above, see Releases page.

Version 0.14.0 (2018-08-17)

  • BREAKING CHANGE: ToSql implementation for time::Timespec uses RFC 3339 (%Y-%m-%dT%H:%M:%S.%fZ). Previous format was %Y-%m-%d %H:%M:%S:%f %Z.
  • BREAKING CHANGE: Remove potentially conflicting impl of ToSqlOutput (#313).
  • BREAKING CHANGE: Replace column index/count type (i32) with usize.
  • BREAKING CHANGE: Replace parameter index/count type (i32) with usize.
  • BREAKING CHANGE: Replace row changes/count type (i32) with usize.
  • BREAKING CHANGE: Scalar functions must be Sendable and 'static.
  • Bugfix: Commit failure unhandled, database left in unusable state (#366).
  • Bugfix: free_boxed_hook does not work for fn.
  • Update the bundled SQLite version to 3.24.0 (#326).
  • Add DropBehavior::Panic to enforce intentional commit or rollback.
  • Implement sqlite3_update_hook (#260, #328), sqlite3_commit_hook and sqlite3_rollback_hook.
  • Add support to unlock notification behind unlock_notify feature (#294, #331).
  • Make Statement::column_index case insensitive (#330).
  • Add comment to justify &mut Connection in Transaction.
  • Fix tyvar_behind_raw_pointer warnings.
  • Fix handful of clippy warnings.
  • Fix Connection::open documentation (#332)
  • Add binding to sqlite3_get_autocommit and sqlite3_stmt_busy.
  • Add binding to sqlite3_busy_timeout and sqlite3_busy_handler.
  • Add binding to sqlite3_expanded_sql.
  • Use rerun-if-env-changed in libsqlite3-sys (#329).
  • Return an InvalidQuery error when SQL is not read only.

Version 0.13.0 (2017-11-13)

  • Added ToSqlConversionFailure case to Error enum.
  • Now depends on chrono 0.4, bitflats 1.0, and (optionally) cc 1.0 / bindgen 0.31.
  • The ToSql/FromSql implementations for time::Timespec now include and expect fractional seconds and timezone in the serialized string.
  • The RowIndex type used in Row::get is now publicly exported.
  • New sqlcipher feature allows linking against SQLCipher instead of SQLite.
  • Doc link in README now point to docs.rs.

Version 0.12.0 (2017-05-29)

  • Defines HAVE_USLEEP when building with a bundled SQLite (#263).
  • Updates dependencies to their latest versions, particularly serde to 1.0.
  • Adds support for vcpkg on Windows.
  • Adds ToSql impls for str and [u8].

Version 0.11.0 (2017-04-06)

  • Avoid publicly exporting SQLite constants multiple times from libsqlite3-sys.
  • Adds FromSql and ToSql impls for isize. Documents why usize and u64 are not included.

... (truncated)

Commits

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 commands and options

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 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)
Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rusqlite/rusqlite/releases">rusqlite's releases</a>.</em></p> <blockquote> <h2>0.28.0</h2> <h2>What's Changed</h2> <ul> <li>Update bundled SQLcipher to v4.5.1 (equivalent to SQLite 3.37.2) <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1131">#1131</a></li> <li>Implement <code>Params</code> for tuples, improve documentation some. <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1133">#1133</a></li> <li>Force use of buildtime_bindgen under winsqlite3 for now <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1135">#1135</a></li> <li>Add some missing wrappers <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1139">#1139</a></li> <li>Upgrade SQLite bundled version to 3.39.0 <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1200">#1200</a></li> <li>Disable winsqlite3 on 32 bit targets <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1151">#1151</a></li> <li>Fix non-bundled tests against macOS system SQLite <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1153">#1153</a></li> <li>Expose <code>sqlite3_changes</code> (or <code>sqlite3_changes64</code> if available) <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1152">#1152</a></li> <li>Improve the docs for opening the connection a bit <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1155">#1155</a></li> <li>Small doc grammar fix <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1156">#1156</a></li> <li>Add support to updatable virtual tables <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1141">#1141</a></li> <li>Add <code>Error</code> methods to get SQLite error values by <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1158">#1158</a></li> <li>Add <code>Connection::release_memory</code> method <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1164">#1164</a></li> <li>derive <code>Eq</code> for <code>Type</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1165">#1165</a></li> <li>Upgrade uuid dependency <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1167">#1167</a></li> <li>Params for 28-length arrays <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1169">#1169</a></li> <li>Introduce SqlInputError with offset <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1137">#1137</a></li> <li>Derive <code>Debug</code> for <code>Savepoint</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1179">#1179</a></li> <li>document winsqlite3 <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1109">#1109</a></li> <li>Fix typo in libsqlite flags variable <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1115">#1115</a></li> <li>Upgrade bindgen to version 0.60 <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1196">#1196</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rusqlite/rusqlite/compare/v0.27.0...v0.28.0">https://github.com/rusqlite/rusqlite/compare/v0.27.0...v0.28.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rusqlite/rusqlite/blob/master/Changelog.md">rusqlite's changelog</a>.</em></p> <blockquote> <p>For version 0.15.0 and above, see <a href="https://github.com/rusqlite/rusqlite/releases">Releases</a> page.</p> <h1>Version 0.14.0 (2018-08-17)</h1> <ul> <li>BREAKING CHANGE: <code>ToSql</code> implementation for <code>time::Timespec</code> uses RFC 3339 (%Y-%m-%dT%H:%M:%S.%fZ). Previous format was %Y-%m-%d %H:%M:%S:%f %Z.</li> <li>BREAKING CHANGE: Remove potentially conflicting impl of ToSqlOutput (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/313">#313</a>).</li> <li>BREAKING CHANGE: Replace column index/count type (i32) with usize.</li> <li>BREAKING CHANGE: Replace parameter index/count type (i32) with usize.</li> <li>BREAKING CHANGE: Replace row changes/count type (i32) with usize.</li> <li>BREAKING CHANGE: Scalar functions must be <code>Send</code>able and <code>'static</code>.</li> <li>Bugfix: Commit failure unhandled, database left in unusable state (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/366">#366</a>).</li> <li>Bugfix: <code>free_boxed_hook</code> does not work for <code>fn</code>.</li> <li>Update the bundled SQLite version to 3.24.0 (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/326">#326</a>).</li> <li>Add DropBehavior::Panic to enforce intentional commit or rollback.</li> <li>Implement <code>sqlite3_update_hook</code> (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/260">#260</a>, <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/328">#328</a>), <code>sqlite3_commit_hook</code> and <code>sqlite3_rollback_hook</code>.</li> <li>Add support to unlock notification behind <code>unlock_notify</code> feature (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/294">#294</a>, <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/331">#331</a>).</li> <li>Make <code>Statement::column_index</code> case insensitive (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/330">#330</a>).</li> <li>Add comment to justify <code>&amp;mut Connection</code> in <code>Transaction</code>.</li> <li>Fix <code>tyvar_behind_raw_pointer</code> warnings.</li> <li>Fix handful of clippy warnings.</li> <li>Fix <code>Connection::open</code> documentation (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/332">#332</a>)</li> <li>Add binding to <code>sqlite3_get_autocommit</code> and <code>sqlite3_stmt_busy</code>.</li> <li>Add binding to <code>sqlite3_busy_timeout</code> and <code>sqlite3_busy_handler</code>.</li> <li>Add binding to <code>sqlite3_expanded_sql</code>.</li> <li>Use <code>rerun-if-env-changed</code> in libsqlite3-sys (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/329">#329</a>).</li> <li>Return an <code>InvalidQuery</code> error when SQL is not read only.</li> </ul> <h1>Version 0.13.0 (2017-11-13)</h1> <ul> <li>Added ToSqlConversionFailure case to Error enum.</li> <li>Now depends on chrono 0.4, bitflats 1.0, and (optionally) cc 1.0 / bindgen 0.31.</li> <li>The ToSql/FromSql implementations for time::Timespec now include and expect fractional seconds and timezone in the serialized string.</li> <li>The RowIndex type used in Row::get is now publicly exported.</li> <li>New <code>sqlcipher</code> feature allows linking against SQLCipher instead of SQLite.</li> <li>Doc link in README now point to docs.rs.</li> </ul> <h1>Version 0.12.0 (2017-05-29)</h1> <ul> <li>Defines HAVE_USLEEP when building with a bundled SQLite (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/263">#263</a>).</li> <li>Updates dependencies to their latest versions, particularly serde to 1.0.</li> <li>Adds support for vcpkg on Windows.</li> <li>Adds <code>ToSql</code> impls for <code>str</code> and <code>[u8]</code>.</li> </ul> <h1>Version 0.11.0 (2017-04-06)</h1> <ul> <li>Avoid publicly exporting SQLite constants multiple times from libsqlite3-sys.</li> <li>Adds <code>FromSql</code> and <code>ToSql</code> impls for <code>isize</code>. Documents why <code>usize</code> and <code>u64</code> are not included.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rusqlite/rusqlite/commit/26293a11f595574897e7e5a5b639d1587255c6b9"><code>26293a1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1202">#1202</a> from gwenn/0.28.0</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/153d8fbc71e85b2be0fc4c45ef956f22690712f8"><code>153d8fb</code></a> Prepare for next release</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/a12cde2211dda62d1663e9ce414f15937652d98a"><code>a12cde2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1200">#1200</a> from gwenn/3.39.0</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/efff01cd4a16b71ce000af1670e6d8e25fe662e0"><code>efff01c</code></a> Upgrade SQLite bundled version to 3.39.0</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/289a72976ea1efc67d4718b6b24db0ffaa0c4d05"><code>289a729</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1196">#1196</a> from gwenn/bindgen</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/441b03cbf99bb42a65029f662af6a81ede381302"><code>441b03c</code></a> Upgrade bindgen to version 0.60</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/d6780ece27fdd127394aaff17743054984f731ad"><code>d6780ec</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1194">#1194</a> from gwenn/clean</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/618e9a12742080a1c19959a4a5fdf85c08860c0c"><code>618e9a1</code></a> Clean code</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/cf3d9d9de8d92aabda2110fdd8ec6fb420efa99f"><code>cf3d9d9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1193">#1193</a> from gwenn/clippy</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/d9b79a5f9efe4331bb07e2d7cba8b5b3ae401b37"><code>d9b79a5</code></a> Fix clippy warnings (derive_partial_eq_without_eq)</li> <li>Additional commits viewable in <a href="https://github.com/rusqlite/rusqlite/compare/rusqlite-0.26.1...v0.28.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 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>
dependabot[bot] commented 2023-03-27 10:11:25 +00:00 (Migrated from github.com)

Superseded by #320.

Superseded by #320.

Pull request closed

Sign in to join this conversation.
No description provided.