Skip to content

Latest commit

 

History

History
79 lines (55 loc) · 2.07 KB

CHANGELOG.md

File metadata and controls

79 lines (55 loc) · 2.07 KB

2.15.0

  • Add support for Rails 7.1 and 7.2 (@jprosevear, #55)

2.14.0

  • Add support for Rails 7.

2.13.0

  • In QueryBuilder, delegate #empty? and #size to @query (@net1957, #47)

2.12.1

  • Support Ruby 3.0.
  • Move to GitHub actions.

2.12.0

  • Streamline spec setup using appraisal, combustion and database_cleaner gems (@hasghari #45)
  • Add support for Rails 6.1 (@hasghari #45)

2.11.0

  • Allow consumers of ArelHelpers::QueryBuilder to chain on falsy return (@ramhoj #44).
    • Add not_nil in front of builder methods to opt-in.

2.10.0

  • Add support for Rails 6 rc2.

2.9.1

  • Remove has_rdoc from gemspec.

2.9.0

  • Add support for Rails 6 beta3.

2.8.0

  • Add support for Rails 5.2.1, which changed the arity of several internal methods that we shamelessly use.

2.7.0

  • Add support for Rails 5.2.

2.6.1

  • Fix homepage URL in gemspec.

2.6.0

  • Add the join alias helper.
  • Add ability to pass table aliases to join_association.

2.5.0

  • Add license information to gemspec so it is parsed by verifiers (@petergoldstein #31)
  • Update QueryBuilder#reflect to create deep copy of builder (@wycleffsean #32)

2.4.0

  • Adding support for Rails 5.1 (@hasghari #30)

2.3.0

  • Adding support for Rails 5 (@vkill #24, @camertron #26)

2.2.0

  • Adding polymorphic join support for Rails 4.2.

2.1.1

  • Fixing issue causing ArelTable instances to get returned when accessing records inside an ActiveRecord::Relation. (@svoynow, #18)

2.1.0

  • Adding support for Rails 4.2 (@hasghari, github issue #12)

2.0.2

  • Fix issue causing CollectionProxy#[] to return Arel::Attribute objects instead of model instances. See #11

2.0.1

  • Define ArelHelpers.join_association so people can use join_association functionality without relying on autoloading. (@peeja, github issue #8)

2.0.0

  • Turning JoinAssociation into an ActiveSupport::Concern (breaks backwards compatibility).

1.2.0

  • Adding Rails 4 support.

1.1.0

  • Adding the QueryBuilder class.

1.0.0

  • Birthday! Includes join_association and arel_table helpers.