Skip to content

Commit 80b95c4

Browse files
committed
Gemfile: Update Rails to non-vulnerable version
Framework is not vulnerable to this security issue because it does not process image variants using ActiveStorage. Still, patch it so that it doesn't get flagged as potentially vulnerable. Ref: AP-803
1 parent ef8f948 commit 80b95c4

2 files changed

Lines changed: 63 additions & 63 deletions

File tree

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gem 'pg', '~> 1.2'
3232
gem 'prawn', '~> 2.4'
3333
gem 'puma', '~> 7.2'
3434
gem 'puma-plugin-delayed_stop', '~> 0.1.2'
35-
gem 'rails', '~> 8.1.3'
35+
gem 'rails', '~> 8.1.3', '>= 8.1.3.1'
3636
gem 'recaptcha', '~> 4.13'
3737
gem 'sassc-rails'
3838
gem 'sprockets', '~> 4.0'

Gemfile.lock

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -3,66 +3,66 @@ GEM
33
specs:
44
action_text-trix (2.1.19)
55
railties
6-
actioncable (8.1.3)
7-
actionpack (= 8.1.3)
8-
activesupport (= 8.1.3)
6+
actioncable (8.1.3.1)
7+
actionpack (= 8.1.3.1)
8+
activesupport (= 8.1.3.1)
99
nio4r (~> 2.0)
1010
websocket-driver (>= 0.6.1)
1111
zeitwerk (~> 2.6)
12-
actionmailbox (8.1.3)
13-
actionpack (= 8.1.3)
14-
activejob (= 8.1.3)
15-
activerecord (= 8.1.3)
16-
activestorage (= 8.1.3)
17-
activesupport (= 8.1.3)
12+
actionmailbox (8.1.3.1)
13+
actionpack (= 8.1.3.1)
14+
activejob (= 8.1.3.1)
15+
activerecord (= 8.1.3.1)
16+
activestorage (= 8.1.3.1)
17+
activesupport (= 8.1.3.1)
1818
mail (>= 2.8.0)
19-
actionmailer (8.1.3)
20-
actionpack (= 8.1.3)
21-
actionview (= 8.1.3)
22-
activejob (= 8.1.3)
23-
activesupport (= 8.1.3)
19+
actionmailer (8.1.3.1)
20+
actionpack (= 8.1.3.1)
21+
actionview (= 8.1.3.1)
22+
activejob (= 8.1.3.1)
23+
activesupport (= 8.1.3.1)
2424
mail (>= 2.8.0)
2525
rails-dom-testing (~> 2.2)
26-
actionpack (8.1.3)
27-
actionview (= 8.1.3)
28-
activesupport (= 8.1.3)
26+
actionpack (8.1.3.1)
27+
actionview (= 8.1.3.1)
28+
activesupport (= 8.1.3.1)
2929
nokogiri (>= 1.8.5)
3030
rack (>= 2.2.4)
3131
rack-session (>= 1.0.1)
3232
rack-test (>= 0.6.3)
3333
rails-dom-testing (~> 2.2)
3434
rails-html-sanitizer (~> 1.6)
3535
useragent (~> 0.16)
36-
actiontext (8.1.3)
36+
actiontext (8.1.3.1)
3737
action_text-trix (~> 2.1.15)
38-
actionpack (= 8.1.3)
39-
activerecord (= 8.1.3)
40-
activestorage (= 8.1.3)
41-
activesupport (= 8.1.3)
38+
actionpack (= 8.1.3.1)
39+
activerecord (= 8.1.3.1)
40+
activestorage (= 8.1.3.1)
41+
activesupport (= 8.1.3.1)
4242
globalid (>= 0.6.0)
4343
nokogiri (>= 1.8.5)
44-
actionview (8.1.3)
45-
activesupport (= 8.1.3)
44+
actionview (8.1.3.1)
45+
activesupport (= 8.1.3.1)
4646
builder (~> 3.1)
4747
erubi (~> 1.11)
4848
rails-dom-testing (~> 2.2)
4949
rails-html-sanitizer (~> 1.6)
50-
activejob (8.1.3)
51-
activesupport (= 8.1.3)
50+
activejob (8.1.3.1)
51+
activesupport (= 8.1.3.1)
5252
globalid (>= 0.3.6)
53-
activemodel (8.1.3)
54-
activesupport (= 8.1.3)
55-
activerecord (8.1.3)
56-
activemodel (= 8.1.3)
57-
activesupport (= 8.1.3)
53+
activemodel (8.1.3.1)
54+
activesupport (= 8.1.3.1)
55+
activerecord (8.1.3.1)
56+
activemodel (= 8.1.3.1)
57+
activesupport (= 8.1.3.1)
5858
timeout (>= 0.4.0)
59-
activestorage (8.1.3)
60-
actionpack (= 8.1.3)
61-
activejob (= 8.1.3)
62-
activerecord (= 8.1.3)
63-
activesupport (= 8.1.3)
59+
activestorage (8.1.3.1)
60+
actionpack (= 8.1.3.1)
61+
activejob (= 8.1.3.1)
62+
activerecord (= 8.1.3.1)
63+
activesupport (= 8.1.3.1)
6464
marcel (~> 1.0)
65-
activesupport (8.1.3)
65+
activesupport (8.1.3.1)
6666
base64
6767
bigdecimal
6868
concurrent-ruby (~> 1.0, >= 1.3.1)
@@ -145,7 +145,7 @@ GEM
145145
regexp_parser (>= 1.5, < 3.0)
146146
xpath (~> 3.2)
147147
colorize (1.1.0)
148-
concurrent-ruby (1.3.7)
148+
concurrent-ruby (1.3.8)
149149
connection_pool (3.0.2)
150150
crack (1.0.1)
151151
bigdecimal
@@ -165,7 +165,7 @@ GEM
165165
dotenv (= 2.8.1)
166166
railties (>= 3.2)
167167
drb (2.2.3)
168-
erb (6.0.4)
168+
erb (6.0.6)
169169
erubi (1.13.1)
170170
et-orbi (1.4.0)
171171
tzinfo
@@ -213,7 +213,7 @@ GEM
213213
thor (>= 0.14, < 2.0)
214214
jquery-ui-rails (8.0.0)
215215
railties (>= 3.2.16)
216-
json (2.20.0)
216+
json (2.21.1)
217217
jsonpath (0.5.8)
218218
multi_json
219219
jwt (2.10.3)
@@ -230,7 +230,7 @@ GEM
230230
activesupport (>= 4)
231231
railties (>= 4)
232232
request_store (~> 1.0)
233-
loofah (2.25.1)
233+
loofah (2.25.2)
234234
crass (~> 1.0.2)
235235
nokogiri (>= 1.12.0)
236236
mail (2.9.1)
@@ -256,7 +256,7 @@ GEM
256256
mutex_m (0.3.0)
257257
net-http (0.9.1)
258258
uri (>= 0.11.1)
259-
net-imap (0.6.4.1)
259+
net-imap (0.6.6)
260260
date
261261
net-protocol
262262
net-pop (0.1.2)
@@ -332,30 +332,30 @@ GEM
332332
rack (>= 1.3)
333333
rackup (2.3.1)
334334
rack (>= 3)
335-
rails (8.1.3)
336-
actioncable (= 8.1.3)
337-
actionmailbox (= 8.1.3)
338-
actionmailer (= 8.1.3)
339-
actionpack (= 8.1.3)
340-
actiontext (= 8.1.3)
341-
actionview (= 8.1.3)
342-
activejob (= 8.1.3)
343-
activemodel (= 8.1.3)
344-
activerecord (= 8.1.3)
345-
activestorage (= 8.1.3)
346-
activesupport (= 8.1.3)
335+
rails (8.1.3.1)
336+
actioncable (= 8.1.3.1)
337+
actionmailbox (= 8.1.3.1)
338+
actionmailer (= 8.1.3.1)
339+
actionpack (= 8.1.3.1)
340+
actiontext (= 8.1.3.1)
341+
actionview (= 8.1.3.1)
342+
activejob (= 8.1.3.1)
343+
activemodel (= 8.1.3.1)
344+
activerecord (= 8.1.3.1)
345+
activestorage (= 8.1.3.1)
346+
activesupport (= 8.1.3.1)
347347
bundler (>= 1.15.0)
348-
railties (= 8.1.3)
348+
railties (= 8.1.3.1)
349349
rails-dom-testing (2.3.0)
350350
activesupport (>= 5.0.0)
351351
minitest
352352
nokogiri (>= 1.6)
353-
rails-html-sanitizer (1.7.0)
354-
loofah (~> 2.25)
353+
rails-html-sanitizer (1.7.1)
354+
loofah (~> 2.25, >= 2.25.2)
355355
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
356-
railties (8.1.3)
357-
actionpack (= 8.1.3)
358-
activesupport (= 8.1.3)
356+
railties (8.1.3.1)
357+
actionpack (= 8.1.3.1)
358+
activesupport (= 8.1.3.1)
359359
irb (~> 1.13)
360360
rackup (>= 1.0.0)
361361
rake (>= 12.2)
@@ -367,7 +367,7 @@ GEM
367367
rb-fsevent (0.11.2)
368368
rb-inotify (0.11.1)
369369
ffi (~> 1.0)
370-
rbs (4.0.3)
370+
rbs (4.1.0)
371371
logger
372372
prism (>= 1.6.0)
373373
tsort
@@ -561,7 +561,7 @@ DEPENDENCIES
561561
prawn (~> 2.4)
562562
puma (~> 7.2)
563563
puma-plugin-delayed_stop (~> 0.1.2)
564-
rails (~> 8.1.3)
564+
rails (~> 8.1.3, >= 8.1.3.1)
565565
recaptcha (~> 4.13)
566566
roo (~> 2.8)
567567
rspec (~> 3.13)

0 commit comments

Comments
 (0)