Skip to content

Commit ca664ed

Browse files
committed
Release 0.1.8
1 parent ded2035 commit ca664ed

File tree

6 files changed

+50
-5
lines changed

6 files changed

+50
-5
lines changed

elasticsearch-model/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 0.1.8
2+
3+
* Added "default per page" methods for pagination with multi model searches
4+
* Added a convenience accessor for the `aggregations` part of response
5+
* Added a full example with mapping for the completion suggester
6+
* Added an integration test for paginating multiple models
7+
* Added proper support for the new "multi_fields" in the mapping DSL
8+
* Added the `no_timeout` option for `__find_in_batches` in the Mongoid adapter
9+
* Added, that index settings can be loaded from any object that responds to `:read`
10+
* Added, that index settings/mappings can be loaded from a YAML or JSON file
11+
* Added, that String pagination parameters are converted to numbers
12+
* Added, that empty block is not required for setting mapping options
13+
* Added, that on MyModel#import, an exception is raised if the index does not exists
14+
* Changed the Elasticsearch port in the Mongoid example to 9200
15+
* Cleaned up the tests for multiple fields/properties in mapping DSL
16+
* Fixed a bug where continuous `#save` calls emptied the `@__changed_attributes` variable
17+
* Fixed a buggy test introduced in #335
18+
* Fixed incorrect deserialization of records in the Multiple adapter
19+
* Fixed incorrect examples and documentation
20+
* Fixed unreliable order of returned results/records in the integration test for the multiple adapter
21+
* Fixed, that `param_name` is used when paginating with WillPaginate
22+
* Fixed the problem where `document_type` configuration was not propagated to mapping [6 months ago by Miguel Ferna
23+
* Refactored the code in `__find_in_batches` to use Enumerable#each_slice
24+
* Refactored the string queries in multiple_models_test.rb to avoid quote escaping
25+
126
## 0.1.7
227

328
* Improved examples and instructions in README and code annotations
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Model
3-
VERSION = "0.1.7"
3+
VERSION = "0.1.8"
44
end
55
end

elasticsearch-persistence/CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
# 0.1.7
1+
## 0.1.8
2+
3+
* Added `cluster.health wait_for_status: 'yellow'` to Repository integration test
4+
* Fixed tests for the updates to the `update` method for Persistence::Model
5+
* Fixed timestamp tests
6+
* Fixed typos and broken links in documentation, fixed examples
7+
* Fixed, that `MyModel#save` does in fact persist `updated_at` attribute
8+
* Fixed, that `options` have not been passed to gateway in MyModel#update
9+
* Short-circuit the operation and return `false` when the model is not valid
10+
* Fixed the problem where `document_type` configuration was not propagated to mapping
11+
12+
13+
## 0.1.7
214

315
* Added an integration test for the `MyModel.all` method
416
* Improved the "music" example application
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Persistence
3-
VERSION = "0.1.7"
3+
VERSION = "0.1.8"
44
end
55
end

elasticsearch-rails/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
# 0.1.7
1+
## 0.1.8
2+
3+
* Added an example application template that loads settings from a file
4+
* Added missing require in the seeds.rb file for the expert template
5+
* Fixed double include of the aliased method (execute_without_instrumentation)
6+
* Fixed the error when getting the search_controller_test.rb asset in `03-expert.rb` template
7+
* Updated URLs for getting raw assets from Github in the `03-expert.rb` template
8+
9+
## 0.1.7
210

311
* Updated dependencies for the gem and example applications
412
* Fixed various small errors in the `01-basic.rb` template
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Rails
3-
VERSION = "0.1.7"
3+
VERSION = "0.1.8"
44
end
55
end

0 commit comments

Comments
 (0)