All Versions
50
Latest Version
Avg Release Cycle
134 days
Latest Release
1335 days ago

Changelog History
Page 2

  • v4.0.0 Changes

    December 05, 2016
    • โฌ‡๏ธ Drop support for Ruby 1.9
    • โฌ‡๏ธ Drop support for ActiveRecord 3, 4.0, and 4.1
    • ๐Ÿ—„ scoped_search registration deprecates :in in favor of :relation, and
      ๐Ÿ’Ž :alias in favor of aliases: [..] to avoid clash with Ruby reserved words.
    • sort helper: any HTML options must now be given as a keyword argument,
      instead of the third argument, i.e. html_options: {..}
    • 0๏ธโƒฃ sort helper now takes hash of url_options, defaulting to an unfiltered
      params. Call params.permit(..) and pass in the result to safely generate
      ๐Ÿš… URLs and prevent non-sanitized errors under Rails 5.
    • Auto completion: remove autocomplete_* JavaScript helpers in favor of jQuery
      method provided via asset pipeline. Call $(..).scopedSearch on autocomplete
      text boxes to activate.
    • Auto completion: escape quotes in listed values (#138)
    • โž• Add :validator option to definitions to validate user's search inputs
    • ๐Ÿ›  Fix incorrect association conditions being used on through relations
    • ๐Ÿš… Use #distinct on Rails 4+
    • ๐Ÿš€ Test Rails 5.0.x releases, test latest AR adapters
  • v3.3.0 Changes

    August 09, 2016
    • ๐Ÿ‘Œ Support for ActiveRecord 5.0
  • v3.2.0 Changes

    • In MySQL, case sensitivity is now determined by the collation of the column, and is no longer enforced in the SQL query. This allows MySQL to use indices for queries.
    • ๐Ÿ›  Fix auto-completer for numeric fields.
  • v3.1.0 Changes

    • โž• Add support for ActiveRecord 4.2.
    • โฌ†๏ธ Bump AtiveRecord requirement to 3.2.
  • v3.0.1 Changes

    • ๐Ÿ”’ Security fix in parsing dates.
  • v3.0.0 Changes

    • โž• Add support for ActiveRecord 4.1
    • โฌ‡๏ธ Drop support for Ruby 1.8
    • โฌ‡๏ธ Drop support for ActiveRecord 2.
    • ๐Ÿ’ป No longer require jQuery UI automatically; you have to do this yourself now.
    • ๐Ÿ—„ Auto completion: deprecate javascript helpers in favor of asset pipeline.
    • โœ‚ Remove some deprecated 1.x APIs.
    • โฌ†๏ธ Upgraded to RSpec 3.
    • Extract Oracle query builder enhancements to plugin gem: https://github.com/wvanbergen/scoped_search-oracle_enhanced
    • ๐Ÿ— Extract H2 query builder enhancements to plugin gem: https://github.com/wvanbergen/scoped_search-h2
  • v2.7.1 Changes

    • ๐Ÿ›  Fix order SQL generation issue on PostgreSQL for the autocompleter.
  • v2.7.0 Changes

    • ๐Ÿ‘ Allow setting a default sort order
    • ๐Ÿ›  Fix a sorting bug for field names starting with desc.
    • ๐Ÿ›  SQL generation fixes.
    • ๐Ÿ‘Œ Improve test coverage
  • v2.6.5 Changes

    • ๐Ÿ‘ Allow disabling certain fields for autocompletion.
  • v2.6.4 Changes

    • ๐Ÿ‘ jQuery 1.9 support for automplete helpers.