Skip to content

Commit 1982738

Browse files
committed
fix: Pin sqlite3 to 1.6 in appengine rails tests for compatibility with Ruby 2.7
1 parent 706d63e commit 1982738

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

appengine/rails-cloudsql-mysql/Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ end
2424
gem "rails", "~> 7.0"
2525

2626
# Use sqlite3 as the database for Active Record
27-
gem "sqlite3", "~> 1.6"
27+
# Pin to 1.6.x for compatibility with Ruby 2.7.
28+
# This can be relaxed when we drop support for Ruby 2.7.
29+
gem "sqlite3", "~> 1.6.6"
2830
# Use Puma as the app server
2931
gem "puma", "~> 6.3"
3032
# Use SCSS for stylesheets

appengine/rails-cloudsql-mysql/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ DEPENDENCIES
335335
rspec-rails
336336
rspec_junit_formatter
337337
sass-rails (~> 6.0)
338-
sqlite3 (~> 1.6)
338+
sqlite3 (~> 1.6.6)
339339
tzinfo-data
340340
web-console (>= 4.2.0)
341341

0 commit comments

Comments
 (0)