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): bump active_storage_validations from 1.1.4 to 2.0.2 #1428

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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 Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ruby "3.3.4"
gem "aasm", "~> 5.5"
gem "actionmailer-html2text", "~> 0.2.0"
gem "active_model_validates_intersection_of", "~> 3.0"
gem "active_storage_validations", "~> 1.1"
gem "active_storage_validations", "~> 2.0"
gem "after_commit_everywhere", "~> 1.3"
gem "aws-sdk-s3", "~> 1.143", require: false
gem "bootsnap", "~> 1.18", require: false
Expand Down
34 changes: 18 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@ GEM
rails-html-sanitizer (~> 1.6)
active_model_validates_intersection_of (3.0.1)
activemodel (>= 5.0.0)
active_storage_validations (1.1.4)
activejob (>= 5.2.0)
activemodel (>= 5.2.0)
activestorage (>= 5.2.0)
activesupport (>= 5.2.0)
active_storage_validations (2.0.2)
activejob (>= 6.1.4)
activemodel (>= 6.1.4)
activestorage (>= 6.1.4)
activesupport (>= 6.1.4)
marcel (>= 1.0.3)
activejob (7.1.5.1)
activesupport (= 7.1.5.1)
globalid (>= 0.3.6)
Expand Down Expand Up @@ -179,7 +180,7 @@ GEM
view_component (~> 2)
dumb_delegator (1.0.0)
e2mmap (0.1.0)
erubi (1.13.0)
erubi (1.13.1)
erubis (2.7.0)
et-orbi (1.2.11)
tzinfo
Expand Down Expand Up @@ -249,7 +250,7 @@ GEM
launchy (2.5.2)
addressable (~> 2.8)
logger (1.6.5)
loofah (2.23.1)
loofah (2.24.0)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
mail (2.8.1)
Expand Down Expand Up @@ -277,12 +278,12 @@ GEM
net-smtp (0.5.0)
net-protocol
nio4r (2.7.3)
nokogiri (1.17.1)
nokogiri (1.18.2)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.17.1-x86_64-darwin)
nokogiri (1.18.2-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.17.1-x86_64-linux)
nokogiri (1.18.2-x86_64-linux-gnu)
racc (~> 1.4)
orm_adapter (0.5.0)
pagy (6.5.0)
Expand Down Expand Up @@ -311,12 +312,13 @@ GEM
activesupport (>= 3.0.0)
raabro (1.4.0)
racc (1.8.1)
rack (3.1.8)
rack (3.1.9)
rack-proxy (0.7.6)
rack
rack-session (2.0.0)
rack-session (2.1.0)
base64 (>= 0.1.0)
rack (>= 3.0.0)
rack-test (2.1.0)
rack-test (2.2.0)
rack (>= 1.3)
rackup (2.1.0)
rack (>= 3)
Expand Down Expand Up @@ -344,7 +346,7 @@ GEM
activesupport (>= 4.2)
choice (~> 0.2.0)
ruby-graphviz (~> 1.2)
rails-html-sanitizer (1.6.1)
rails-html-sanitizer (1.6.2)
loofah (~> 2.21)
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)
railties (7.1.5.1)
Expand Down Expand Up @@ -458,7 +460,7 @@ GEM
thor (1.3.1)
thread_safe (0.3.6)
tilt (2.3.0)
timeout (0.4.2)
timeout (0.4.3)
ttfunk (1.8.0)
bigdecimal (~> 3.1)
turbo-rails (1.4.0)
Expand Down Expand Up @@ -516,7 +518,7 @@ DEPENDENCIES
aasm-diagram (~> 0.1)
actionmailer-html2text (~> 0.2.0)
active_model_validates_intersection_of (~> 3.0)
active_storage_validations (~> 1.1)
active_storage_validations (~> 2.0)
after_commit_everywhere (~> 1.3)
aws-sdk-s3 (~> 1.143)
axe-core-capybara (~> 4.9)
Expand Down
2 changes: 1 addition & 1 deletion app/models/recensement_wizard/step4.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Step4 < Base

validates(
:photos,
content_type: %w[image/jpg image/jpeg image/png],
content_type: %w[image/jpeg image/png],
size: { less_than: 20.megabytes }
)

Expand Down
Loading