[PR #1484] [MERGED] Bump rusqlite from 0.24.2 to 0.25.3 #2356

Closed
opened 2026-03-16 08:49:29 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1484
Author: @dependabot-preview[bot]
Created: 5/10/2021
Status: Merged
Merged: 5/22/2021
Merged by: @bluejekyll

Base: mainHead: dependabot/cargo/rusqlite-0.25.3


📝 Commits (2)

  • e95b69e Bump rusqlite from 0.24.2 to 0.25.3
  • 0635af6 fixup No param option to Rusqlite to use [] instead of None

📊 Changes

4 files changed (+32 additions, -20 deletions)

View changed files

📝 Cargo.lock (+21 -10)
📝 crates/server/Cargo.toml (+1 -1)
📝 crates/server/src/store/sqlite/persistence.rs (+9 -8)
📝 tests/integration-tests/Cargo.toml (+1 -1)

📄 Description

Bumps rusqlite from 0.24.2 to 0.25.3.

Release notes

Sourced from rusqlite's releases.

v0.25.3

Equivalent to v0.25.2, but without the dramatic change to the default features.

0.25.0

  • BREAKING CHANGE: Overhaul parameter API #830 / #609
  • Add ToSql implementations for u64 and usize #826 / #821
  • Implement FromSql for u64, usize and f32, and ToSql for f32 #823 / #822 / #821
  • Reduce required lifetime in create_scalar_function #825
  • Expose query progress information and introduce Batch iterator #824 / #803
  • Add #[inline] and #[cold] in far more places #834
  • Fix create_collation #839
  • Remove #[non_exhaustive] attribute on IndexConstraintOp #840 / #783
  • Document that optional() requires import of trait rusqlite::OptionalExtension #842
  • Update time to appease deps.rs #849
  • Upgrade to bindgen 0.57
  • Improve busy handler documentation #854
  • Upgrade SQLite bundled version to 3.35.4
  • Expands/cleans up documentation. Also renames (and documents) the so-far-undocumented LIBSQLITE3_FLAGS. #861
  • Add get_connection method to function context #867
  • Fix smallvec version #896
  • BREAKING CHANGE: Pass context to aggregate init and finalize #866
  • BREAKING CHANGE: Rename get_raw to get_ref_unwrap and get_raw_checked to get_ref #838
  • BREAKING CHANGE: Fix DateTime format #886 / #885 + Leniently parse rfc3339 timezones #928
Commits

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/1484 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 5/10/2021 **Status:** ✅ Merged **Merged:** 5/22/2021 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `main` ← **Head:** `dependabot/cargo/rusqlite-0.25.3` --- ### 📝 Commits (2) - [`e95b69e`](https://github.com/hickory-dns/hickory-dns/commit/e95b69e0af0b5d7334b3e4e1b9cabf2f2dafb6d3) Bump rusqlite from 0.24.2 to 0.25.3 - [`0635af6`](https://github.com/hickory-dns/hickory-dns/commit/0635af6eaf19ba9791f72e89939ea62e51dcabe7) fixup No param option to Rusqlite to use [] instead of None ### 📊 Changes **4 files changed** (+32 additions, -20 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+21 -10) 📝 `crates/server/Cargo.toml` (+1 -1) 📝 `crates/server/src/store/sqlite/persistence.rs` (+9 -8) 📝 `tests/integration-tests/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.24.2 to 0.25.3. <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>v0.25.3</h2> <p>Equivalent to <a href="https://github.com/rusqlite/rusqlite/releases/tag/v0.25.2">v0.25.2</a>, but without the dramatic change to the default features.</p> <h2>0.25.0</h2> <ul> <li>BREAKING CHANGE: Overhaul parameter API <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/830">#830</a> / <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/609">#609</a></li> <li>Add <code>ToSql</code> implementations for <code>u64</code> and <code>usize</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/826">#826</a> / <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/821">#821</a></li> <li>Implement <code>FromSql</code> for <code>u64</code>, <code>usize</code> and <code>f32</code>, and <code>ToSql</code> for <code>f32</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/823">#823</a> / <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/822">#822</a> / <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/821">#821</a></li> <li>Reduce required lifetime in <code>create_scalar_function</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/825">#825</a></li> <li>Expose query progress information and introduce <code>Batch</code> iterator <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/824">#824</a> / <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/803">#803</a></li> <li>Add <code>#[inline]</code> and <code>#[cold]</code> in far more places <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/834">#834</a></li> <li>Fix create_collation <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/839">#839</a></li> <li>Remove #[non_exhaustive] attribute on IndexConstraintOp <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/840">#840</a> / <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/783">#783</a></li> <li>Document that <code>optional()</code> requires import of trait <code>rusqlite::OptionalExtension</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/842">#842</a></li> <li>Update <code>time</code> to appease deps.rs <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/849">#849</a></li> <li>Upgrade to bindgen 0.57</li> <li>Improve busy handler documentation <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/854">#854</a></li> <li>Upgrade SQLite bundled version to 3.35.4</li> <li>Expands/cleans up documentation. Also renames (and documents) the so-far-undocumented LIBSQLITE3_FLAGS. <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/861">#861</a></li> <li>Add <code>get_connection</code> method to function context <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/867">#867</a></li> <li>Fix smallvec version <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/896">#896</a></li> <li>BREAKING CHANGE: Pass context to aggregate init and finalize <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/866">#866</a></li> <li>BREAKING CHANGE: Rename <code>get_raw</code> to <code>get_ref_unwrap</code> and <code>get_raw_checked</code> to <code>get_ref</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/838">#838</a></li> <li>BREAKING CHANGE: Fix DateTime format <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/886">#886</a> / <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/885">#885</a> + Leniently parse rfc3339 timezones <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/928">#928</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rusqlite/rusqlite/commit/e7bb33a99ca6f122b5f338efd7889a6509b3dee0"><code>e7bb33a</code></a> Bump to 0.25.3</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/fd070db601fe79ee8cb0bcab90350934091204f1"><code>fd070db</code></a> <code>bundled-full</code> should not be a default feature</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/97c81d68fc28a69e693fa8f7e4384ffc89267dda"><code>97c81d6</code></a> Prep release 0.25.2</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/cdce75328ecff0618137925cd503c88eae996a99"><code>cdce753</code></a> Fix build on some older versions of Rust</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/ca7a28b442675faf2b4dc7fb4a2095125e2d9358"><code>ca7a28b</code></a> update year in license file</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/cd40cc330b6e8e228057932a3c16923a89bd15dc"><code>cd40cc3</code></a> Rustfmt (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/956">#956</a>)</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/26f3e50f5a5f58ff7d8a42e526b3a0a41c0e2f25"><code>26f3e50</code></a> Upgrade to hashlink 0.7 (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/955">#955</a>)</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/c33d6bfad3e623e34f57ff97d32836f5715ffdb1"><code>c33d6bf</code></a> fix several typos</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/b8b1138fcf1ed29d50f5a3f9d94a9719e35146c2"><code>b8b1138</code></a> Add Statement::parameter_name</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/9ea5e2fc04183347cfdfe67cdecbbaebea39ae67"><code>9ea5e2f</code></a> Prepare release of rusqlite 0.25.1 (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/940">#940</a>)</li> <li>Additional commits viewable in <a href="https://github.com/rusqlite/rusqlite/compare/v0.24.2...v0.25.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=rusqlite&package-manager=cargo&previous-version=0.24.2&new-version=0.25.3)](https://dependabot.com/compatibility-score/?dependency-name=rusqlite&package-manager=cargo&previous-version=0.24.2&new-version=0.25.3) 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 08:49:29 +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#2356
No description provided.