Skip to content
This repository was archived by the owner on Oct 13, 2022. It is now read-only.

Commit 05b4345

Browse files
committed
merge most recent security updates properly
2 parents 715175b + 28891ad commit 05b4345

File tree

2 files changed

+40
-40
lines changed

2 files changed

+40
-40
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# frozen_string_literal: true
22

3-
# A sample Gemfile
43
source 'https://rubygems.org'
54

6-
gem 'activesupport', '~> 6.0'
5+
gem 'activerecord', '~> 6.0', '>= 6.0.3.5'
6+
gem 'activesupport', '~> 6.0', '>= 6.0.1'
77
gem 'json', '~> 2.3'
88
gem 'puma', '~> 4.3.5'
99
gem 'rack', '~> 2.1'

Gemfile.lock

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activemodel (6.0.3.1)
5-
activesupport (= 6.0.3.1)
6-
activerecord (6.0.3.1)
7-
activemodel (= 6.0.3.1)
8-
activesupport (= 6.0.3.1)
9-
activesupport (6.0.3.1)
4+
activemodel (6.1.3)
5+
activesupport (= 6.1.3)
6+
activerecord (6.1.3)
7+
activemodel (= 6.1.3)
8+
activesupport (= 6.1.3)
9+
activesupport (6.1.3)
1010
concurrent-ruby (~> 1.0, >= 1.0.2)
11-
i18n (>= 0.7, < 2)
12-
minitest (~> 5.1)
13-
tzinfo (~> 1.1)
14-
zeitwerk (~> 2.2, >= 2.2.2)
15-
backports (3.15.0)
11+
i18n (>= 1.6, < 2)
12+
minitest (>= 5.1)
13+
tzinfo (~> 2.0)
14+
zeitwerk (~> 2.3)
1615
bond (0.5.1)
17-
coderay (1.1.2)
18-
concurrent-ruby (1.1.6)
19-
i18n (1.8.2)
16+
coderay (1.1.3)
17+
concurrent-ruby (1.1.8)
18+
i18n (1.8.9)
2019
concurrent-ruby (~> 1.0)
21-
json (2.3.0)
20+
json (2.5.1)
2221
method_source (0.9.2)
23-
minitest (5.14.1)
24-
multi_json (1.14.1)
25-
mustermann (1.0.3)
26-
nio4r (2.5.2)
22+
minitest (5.14.4)
23+
multi_json (1.15.0)
24+
mustermann (1.1.1)
25+
ruby2_keywords (~> 0.0.1)
26+
nio4r (2.5.6)
2727
pry (0.12.2)
2828
coderay (~> 1.1.0)
2929
method_source (~> 0.9.0)
30-
puma (4.3.5)
30+
puma (4.3.7)
3131
nio4r (~> 2.0)
32-
rack (2.1.4)
33-
rack-protection (2.0.7)
32+
rack (2.2.3)
33+
rack-protection (2.1.0)
3434
rack
3535
rack-test (0.6.3)
3636
rack (>= 1.0)
37-
rake (13.0.1)
37+
rake (13.0.3)
3838
ripl (0.7.1)
3939
bond (~> 0.5.1)
4040
ripl-multi_line (0.3.1)
@@ -43,40 +43,40 @@ GEM
4343
rack (>= 1.0)
4444
rack-test (~> 0.6.2)
4545
ripl (>= 0.7.0)
46+
ruby2_keywords (0.0.4)
4647
shotgun (0.9.2)
4748
rack (>= 1.0)
48-
sinatra (2.0.7)
49+
sinatra (2.1.0)
4950
mustermann (~> 1.0)
50-
rack (~> 2.0)
51-
rack-protection (= 2.0.7)
51+
rack (~> 2.2)
52+
rack-protection (= 2.1.0)
5253
tilt (~> 2.0)
53-
sinatra-activerecord (2.0.14)
54-
activerecord (>= 3.2)
54+
sinatra-activerecord (2.0.22)
55+
activerecord (>= 4.1)
5556
sinatra (>= 1.0)
56-
sinatra-contrib (2.0.7)
57-
backports (>= 2.8.2)
57+
sinatra-contrib (2.1.0)
5858
multi_json
5959
mustermann (~> 1.0)
60-
rack-protection (= 2.0.7)
61-
sinatra (= 2.0.7)
60+
rack-protection (= 2.1.0)
61+
sinatra (= 2.1.0)
6262
tilt (~> 2.0)
63-
sqlite3 (1.4.1)
64-
thread_safe (0.3.6)
63+
sqlite3 (1.4.2)
6564
tilt (2.0.10)
6665
tux (0.3.0)
6766
ripl (>= 0.3.5)
6867
ripl-multi_line (>= 0.2.4)
6968
ripl-rack (>= 0.2.0)
7069
sinatra (>= 1.2.1)
71-
tzinfo (1.2.7)
72-
thread_safe (~> 0.1)
73-
zeitwerk (2.3.0)
70+
tzinfo (2.0.4)
71+
concurrent-ruby (~> 1.0)
72+
zeitwerk (2.4.2)
7473

7574
PLATFORMS
7675
ruby
7776

7877
DEPENDENCIES
79-
activesupport (~> 6.0)
78+
activerecord (~> 6.0, >= 6.0.3.5)
79+
activesupport (~> 6.0, >= 6.0.1)
8080
json (~> 2.3)
8181
pry (~> 0.12.2)
8282
puma (~> 4.3.5)

0 commit comments

Comments
 (0)