Skip to content

Commit 351e5e3

Browse files
Merge pull request #163 from MITLibraries/tco-128-sqlite
Revert sqlite3 to 1.7
2 parents aad435d + 16c4af2 commit 351e5e3

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ group :development, :test do
9999
gem 'dotenv-rails'
100100

101101
# Use sqlite as the database for Active Record in dev and test
102-
gem 'sqlite3'
102+
# This needs to be 1.7 until we figure out how to avoid the problem of forked processes that we ran into with 2.x
103+
gem 'sqlite3', '~> 1.7'
103104
end
104105

105106
group :development do

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -426,10 +426,10 @@ GEM
426426
actionpack (>= 6.1)
427427
activesupport (>= 6.1)
428428
sprockets (>= 3.0.0)
429-
sqlite3 (2.4.1-aarch64-linux-gnu)
430-
sqlite3 (2.4.1-arm64-darwin)
431-
sqlite3 (2.4.1-x86_64-darwin)
432-
sqlite3 (2.4.1-x86_64-linux-gnu)
429+
sqlite3 (1.7.3-aarch64-linux)
430+
sqlite3 (1.7.3-arm64-darwin)
431+
sqlite3 (1.7.3-x86_64-darwin)
432+
sqlite3 (1.7.3-x86_64-linux)
433433
statsd-ruby (1.5.0)
434434
stimulus-rails (1.3.4)
435435
railties (>= 6.0.0)
@@ -527,7 +527,7 @@ DEPENDENCIES
527527
simplecov
528528
simplecov-lcov
529529
sprockets-rails
530-
sqlite3
530+
sqlite3 (~> 1.7)
531531
stimulus-rails
532532
stringex
533533
turbo-rails

0 commit comments

Comments
 (0)