Skip to content

Commit f612e82

Browse files
authored
Merge branch 'main' into fix/action_download
2 parents 3f218bc + 3b20573 commit f612e82

25 files changed

+458
-322
lines changed

Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ group :development do
7474

7575
gem "hotwire-livereload", "~> 1.3.0"
7676

77-
gem "brakeman"
78-
7977
gem "rubocop"
8078
gem "ripper-tags"
8179
gem "rubocop-shopify", require: false

Gemfile.lock

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,16 @@ GEM
121121
ast (2.4.2)
122122
awesome_print (1.9.2)
123123
aws-eventstream (1.3.0)
124-
aws-partitions (1.869.0)
125-
aws-sdk-core (3.190.0)
124+
aws-partitions (1.873.0)
125+
aws-sdk-core (3.190.1)
126126
aws-eventstream (~> 1, >= 1.3.0)
127127
aws-partitions (~> 1, >= 1.651.0)
128128
aws-sigv4 (~> 1.8)
129129
jmespath (~> 1, >= 1.6.1)
130130
aws-sdk-kms (1.75.0)
131131
aws-sdk-core (~> 3, >= 3.188.0)
132132
aws-sigv4 (~> 1.1)
133-
aws-sdk-s3 (1.141.0)
133+
aws-sdk-s3 (1.142.0)
134134
aws-sdk-core (~> 3, >= 3.189.0)
135135
aws-sdk-kms (~> 1)
136136
aws-sigv4 (~> 1.8)
@@ -151,7 +151,6 @@ GEM
151151
bindex (0.8.1)
152152
bootsnap (1.17.0)
153153
msgpack (~> 1.2)
154-
brakeman (6.1.0)
155154
builder (3.2.4)
156155
bump (0.10.0)
157156
bundler-integrity (1.0.9)
@@ -252,7 +251,7 @@ GEM
252251
activesupport (>= 3.0)
253252
nokogiri (>= 1.6)
254253
io-console (0.7.1)
255-
irb (1.10.1)
254+
irb (1.11.0)
256255
rdoc
257256
reline (>= 0.3.8)
258257
iso (0.4.0)
@@ -413,22 +412,22 @@ GEM
413412
rspec-mocks (~> 3.12)
414413
rspec-support (~> 3.12)
415414
rspec-support (3.12.1)
416-
rubocop (1.57.2)
415+
rubocop (1.59.0)
417416
json (~> 2.3)
418417
language_server-protocol (>= 3.17.0)
419418
parallel (~> 1.10)
420419
parser (>= 3.2.2.4)
421420
rainbow (>= 2.2.2, < 4.0)
422421
regexp_parser (>= 1.8, < 3.0)
423422
rexml (>= 3.2.5, < 4.0)
424-
rubocop-ast (>= 1.28.1, < 2.0)
423+
rubocop-ast (>= 1.30.0, < 2.0)
425424
ruby-progressbar (~> 1.7)
426425
unicode-display_width (>= 2.4.0, < 3.0)
427426
rubocop-ast (1.30.0)
428427
parser (>= 3.2.1.0)
429-
rubocop-performance (1.19.1)
430-
rubocop (>= 1.7.0, < 2.0)
431-
rubocop-ast (>= 0.4.0)
428+
rubocop-performance (1.20.1)
429+
rubocop (>= 1.48.1, < 2.0)
430+
rubocop-ast (>= 1.30.0, < 2.0)
432431
rubocop-shopify (2.14.0)
433432
rubocop (~> 1.51)
434433
ruby-debug-ide (0.7.3)
@@ -481,18 +480,18 @@ GEM
481480
actionpack (>= 5.2)
482481
activesupport (>= 5.2)
483482
sprockets (>= 3.0.0)
484-
standard (1.32.1)
483+
standard (1.33.0)
485484
language_server-protocol (~> 3.17.0.2)
486485
lint_roller (~> 1.0)
487-
rubocop (~> 1.57.2)
486+
rubocop (~> 1.59.0)
488487
standard-custom (~> 1.0.0)
489-
standard-performance (~> 1.2)
488+
standard-performance (~> 1.3)
490489
standard-custom (1.0.2)
491490
lint_roller (~> 1.0)
492491
rubocop (~> 1.50)
493-
standard-performance (1.2.1)
492+
standard-performance (1.3.0)
494493
lint_roller (~> 1.1)
495-
rubocop-performance (~> 1.19.1)
494+
rubocop-performance (~> 1.20.1)
496495
stringio (3.1.0)
497496
syntax_tree (6.2.0)
498497
prettier_print (>= 1.2.0)
@@ -502,7 +501,7 @@ GEM
502501
thor (1.3.0)
503502
tilt (2.3.0)
504503
timeout (0.4.1)
505-
turbo-rails (1.4.0)
504+
turbo-rails (1.5.0)
506505
actionpack (>= 6.0.0)
507506
activejob (>= 6.0.0)
508507
railties (>= 6.0.0)
@@ -558,7 +557,6 @@ DEPENDENCIES
558557
awesome_print
559558
aws-sdk-s3
560559
bootsnap (>= 1.4.2)
561-
brakeman
562560
bump
563561
bundler-integrity (~> 1.0)
564562
byebug

app/components/avo/views/resource_index_component.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ def scopes_list
163163
scopes: scopes,
164164
resource: resource,
165165
turbo_frame: turbo_frame,
166-
parent_record: parent_record
166+
parent_record: parent_record,
167+
query: query
167168
)
168169
end
169170

config/initializers/pagy.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ def pagy_locale_path(file_name)
1010
{locale: "en"},
1111
{locale: "es"},
1212
{locale: "fr"},
13+
{locale: "ja"},
1314
{locale: "nb"},
1415
{locale: "pt-BR"},
1516
{locale: "pt"},

gemfiles/rails_6.0_ruby_3.0.3.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ group :development do
5151
gem "annotate"
5252
gem "htmlbeautifier"
5353
gem "hotwire-livereload", "~> 1.3.0"
54-
gem "brakeman"
5554
gem "rubocop"
5655
gem "ripper-tags"
5756
gem "rubocop-shopify", require: false

gemfiles/rails_6.0_ruby_3.0.3.gemfile.lock

Lines changed: 42 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PATH
66
PATH
77
remote: ..
88
specs:
9-
avo (3.1.7)
9+
avo (3.2.2)
1010
actionview (>= 6.1)
1111
active_link_to
1212
activerecord (>= 6.1)
@@ -105,21 +105,21 @@ GEM
105105
thor (>= 0.14.0)
106106
ast (2.4.2)
107107
awesome_print (1.9.2)
108-
aws-eventstream (1.2.0)
109-
aws-partitions (1.689.0)
110-
aws-sdk-core (3.168.4)
111-
aws-eventstream (~> 1, >= 1.0.2)
108+
aws-eventstream (1.3.0)
109+
aws-partitions (1.873.0)
110+
aws-sdk-core (3.190.1)
111+
aws-eventstream (~> 1, >= 1.3.0)
112112
aws-partitions (~> 1, >= 1.651.0)
113-
aws-sigv4 (~> 1.5)
113+
aws-sigv4 (~> 1.8)
114114
jmespath (~> 1, >= 1.6.1)
115-
aws-sdk-kms (1.61.0)
116-
aws-sdk-core (~> 3, >= 3.165.0)
115+
aws-sdk-kms (1.75.0)
116+
aws-sdk-core (~> 3, >= 3.188.0)
117117
aws-sigv4 (~> 1.1)
118-
aws-sdk-s3 (1.117.2)
119-
aws-sdk-core (~> 3, >= 3.165.0)
118+
aws-sdk-s3 (1.142.0)
119+
aws-sdk-core (~> 3, >= 3.189.0)
120120
aws-sdk-kms (~> 1)
121-
aws-sigv4 (~> 1.4)
122-
aws-sigv4 (1.5.2)
121+
aws-sigv4 (~> 1.8)
122+
aws-sigv4 (1.8.0)
123123
aws-eventstream (~> 1, >= 1.0.2)
124124
backport (1.2.0)
125125
bcrypt (3.1.18)
@@ -134,7 +134,6 @@ GEM
134134
bindex (0.8.1)
135135
bootsnap (1.16.0)
136136
msgpack (~> 1.2)
137-
brakeman (5.4.0)
138137
builder (3.2.4)
139138
bump (0.10.0)
140139
bundler-integrity (1.0.9)
@@ -196,8 +195,8 @@ GEM
196195
rspec-core (~> 3.0)
197196
ruby-progressbar (~> 1.4)
198197
gem-release (2.2.2)
199-
globalid (1.1.0)
200-
activesupport (>= 5.0)
198+
globalid (1.2.1)
199+
activesupport (>= 6.1)
201200
groupdate (6.2.0)
202201
activesupport (>= 5.2)
203202
hashdiff (1.0.1)
@@ -238,14 +237,15 @@ GEM
238237
jmespath (1.6.2)
239238
jsbundling-rails (1.1.1)
240239
railties (>= 6.0.0)
241-
json (2.6.3)
240+
json (2.7.1)
242241
kramdown (2.4.0)
243242
rexml
244243
kramdown-parser-gfm (1.1.0)
245244
kramdown (~> 2.0)
246-
language_server-protocol (3.17.0.2)
245+
language_server-protocol (3.17.0.3)
247246
launchy (2.5.2)
248247
addressable (~> 2.8)
248+
lint_roller (1.1.0)
249249
listen (3.7.1)
250250
rb-fsevent (~> 0.10, >= 0.10.3)
251251
rb-inotify (~> 0.9, >= 0.9.10)
@@ -284,7 +284,7 @@ GEM
284284
racc (~> 1.4)
285285
orm_adapter (0.5.0)
286286
pagy (6.0.2)
287-
parallel (1.22.1)
287+
parallel (1.24.0)
288288
parser (3.2.2.4)
289289
ast (~> 2.4.1)
290290
racc
@@ -349,7 +349,7 @@ GEM
349349
redis-client (>= 0.17.0)
350350
redis-client (0.19.0)
351351
connection_pool
352-
regexp_parser (2.8.1)
352+
regexp_parser (2.8.3)
353353
responders (3.1.0)
354354
actionpack (>= 5.2)
355355
railties (>= 5.2)
@@ -374,26 +374,27 @@ GEM
374374
rspec-mocks (~> 3.12)
375375
rspec-support (~> 3.12)
376376
rspec-support (3.12.0)
377-
rubocop (1.42.0)
377+
rubocop (1.59.0)
378378
json (~> 2.3)
379+
language_server-protocol (>= 3.17.0)
379380
parallel (~> 1.10)
380-
parser (>= 3.1.2.1)
381+
parser (>= 3.2.2.4)
381382
rainbow (>= 2.2.2, < 4.0)
382383
regexp_parser (>= 1.8, < 3.0)
383384
rexml (>= 3.2.5, < 4.0)
384-
rubocop-ast (>= 1.24.1, < 2.0)
385+
rubocop-ast (>= 1.30.0, < 2.0)
385386
ruby-progressbar (~> 1.7)
386-
unicode-display_width (>= 1.4.0, < 3.0)
387-
rubocop-ast (1.24.1)
388-
parser (>= 3.1.1.0)
389-
rubocop-performance (1.15.2)
390-
rubocop (>= 1.7.0, < 2.0)
391-
rubocop-ast (>= 0.4.0)
387+
unicode-display_width (>= 2.4.0, < 3.0)
388+
rubocop-ast (1.30.0)
389+
parser (>= 3.2.1.0)
390+
rubocop-performance (1.20.1)
391+
rubocop (>= 1.48.1, < 2.0)
392+
rubocop-ast (>= 1.30.0, < 2.0)
392393
rubocop-shopify (2.11.1)
393394
rubocop (~> 1.42)
394395
ruby-debug-ide (0.7.3)
395396
rake (>= 0.8.1)
396-
ruby-progressbar (1.11.0)
397+
ruby-progressbar (1.13.0)
397398
ruby-vips (2.1.4)
398399
ffi (~> 1.12)
399400
rubyzip (2.3.2)
@@ -439,10 +440,18 @@ GEM
439440
actionpack (>= 5.2)
440441
activesupport (>= 5.2)
441442
sprockets (>= 3.0.0)
442-
standard (1.21.1)
443+
standard (1.33.0)
443444
language_server-protocol (~> 3.17.0.2)
444-
rubocop (= 1.42.0)
445-
rubocop-performance (= 1.15.2)
445+
lint_roller (~> 1.0)
446+
rubocop (~> 1.59.0)
447+
standard-custom (~> 1.0.0)
448+
standard-performance (~> 1.3)
449+
standard-custom (1.0.2)
450+
lint_roller (~> 1.0)
451+
rubocop (~> 1.50)
452+
standard-performance (1.3.0)
453+
lint_roller (~> 1.1)
454+
rubocop-performance (~> 1.20.1)
446455
syntax_tree (5.2.0)
447456
prettier_print (>= 1.2.0)
448457
terminal-table (3.0.2)
@@ -451,7 +460,7 @@ GEM
451460
thor (1.3.0)
452461
tilt (2.0.11)
453462
timeout (0.3.2)
454-
turbo-rails (1.3.3)
463+
turbo-rails (1.5.0)
455464
actionpack (>= 6.0.0)
456465
activejob (>= 6.0.0)
457466
railties (>= 6.0.0)
@@ -510,7 +519,6 @@ DEPENDENCIES
510519
awesome_print
511520
aws-sdk-s3
512521
bootsnap (>= 1.4.2)
513-
brakeman
514522
bump
515523
bundler-integrity (~> 1.0)
516524
byebug

gemfiles/rails_6.0_ruby_3.2.2.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ group :development do
5151
gem "annotate"
5252
gem "htmlbeautifier"
5353
gem "hotwire-livereload", "~> 1.3.0"
54-
gem "brakeman"
5554
gem "rubocop"
5655
gem "ripper-tags"
5756
gem "rubocop-shopify", require: false

0 commit comments

Comments
 (0)