Closed dependabot-preview[bot] closed 6 years ago
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version
or @dependabot ignore this minor version
.
If you change your mind, just re-open this PR and I'll resolve any conflicts on it.
Bumps libsqlite3-sys from 0.9.3 to 0.10.0.
Release notes
*Sourced from [libsqlite3-sys's releases](https://github.com/jgallagher/rusqlite/releases).* > ## 0.10.0 > Changes: > - Re-export the `ErrorCode` enum from `libsqlite3-sys`. > - Adds `version()` and `version_number()` functions for querying the version of SQLite in use. > - Adds the `limits` feature, exposing `limit()` and `set_limit()` methods on `Connection`. > - Updates to `libsqlite3-sys` 0.7.0, which runs rust-bindgen at build-time instead of assuming the precense of all expected SQLite constants and functions. > - Clarifies supported SQLite versions. Running with SQLite older than 3.6.8 now panics, and some features will not compile unless a sufficiently-recent SQLite version is used. See the README for requirements of particular features. > - When running with SQLite 3.6.x, rusqlite attempts to perform SQLite initialization. If it fails, rusqlite will panic since it cannot ensure the threading mode for SQLite. This check can by skipped by calling the unsafe function `rusqlite::bypass_sqlite_initialization()`. This is technically a breaking change but is unlikely to affect anyone in practice, since prior to this version the check that rusqlite was using would cause a segfault if linked against a SQLite older than 3.7.0. > - rusqlite now performs a one-time check (prior to the first connection attempt) that the runtime SQLite version is at least as new as the SQLite version found at buildtime. This check can by skipped by calling the unsafe function `rusqlite::bypass_sqlite_version_check()`. > - Removes the `libc` dependency in favor of using `std::os::raw`Changelog
*Sourced from [libsqlite3-sys's changelog](https://github.com/jgallagher/rusqlite/blob/master/Changelog.md).* > # Version 0.10.0 (2017-02-28) > > * Re-export the `ErrorCode` enum from `libsqlite3-sys`. > * Adds `version()` and `version_number()` functions for querying the version of SQLite in use. > * Adds the `limits` feature, exposing `limit()` and `set_limit()` methods on `Connection`. > * Updates to `libsqlite3-sys` 0.7.0, which runs rust-bindgen at build-time instead of assuming the > precense of all expected SQLite constants and functions. > * Clarifies supported SQLite versions. Running with SQLite older than 3.6.8 now panics, and > some features will not compile unless a sufficiently-recent SQLite version is used. See > the README for requirements of particular features. > * When running with SQLite 3.6.x, rusqlite attempts to perform SQLite initialization. If it fails, > rusqlite will panic since it cannot ensure the threading mode for SQLite. This check can by > skipped by calling the unsafe function `rusqlite::bypass_sqlite_initialization()`. This is > technically a breaking change but is unlikely to affect anyone in practice, since prior to this > version the check that rusqlite was using would cause a segfault if linked against a SQLite > older than 3.7.0. > * rusqlite now performs a one-time check (prior to the first connection attempt) that the runtime > SQLite version is at least as new as the SQLite version found at buildtime. This check can by > skipped by calling the unsafe function `rusqlite::bypass_sqlite_version_check()`. > * Removes the `libc` dependency in favor of using `std::os::raw` > > # Version 0.9.5 (2017-01-26) > > * Add impls of `Clone`, `Debug`, and `PartialEq` to `ToSqlOutput`. > > # Version 0.9.4 (2017-01-25) > > * Update dependencies.Commits
- [`acf6129`](https://github.com/jgallagher/rusqlite/commit/acf612985ef32cbcbfc8f368819a78e0e8671913) Update Changelog with 0.10.0 release date - [`e536ce0`](https://github.com/jgallagher/rusqlite/commit/e536ce02e86c1c7b0d39197166b2f4077cadf0e0) Merge pull request [#239](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/239) from gwenn/clippy - [`faa94d1`](https://github.com/jgallagher/rusqlite/commit/faa94d124695988bb6152a55882bfd56ef237bc6) Fix clippy warnings - [`4918fb8`](https://github.com/jgallagher/rusqlite/commit/4918fb8f5080e6c85a43a734541151df11a17c11) Merge pull request [#234](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/234) from jgallagher/semver-check - [`39d7181`](https://github.com/jgallagher/rusqlite/commit/39d71810ce54db2fb45e92b8a7b72b17c667d455) Merge branch 'master' into semver-check - [`0d8c6ca`](https://github.com/jgallagher/rusqlite/commit/0d8c6ca5d7020012370ddfba822427c7f377f5c3) Merge pull request [#238](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/238) from gwenn/categories - [`aedb681`](https://github.com/jgallagher/rusqlite/commit/aedb681f547f515d9c60b27a47b60fb618e4f989) Add categories and keywords to libsqlite3-sys - [`6bac06c`](https://github.com/jgallagher/rusqlite/commit/6bac06cc496d717e5d79fab648dd53141a2fbcd0) Merge pull request [#237](https://github-redirect.dependabot.com/jgallagher/rusqlite/issues/237) from sgrif/sg-remove-libc - [`2c58b3f`](https://github.com/jgallagher/rusqlite/commit/2c58b3f804b4cee76a3b21a1be7ce18270da54f8) Remove the dependency on `libc` - [`7a8dfbd`](https://github.com/jgallagher/rusqlite/commit/7a8dfbd5553fe6de9ed15bdeb5320f0463a672ff) Add to CONTRIBUTORS - Additional commits viewable in [compare view](https://github.com/jgallagher/rusqlite/compare/0.9.3...0.10.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
.Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.
You can always request more updates by clicking
Bump now
in your Dependabot dashboard.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 cancel merge` will cancel a previously requested merge - `@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.