Skip to content

Commit 2d2f284

Browse files
authored
Merge branch 'main' into add-invalid-search-error
2 parents ecaf413 + e522dda commit 2d2f284

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
rails:
1616
- 7-2-stable
1717
- v7.1.0
18-
- v7.0.3
19-
- v6.1.6
2018
ruby:
2119
- 3.2.2
2220
- 3.1.4
@@ -41,8 +39,6 @@ jobs:
4139
rails:
4240
- 7-2-stable
4341
- v7.1.0
44-
- v7.0.3
45-
- v6.1.6
4642
ruby:
4743
- 3.2.2
4844
- 3.1.4
@@ -76,8 +72,6 @@ jobs:
7672
rails:
7773
- 7-2-stable
7874
- v7.1.0
79-
- v7.0.3
80-
- v6.1.6
8175
ruby:
8276
- 3.2.2
8377
- 3.1.4

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
* Drop Rails 6 and 7.0 compatibility
6+
57
## 4.2.1 - 2024-8-11
68

79
* Fix Rails 7.1.x compatibility

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ There are advanced searching solutions around, like ElasticSearch or Algolia. **
1313

1414
Ready to move beyond the basics? Use **advanced features** like i18n and extensive configuration options.
1515

16-
Ransack is supported for Rails 7.2, 7.1, 7.0, 6.1 on Ruby 3.1 and later.
16+
Ransack is supported for Rails 7.2, 7.1 on Ruby 3.1 and later.
1717

1818
## Installation
1919

lib/polyamorous/polyamorous.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module Polyamorous
1515
require 'polyamorous/activerecord/join_dependency'
1616
require 'polyamorous/activerecord/reflection'
1717

18-
if ::ActiveRecord.version >= ::Gem::Version.new("7.2")
18+
if ::ActiveRecord.version >= ::Gem::Version.new("7.2") && ::ActiveRecord.version != ::Gem::Version.new("7.2.2.1")
1919
require "polyamorous/activerecord/join_association_7_2"
2020
end
2121

0 commit comments

Comments
 (0)