Skip to content

Commit 03b571f

Browse files
committed
add ruby 3.4 to build matrix
refs AE-1787
1 parent 1d7a0ad commit 03b571f

File tree

4 files changed

+20
-22
lines changed

4 files changed

+20
-22
lines changed

.github/workflows/continuous_integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
ruby: ['3.1', '3.2', '3.3']
23+
ruby: ['3.1', '3.2', '3.3', '3.4']
2424
lockfile: ['activerecord-7.0', 'Gemfile.lock']
2525

2626
services:

Gemfile.activerecord-7.0.lock

+17-21
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@ PATH
1313
GEM
1414
remote: https://rubygems.org/
1515
specs:
16-
actionpack (7.0.8)
17-
actionview (= 7.0.8)
18-
activesupport (= 7.0.8)
16+
actionpack (7.0.8.7)
17+
actionview (= 7.0.8.7)
18+
activesupport (= 7.0.8.7)
1919
rack (~> 2.0, >= 2.2.4)
2020
rack-test (>= 0.6.3)
2121
rails-dom-testing (~> 2.0)
2222
rails-html-sanitizer (~> 1.0, >= 1.2.0)
23-
actionview (7.0.8)
24-
activesupport (= 7.0.8)
23+
actionview (7.0.8.7)
24+
activesupport (= 7.0.8.7)
2525
builder (~> 3.1)
2626
erubi (~> 1.4)
2727
rails-dom-testing (~> 2.0)
2828
rails-html-sanitizer (~> 1.1, >= 1.2.0)
29-
activemodel (7.0.8)
30-
activesupport (= 7.0.8)
31-
activerecord (7.0.8)
32-
activemodel (= 7.0.8)
33-
activesupport (= 7.0.8)
29+
activemodel (7.0.8.7)
30+
activesupport (= 7.0.8.7)
31+
activerecord (7.0.8.7)
32+
activemodel (= 7.0.8.7)
33+
activesupport (= 7.0.8.7)
3434
activerecord-pg-extensions (0.6.0)
3535
activerecord (>= 7.0, < 8.1)
3636
railties (>= 7.0, < 8.1)
37-
activesupport (7.0.8)
37+
activesupport (7.0.8.7)
3838
concurrent-ruby (~> 1.0, >= 1.0.2)
3939
i18n (>= 1.6, < 2)
4040
minitest (>= 5.1)
@@ -96,21 +96,16 @@ GEM
9696
loofah (2.24.0)
9797
crass (~> 1.0.2)
9898
nokogiri (>= 1.12.0)
99-
method_source (1.0.0)
99+
method_source (1.1.0)
100100
minitest (5.25.4)
101101
multi_json (1.15.0)
102102
mustermann (3.0.3)
103103
ruby2_keywords (~> 0.0.1)
104+
mutex_m (0.3.0)
104105
net-http (0.6.0)
105106
uri
106107
nokogiri (1.18.3-aarch64-linux-gnu)
107108
racc (~> 1.4)
108-
nokogiri (1.18.3-arm64-darwin)
109-
racc (~> 1.4)
110-
nokogiri (1.18.3-x86_64-darwin)
111-
racc (~> 1.4)
112-
nokogiri (1.18.3-x86_64-linux-gnu)
113-
racc (~> 1.4)
114109
parallel (1.26.3)
115110
parser (3.3.7.1)
116111
ast (~> 2.4.1)
@@ -138,9 +133,9 @@ GEM
138133
rails-html-sanitizer (1.6.2)
139134
loofah (~> 2.21)
140135
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)
141-
railties (7.0.8)
142-
actionpack (= 7.0.8)
143-
activesupport (= 7.0.8)
136+
railties (7.0.8.7)
137+
actionpack (= 7.0.8.7)
138+
activesupport (= 7.0.8.7)
144139
method_source
145140
rake (>= 12.2)
146141
thor (~> 1.0)
@@ -245,6 +240,7 @@ DEPENDENCIES
245240
debug
246241
diplomat (~> 2.6.3)
247242
inst-jobs!
243+
mutex_m
248244
pg
249245
rack-test
250246
railties (~> 7.0.0)

Gemfile.lock

+1
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ DEPENDENCIES
270270
debug
271271
diplomat (~> 2.6.3)
272272
inst-jobs!
273+
mutex_m
273274
pg
274275
rack-test
275276
railties (~> 7.1.0)

inst-jobs.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Gem::Specification.new do |s|
3535
s.add_development_dependency "database_cleaner-active_record", "~> 2.0"
3636
s.add_development_dependency "debug"
3737
s.add_development_dependency "diplomat", "~> 2.6.3"
38+
s.add_development_dependency "mutex_m"
3839
s.add_development_dependency "pg"
3940
s.add_development_dependency "rack-test"
4041
s.add_development_dependency "rake"

0 commit comments

Comments
 (0)