Skip to content

Commit

Permalink
config: update activesupport dependency pinning
Browse files Browse the repository at this point in the history
Signed-off-by: Sonu Saha <sonu.saha@progress.com>
  • Loading branch information
ahasunos committed Sep 20, 2024
1 parent 48b08b6 commit 3c7b777
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion chef-zero.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ Gem::Specification.new do |s|

s.required_ruby_version = ">= 3.0"

s.add_dependency "activesupport","~> 6.1" #pin until we support ruby 2.6
# Note: 7.1.0 does not defaults its cache_format_version to 7.1 but 6.1 instead which gives deprecation warnings
# Remove the version constraint when we can upgrade to 7.1.1 post stable release of Activesupport 7.1
# Similar issue with 7.0 existed: https://github.com/rails/rails/pull/45293
s.add_dependency "activesupport", "~> 7.0", "< 7.1"
s.add_dependency "mixlib-log", ">= 2.0", "< 4.0"
s.add_dependency "hashie", ">= 2.0", "< 5.0"
s.add_dependency "uuidtools", "~> 2.1"
Expand Down

0 comments on commit 3c7b777

Please sign in to comment.