Skip to content

Commit

Permalink
drop Rails 6.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
razumau committed Jan 8, 2025
1 parent c839b67 commit 0ca2e47
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 146 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
ruby: ['3.1', '3.2', '3.3', '3.4']
rails: ['6.0', '6.1', '7.0', '7.1']
rails: ['6.1', '7.0', '7.1']
include:
- {ruby: '3.4', rails: '_main'}
name: ruby${{ matrix.ruby }} rails${{ matrix.rails }} rake test
Expand Down
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- Drop Ruby 2.7 support.
- Drop Rails 5 support.
- Drop Ruby 3.0 support.
- Drop Rails 6.0 support.

# v2.23.1
- Fix an incompatibility with the Rails main branch.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
stronger_parameters (2.23.1)
actionpack (>= 6.0)
actionpack (>= 6.1)

GEM
remote: https://rubygems.org/
Expand Down
5 changes: 0 additions & 5 deletions gemfiles/rails6.0.gemfile

This file was deleted.

135 changes: 0 additions & 135 deletions gemfiles/rails6.0.gemfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion gemfiles/rails6.1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ..
specs:
stronger_parameters (2.23.1)
actionpack (>= 6.0)
actionpack (>= 6.1)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails7.0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ..
specs:
stronger_parameters (2.23.1)
actionpack (>= 6.0)
actionpack (>= 6.1)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails7.1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ..
specs:
stronger_parameters (2.23.1)
actionpack (>= 6.0)
actionpack (>= 6.1)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion stronger_parameters.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|

spec.files = Dir.glob("lib/**/*") + %w[README.md]

spec.add_runtime_dependency "actionpack", ">= 6.0"
spec.add_runtime_dependency "actionpack", ">= 6.1"

spec.required_ruby_version = ">= 3.1"
spec.metadata["rubygems_mfa_required"] = "true"
Expand Down

0 comments on commit 0ca2e47

Please sign in to comment.