Skip to content

Commit 7157dd8

Browse files
committed
Release 0.1.2
1 parent cd9cc67 commit 7157dd8

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

elasticsearch-model/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.1.2
2+
3+
* Properly delegate existence methods like `result.foo?` to `result._source.foo`
4+
* Exception is raised when `type` is not passed to Mappings#new
5+
* Allow passing an ActiveRecord scope to the `import` method
6+
* Added, that `each_with_hit` and `map_with_hit` in `Elasticsearch::Model::Response::Records` call `to_a`
7+
* Added support for [`will_paginate`](https://github.com/mislav/will_paginate) pagination library
8+
* Added the ability to transform models during indexing
9+
* Added explicit `type` and `id` methods to Response::Result, aliasing `_type` and `_id`
10+
111
## 0.1.1
212

313
* Improved documentation and tests
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Model
3-
VERSION = "0.1.1"
3+
VERSION = "0.1.2"
44
end
55
end

elasticsearch-rails/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
# 0.1.2
2+
3+
* Allow passing an ActiveRecord scope to the importing Rake task
4+
15
## 0.1.1
26

37
* Improved the Rake tasks
48
* Improved the example application templates
59

6-
## 0.1.1 (Initial Version)
10+
## 0.1.0 (Initial Version)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Rails
3-
VERSION = "0.1.1"
3+
VERSION = "0.1.2"
44
end
55
end

0 commit comments

Comments
 (0)