Skip to content

Commit

Permalink
Release 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julienbourdeau committed Jun 25, 2019
1 parent b153aee commit 86629c3
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# CHANGELOG

## [1.23.0](https://github.com/algolia/algoliasearch-rails/releases/tag/1.23.0) (2019-06-25)

**Added**

* Introduce `rake algoliasearch:set_all_settings` command - PR [#315](https://github.com/algolia/algoliasearch-rails/pull/315)

This command will push settings for all models to all indices: primary index,
replicas and additional indices. It follows the `inherit: true` option.
It should typically be added to your deployment script

* Add option to disable automatic settings - PR [#315](https://github.com/algolia/algoliasearch-rails/pull/315)

By default, this gem check your settings to see when to push them. Depending on
your implementation, it might create a lot of API calls. If you wish to disable
the automatic change detection for settings, use the `check_settings` option:

```ruby
class Musician < ActiveRecord::Base
include AlgoliaSearch

algoliasearch check_settings: false do
# Settings...
end
end
```

**Fixed**

* Handle attribute_changed? in transactions - PR [#354](https://github.com/algolia/algoliasearch-rails/pull/354)


## [1.22.0](https://github.com/algolia/algoliasearch-rails/releases/tag/1.22.0) (2019-03-21)

🚨 The documentation for our Rails integration was refreshed 🎉
Expand Down
2 changes: 1 addition & 1 deletion lib/algoliasearch/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module AlgoliaSearch
VERSION = '1.22.0'
VERSION = '1.23.0'
end

0 comments on commit 86629c3

Please sign in to comment.