Skip to content

Commit 2cb4604

Browse files
Update sqlite3 requirement from ~> 1.7.0 to ~> 2.0.2 (#543)
Updates the requirements on [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sparklemotion/sqlite3-ruby/releases">sqlite3's releases</a>.</em></p> <blockquote> <h2>2.0.2 / 2024-05-23</h2> <h3>Dependencies</h3> <ul> <li>Vendored sqlite is updated to <a href="https://sqlite.org/releaselog/3_46_0.html">v3.46.0</a> <a href="https://github.com/flavorjones"><code>@​flavorjones</code></a></li> </ul> <hr /> <p>sha256 checksums:</p> <pre><code>64296bb750efa19c4249136c2289799a4ac044116b7cc095784dc56358964dc1 sqlite3-2.0.2-aarch64-linux-gnu.gem cc62889120bb62c98b513fc2b5fc91da944ed7e139efcc4a85fe1d03258462e3 sqlite3-2.0.2-aarch64-linux-musl.gem 29f74fb1af530ea4d1826efa8cb369ea11e476fd885843bceb191ef000c62695 sqlite3-2.0.2-arm-linux-gnu.gem bbacba2099fe6084b073d4d4e23e54823345a8d2e98800380036fe7ae3323092 sqlite3-2.0.2-arm-linux-musl.gem 184e28292d46feea9132cd936bfe01d47a08a6d7839bc4c5eb3f09b9bed2e770 sqlite3-2.0.2-arm64-darwin.gem c8144a1f4e2eea742fb4a4fdc9d0ba674c4e787ebb582671b8b69739f9fed191 sqlite3-2.0.2-x64-mingw-ucrt.gem 1c39e02dbb8099215e74a816d6d375136cc9851cf6833248b9cd888e022d627e sqlite3-2.0.2-x64-mingw32.gem 1b92d4b4e54ba0245bc5d16415891e697766d62eb188fc173356e03f03881d78 sqlite3-2.0.2-x86-linux-gnu.gem b256dbdb7117d60a0171df875fc2e07d001f03699bf12a196bf6f415b068643d sqlite3-2.0.2-x86-linux-musl.gem 390c6284f89774cb228fb180b75ac54e5009b0aa24c72f18ad07465635029ea8 sqlite3-2.0.2-x86_64-darwin.gem 15dbf6f47755acb063c5b71a2dd6c65ba582eab3e0d9d4e95cde737120333efb sqlite3-2.0.2-x86_64-linux-gnu.gem 5b7867dee7401c80db616828c31e5e20963c1dd7d4682757c9cc5aaba627b36c sqlite3-2.0.2-x86_64-linux-musl.gem 326e53ffb89d050eb00274945078ff7af9026594a7031874af4e9f172cf6154d sqlite3-2.0.2.gem </code></pre> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sparklemotion/sqlite3-ruby/blob/main/CHANGELOG.md">sqlite3's changelog</a>.</em></p> <blockquote> <h2>2.0.2 / 2024-05-23</h2> <h3>Dependencies</h3> <ul> <li>Vendored sqlite is updated to <a href="https://sqlite.org/releaselog/3_46_0.html">v3.46.0</a> <a href="https://github.com/flavorjones"><code>@​flavorjones</code></a></li> </ul> <h2>2.0.1 / 2024-04-20</h2> <h3>Fixed</h3> <ul> <li>Raise <code>ArgumentError</code> if <code>Database#execute</code>, <code>#execute_batch</code>, or <code>#query</code> are passed multiple bind parameters that are not in an Array. In v2.0.0 these methods would silently swallow additional arguments, and this change makes the failure explicit. See the CHANGELOG notes for v2.0.0 for examples on how to update your code. <a href="https://redirect.github.com/sparklemotion/sqlite3-ruby/issues/527">#527</a> <a href="https://github.com/flavorjones"><code>@​flavorjones</code></a></li> <li>Fixed a regression in v2.0.0 that caused <code>Database#execute_batch</code> to raise an encoding exception when passed some non-ascii strings. As a result of this fix, <code>Database#prepare</code> now ensures the &quot;remainder&quot; string will always be encoded as UTF-8. <a href="https://redirect.github.com/sparklemotion/sqlite3-ruby/issues/524">#524</a> <a href="https://github.com/flavorjones"><code>@​flavorjones</code></a></li> </ul> <h2>2.0.0 / 2024-04-17</h2> <p>This is a major release which contains some breaking changes, primarily the removal of long-deprecated functionality. Before upgrading, please make sure to address deprecation warnings emitted from your application using sqlite3-ruby v1.7.x.</p> <h3>Ruby</h3> <ul> <li>This release drops support for Ruby 2.7. <a href="https://redirect.github.com/sparklemotion/sqlite3-ruby/issues/453">#453</a> <a href="https://github.com/flavorjones"><code>@​flavorjones</code></a></li> </ul> <h3>Packaging</h3> <p>Native (precompiled) gems are now available for Linux Musl. <a href="https://redirect.github.com/sparklemotion/sqlite3-ruby/issues/442">#442</a> <a href="https://github.com/flavorjones"><code>@​flavorjones</code></a></p> <p>Here are the platforms for which native gems are shipped:</p> <ul> <li><code>aarch64-linux-gnu</code> (requires: glibc &gt;= 2.29)</li> <li><code>aarch64-linux-musl</code></li> <li><code>arm-linux-gnu</code> (requires: glibc &gt;= 2.29)</li> <li><code>arm-linux-musl</code></li> <li><code>arm64-darwin</code></li> <li><code>x64-mingw32</code> / <code>x64-mingw-ucrt</code></li> <li><code>x86-linux-gnu</code> (requires: glibc &gt;= 2.17)</li> <li><code>x86-linux-musl</code></li> <li><code>x86_64-darwin</code></li> <li><code>x86_64-linux-gnu</code> (requires: glibc &gt;= 2.17)</li> <li><code>x86_64-linux-musl</code></li> </ul> <p>⚠ Ruby 3.0 linux users must use Rubygems &gt;= 3.3.22 in order to use these gems.</p> <p>⚠ Musl linux users should update to Bundler &gt;= 2.5.6 to avoid <a href="https://redirect.github.com/rubygems/rubygems/issues/7432">rubygems/rubygems#7432</a></p> <p>See <a href="https://github.com/sparklemotion/sqlite3-ruby/blob/main/INSTALLATION.md">the INSTALLATION doc</a> for more information.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/eaf8f1ea1c4b01d424876cde1d6653d210153f7d"><code>eaf8f1e</code></a> version bump to v2.0.2</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/9d3adc68bb6a6683ac352ffb93731add6b5763a1"><code>9d3adc6</code></a> Merge pull request <a href="https://redirect.github.com/sparklemotion/sqlite3-ruby/issues/537">#537</a> from sparklemotion/flavorjones-fix-github-actions-bre...</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/aae90b9e679adbe4d3a1c8a34cf7edee93a43cab"><code>aae90b9</code></a> ci: macos images already have sqlite and pkg-config installed</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/c80fb2779ab526543db324d955ec242b31f5d868"><code>c80fb27</code></a> Merge pull request <a href="https://redirect.github.com/sparklemotion/sqlite3-ruby/issues/536">#536</a> from sparklemotion/flavorjones-dep-sqlite-3.46.0</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/58cb3391b3e4c2af6ca764a7fe8505919e158f8e"><code>58cb339</code></a> dep: update vendored sqlite3 to 3.46.0</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/478e4169ee0567bb02baef5f29bbc4d547bfffa8"><code>478e416</code></a> Merge pull request <a href="https://redirect.github.com/sparklemotion/sqlite3-ruby/issues/535">#535</a> from sparklemotion/dependabot/bundler/minitest-5.23.0</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/dc78e24428b95560a4b987f45de845e5c874c217"><code>dc78e24</code></a> build(deps-dev): update minitest requirement from 5.22.3 to 5.23.0</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/0870486818be39f02c61ed6d0cc0bb26328127d7"><code>0870486</code></a> Merge pull request <a href="https://redirect.github.com/sparklemotion/sqlite3-ruby/issues/534">#534</a> from sparklemotion/dependabot/bundler/ruby_memcheck-3...</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/b442e65a6556fc68662bcdb73d40ec8bfa8040f4"><code>b442e65</code></a> build(deps-dev): update ruby_memcheck requirement from 2.3.0 to 3.0.0</li> <li><a href="https://github.com/sparklemotion/sqlite3-ruby/commit/096088b9023477fa85467f1cfd06b591121d5b1f"><code>096088b</code></a> doc: mention that pkgconf is a prereq to source builds</li> <li>Additional commits viewable in <a href="https://github.com/sparklemotion/sqlite3-ruby/compare/v1.7.0...v2.0.2">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR 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> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3924e3c commit 2cb4604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ group :development, :test do
2424
gem "rspec-github", "~> 3.0.0"
2525
gem "rspec-its", "~> 2.0"
2626
gem "rspec-rails", "~> 8.0"
27-
gem "sqlite3", "~> 2.5.0"
27+
gem "sqlite3", "~> 2.7.3"
2828
gem "test-unit", "~> 3.3"
2929
gem "timecop", "~> 0.9.1"
3030
end

0 commit comments

Comments
 (0)