From 1d89f8ff75322b3b0c7048d7fa7e8fca66691240 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Feb 2025 16:42:07 +0000 Subject: [PATCH] Update sqlite3 requirement from ~> 1.7 to ~> 2.6 Updates the requirements on [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) to permit the latest version. - [Release notes](https://github.com/sparklemotion/sqlite3-ruby/releases) - [Changelog](https://github.com/sparklemotion/sqlite3-ruby/blob/main/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/sqlite3-ruby/compare/v1.7.0...v2.6.0) --- updated-dependencies: - dependency-name: sqlite3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 30cfa727..59424187 100644 --- a/Gemfile +++ b/Gemfile @@ -19,9 +19,9 @@ when 'postgresql' gem 'pg' else if rails_version <= "7.2" - gem 'sqlite3', "~> 1.7" + gem 'sqlite3', "~> 2.6" else - gem 'sqlite3', "~> 2.0" + gem 'sqlite3', "~> 2.6" end end