[PR #955] [MERGED] Bump rusqlite from 0.20.0 to 0.21.0 #1818

Closed
opened 2026-03-16 02:27:15 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/955
Author: @dependabot-preview[bot]
Created: 12/16/2019
Status: Merged
Merged: 12/17/2019
Merged by: @bluejekyll

Base: masterHead: dependabot/cargo/rusqlite-0.21.0


📝 Commits (1)

  • 3ac480b Bump rusqlite from 0.20.0 to 0.21.0

📊 Changes

3 files changed (+9 additions, -9 deletions)

View changed files

📝 Cargo.lock (+7 -7)
📝 crates/server/Cargo.toml (+1 -1)
📝 tests/integration-tests/Cargo.toml (+1 -1)

📄 Description

Bumps rusqlite from 0.20.0 to 0.21.0.

Release notes

Sourced from rusqlite's releases.

0.21.0

  • Fix memory leak when using Statement.expanded_sql (#552)
  • Fix segfault on prepare_cached with an empty query (#583)
  • Handle old versions of visual studio (#554)
  • Conversion from FromSqlError to Error (#556)
  • Parse Option<T> into Value/ValueRef where applicable (#571)
  • Make column_name() public and forward all column methods in Row and Rows (#568)
  • Check SQL query passed to execute (#565)
  • Check that only one statement is provided when extra_check feature is activated (#397)
  • Improve error message when we can't open a database (#578)
  • Upgrade bundled SQLite version to 3.30.1 (#579)
  • Replace deprecated tempdir with tempfile (#594)
  • Download sqlite source via HTTPS (#599)
  • Fix session extension (#588)
  • Upgrade to uuid 0.8 (#576)
  • Disable vcpkg in appveyor build (#580)
Commits
  • 74b1c64 [ci skip] Prepare release 0.21
  • 89c7789 Merge pull request #599 from mcginty/master
  • 8e1f70d Download sqlite source via HTTPS.
  • 3ef3c15 Merge pull request #594 from stevenroose/tempfile
  • c162a45 Replace deprecated tempdir with tempfile
  • bb3db3f Merge pull request #589 from gwenn/clippy
  • 8302a50 Fix clippy warnings
  • 9484f5c Merge pull request #588 from gwenn/session
  • de9f06f Fix ChangesetIter::start_strm
  • b57fd14 Test session feature on Travis
  • Additional commits viewable in compare view

Dependabot compatibility score

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:

  • 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hickory-dns/hickory-dns/pull/955 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 12/16/2019 **Status:** ✅ Merged **Merged:** 12/17/2019 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `dependabot/cargo/rusqlite-0.21.0` --- ### 📝 Commits (1) - [`3ac480b`](https://github.com/hickory-dns/hickory-dns/commit/3ac480be37d5b433f9023cbd4996ea6c28a69702) Bump rusqlite from 0.20.0 to 0.21.0 ### 📊 Changes **3 files changed** (+9 additions, -9 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+7 -7) 📝 `crates/server/Cargo.toml` (+1 -1) 📝 `tests/integration-tests/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [rusqlite](https://github.com/jgallagher/rusqlite) from 0.20.0 to 0.21.0. <details> <summary>Release notes</summary> *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<T>` 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)) </details> <details> <summary>Commits</summary> - [`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.20.0...0.21.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=rusqlite&package-manager=cargo&previous-version=0.20.0&new-version=0.21.0)](https://dependabot.com/compatibility-score.html?dependency-name=rusqlite&package-manager=cargo&previous-version=0.20.0&new-version=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-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) - `@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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:27:15 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hickory-dns#1818
No description provided.