[PR #21] [MERGED] build(deps): bump rusqlite from 0.29.0 to 0.36.0 #21

Closed
opened 2026-05-06 16:08:16 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/BreizhHardware/ntfy_alerts/pull/21
Author: @dependabot[bot]
Created: 6/16/2025
Status: Merged
Merged: 6/16/2025
Merged by: @BreizhHardware

Base: devHead: dependabot/cargo/dev/rusqlite-0.36.0


📝 Commits (1)

  • a92caf5 build(deps): bump rusqlite from 0.29.0 to 0.36.0

📊 Changes

2 files changed (+20 additions, -39 deletions)

View changed files

📝 Cargo.lock (+19 -38)
📝 Cargo.toml (+1 -1)

📄 Description

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps rusqlite from 0.29.0 to 0.36.0.

Release notes

Sourced from rusqlite's releases.

0.36.0

What's Changed

  • Introduce Name trait to support both &str and &CStr as name #1659
  • Use doc_auto_cfg #1683
  • Feature loadable_extension is incompatible with some other features #1686
  • Add missing wrappers for sqlite3_vtab_nochange and sqlite3_value_nochange #1688
  • Update bindings list #1689
  • Homogenize code related to hooks #1690
  • Try to increase code coverage #1610
  • Bump bundled SQLite version to 3.49.2 #1691
  • Add bindings to sqlite3_table_column_metadata #1692
  • Add bindings to sqlite3_vtab_distinct #1695
  • Fix clippy warning #1697
  • Add query_one #1699
  • Refactor one_column test method #1700

Full Changelog: https://github.com/rusqlite/rusqlite/compare/v0.35.0...v0.36.0

0.35.0

What's Changed

  • Document 'rusqlite-macros' and 'jiff' features #1663
  • access column metadata from prepared statement #1672 / #1666
  • add support for Jiff's Timestamp #1676
  • Breaking change: Check that Connection::execute has no tail #1679 / #397
  • Breaking change: Check for multiple statements in prepare #1680 / #1147

Full Changelog: https://github.com/rusqlite/rusqlite/compare/v0.34.0...v0.35.0

0.34.0

What's Changed

  • Find the system library with minimum version 3.14.0 #1628
  • Update error type for ValueRef methods #1629
  • Use decrement_strong_count directly for Array #1633
  • Dedup free_boxed_value #1635
  • Bump jiff version #1645
  • Deserialize impls #1646
  • Introduce BindIndex trait #1649
  • Use BindIndex in bind_parameters_named #1651
  • Improve flexibility of named params #1652
  • Use std::ffi instead of std::os::raw #1653
  • Bump bundled SQLite version to 3.49.1 #1654
  • update LICENSE #1655

Full Changelog: https://github.com/rusqlite/rusqlite/compare/v0.33.0...v0.34.0

0.33.0

What's Changed

  • Remove lazy_static dependency #1550
  • Add support to jiff Date / DateTime / Time #1551
  • Correcting inconsistent parameter name (:value/:val) in doctest example #1555

... (truncated)

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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/BreizhHardware/ntfy_alerts/pull/21 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 6/16/2025 **Status:** ✅ Merged **Merged:** 6/16/2025 **Merged by:** [@BreizhHardware](https://github.com/BreizhHardware) **Base:** `dev` ← **Head:** `dependabot/cargo/dev/rusqlite-0.36.0` --- ### 📝 Commits (1) - [`a92caf5`](https://github.com/BreizhHardware/ntfy_alerts/commit/a92caf5e37b49938cdd9cbe77c5ed9b29ab65974) build(deps): bump rusqlite from 0.29.0 to 0.36.0 ### 📊 Changes **2 files changed** (+20 additions, -39 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+19 -38) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.29.0 to 0.36.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.36.0</h2> <h2>What's Changed</h2> <ul> <li>Introduce Name trait to support both &amp;str and &amp;CStr as name <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1659">#1659</a></li> <li>Use doc_auto_cfg <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1683">#1683</a></li> <li>Feature <code>loadable_extension</code> is incompatible with some other features <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1686">#1686</a></li> <li>Add missing wrappers for sqlite3_vtab_nochange and sqlite3_value_nochange <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1688">#1688</a></li> <li>Update bindings list <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1689">#1689</a></li> <li>Homogenize code related to hooks <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1690">#1690</a></li> <li>Try to increase code coverage <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1610">#1610</a></li> <li>Bump bundled SQLite version to 3.49.2 <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1691">#1691</a></li> <li>Add bindings to sqlite3_table_column_metadata <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1692">#1692</a></li> <li>Add bindings to sqlite3_vtab_distinct <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1695">#1695</a></li> <li>Fix clippy warning <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1697">#1697</a></li> <li>Add query_one <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1699">#1699</a></li> <li>Refactor one_column test method <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1700">#1700</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rusqlite/rusqlite/compare/v0.35.0...v0.36.0">https://github.com/rusqlite/rusqlite/compare/v0.35.0...v0.36.0</a></p> <h2>0.35.0</h2> <h2>What's Changed</h2> <ul> <li>Document 'rusqlite-macros' and 'jiff' features <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1663">#1663</a></li> <li>access column metadata from prepared statement <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1672">#1672</a> / <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1666">#1666</a></li> <li>add support for Jiff's <code>Timestamp</code> <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1676">#1676</a></li> <li>Breaking change: Check that Connection::execute has no tail <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1679">#1679</a> / <a href="https://redirect.github.com/rusqlite/rusqlite/issues/397">#397</a></li> <li>Breaking change: Check for multiple statements in prepare <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1680">#1680</a> / <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1147">#1147</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rusqlite/rusqlite/compare/v0.34.0...v0.35.0">https://github.com/rusqlite/rusqlite/compare/v0.34.0...v0.35.0</a></p> <h2>0.34.0</h2> <h2>What's Changed</h2> <ul> <li>Find the system library with minimum version 3.14.0 <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1628">#1628</a></li> <li>Update error type for <code>ValueRef</code> methods <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1629">#1629</a></li> <li>Use decrement_strong_count directly for Array <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1633">#1633</a></li> <li>Dedup free_boxed_value <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1635">#1635</a></li> <li>Bump jiff version <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1645">#1645</a></li> <li>Deserialize impls <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1646">#1646</a></li> <li>Introduce BindIndex trait <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1649">#1649</a></li> <li>Use BindIndex in bind_parameters_named <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1651">#1651</a></li> <li>Improve flexibility of named params <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1652">#1652</a></li> <li>Use std::ffi instead of std::os::raw <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1653">#1653</a></li> <li>Bump bundled SQLite version to 3.49.1 <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1654">#1654</a></li> <li>update LICENSE <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1655">#1655</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rusqlite/rusqlite/compare/v0.33.0...v0.34.0">https://github.com/rusqlite/rusqlite/compare/v0.33.0...v0.34.0</a></p> <h2>0.33.0</h2> <h2>What's Changed</h2> <ul> <li>Remove lazy_static dependency <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1550">#1550</a></li> <li>Add support to jiff Date / DateTime / Time <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1551">#1551</a></li> <li>Correcting inconsistent parameter name (:value/:val) in doctest example <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1555">#1555</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rusqlite/rusqlite/commit/8ae94074a77a3d7021470df00ff4f8cfbf614767"><code>8ae9407</code></a> Merge pull request <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1701">#1701</a> from gwenn/0.36.0</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/194865b391cf663d92606a3d4cf251fb7f393ccb"><code>194865b</code></a> Prepare next release</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/7b51ac3d97ce03e0eb0729f09b0a576c90b26873"><code>7b51ac3</code></a> Merge pull request <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1700">#1700</a> from gwenn/one_column</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/0b2f64dd14bc62e8bb7f40cf26ac7cbe89a8632a"><code>0b2f64d</code></a> Misc</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/2002ae887c4c55abcba0fc8798dba14208fd5c77"><code>2002ae8</code></a> Refactor one_column test method</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/a6e7a90cad76290e67243ca8472c571dcb431317"><code>a6e7a90</code></a> Merge pull request <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1699">#1699</a> from gwenn/query_one</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/2958e52661f12062cf4634f4400a42015f0e0aa1"><code>2958e52</code></a> Fix clippy warning</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/ae0e2fda874c3e19d69f114e0127fefe204c3f07"><code>ae0e2fd</code></a> Add query_one</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/2adc7c18bf67617ffff61b5047ed2a781b770737"><code>2adc7c1</code></a> Merge pull request <a href="https://redirect.github.com/rusqlite/rusqlite/issues/1697">#1697</a> from gwenn/clippy</li> <li><a href="https://github.com/rusqlite/rusqlite/commit/746e6b376fb18aad2c9d4e1d41d372088881d2d7"><code>746e6b3</code></a> Fix clippy warning</li> <li>Additional commits viewable in <a href="https://github.com/rusqlite/rusqlite/compare/v0.29.0...v0.36.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.29.0&new-version=0.36.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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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>
BreizhHardware 2026-05-06 16:08:16 +02:00
Sign in to join this conversation.
No labels
pull-request
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
BreizhHardware/ntfy_alerts#21
No description provided.