Skip to content

Commit 2ce8ee6

Browse files
committed
Update sqlite3 and activerecord to match versions students are using
context: https://lewagon-alumni.slack.com/archives/G02NFDT0J/p1729759683422709 cc @Eschults if this looks OK, I'd love to merge today, since students are doing these challenges right now in several batches, and it seems Kitt fails to run the tests otherwise.
1 parent 6dac11c commit 2ce8ee6

File tree

2 files changed

+25
-24
lines changed

2 files changed

+25
-24
lines changed

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ gem "rspec-rails", "~> 3.8"
1616
gem "rubocop", "~> 1.64"
1717
gem "sinatra", "~> 2.2", require: false
1818
gem "sinatra-contrib", "~> 2.2", require: false
19-
gem "sqlite3", "~> 1.4"
20-
gem "activerecord", "~> 7.0"
19+
gem "sqlite3", '~> 1.7.3'
20+
gem 'activerecord', '~> 7.1.3.2'
21+

Gemfile.lock

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
actionpack (7.1.3)
5-
actionview (= 7.1.3)
6-
activesupport (= 7.1.3)
4+
actionpack (7.1.3.4)
5+
actionview (= 7.1.3.4)
6+
activesupport (= 7.1.3.4)
77
nokogiri (>= 1.8.5)
88
racc
99
rack (>= 2.2.4)
1010
rack-session (>= 1.0.1)
1111
rack-test (>= 0.6.3)
1212
rails-dom-testing (~> 2.2)
1313
rails-html-sanitizer (~> 1.6)
14-
actionview (7.1.3)
15-
activesupport (= 7.1.3)
14+
actionview (7.1.3.4)
15+
activesupport (= 7.1.3.4)
1616
builder (~> 3.1)
1717
erubi (~> 1.11)
1818
rails-dom-testing (~> 2.2)
1919
rails-html-sanitizer (~> 1.6)
20-
activemodel (7.1.3)
21-
activesupport (= 7.1.3)
22-
activerecord (7.1.3)
23-
activemodel (= 7.1.3)
24-
activesupport (= 7.1.3)
20+
activemodel (7.1.3.4)
21+
activesupport (= 7.1.3.4)
22+
activerecord (7.1.3.4)
23+
activemodel (= 7.1.3.4)
24+
activesupport (= 7.1.3.4)
2525
timeout (>= 0.4.0)
26-
activesupport (7.1.3)
26+
activesupport (7.1.3.4)
2727
base64
2828
bigdecimal
2929
concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -93,7 +93,7 @@ GEM
9393
psych (5.1.2)
9494
stringio
9595
racc (1.7.3)
96-
rack (2.2.8)
96+
rack (2.2.10)
9797
rack-protection (2.2.4)
9898
rack
9999
rack-session (1.0.2)
@@ -110,9 +110,9 @@ GEM
110110
rails-html-sanitizer (1.6.0)
111111
loofah (~> 2.21)
112112
nokogiri (~> 1.14)
113-
railties (7.1.3)
114-
actionpack (= 7.1.3)
115-
activesupport (= 7.1.3)
113+
railties (7.1.3.4)
114+
actionpack (= 7.1.3.4)
115+
activesupport (= 7.1.3.4)
116116
irb
117117
rackup (>= 1.0.0)
118118
rake (>= 12.2)
@@ -175,19 +175,19 @@ GEM
175175
rack-protection (= 2.2.4)
176176
sinatra (= 2.2.4)
177177
tilt (~> 2.0)
178-
sqlite3 (1.7.2-arm64-darwin)
179-
sqlite3 (1.7.2-x86_64-darwin)
180-
sqlite3 (1.7.2-x86_64-linux)
178+
sqlite3 (1.7.3-arm64-darwin)
179+
sqlite3 (1.7.3-x86_64-darwin)
180+
sqlite3 (1.7.3-x86_64-linux)
181181
stringio (3.1.0)
182182
strscan (3.1.0)
183-
thor (1.3.0)
183+
thor (1.3.2)
184184
tilt (2.3.0)
185185
timeout (0.4.1)
186186
tzinfo (2.0.6)
187187
concurrent-ruby (~> 1.0)
188188
unicode-display_width (2.5.0)
189189
webrick (1.8.1)
190-
zeitwerk (2.6.12)
190+
zeitwerk (2.7.1)
191191

192192
PLATFORMS
193193
arm64-darwin-21
@@ -197,7 +197,7 @@ PLATFORMS
197197
x86_64-linux
198198

199199
DEPENDENCIES
200-
activerecord (~> 7.0)
200+
activerecord (~> 7.1.3.2)
201201
awesome_print (~> 1.8)
202202
faker (~> 3.4)
203203
nokogiri (~> 1.13)
@@ -207,7 +207,7 @@ DEPENDENCIES
207207
rubocop (~> 1.64)
208208
sinatra (~> 2.2)
209209
sinatra-contrib (~> 2.2)
210-
sqlite3 (~> 1.4)
210+
sqlite3 (~> 1.7.3)
211211

212212
RUBY VERSION
213213
ruby 3.3.5p100

0 commit comments

Comments
 (0)