Skip to content

Commit 8fc5efa

Browse files
chore(deps): update all non-major bundler dependencies (#1183)
* chore(deps): update all non-major bundler dependencies * make it so you can run publish image on a branch * run with trace * move to connection pool 3 settings * change gemfile.lock * make some changes * revert more in gem.lock * re update a couple depencies * another test * try another * Remove trace option from assets precompile command --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lodewiges <jamestreeg@gmail.com> Co-authored-by: lodewiges <131907615+lodewiges@users.noreply.github.com>
1 parent f9d03bf commit 8fc5efa

3 files changed

Lines changed: 22 additions & 25 deletions

File tree

.github/workflows/publish-image.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
if [ "$GITHUB_REF_NAME" = 'master' ]; then
3535
echo 'tag=latest' >> "$GITHUB_OUTPUT"
3636
else
37-
echo 'tag='"$GITHUB_REF_NAME" >> "$GITHUB_OUTPUT"
37+
# Sanitize branch name for Docker tag (replace / with -)
38+
SANITIZED_TAG=$(echo "$GITHUB_REF_NAME" | sed 's/\//-/g')
39+
echo 'tag='"$SANITIZED_TAG" >> "$GITHUB_OUTPUT"
3840
fi
3941
4042
if [ "$GITHUB_REF_NAME" = 'staging' ] || [ "$GITHUB_REF_NAME" = 'master' ]; then

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ gem 'jquery-rails', '~> 4.6.1'
1616
gem 'jsbundling-rails', '~> 1.3', '>= 1.3.1'
1717
gem 'kaminari', '~> 1.2.2'
1818
gem 'mollie-api-ruby', '~> 4.18.0'
19-
gem 'net-imap', '~> 0.5.12'
19+
gem 'net-imap', '~> 0.6.2'
2020
gem 'net-pop', '~> 0.1.2'
2121
gem 'net-smtp', '~> 0.5.1'
2222
gem 'omniauth', '~> 2.1.4'
@@ -52,7 +52,7 @@ group :development, :test do
5252
gem 'brakeman', '~> 7.1.1', require: false
5353
gem 'bullet', '~> 8.1'
5454
gem 'colorize', '~> 1.1.0'
55-
gem 'database_consistency', '~> 2.1.0'
55+
gem 'database_consistency', '~> 2.1.1'
5656
gem 'dotenv-rails', '~> 3.2.0'
5757
gem 'guard-livereload', '~> 2.5.2'
5858
gem 'guard-rspec', '~> 4.7.3', require: false
@@ -75,7 +75,7 @@ end
7575

7676
group :test do
7777
gem 'rails-controller-testing', '~> 1.0.5'
78-
gem 'rubocop', '~> 1.81.7', require: false
78+
gem 'rubocop', '~> 1.82.1', require: false
7979
gem 'rubocop-factory_bot', '~> 2.28.0', require: false
8080
gem 'rubocop-performance', '~> 1.26', '>= 1.26.1', require: false
8181
gem 'rubocop-rails', '~> 2.34', '>= 2.34.2', require: false

Gemfile.lock

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,16 @@ GEM
118118
coderay (1.1.3)
119119
colorize (1.1.0)
120120
concurrent-ruby (1.3.6)
121-
connection_pool (3.0.2)
121+
connection_pool (2.5.5)
122122
crass (1.0.6)
123123
cssbundling-rails (1.4.3)
124124
railties (>= 6.0.0)
125125
dartsass-rails (0.5.1)
126126
railties (>= 6.0.0)
127127
sass-embedded (~> 1.63)
128-
database_consistency (2.1.0)
128+
database_consistency (2.1.1)
129129
activerecord (>= 3.2)
130-
date (3.5.0)
130+
date (3.5.1)
131131
devise (4.9.4)
132132
bcrypt (~> 3.0)
133133
orm_adapter (~> 0.1)
@@ -231,7 +231,7 @@ GEM
231231
thor (>= 0.14, < 2.0)
232232
jsbundling-rails (1.3.1)
233233
railties (>= 6.0.0)
234-
json (2.17.0)
234+
json (2.18.0)
235235
jwt (3.1.2)
236236
base64
237237
kaminari (1.2.2)
@@ -255,7 +255,7 @@ GEM
255255
ffi-compiler (~> 1.0)
256256
rake (~> 13.0)
257257
logger (1.7.0)
258-
loofah (2.25.0)
258+
loofah (2.24.1)
259259
crass (~> 1.0.2)
260260
nokogiri (>= 1.12.0)
261261
lumberjack (1.4.2)
@@ -274,8 +274,7 @@ GEM
274274
mina (1.2.5)
275275
rake
276276
mini_mime (1.1.5)
277-
minitest (6.0.0)
278-
prism (~> 1.5)
277+
minitest (5.26.2)
279278
mollie-api-ruby (4.18.0)
280279
bigdecimal (~> 3.1, >= 3.1.8)
281280
ostruct (~> 0.6.0)
@@ -287,7 +286,7 @@ GEM
287286
nenv (0.3.0)
288287
net-http (0.6.0)
289288
uri
290-
net-imap (0.5.12)
289+
net-imap (0.6.2)
291290
date
292291
net-protocol
293292
net-pop (0.1.2)
@@ -329,9 +328,6 @@ GEM
329328
omniauth-oauth2 (1.9.0)
330329
oauth2 (>= 2.0.2, < 3)
331330
omniauth (~> 2.0)
332-
omniauth-rails_csrf_protection (2.0.1)
333-
actionpack (>= 4.2)
334-
omniauth (~> 2.0)
335331
orm_adapter (0.5.0)
336332
ostruct (0.6.3)
337333
paper_trail (17.0.0)
@@ -347,7 +343,7 @@ GEM
347343
pp (0.6.3)
348344
prettyprint
349345
prettyprint (0.2.0)
350-
prism (1.6.0)
346+
prism (1.7.0)
351347
pry (0.15.2)
352348
coderay (~> 1.1)
353349
method_source (~> 1.0)
@@ -430,7 +426,7 @@ GEM
430426
tsort
431427
redis (5.4.1)
432428
redis-client (>= 0.22.0)
433-
redis-client (0.26.1)
429+
redis-client (0.26.2)
434430
connection_pool
435431
regexp_parser (2.11.3)
436432
reline (0.6.3)
@@ -472,15 +468,15 @@ GEM
472468
rspec-mocks (~> 3.13)
473469
rspec-support (~> 3.13)
474470
rspec-support (3.13.6)
475-
rubocop (1.81.7)
471+
rubocop (1.82.1)
476472
json (~> 2.3)
477473
language_server-protocol (~> 3.17.0.2)
478474
lint_roller (~> 1.1.0)
479475
parallel (~> 1.10)
480476
parser (>= 3.3.0.2)
481477
rainbow (>= 2.2.2, < 4.0)
482478
regexp_parser (>= 2.9.3, < 3.0)
483-
rubocop-ast (>= 1.47.1, < 2.0)
479+
rubocop-ast (>= 1.48.0, < 2.0)
484480
ruby-progressbar (~> 1.7)
485481
unicode-display_width (>= 2.4.0, < 4.0)
486482
rubocop-ast (1.48.0)
@@ -570,7 +566,7 @@ GEM
570566
thor (1.4.0)
571567
timecop (0.9.10)
572568
timeliness (0.5.3)
573-
timeout (0.4.4)
569+
timeout (0.6.0)
574570
tsort (0.2.0)
575571
turbo-rails (2.0.20)
576572
actionpack (>= 7.1.0)
@@ -581,7 +577,7 @@ GEM
581577
execjs (>= 0.3.0, < 3)
582578
unicode-display_width (3.2.0)
583579
unicode-emoji (~> 4.1)
584-
unicode-emoji (4.1.0)
580+
unicode-emoji (4.2.0)
585581
uniform_notifier (1.18.0)
586582
uri (1.0.4)
587583
useragent (0.16.11)
@@ -622,7 +618,7 @@ DEPENDENCIES
622618
colorize (~> 1.1.0)
623619
cssbundling-rails (~> 1.4, >= 1.4.3)
624620
dartsass-rails (~> 0.5.1)
625-
database_consistency (~> 2.1.0)
621+
database_consistency (~> 2.1.1)
626622
devise (~> 4.9.4)
627623
devise-i18n (~> 1.15.0)
628624
dotenv-rails (~> 3.2.0)
@@ -639,13 +635,12 @@ DEPENDENCIES
639635
listen (~> 3.9.0)
640636
mina (~> 1.2.5)
641637
mollie-api-ruby (~> 4.18.0)
642-
net-imap (~> 0.5.12)
638+
net-imap (~> 0.6.2)
643639
net-pop (~> 0.1.2)
644640
net-smtp (~> 0.5.1)
645641
omniauth (~> 2.1.4)
646642
omniauth-identity (~> 3.1, >= 3.1.5)
647643
omniauth-oauth2 (~> 1.9.0)
648-
omniauth-rails_csrf_protection (~> 2.0, >= 2.0.1)
649644
paper_trail (~> 17.0.0)
650645
paranoia (~> 3.1.0)
651646
pg (~> 1.6.2)
@@ -662,7 +657,7 @@ DEPENDENCIES
662657
rest-client (~> 2.1.0)
663658
rqrcode (~> 3.1, >= 3.1.1)
664659
rspec-rails (~> 8.0.2)
665-
rubocop (~> 1.81.7)
660+
rubocop (~> 1.82.1)
666661
rubocop-factory_bot (~> 2.28.0)
667662
rubocop-performance (~> 1.26, >= 1.26.1)
668663
rubocop-rails (~> 2.34, >= 2.34.2)

0 commit comments

Comments
 (0)