Skip to content

Commit

Permalink
Bump the minimum required Psych version
Browse files Browse the repository at this point in the history
The existing code already breaks with older versions and this just
reflects the minimum version that works in the gemspec.

Psych v4.0.1 is the one introducing `YAML.safe_dump` which we're using
to store LogEntry serialized details.

Fixes #5320.

(cherry picked from commit 7d150db)
  • Loading branch information
elia committed Aug 10, 2023
1 parent e34b131 commit 2329f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/solidus_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Gem::Specification.new do |s|
s.add_dependency 'mini_magick', '~> 4.10'
s.add_dependency 'monetize', '~> 1.8'
s.add_dependency 'kt-paperclip', ['>= 6.3', '< 8']
s.add_dependency 'psych', ['>= 3.1.0', '< 5.0']
s.add_dependency 'psych', ['>= 4.0.1', '< 5.0']
s.add_dependency 'ransack', '~> 2.0'
s.add_dependency 'sprockets-rails'
s.add_dependency 'state_machines-activerecord', '~> 0.6'
Expand Down

0 comments on commit 2329f2f

Please sign in to comment.