From 6166b0d0251da450a71335b65332ef0adfa18152 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Fri, 15 May 2026 12:59:29 -0400 Subject: [PATCH] Remove the pessimistic constraint on sqlite3 in dev/test Constraint introduced in 808659bc for Rails 7.1 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 86d84b3..85a230e 100644 --- a/Gemfile +++ b/Gemfile @@ -12,7 +12,7 @@ platforms :jruby do end platforms :ruby do - gem 'sqlite3', '~> 1.4', '< 2.0' # can allow 2.0 once Rails's sqlite adapter allows it + gem 'sqlite3', '~> 1.4' end gem 'activerecord', '>= 6.1.0'