Skip to content

Commit

Permalink
Drop support for EOL Active Record 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nertzy committed Nov 10, 2024
1 parent 0e42a28 commit b1661ce
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:
matrix:
ruby-version: ['3.1', '3.2', '3.3']
active-record-version-env:
- ACTIVE_RECORD_VERSION="~> 6.1.0"
- ACTIVE_RECORD_VERSION="~> 7.0.0"
- ACTIVE_RECORD_VERSION="~> 7.1.0"
- ACTIVE_RECORD_VERSION="~> 7.2.0"
Expand All @@ -56,9 +55,6 @@ jobs:
- ruby-version: '3.3'
active-record-version-env: ACTIVE_RECORD_BRANCH="7-0-stable"
allow-failure: true
- ruby-version: '3.3'
active-record-version-env: ACTIVE_RECORD_BRANCH="6-1-stable"
allow-failure: true
continue-on-error: ${{ matrix.allow-failure }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ ruby_version: 3.1
plugins:
- standard-performance
- standard-rails:
target_rails_version: 6.1
target_rails_version: 7.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Read the blog post introducing PgSearch at https://tanzu.vmware.com/content/blog
## REQUIREMENTS

* Ruby 3.1+
* Active Record 6.1+
* Active Record 7.0+
* PostgreSQL 9.2+
* [PostgreSQL extensions](https://github.com/Casecommons/pg_search/wiki/Installing-PostgreSQL-Extensions) for certain features

Expand Down
4 changes: 2 additions & 2 deletions pg_search.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Gem::Specification.new do |s|
s.files = `git ls-files -z`.split("\x0")
s.require_paths = ["lib"]

s.add_dependency "activerecord", ">= 6.1"
s.add_dependency "activesupport", ">= 6.1"
s.add_dependency "activerecord", ">= 7.0"
s.add_dependency "activesupport", ">= 7.0"

s.required_ruby_version = ">= 3.1"
end

0 comments on commit b1661ce

Please sign in to comment.