diff --git a/Gemfile.lock b/Gemfile.lock index a63de0cec..d849e094a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,8 +2,8 @@ PATH remote: . specs: view_component (4.1.1) - actionview (>= 7.1.0, < 8.2) - activesupport (>= 7.1.0, < 8.2) + actionview (>= 7.1.0) + activesupport (>= 7.1.0) concurrent-ruby (~> 1) GEM diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fff5ba0af..fae393e8c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,10 @@ nav_order: 6 ## main +* Remove `< 8.2` upper bound for `activesupport` and `actionview` dependencies. + + *Hans Lemuet* + ## 4.1.1 * Add Consultport to list of companies using ViewComponent. diff --git a/gemfiles/rails_7.1.gemfile.lock b/gemfiles/rails_7.1.gemfile.lock index 4a86df570..632bff041 100644 --- a/gemfiles/rails_7.1.gemfile.lock +++ b/gemfiles/rails_7.1.gemfile.lock @@ -2,8 +2,8 @@ PATH remote: .. specs: view_component (4.1.1) - actionview (>= 7.1.0, < 8.2) - activesupport (>= 7.1.0, < 8.2) + actionview (>= 7.1.0) + activesupport (>= 7.1.0) concurrent-ruby (~> 1) GEM diff --git a/gemfiles/rails_7.2.gemfile.lock b/gemfiles/rails_7.2.gemfile.lock index 8d7617041..2a11fb963 100644 --- a/gemfiles/rails_7.2.gemfile.lock +++ b/gemfiles/rails_7.2.gemfile.lock @@ -2,8 +2,8 @@ PATH remote: .. specs: view_component (4.1.1) - actionview (>= 7.1.0, < 8.2) - activesupport (>= 7.1.0, < 8.2) + actionview (>= 7.1.0) + activesupport (>= 7.1.0) concurrent-ruby (~> 1) GEM diff --git a/gemfiles/rails_8.0.gemfile.lock b/gemfiles/rails_8.0.gemfile.lock index a533207d8..ef12d1bc5 100644 --- a/gemfiles/rails_8.0.gemfile.lock +++ b/gemfiles/rails_8.0.gemfile.lock @@ -2,8 +2,8 @@ PATH remote: .. specs: view_component (4.1.1) - actionview (>= 7.1.0, < 8.2) - activesupport (>= 7.1.0, < 8.2) + actionview (>= 7.1.0) + activesupport (>= 7.1.0) concurrent-ruby (~> 1) GEM diff --git a/gemfiles/rails_8.1.gemfile.lock b/gemfiles/rails_8.1.gemfile.lock index 665d76b05..5152cc27c 100644 --- a/gemfiles/rails_8.1.gemfile.lock +++ b/gemfiles/rails_8.1.gemfile.lock @@ -2,8 +2,8 @@ PATH remote: .. specs: view_component (4.1.1) - actionview (>= 7.1.0, < 8.2) - activesupport (>= 7.1.0, < 8.2) + actionview (>= 7.1.0) + activesupport (>= 7.1.0) concurrent-ruby (~> 1) GEM diff --git a/gemfiles/rails_main.gemfile.lock b/gemfiles/rails_main.gemfile.lock index 58bfe335f..d621c30cb 100644 --- a/gemfiles/rails_main.gemfile.lock +++ b/gemfiles/rails_main.gemfile.lock @@ -110,8 +110,8 @@ PATH remote: .. specs: view_component (4.1.1) - actionview (>= 7.1.0, < 8.2) - activesupport (>= 7.1.0, < 8.2) + actionview (>= 7.1.0) + activesupport (>= 7.1.0) concurrent-ruby (~> 1) GEM diff --git a/view_component.gemspec b/view_component.gemspec index d8eb51271..6b8d75f0f 100644 --- a/view_component.gemspec +++ b/view_component.gemspec @@ -32,7 +32,7 @@ Gem::Specification.new do |spec| spec.required_ruby_version = ">= 3.2.0" - supported_rails_version = [">= 7.1.0", "< 8.2"] + supported_rails_version = [">= 7.1.0"] spec.add_runtime_dependency "activesupport", supported_rails_version spec.add_runtime_dependency "actionview", supported_rails_version spec.add_runtime_dependency "concurrent-ruby", "~> 1"