Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency ruby to v3.2.6 #443

Merged
merged 19 commits into from
Feb 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:

AllCops:
TargetRailsVersion: 7.0
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
Exclude:
- 'db/schema.rb'
- 'config/initializers/secret_token.rb'
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.2
3.2.7
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ruby:3.1.2-alpine@sha256:05b990dbaa3a118f96e9ddbf046f388b3c4953d5ef3d18908af96f42c0e138d9
FROM ruby:3.2.7-alpine@sha256:e71144a0d36221ecf5d1fe804d4e5612b1082d8f78812086764feef4801f0df6

ARG BUILD_HASH='unknown'
ENV BUILD_HASH=$BUILD_HASH
Expand All @@ -11,9 +11,12 @@
build-base \
git \
file-dev \
jpeg-dev \
imagemagick \
postgresql-dev \
tzdata \
libffi-dev \
build-base \
&& rm -rf /var/cache/apk/*

RUN mkdir /app
Expand All @@ -25,4 +28,4 @@
RUN bundle install
ADD . /app

CMD bundle exec puma -C config/puma.rb

Check warning on line 31 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build

JSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals

JSONArgsRecommended: JSON arguments recommended for CMD to prevent unintended behavior related to OS signals More info: https://docs.docker.com/go/dockerfile/rule/json-args-recommended/
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ group :development, :test do
gem 'factory_bot_rails'
gem 'faker', '~> 3.5', '>= 3.5.1'
gem 'fuubar'
gem 'pry-byebug', require: false
gem 'pry-rails'
gem 'pry-byebug', '~> 3.10.0', require: false
gem 'pry-rails', '~> 0.3.11'
gem 'rack-mini-profiler', require: false
gem 'rb-readline', require: false
end
Expand Down
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -301,18 +301,18 @@ GEM
ast (~> 2.4.1)
pg (1.5.9)
phonelib (0.6.58)
pry (0.13.1)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
pry (0.13.1-java)
pry (0.14.2-java)
coderay (~> 1.1)
method_source (~> 1.0)
spoon (~> 0.0)
pry-byebug (3.9.0)
pry-byebug (3.10.1)
byebug (~> 11.0)
pry (~> 0.13.0)
pry-rails (0.3.9)
pry (>= 0.10.4)
pry (>= 0.13, < 0.15)
pry-rails (0.3.11)
pry (>= 0.13.0)
public_suffix (6.0.1)
puma (6.5.0)
nio4r (~> 2.0)
Expand Down Expand Up @@ -578,8 +578,8 @@ DEPENDENCIES
paranoia (~> 3.0)
pg (~> 1.5, >= 1.5.9)
phonelib
pry-byebug
pry-rails
pry-byebug (~> 3.10.0)
pry-rails (~> 0.3.11)
puma (~> 6.5)
pundit (~> 2.4)
rack-attack (~> 6.7)
Expand Down
1 change: 1 addition & 0 deletions config/locales/carrierwave.nl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ nl:
content_type_blacklist_error: "Het is niet toegestaan om %{content_type} bestanden te uploaden"
rmagick_processing_error: "Bewerking met rmagick is mislukt, misschien is het geen afbeelding? Originele foutmelding: %{e}"
mini_magick_processing_error: "Bewerking met MiniMagick is mislukt, misschien is het geen afbeelding? Originele foutmelding: %{e}"
processing_error: "Bewerking is mislukt, misschien is het geen afbeelding?"
min_size_error: "De bestandsgrootte moet groter zijn dan %{min_size}"
max_size_error: "De bestandsgrootte moet minder zijn dan %{max_size}"