Skip to content

Commit 833a9cb

Browse files
authored
Merge pull request #2497 from ViewComponent/remove-rails-upper-bound
Remove Rails dependencies upper bound
2 parents d5da7ab + 3ba272c commit 833a9cb

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ PATH
22
remote: .
33
specs:
44
view_component (4.1.1)
5-
actionview (>= 7.1.0, < 8.2)
6-
activesupport (>= 7.1.0, < 8.2)
5+
actionview (>= 7.1.0)
6+
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)
88

99
GEM

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ nav_order: 6
1010

1111
## main
1212

13+
* Remove `< 8.2` upper bound for `activesupport` and `actionview` dependencies.
14+
15+
*Hans Lemuet*
16+
1317
## 4.1.1
1418

1519
* Add Consultport to list of companies using ViewComponent.

gemfiles/rails_7.1.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ PATH
22
remote: ..
33
specs:
44
view_component (4.1.1)
5-
actionview (>= 7.1.0, < 8.2)
6-
activesupport (>= 7.1.0, < 8.2)
5+
actionview (>= 7.1.0)
6+
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)
88

99
GEM

gemfiles/rails_7.2.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ PATH
22
remote: ..
33
specs:
44
view_component (4.1.1)
5-
actionview (>= 7.1.0, < 8.2)
6-
activesupport (>= 7.1.0, < 8.2)
5+
actionview (>= 7.1.0)
6+
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)
88

99
GEM

gemfiles/rails_8.0.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ PATH
22
remote: ..
33
specs:
44
view_component (4.1.1)
5-
actionview (>= 7.1.0, < 8.2)
6-
activesupport (>= 7.1.0, < 8.2)
5+
actionview (>= 7.1.0)
6+
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)
88

99
GEM

gemfiles/rails_8.1.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ PATH
22
remote: ..
33
specs:
44
view_component (4.1.1)
5-
actionview (>= 7.1.0, < 8.2)
6-
activesupport (>= 7.1.0, < 8.2)
5+
actionview (>= 7.1.0)
6+
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)
88

99
GEM

gemfiles/rails_main.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ PATH
110110
remote: ..
111111
specs:
112112
view_component (4.1.1)
113-
actionview (>= 7.1.0, < 8.2)
114-
activesupport (>= 7.1.0, < 8.2)
113+
actionview (>= 7.1.0)
114+
activesupport (>= 7.1.0)
115115
concurrent-ruby (~> 1)
116116

117117
GEM

view_component.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
3232

3333
spec.required_ruby_version = ">= 3.2.0"
3434

35-
supported_rails_version = [">= 7.1.0", "< 8.2"]
35+
supported_rails_version = [">= 7.1.0"]
3636
spec.add_runtime_dependency "activesupport", supported_rails_version
3737
spec.add_runtime_dependency "actionview", supported_rails_version
3838
spec.add_runtime_dependency "concurrent-ruby", "~> 1"

0 commit comments

Comments
 (0)