CHANGELOG 2014-09-16 1.11.3 * While reindexing, fetch the master's settings to setup the temporary index 2014-09-02 1.11.2 * Ability to search in a slave or extra index using the ```:index```/```:slave``` parameter 2014-08-25 1.11.1 * While using a temporary index to reindex, do not set the "slaves" index setting (will be set at move-time) * Ability to strip HTML tags from attributes 2014-08-20 1.11.0 * Do not rely of _changed? method to detect reindexing needs, if those methods are missing we probably need to reindex 2014-08-07 1.10.9 * Upgrade to algoliasearch-client-js 2.5.3 * Upgrade to typeahead 1.10.4 2014-08-07 1.10.8 * Fixes searches on Mongoid introduced in 1.10.7 (author: @zarqman) 2014-07-17 1.10.7 * Query optimization: load search results from database using a single query (author: @outoftime) 2014-07-10 1.10.6 * Pass the configuration hash to the underlying ```Algolia.init``` method. 2014-07-09 1.10.5 * Safely reindex your data using ```MyModel.reindex``` (index with a temporary index + move), ```MyModel.reindex!``` do it in-place without removing out-dated records 2014-06-28 1.10.4 * Ability to disable all indexing tasks (testing purpose) 2014-06-17 1.10.3 * Pagination: fixed a padding issue with recent versions of Kaminari 2014-05-09 1.10.2 * Expose synoyms/placeholders features * Upgrade to algoliasearch-client-js 2.5.0 (fallback on JSONP if CORS is not available) 2014-04-29 1.10.1 * Use :if and :unless constraints to detect if a record has changed as well 2014-04-28 1.10.0 * Ability to configure slave indexes from the ```algoliasearch``` block * Ability to target multiple indexes from a single model class 2014-04-23 1.9.5 * Add missing highlightPreTag/highlightPostTag settings 2014-03-30 1.9.4 * Ability to index an array of objects using the `index_objects` method. Ref #15 * Upgrade typeahead.js to 0.10.2 (fixed flickering) * Upgrade algoliasearch-client-ruby to 1.2.8 (fixed unhandled exception) * Upgrade algoliasearch-client-js to 2.4.5 (embed last ExplainResults helper fixes) 2014-03-26 1.9.3 * Ruby 1.8 compatibility * Fixed a bug ignoring hitsPerPage parameter while using backend pagination (will_paginate/kaminari) 2014-03-17 1.9.2 * Raise an exception while attempting to index a non-saved object (blank objectID) 2014-03-06 1.9.1 * When using MongoId, the `reindex!` method was calling add_objects too many times. (credits go to sush.io) 2014-02-24 1.9.0 * Upgrade to algoliasearch 1.2.5 and algoliasearch-client-js 2.4.2 * Fixed pagination starting at 1 in Kaminari & WillPaginate and 0 in Algolia * As soon as :if or :unless are used, we need to remove the objects from the index if the constraints don't match 2014-02-15 1.8.2 * Ability to retrieve facets and raw answer as well 2014-02-14 1.8.1 * Fixed backend pagination not taking current page into account at display time. 2014-02-12 1.8.0 * Upgrade to official Twitter Typeahead.js 0.10.1 (/!\ API has changed) * Fixed reindexing rake task (#12) 2014-02-04 1.7.2 * Add a ```raw_search``` method, retrieving the JSON raw answer * Support STI subclasses (#11) * Updated dependencies 2014-01-31 1.7.1 * Ensure methods are not conflicting with already defined ones (use algolia_METHOD_NAME) * Add ```:if``` and ```:unless``` options to control objects indexing (#10) 2014-01-07 1.7.0 * Updated algoliasearch to 1.2 (httpclient instead of curb as underlying HTTP layer) * jruby, rbx and ruby 2.1 compatibility 2014-01-02 1.6.3 * Expose new ```attributeForDistinct``` setting 2013-12-17 1.6.2 * Updated deps (included algoliasearch 1.1.15 and algoliasearch-client-js 2.3.6) 2013-12-05 1.6.1 * ```add_attribute``` can now be used to add extra attributes in addition to the existing ones * Use the ```geoloc``` and ```tags``` methods to generate the associated ```_tags``` and ```_geoloc``` attributes 2013-12-05 1.5.2 * object's attributes must be fetched unscoped to ensure associations will not be impacted by the conditions * you can now use `Model.index` to access the underlying index object 2013-12-03 1.5.1 * ability to specify which attribute is used as objectID 2013-11-29 1.4.5 * updated algoliasearch-client-js to 2.3.3 2013-11-29 1.4.4 * updated algoliasearch to 1.1.11 2013-11-29 1.4.3 * updated algoliasearch-client-js to 2.3.2 * updated algoliasearch to 1.1.10 2013-11-25 1.4.2 * fixed const_get calls with ruby 1.9.3 2013-11-25 1.4.1 * ability to specify a block associated to an attribute as value 2013-11-22 1.3.10 * updated algoliasearch.js (2.3.2) 2013-11-21 1.3.9 * updated custom typeahead.js (merged https://github.com/twitter/typeahead.js/pull/390) 2013-11-21 1.3.8 * expose new index settings: separatorsToIndex and optionalWords 2013-11-19 1.3.7 * handle namespaced models (s/::/_/) 2013-11-08 1.3.6 * upgraded to algoliasearch 1.1.6 (array-based search parameters were not encoded) 2013-11-07 1.3.5 * add without_auto_index_scope method disabling all indexing operations inside associated block 2013-11-07 1.3.4 * updated algoliasearch to 1.1.6 (clear_index! is now a real clear, not a delete/create) and algoliasearch-client-js to 2.3.0 * restore missing ensure_init call in the ```search``` method 2013-11-07 1.3.3 * new :per_environment options suffixing index's name by the Rails environment * index's settings are now initialized on first usage, not at include time * plug attributesForFaceting setting 2013-10-17 1.3.2 * while detecting settings changes, fixed array comparison 2013-10-17 1.3.1 * upgraded to algoliasearch 1.1.4 (too aggressive wait_task calls) 2013-10-15 1.3.0 * synchronous flag is now false by default * do not set settings if they didn't chang 2013-10-15 1.2.1 * Updated deps, especially algoliasearch to 1.1.3 to solve thread-safety issues 2013-10-14 1.2.0 * embeds a typeahead.js based UI 2013-10-04 1.1.8 * Avoid concurrent access to the same index while running tests with TravisCI * to check if the full-reindexing has been done, checking the last task is enough 2013-10-02 1.1.7 * Updated environment variables * Plug travis and various badges * Fixed attribute changes detection * Upgrade to algoliasearch-client-ruby 1.1.1 2013-10-01 1.1.6 * Initial import