From 33a7f6eac52afec2ac926a4f907c7e2edc744ebb Mon Sep 17 00:00:00 2001 From: Hans Lemuet Date: Tue, 11 Nov 2025 14:10:55 +0100 Subject: [PATCH 1/2] Remove actionview & activesupport upper bound --- Gemfile.lock | 4 ++-- gemfiles/rails_7.1.gemfile.lock | 4 ++-- gemfiles/rails_7.2.gemfile.lock | 4 ++-- gemfiles/rails_8.0.gemfile.lock | 4 ++-- gemfiles/rails_8.1.gemfile.lock | 4 ++-- gemfiles/rails_main.gemfile.lock | 4 ++-- view_component.gemspec | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 46798a62d..35a017859 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,8 +2,8 @@ PATH remote: . specs: view_component (4.1.0) - 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.1.gemfile.lock b/gemfiles/rails_7.1.gemfile.lock index 2b4b5762a..506195b0b 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.0) - 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 a21c39901..e20ac94f5 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.0) - 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 03d65eece..acc83e2ff 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.0) - 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 2de01169b..7a82a7dc0 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.0) - 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 cf88b1240..771f46052 100644 --- a/gemfiles/rails_main.gemfile.lock +++ b/gemfiles/rails_main.gemfile.lock @@ -110,8 +110,8 @@ PATH remote: .. specs: view_component (4.1.0) - 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" From 4746d192989c5301b2e02aea258f436501fea4cf Mon Sep 17 00:00:00 2001 From: Hans Lemuet Date: Tue, 11 Nov 2025 14:12:25 +0100 Subject: [PATCH 2/2] Changelog --- docs/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 38c662010..e6961009c 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* + * Add Consultport to list of companies using ViewComponent. *Sebastian Nepote*