Skip to content

Commit 5980f8a

Browse files
committed
Upgrade to Rails v7.2 and sqlite3 v2.0
1 parent 5875bd2 commit 5980f8a

File tree

2 files changed

+71
-74
lines changed

2 files changed

+71
-74
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33

44
ruby file: ".ruby-version"
55

6-
gem "rails", "~> 7.1", group: [:default, :wasm] # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
6+
gem "rails", "~> 7.2", group: [:default, :wasm] # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
77

88
gem "puma", ">= 5.0" # Use the Puma web server [https://github.com/puma/puma]
9-
gem "sqlite3", "< 2", force_ruby_platform: true # Use sqlite3 as the database for Active Record [https://github.com/sparklemotion/sqlite3-ruby]
9+
gem "sqlite3", force_ruby_platform: true # Use sqlite3 as the database for Active Record [https://github.com/sparklemotion/sqlite3-ruby]
1010
gem "activerecord-enhancedsqlite3-adapter" # Enhanced SQLite3 adapter for Active Record [https://github.com/fractaledmind/activerecord-enhancedsqlite3-adapter]
1111
gem "sqlite-ulid" # A SQLite extension for generating and working with ULIDs [https://github.com/asg017/sqlite-ulid]
1212

Gemfile.lock

Lines changed: 69 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,81 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
actioncable (7.1.3.4)
5-
actionpack (= 7.1.3.4)
6-
activesupport (= 7.1.3.4)
4+
actioncable (7.2.1)
5+
actionpack (= 7.2.1)
6+
activesupport (= 7.2.1)
77
nio4r (~> 2.0)
88
websocket-driver (>= 0.6.1)
99
zeitwerk (~> 2.6)
10-
actionmailbox (7.1.3.4)
11-
actionpack (= 7.1.3.4)
12-
activejob (= 7.1.3.4)
13-
activerecord (= 7.1.3.4)
14-
activestorage (= 7.1.3.4)
15-
activesupport (= 7.1.3.4)
16-
mail (>= 2.7.1)
17-
net-imap
18-
net-pop
19-
net-smtp
20-
actionmailer (7.1.3.4)
21-
actionpack (= 7.1.3.4)
22-
actionview (= 7.1.3.4)
23-
activejob (= 7.1.3.4)
24-
activesupport (= 7.1.3.4)
25-
mail (~> 2.5, >= 2.5.4)
26-
net-imap
27-
net-pop
28-
net-smtp
10+
actionmailbox (7.2.1)
11+
actionpack (= 7.2.1)
12+
activejob (= 7.2.1)
13+
activerecord (= 7.2.1)
14+
activestorage (= 7.2.1)
15+
activesupport (= 7.2.1)
16+
mail (>= 2.8.0)
17+
actionmailer (7.2.1)
18+
actionpack (= 7.2.1)
19+
actionview (= 7.2.1)
20+
activejob (= 7.2.1)
21+
activesupport (= 7.2.1)
22+
mail (>= 2.8.0)
2923
rails-dom-testing (~> 2.2)
30-
actionpack (7.1.3.4)
31-
actionview (= 7.1.3.4)
32-
activesupport (= 7.1.3.4)
24+
actionpack (7.2.1)
25+
actionview (= 7.2.1)
26+
activesupport (= 7.2.1)
3327
nokogiri (>= 1.8.5)
3428
racc
35-
rack (>= 2.2.4)
29+
rack (>= 2.2.4, < 3.2)
3630
rack-session (>= 1.0.1)
3731
rack-test (>= 0.6.3)
3832
rails-dom-testing (~> 2.2)
3933
rails-html-sanitizer (~> 1.6)
40-
actiontext (7.1.3.4)
41-
actionpack (= 7.1.3.4)
42-
activerecord (= 7.1.3.4)
43-
activestorage (= 7.1.3.4)
44-
activesupport (= 7.1.3.4)
34+
useragent (~> 0.16)
35+
actiontext (7.2.1)
36+
actionpack (= 7.2.1)
37+
activerecord (= 7.2.1)
38+
activestorage (= 7.2.1)
39+
activesupport (= 7.2.1)
4540
globalid (>= 0.6.0)
4641
nokogiri (>= 1.8.5)
47-
actionview (7.1.3.4)
48-
activesupport (= 7.1.3.4)
42+
actionview (7.2.1)
43+
activesupport (= 7.2.1)
4944
builder (~> 3.1)
5045
erubi (~> 1.11)
5146
rails-dom-testing (~> 2.2)
5247
rails-html-sanitizer (~> 1.6)
53-
activejob (7.1.3.4)
54-
activesupport (= 7.1.3.4)
48+
activejob (7.2.1)
49+
activesupport (= 7.2.1)
5550
globalid (>= 0.3.6)
56-
activemodel (7.1.3.4)
57-
activesupport (= 7.1.3.4)
58-
activerecord (7.1.3.4)
59-
activemodel (= 7.1.3.4)
60-
activesupport (= 7.1.3.4)
51+
activemodel (7.2.1)
52+
activesupport (= 7.2.1)
53+
activerecord (7.2.1)
54+
activemodel (= 7.2.1)
55+
activesupport (= 7.2.1)
6156
timeout (>= 0.4.0)
6257
activerecord-enhancedsqlite3-adapter (0.8.0)
6358
activerecord (>= 7.1)
6459
sqlite3 (>= 1.6)
65-
activerecord-nulldb-adapter (1.0.1)
66-
activerecord (>= 5.2.0, < 7.2)
67-
activestorage (7.1.3.4)
68-
actionpack (= 7.1.3.4)
69-
activejob (= 7.1.3.4)
70-
activerecord (= 7.1.3.4)
71-
activesupport (= 7.1.3.4)
60+
activerecord-nulldb-adapter (0.5.1)
61+
activerecord (>= 5.2.0)
62+
activestorage (7.2.1)
63+
actionpack (= 7.2.1)
64+
activejob (= 7.2.1)
65+
activerecord (= 7.2.1)
66+
activesupport (= 7.2.1)
7267
marcel (~> 1.0)
73-
activesupport (7.1.3.4)
68+
activesupport (7.2.1)
7469
base64
7570
bigdecimal
76-
concurrent-ruby (~> 1.0, >= 1.0.2)
71+
concurrent-ruby (~> 1.0, >= 1.3.1)
7772
connection_pool (>= 2.2.5)
7873
drb
7974
i18n (>= 1.6, < 2)
75+
logger (>= 1.4.2)
8076
minitest (>= 5.1)
81-
mutex_m
82-
tzinfo (~> 2.0)
77+
securerandom (>= 0.3)
78+
tzinfo (~> 2.0, >= 2.0.5)
8379
addressable (2.8.7)
8480
public_suffix (>= 2.0.2, < 7.0)
8581
ast (2.4.2)
@@ -311,7 +307,6 @@ GEM
311307
turbo-rails
312308
msgpack (1.7.2)
313309
multi_json (1.15.0)
314-
mutex_m (0.2.0)
315310
net-imap (0.4.14)
316311
date
317312
net-protocol
@@ -367,20 +362,20 @@ GEM
367362
rackup (2.1.0)
368363
rack (>= 3)
369364
webrick (~> 1.8)
370-
rails (7.1.3.4)
371-
actioncable (= 7.1.3.4)
372-
actionmailbox (= 7.1.3.4)
373-
actionmailer (= 7.1.3.4)
374-
actionpack (= 7.1.3.4)
375-
actiontext (= 7.1.3.4)
376-
actionview (= 7.1.3.4)
377-
activejob (= 7.1.3.4)
378-
activemodel (= 7.1.3.4)
379-
activerecord (= 7.1.3.4)
380-
activestorage (= 7.1.3.4)
381-
activesupport (= 7.1.3.4)
365+
rails (7.2.1)
366+
actioncable (= 7.2.1)
367+
actionmailbox (= 7.2.1)
368+
actionmailer (= 7.2.1)
369+
actionpack (= 7.2.1)
370+
actiontext (= 7.2.1)
371+
actionview (= 7.2.1)
372+
activejob (= 7.2.1)
373+
activemodel (= 7.2.1)
374+
activerecord (= 7.2.1)
375+
activestorage (= 7.2.1)
376+
activesupport (= 7.2.1)
382377
bundler (>= 1.15.0)
383-
railties (= 7.1.3.4)
378+
railties (= 7.2.1)
384379
rails-dom-testing (2.2.0)
385380
activesupport (>= 5.0.0)
386381
minitest
@@ -396,10 +391,10 @@ GEM
396391
json
397392
require_all (~> 3.0)
398393
ruby-progressbar
399-
railties (7.1.3.4)
400-
actionpack (= 7.1.3.4)
401-
activesupport (= 7.1.3.4)
402-
irb
394+
railties (7.2.1)
395+
actionpack (= 7.2.1)
396+
activesupport (= 7.2.1)
397+
irb (~> 1.13)
403398
rackup (>= 1.0.0)
404399
rake (>= 12.2)
405400
thor (~> 1.0, >= 1.2.2)
@@ -464,6 +459,7 @@ GEM
464459
nokogiri (>= 1.12.0)
465460
scout_apm (5.3.8)
466461
parser
462+
securerandom (0.3.1)
467463
sexp_processor (4.17.2)
468464
simplecov (0.22.0)
469465
docile (~> 1.1)
@@ -503,7 +499,7 @@ GEM
503499
sprockets (>= 3.0.0)
504500
sqlite-ulid (0.2.1-arm64-darwin)
505501
sqlite-ulid (0.2.1-x86_64-linux)
506-
sqlite3 (1.7.3)
502+
sqlite3 (2.0.4)
507503
mini_portile2 (~> 2.8.0)
508504
standard (1.39.2)
509505
language_server-protocol (~> 3.17.0.2)
@@ -532,6 +528,7 @@ GEM
532528
tzinfo-data (1.2024.1)
533529
tzinfo (>= 1.0.0)
534530
unicode-display_width (2.5.0)
531+
useragent (0.16.10)
535532
vcr (6.2.0)
536533
vite_rails (3.0.17)
537534
railties (>= 5.1, < 8)
@@ -609,7 +606,7 @@ DEPENDENCIES
609606
propshaft
610607
puma (>= 5.0)
611608
rack-mini-profiler
612-
rails (~> 7.1)
609+
rails (~> 7.2)
613610
rails_best_practices
614611
reek
615612
rouge
@@ -623,7 +620,7 @@ DEPENDENCIES
623620
solid_cache
624621
solid_queue
625622
sqlite-ulid
626-
sqlite3 (< 2)
623+
sqlite3
627624
standard
628625
stimulus-rails
629626
turbo-rails

0 commit comments

Comments
 (0)