From 352195911bbae516eb9b5e2f93c8da97e9c687f1 Mon Sep 17 00:00:00 2001 From: Simon Fish Date: Mon, 21 Oct 2024 09:29:07 +0100 Subject: [PATCH] Relax ActiveSupport version now that Rails 8 beta is available (#2140) --- Gemfile.lock | 2 +- docs/CHANGELOG.md | 4 ++++ view_component.gemspec | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e44104864..b767aaea0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: view_component (3.18.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 5180e669a..1ab77dd02 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,10 @@ nav_order: 5 ## main +* Relax Active Support version constraint in gemspec. + + *Simon Fish* + ## 3.18.0 * Enable components to use `@request` and `request` methods/ivars. diff --git a/view_component.gemspec b/view_component.gemspec index 1d1120b84..5a22a291b 100644 --- a/view_component.gemspec +++ b/view_component.gemspec @@ -29,7 +29,7 @@ Gem::Specification.new do |spec| spec.required_ruby_version = ">= 2.7.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 "allocation_stats", "~> 0.1.5"