[PR #1435] [CLOSED] Bump rusqlite from 0.24.2 to 0.25.0 #2325

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1435
Author: @dependabot-preview[bot]
Created: 4/5/2021
Status: Closed

Base: mainHead: dependabot/cargo/rusqlite-0.25.0


📝 Commits (1)

  • d30687f Bump rusqlite from 0.24.2 to 0.25.0

📊 Changes

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

View changed files

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

📄 Description

Bumps rusqlite from 0.24.2 to 0.25.0.

Release notes

Sourced from rusqlite's releases.

0.25.0

  • 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/1435 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 4/5/2021 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/cargo/rusqlite-0.25.0` --- ### 📝 Commits (1) - [`d30687f`](https://github.com/hickory-dns/hickory-dns/commit/d30687fd264bee41443eebab7e0d3c7a0abe2908) Bump rusqlite from 0.24.2 to 0.25.0 ### 📊 Changes **3 files changed** (+6 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+4 -4) 📝 `crates/server/Cargo.toml` (+1 -1) 📝 `tests/integration-tests/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.24.2 to 0.25.0. <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>0.25.0</h2> <ul> <li>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/517ef2beaefa057917a0d5fa74175d11a20e698d"><code>517ef2b</code></a> Prepare release 0.25.0 (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/930">#930</a>)</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/f6a69bede9c5301d8486b799b7a1f8ca9ea1481d"><code>f6a69be</code></a> Upgrade SQLite bundled version to 3.35.4 (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/929">#929</a>)</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/8820a5538a245aaf9b31b60ab9dbcb4c8d0c1a55"><code>8820a55</code></a> Fix smallvec version (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/896">#896</a>)</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/c4b398f468aaf9736f38356e05ef3bad4927134c"><code>c4b398f</code></a> Doctest column name reference (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/918">#918</a>)</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/ecbc0aa7672be45e06357df9e58fb9e898ab6da3"><code>ecbc0aa</code></a> Leniently parse rfc3339 timezones (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/928">#928</a>)</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/ed3bfbdf9d9e577e8d4cff937b053a0e429a4cd7"><code>ed3bfbd</code></a> Silent some clippy warnings (<a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/924">#924</a>)</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/df3252dfb8a79701550c4ad1e50ed8e53e2d9ea2"><code>df3252d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/923">#923</a> from gwenn/3.35.2</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/a1d42490aab9d7a56d0d6f317047dac1129c1c8d"><code>a1d4249</code></a> Upgrade SQLite bundled version to 3.35.2</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/04d61f7f98f3c6368d9f6c13e2bbe092e886111e"><code>04d61f7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/917">#917</a> from gwenn/3.35.0</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/a3cf04b9d6faad0a3a3c70862526a2b792b877c9"><code>a3cf04b</code></a> Upgrade SQLite bundled version to 3.35.0</li> <li>Additional commits viewable in <a href="https://github.com/rusqlite/rusqlite/compare/v0.24.2...v0.25.0">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.0)](https://dependabot.com/compatibility-score/?dependency-name=rusqlite&package-manager=cargo&previous-version=0.24.2&new-version=0.25.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 08:47:34 +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#2325
No description provided.