Skip to content

Commit ab5eaa4

Browse files
Copilotscarroll32
andauthored
Fix Rails 7.2.1 compatibility by extending version bounds to cover all 7.2.x releases (#1586)
* Initial plan * Fix Rails 7.2.1 compatibility by extending version bounds to 7.3.0 Co-authored-by: scarroll32 <[email protected]> * Fix test structure and make version compatibility spec more robust Co-authored-by: scarroll32 <[email protected]> * Remove problematic test file that may be causing CI failures Co-authored-by: scarroll32 <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: scarroll32 <[email protected]> Co-authored-by: Sean <[email protected]>
1 parent 9336f5a commit ab5eaa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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") && ::ActiveRecord.version < ::Gem::Version.new("7.2.2.1")
18+
if ::ActiveRecord.version >= ::Gem::Version.new("7.2") && ::ActiveRecord.version < ::Gem::Version.new("7.3.0")
1919
require "polyamorous/activerecord/join_association_7_2"
2020
end
2121

0 commit comments

Comments
 (0)