Skip to content

Releases: thredded/db_text_search

v1.0.0

23 Feb 08:24
Compare
Choose a tag to compare
  • We test on Rails 5.2, 6.0, 6.1, 7.0, so we're pretty sure these work.
  • We test on Rails main, to find out about any impacts of new changes, this doesn't mean we know that 7.1 is supported yet.
  • We no longer test on Rails < 5.2, so please use v0.3.2 or lower for Rails 4.2 compatibility

v0.3.2

10 Apr 13:37
Compare
Choose a tag to compare

Ruby 3 support

v0.3.1

17 Aug 09:58
Compare
Choose a tag to compare

v0.3.0

26 Dec 16:09
c425e33
Compare
Choose a tag to compare

Added a method for case-insensitive sorting: CaseInsensitive#column_for_order(asc_or_desc).

Example:

SomeModel.some_scope.order(CaseInsensitive.new(SomeModel, :some_field).column_for_order(:asc))

v0.2.2

10 Jun 07:45
Compare
Choose a tag to compare

Raises a more helpful error if the column is not found when calling DbTextSearch::CaseInsensitive.

v0.2.1

10 Jun 07:45
Compare
Choose a tag to compare

Support for PostGIS adapters. #2

v0.2.0

06 Apr 17:40
Compare
Choose a tag to compare
  • Feature Prefix matching via the new CaseInsensitive#prefix method.
  • PostgreSQL CI index now uses the text_pattern_ops [opclass] by default (for prefix matching).
  • Renamed CaseInsensitiveEq to CaseInsensitive, and #find to #in.
  • Renamed FullTextSearch to FullText, and #find to #search.

v0.1.2

06 Apr 17:40
Compare
Choose a tag to compare

Tightened the API, marking more methods as @api private. Improved documentation.

v0.1.1

30 Mar 19:53
Compare
Choose a tag to compare

The first release.