bb30 / adbackup

backup tool for android written in rust
MIT License
3 stars 2 forks source link

Update rusqlite requirement from 0.14.0 to 0.18.0 #40

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Updates the requirements on rusqlite to permit the latest version.

Release notes *Sourced from [rusqlite's releases](https://github.com/jgallagher/rusqlite/releases).* > ## 0.18.0 > - Add support for Uuid ([#506](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/506)) > - `impl ToSql for Box` ([#500](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/500)) > - Allow specifying both `sqlcipher` and `bundled` ([#511](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/511)) > - Introduce `Statement::columns` ([#494](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/494)) > - Rebuild when VCPKGRS_DYNAMIC changes ([#483](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/483)) > - Upgrade to fallible-iterator 0.2
Changelog *Sourced from [rusqlite's changelog](https://github.com/jgallagher/rusqlite/blob/master/Changelog.md).* > For version 0.15.0 and above, see [Releases](https://github.com/jgallagher/rusqlite/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](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/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 `Send`able and `'static`. > * Bugfix: Commit failure unhandled, database left in unusable state ([#366](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/366)). > * Bugfix: `free_boxed_hook` does not work for `fn`. > * Update the bundled SQLite version to 3.24.0 ([#326](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/326)). > * Add DropBehavior::Panic to enforce intentional commit or rollback. > * Implement `sqlite3_update_hook` ([#260](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/260), [#328](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/328)), `sqlite3_commit_hook` and `sqlite3_rollback_hook`. > * Add support to unlock notification behind `unlock_notify` feature ([#294](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/294), [#331](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/331)). > * Make `Statement::column_index` case insensitive ([#330](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/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](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/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](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/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](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/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 - [`c0e6a58`](https://github.com/jgallagher/rusqlite/commit/c0e6a584ad59775a7b428b5327a26dfd23bdee45) Prepare 0.14.0 release - [`3a382d2`](https://github.com/jgallagher/rusqlite/commit/3a382d2fb9bb17f805e7cbb5555f5801fec75dbe) Merge pull request [#511](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/511) from thomcc/no-sqlcipher-bundled-panic - [`fe80b51`](https://github.com/jgallagher/rusqlite/commit/fe80b51e89b105b826e11fd6466bc4c527f26bf8) Allow specifying both `sqlcipher` and `bundled`. - [`066a7e2`](https://github.com/jgallagher/rusqlite/commit/066a7e25e150cf60a3ebad33caca7f133f318f19) Merge pull request [#507](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/507) from sbstp/patch-1 - [`85efa19`](https://github.com/jgallagher/rusqlite/commit/85efa19646c172d753a7fc4aa569ac56ecccb50e) Typo in the README - [`85454c0`](https://github.com/jgallagher/rusqlite/commit/85454c04ecdad501ac8f2f49a7ce95d98bcf1ff6) Merge pull request [#506](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/506) from sbstp/add-uuid - [`c42175a`](https://github.com/jgallagher/rusqlite/commit/c42175a4244aee9777a0a411872a57c778328af1) add support for Uuid - [`22614c6`](https://github.com/jgallagher/rusqlite/commit/22614c64bd34999453590fc55f193fad5276b6a4) Merge pull request [#501](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/501) from thomcc/box-dyn-tosql - [`d8074b1`](https://github.com/jgallagher/rusqlite/commit/d8074b1eceef28215e13030d6ba25f71aaa3984f) impl ToSql for Box. Fixes [#500](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/500) - [`b24f3c5`](https://github.com/jgallagher/rusqlite/commit/b24f3c55195d4c1296ad6b5515c27b9ab97b3425) Merge pull request [#483](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/483) from technic/master - Additional commits viewable in [compare view](https://github.com/jgallagher/rusqlite/compare/0.14.0...0.18.0)


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 ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.
dependabot-preview[bot] commented 5 years ago

Superseded by #41.