Skip to content

Commit aa7f44a

Browse files
committed
only support Rails 7+ (#2089)
1 parent 081f5b2 commit aa7f44a

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/ci.yml

-6
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
include:
30-
- ruby_version: "3.1"
31-
rails_version: "6.1"
32-
mode: "capture_patch_enabled"
33-
- ruby_version: "3.1"
34-
rails_version: "6.1"
35-
mode: "capture_patch_disabled"
3630
- ruby_version: "3.1"
3731
rails_version: "7.0"
3832
mode: "capture_patch_enabled"

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
view_component (3.14.0)
5-
activesupport (>= 5.2.0, < 8.0)
5+
activesupport (>= 7.0.0, < 8.0)
66
concurrent-ruby (~> 1.0)
77
method_source (~> 1.0)
88

docs/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ nav_order: 5
1212

1313
## 4.0.0
1414

15+
* BREAKING: Require [non-EOL](https://endoflife.date/rails) Rails (`>= 7.0.0`).
16+
17+
*Joel Hawksley*
18+
1519
* BREAKING: Require [non-EOL](https://www.ruby-lang.org/en/downloads/branches/) Ruby (`>= 3.1.0`).
1620

1721
* Joel Hawksley*

view_component.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929

3030
spec.required_ruby_version = ">= 3.1.0"
3131

32-
spec.add_runtime_dependency "activesupport", [">= 5.2.0", "< 8.0"]
32+
spec.add_runtime_dependency "activesupport", [">= 7.0.0", "< 8.0"]
3333
spec.add_runtime_dependency "method_source", "~> 1.0"
3434
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
3535
spec.add_development_dependency "allocation_stats", "~> 0.1.5"

0 commit comments

Comments
 (0)