All Versions
50
Latest Version
Avg Release Cycle
134 days
Latest Release
1333 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.