Skip to content

Commit 6a920c6

Browse files
authored
[ruby/sinatra] Upgrade to ActiveRecord 8.0 (#9472)
1 parent bd5a0ee commit 6a920c6

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

frameworks/Ruby/sinatra/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
gem 'activerecord', '~> 7.2', require: 'active_record'
3+
gem 'activerecord', '~> 8.0', require: 'active_record'
44
gem 'json', '~> 2.8'
55
gem 'sinatra', '~> 4.0', require: 'sinatra/base'
66

frameworks/Ruby/sinatra/Gemfile.lock

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activemodel (7.2.1.1)
5-
activesupport (= 7.2.1.1)
6-
activerecord (7.2.1.1)
7-
activemodel (= 7.2.1.1)
8-
activesupport (= 7.2.1.1)
4+
activemodel (8.0.1)
5+
activesupport (= 8.0.1)
6+
activerecord (8.0.1)
7+
activemodel (= 8.0.1)
8+
activesupport (= 8.0.1)
99
timeout (>= 0.4.0)
10-
activesupport (7.2.1.1)
10+
activesupport (8.0.1)
1111
base64
12+
benchmark (>= 0.3)
1213
bigdecimal
1314
concurrent-ruby (~> 1.0, >= 1.3.1)
1415
connection_pool (>= 2.2.5)
@@ -18,8 +19,10 @@ GEM
1819
minitest (>= 5.1)
1920
securerandom (>= 0.3)
2021
tzinfo (~> 2.0, >= 2.0.5)
22+
uri (>= 0.13.1)
2123
agoo (2.15.13)
2224
base64 (0.2.0)
25+
benchmark (0.4.0)
2326
bigdecimal (3.1.8)
2427
concurrent-ruby (1.3.4)
2528
connection_pool (2.4.1)
@@ -28,53 +31,54 @@ GEM
2831
concurrent-ruby (~> 1.0)
2932
json (2.9.1)
3033
kgio (2.11.4)
31-
logger (1.6.1)
32-
minitest (5.25.1)
34+
logger (1.6.4)
35+
minitest (5.25.4)
3336
mustermann (3.0.3)
3437
ruby2_keywords (~> 0.0.1)
3538
mysql2 (0.5.6)
3639
nio4r (2.7.4)
37-
passenger (6.0.23)
40+
passenger (6.0.24)
3841
rack (>= 1.6.13)
39-
rackup
42+
rackup (>= 2.0.0)
4043
rake (>= 12.3.3)
41-
pg (1.5.8)
44+
pg (1.5.9)
4245
puma (6.5.0)
4346
nio4r (~> 2.0)
4447
rack (3.1.8)
45-
rack-protection (4.0.0)
48+
rack-protection (4.1.1)
4649
base64 (>= 0.1.0)
50+
logger (>= 1.6.0)
4751
rack (>= 3.0.0, < 4)
4852
rack-session (2.0.0)
4953
rack (>= 3.0.0)
50-
rackup (2.1.0)
54+
rackup (2.2.1)
5155
rack (>= 3)
52-
webrick (~> 1.8)
5356
raindrops (0.20.1)
5457
rake (13.2.1)
5558
ruby2_keywords (0.0.5)
56-
securerandom (0.3.1)
57-
sinatra (4.0.0)
59+
securerandom (0.4.1)
60+
sinatra (4.1.1)
61+
logger (>= 1.6.0)
5862
mustermann (~> 3.0)
5963
rack (>= 3.0.0, < 4)
60-
rack-protection (= 4.0.0)
64+
rack-protection (= 4.1.1)
6165
rack-session (>= 2.0.0, < 3)
6266
tilt (~> 2.0)
63-
tilt (2.4.0)
64-
timeout (0.4.1)
67+
tilt (2.5.0)
68+
timeout (0.4.3)
6569
tzinfo (2.0.6)
6670
concurrent-ruby (~> 1.0)
6771
unicorn (6.1.0)
6872
kgio (~> 2.6)
6973
raindrops (~> 0.7)
70-
webrick (1.8.2)
74+
uri (1.0.2)
7175

7276
PLATFORMS
7377
ruby
7478
x86_64-darwin-23
7579

7680
DEPENDENCIES
77-
activerecord (~> 7.2)
81+
activerecord (~> 8.0)
7882
agoo
7983
json (~> 2.8)
8084
mysql2 (~> 0.5)

0 commit comments

Comments
 (0)