bb30 / adbackup

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

Update rusqlite requirement from 0.14.0 to 0.21.0 #44

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 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.21.0 > * Fix memory leak when using `Statement.expanded_sql` ([#552](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/552)) > * Fix segfault on `prepare_cached` with an empty query ([#583](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/583)) > * Handle old versions of visual studio ([#554](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/554)) > * Conversion from `FromSqlError` to `Error` ([#556](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/556)) > * Parse `Option` into `Value`/`ValueRef` where applicable ([#571](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/571)) > * Make `column_name()` public and forward all column methods in `Row` and `Rows` ([#568](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/568)) > * Check SQL query passed to `execute` ([#565](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/565)) > * Check that only one statement is provided when `extra_check` feature is activated ([#397](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/397)) > * Improve error message when we can't open a database ([#578](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/578)) > * Upgrade bundled SQLite version to 3.30.1 ([#579](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/579)) > * Replace deprecated tempdir with tempfile ([#594](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/594)) > * Download sqlite source via HTTPS ([#599](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/599)) > * Fix `session` extension ([#588](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/588)) > * Upgrade to uuid 0.8 ([#576](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/576)) > * Disable vcpkg in appveyor build ([#580](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/580))
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 - [`74b1c64`](https://github.com/jgallagher/rusqlite/commit/74b1c647614a4d5726a35c856d9b7e27d830ac65) [ci skip] Prepare release 0.21 - [`89c7789`](https://github.com/jgallagher/rusqlite/commit/89c77895c3f3c612b5930524315206ac94eeae10) Merge pull request [#599](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/599) from mcginty/master - [`8e1f70d`](https://github.com/jgallagher/rusqlite/commit/8e1f70d465b27eb189715bba44246a906646f2f5) Download sqlite source via HTTPS. - [`3ef3c15`](https://github.com/jgallagher/rusqlite/commit/3ef3c15ebe4bfde0b9cd1cdb0fed73b9bde69173) Merge pull request [#594](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/594) from stevenroose/tempfile - [`c162a45`](https://github.com/jgallagher/rusqlite/commit/c162a4516cc818ef1221a59eed2f3fc4060b4746) Replace deprecated tempdir with tempfile - [`bb3db3f`](https://github.com/jgallagher/rusqlite/commit/bb3db3f877a3e8a5785d9ea5e4ae4cca0ffe46d7) Merge pull request [#589](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/589) from gwenn/clippy - [`8302a50`](https://github.com/jgallagher/rusqlite/commit/8302a50fb8709d24044d76a41703d0710c75493c) Fix clippy warnings - [`9484f5c`](https://github.com/jgallagher/rusqlite/commit/9484f5c15e022b36ba0c6ed69d66b8c9ccb0e8b6) Merge pull request [#588](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/588) from gwenn/session - [`de9f06f`](https://github.com/jgallagher/rusqlite/commit/de9f06f142db5c8c9ab7ecffbdd0d42ba6641def) Fix ChangesetIter::start_strm - [`b57fd14`](https://github.com/jgallagher/rusqlite/commit/b57fd14b2677a631ba3adc56ed91a555eea7775b) Test session feature on Travis - Additional commits viewable in [compare view](https://github.com/jgallagher/rusqlite/compare/0.14.0...0.21.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 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) - `@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) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
DonatJR commented 4 years ago

@dependabot rebase

dependabot-preview[bot] commented 4 years ago

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.