Skip to content

Commit deeab93

Browse files
authored
fix(security): patch possible ReDoS vulnerabilities (#693)
1 parent 95ec30a commit deeab93

File tree

3 files changed

+58
-58
lines changed

3 files changed

+58
-58
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ group :test do
2323
gem 'simplecov', '~> 0.17.0', require: false
2424
end
2525

26-
gem 'rails', '6.1.7.8'
26+
gem 'rails', '6.1.7.9'
2727
gem 'forestadmin-jsonapi-serializers'
2828
gem 'rack-cors'
2929
gem 'arel-helpers', '2.14.0'

Gemfile.lock

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -14,66 +14,66 @@ PATH
1414
jwt
1515
openid_connect (= 1.4.2)
1616
rack-cors
17-
rails (>= 4.0)
17+
rails (>= 6.1.7.9)
1818
useragent
1919

2020
GEM
2121
remote: https://rubygems.org/
2222
specs:
23-
actioncable (6.1.7.8)
24-
actionpack (= 6.1.7.8)
25-
activesupport (= 6.1.7.8)
23+
actioncable (6.1.7.9)
24+
actionpack (= 6.1.7.9)
25+
activesupport (= 6.1.7.9)
2626
nio4r (~> 2.0)
2727
websocket-driver (>= 0.6.1)
28-
actionmailbox (6.1.7.8)
29-
actionpack (= 6.1.7.8)
30-
activejob (= 6.1.7.8)
31-
activerecord (= 6.1.7.8)
32-
activestorage (= 6.1.7.8)
33-
activesupport (= 6.1.7.8)
28+
actionmailbox (6.1.7.9)
29+
actionpack (= 6.1.7.9)
30+
activejob (= 6.1.7.9)
31+
activerecord (= 6.1.7.9)
32+
activestorage (= 6.1.7.9)
33+
activesupport (= 6.1.7.9)
3434
mail (>= 2.7.1)
35-
actionmailer (6.1.7.8)
36-
actionpack (= 6.1.7.8)
37-
actionview (= 6.1.7.8)
38-
activejob (= 6.1.7.8)
39-
activesupport (= 6.1.7.8)
35+
actionmailer (6.1.7.9)
36+
actionpack (= 6.1.7.9)
37+
actionview (= 6.1.7.9)
38+
activejob (= 6.1.7.9)
39+
activesupport (= 6.1.7.9)
4040
mail (~> 2.5, >= 2.5.4)
4141
rails-dom-testing (~> 2.0)
42-
actionpack (6.1.7.8)
43-
actionview (= 6.1.7.8)
44-
activesupport (= 6.1.7.8)
42+
actionpack (6.1.7.9)
43+
actionview (= 6.1.7.9)
44+
activesupport (= 6.1.7.9)
4545
rack (~> 2.0, >= 2.0.9)
4646
rack-test (>= 0.6.3)
4747
rails-dom-testing (~> 2.0)
4848
rails-html-sanitizer (~> 1.0, >= 1.2.0)
49-
actiontext (6.1.7.8)
50-
actionpack (= 6.1.7.8)
51-
activerecord (= 6.1.7.8)
52-
activestorage (= 6.1.7.8)
53-
activesupport (= 6.1.7.8)
49+
actiontext (6.1.7.9)
50+
actionpack (= 6.1.7.9)
51+
activerecord (= 6.1.7.9)
52+
activestorage (= 6.1.7.9)
53+
activesupport (= 6.1.7.9)
5454
nokogiri (>= 1.8.5)
55-
actionview (6.1.7.8)
56-
activesupport (= 6.1.7.8)
55+
actionview (6.1.7.9)
56+
activesupport (= 6.1.7.9)
5757
builder (~> 3.1)
5858
erubi (~> 1.4)
5959
rails-dom-testing (~> 2.0)
6060
rails-html-sanitizer (~> 1.1, >= 1.2.0)
61-
activejob (6.1.7.8)
62-
activesupport (= 6.1.7.8)
61+
activejob (6.1.7.9)
62+
activesupport (= 6.1.7.9)
6363
globalid (>= 0.3.6)
64-
activemodel (6.1.7.8)
65-
activesupport (= 6.1.7.8)
66-
activerecord (6.1.7.8)
67-
activemodel (= 6.1.7.8)
68-
activesupport (= 6.1.7.8)
69-
activestorage (6.1.7.8)
70-
actionpack (= 6.1.7.8)
71-
activejob (= 6.1.7.8)
72-
activerecord (= 6.1.7.8)
73-
activesupport (= 6.1.7.8)
64+
activemodel (6.1.7.9)
65+
activesupport (= 6.1.7.9)
66+
activerecord (6.1.7.9)
67+
activemodel (= 6.1.7.9)
68+
activesupport (= 6.1.7.9)
69+
activestorage (6.1.7.9)
70+
actionpack (= 6.1.7.9)
71+
activejob (= 6.1.7.9)
72+
activerecord (= 6.1.7.9)
73+
activesupport (= 6.1.7.9)
7474
marcel (~> 1.0)
7575
mini_mime (>= 1.1.0)
76-
activesupport (6.1.7.8)
76+
activesupport (6.1.7.9)
7777
concurrent-ruby (~> 1.0, >= 1.0.2)
7878
i18n (>= 1.6, < 2)
7979
minitest (>= 5.1)
@@ -176,29 +176,29 @@ GEM
176176
rack (>= 2.1.0)
177177
rack-test (2.0.2)
178178
rack (>= 1.3)
179-
rails (6.1.7.8)
180-
actioncable (= 6.1.7.8)
181-
actionmailbox (= 6.1.7.8)
182-
actionmailer (= 6.1.7.8)
183-
actionpack (= 6.1.7.8)
184-
actiontext (= 6.1.7.8)
185-
actionview (= 6.1.7.8)
186-
activejob (= 6.1.7.8)
187-
activemodel (= 6.1.7.8)
188-
activerecord (= 6.1.7.8)
189-
activestorage (= 6.1.7.8)
190-
activesupport (= 6.1.7.8)
179+
rails (6.1.7.9)
180+
actioncable (= 6.1.7.9)
181+
actionmailbox (= 6.1.7.9)
182+
actionmailer (= 6.1.7.9)
183+
actionpack (= 6.1.7.9)
184+
actiontext (= 6.1.7.9)
185+
actionview (= 6.1.7.9)
186+
activejob (= 6.1.7.9)
187+
activemodel (= 6.1.7.9)
188+
activerecord (= 6.1.7.9)
189+
activestorage (= 6.1.7.9)
190+
activesupport (= 6.1.7.9)
191191
bundler (>= 1.15.0)
192-
railties (= 6.1.7.8)
192+
railties (= 6.1.7.9)
193193
sprockets-rails (>= 2.0.0)
194194
rails-dom-testing (2.0.3)
195195
activesupport (>= 4.2.0)
196196
nokogiri (>= 1.6)
197197
rails-html-sanitizer (1.4.4)
198198
loofah (~> 2.19, >= 2.19.1)
199-
railties (6.1.7.8)
200-
actionpack (= 6.1.7.8)
201-
activesupport (= 6.1.7.8)
199+
railties (6.1.7.9)
200+
actionpack (= 6.1.7.9)
201+
activesupport (= 6.1.7.9)
202202
method_source
203203
rake (>= 12.2)
204204
thor (~> 1.0)
@@ -228,7 +228,7 @@ GEM
228228
sprockets (4.2.1)
229229
concurrent-ruby (~> 1.0)
230230
rack (>= 2.2.4, < 4)
231-
sprockets-rails (3.5.1)
231+
sprockets-rails (3.5.2)
232232
actionpack (>= 6.1)
233233
activesupport (>= 6.1)
234234
sprockets (>= 3.0.0)
@@ -277,7 +277,7 @@ DEPENDENCIES
277277
jwt
278278
openid_connect (= 1.4.2)
279279
rack-cors
280-
rails (= 6.1.7.8)
280+
rails (= 6.1.7.9)
281281
rake
282282
rspec-rails
283283
simplecov (~> 0.17.0)

forest_liana.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.rdoc"]
1818
s.test_files = Dir["test/**/*", "spec/**/*"]
1919

20-
s.add_runtime_dependency "rails", ">= 4.0"
20+
s.add_runtime_dependency "rails", ">= 6.1.7.9"
2121
s.add_runtime_dependency "forestadmin-jsonapi-serializers", ">= 0.14.0"
2222
s.add_runtime_dependency "jwt"
2323
s.add_runtime_dependency "rack-cors"

0 commit comments

Comments
 (0)