[PR #1741] [MERGED] Bump rusqlite from 0.27.0 to 0.28.0 #2564

Closed
opened 2026-03-16 10:11:59 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1741
Author: @dependabot[bot]
Created: 7/18/2022
Status: Merged
Merged: 7/25/2022
Merged by: @djc

Base: mainHead: dependabot/cargo/rusqlite-0.28.0


📝 Commits (1)

  • 07ee394 Bump rusqlite from 0.27.0 to 0.28.0

📊 Changes

3 files changed (+16 additions, -11 deletions)

View changed files

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

📄 Description

Bumps rusqlite from 0.27.0 to 0.28.0.

Release notes

Sourced from rusqlite's releases.

0.28.0

What's Changed

  • Update bundled SQLcipher to v4.5.1 (equivalent to SQLite 3.37.2) #1131
  • Implement Params for tuples, improve documentation some. #1133
  • Force use of buildtime_bindgen under winsqlite3 for now #1135
  • Add some missing wrappers #1139
  • Upgrade SQLite bundled version to 3.39.0 #1200
  • Disable winsqlite3 on 32 bit targets #1151
  • Fix non-bundled tests against macOS system SQLite #1153
  • Expose sqlite3_changes (or sqlite3_changes64 if available) #1152
  • Improve the docs for opening the connection a bit #1155
  • Small doc grammar fix #1156
  • Add support to updatable virtual tables #1141
  • Add Error methods to get SQLite error values by #1158
  • Add Connection::release_memory method #1164
  • derive Eq for Type #1165
  • Upgrade uuid dependency #1167
  • Params for 28-length arrays #1169
  • Introduce SqlInputError with offset #1137
  • Derive Debug for Savepoint #1179
  • document winsqlite3 #1109
  • Fix typo in libsqlite flags variable #1115
  • Upgrade bindgen to version 0.60 #1196

Full Changelog: https://github.com/rusqlite/rusqlite/compare/v0.27.0...v0.28.0

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)

🔄 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/1741 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 7/18/2022 **Status:** ✅ Merged **Merged:** 7/25/2022 **Merged by:** [@djc](https://github.com/djc) **Base:** `main` ← **Head:** `dependabot/cargo/rusqlite-0.28.0` --- ### 📝 Commits (1) - [`07ee394`](https://github.com/hickory-dns/hickory-dns/commit/07ee394e919e70795690328907129a4ea4f04943) Bump rusqlite from 0.27.0 to 0.28.0 ### 📊 Changes **3 files changed** (+16 additions, -11 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+14 -9) 📝 `crates/server/Cargo.toml` (+1 -1) 📝 `tests/integration-tests/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.27.0 to 0.28.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.28.0</h2> <h2>What's Changed</h2> <ul> <li>Update bundled SQLcipher to v4.5.1 (equivalent to SQLite 3.37.2) <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1131">#1131</a></li> <li>Implement <code>Params</code> for tuples, improve documentation some. <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1133">#1133</a></li> <li>Force use of buildtime_bindgen under winsqlite3 for now <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1135">#1135</a></li> <li>Add some missing wrappers <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1139">#1139</a></li> <li>Upgrade SQLite bundled version to 3.39.0 <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1200">#1200</a></li> <li>Disable winsqlite3 on 32 bit targets <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1151">#1151</a></li> <li>Fix non-bundled tests against macOS system SQLite <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1153">#1153</a></li> <li>Expose <code>sqlite3_changes</code> (or <code>sqlite3_changes64</code> if available) <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1152">#1152</a></li> <li>Improve the docs for opening the connection a bit <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1155">#1155</a></li> <li>Small doc grammar fix <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1156">#1156</a></li> <li>Add support to updatable virtual tables <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1141">#1141</a></li> <li>Add <code>Error</code> methods to get SQLite error values by <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1158">#1158</a></li> <li>Add <code>Connection::release_memory</code> method <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1164">#1164</a></li> <li>derive <code>Eq</code> for <code>Type</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1165">#1165</a></li> <li>Upgrade uuid dependency <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1167">#1167</a></li> <li>Params for 28-length arrays <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1169">#1169</a></li> <li>Introduce SqlInputError with offset <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1137">#1137</a></li> <li>Derive <code>Debug</code> for <code>Savepoint</code> <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1179">#1179</a></li> <li>document winsqlite3 <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1109">#1109</a></li> <li>Fix typo in libsqlite flags variable <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1115">#1115</a></li> <li>Upgrade bindgen to version 0.60 <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1196">#1196</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rusqlite/rusqlite/compare/v0.27.0...v0.28.0">https://github.com/rusqlite/rusqlite/compare/v0.27.0...v0.28.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rusqlite/rusqlite/commit/26293a11f595574897e7e5a5b639d1587255c6b9"><code>26293a1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1202">#1202</a> from gwenn/0.28.0</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/153d8fbc71e85b2be0fc4c45ef956f22690712f8"><code>153d8fb</code></a> Prepare for next release</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/a12cde2211dda62d1663e9ce414f15937652d98a"><code>a12cde2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1200">#1200</a> from gwenn/3.39.0</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/efff01cd4a16b71ce000af1670e6d8e25fe662e0"><code>efff01c</code></a> Upgrade SQLite bundled version to 3.39.0</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/289a72976ea1efc67d4718b6b24db0ffaa0c4d05"><code>289a729</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1196">#1196</a> from gwenn/bindgen</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/441b03cbf99bb42a65029f662af6a81ede381302"><code>441b03c</code></a> Upgrade bindgen to version 0.60</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/d6780ece27fdd127394aaff17743054984f731ad"><code>d6780ec</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1194">#1194</a> from gwenn/clean</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/618e9a12742080a1c19959a4a5fdf85c08860c0c"><code>618e9a1</code></a> Clean code</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/cf3d9d9de8d92aabda2110fdd8ec6fb420efa99f"><code>cf3d9d9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rusqlite/rusqlite/issues/1193">#1193</a> from gwenn/clippy</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/d9b79a5f9efe4331bb07e2d7cba8b5b3ae401b37"><code>d9b79a5</code></a> Fix clippy warnings (derive_partial_eq_without_eq)</li> <li>Additional commits viewable in <a href="https://github.com/rusqlite/rusqlite/compare/v0.27.0...v0.28.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rusqlite&package-manager=cargo&previous-version=0.27.0&new-version=0.28.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 10:11:59 +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#2564
No description provided.