From 963545877e90f137ffebe4396f86d2e189c50ddc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 16:51:41 +0000 Subject: [PATCH] Update sqlite3 requirement from ~> 1.7 to ~> 2.5 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.5.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..51f41756 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.5" else - gem 'sqlite3', "~> 2.0" + gem 'sqlite3', "~> 2.5" end end