diff --git a/Gemfile.lock b/Gemfile.lock index 55acadf2a..4650201c2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: view_component (2.83.0) - activesupport (>= 5.2.0, < 8.0) + activesupport (>= 5.2.0, < 8.1) concurrent-ruby (~> 1.0) method_source (~> 1.0) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 0b69fd623..ca4feecc5 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,10 @@ nav_order: 5 ## main +* Relax ActiveSupport version constraint to allow 8.0. + + *Mohamad Alhaj Rahmoun* + ## 2.83.0 * Ensure HTML output safety. diff --git a/view_component.gemspec b/view_component.gemspec index 47877cee4..a64cea78c 100644 --- a/view_component.gemspec +++ b/view_component.gemspec @@ -29,7 +29,7 @@ Gem::Specification.new do |spec| spec.required_ruby_version = ">= 2.4.0" - spec.add_runtime_dependency "activesupport", [">= 5.2.0", "< 8.0"] + spec.add_runtime_dependency "activesupport", [">= 5.2.0", "< 8.1"] spec.add_runtime_dependency "method_source", "~> 1.0" spec.add_runtime_dependency "concurrent-ruby", "~> 1.0" spec.add_development_dependency "appraisal", "~> 2.4"