Skip to content

Commit 5a7523a

Browse files
committed
Release 2.0.0
1 parent a71c48e commit 5a7523a

File tree

4 files changed

+41
-3
lines changed

4 files changed

+41
-3
lines changed

CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
## 2.0.0
2+
3+
* Updated the Rake dependency to 11.1
4+
* Reduced verbosity of `rake test:unit` and `rake test:integration`
5+
* Removed the "CI Reporter" integration from test Rake tasks
6+
* Added the "Compatibility" chapter to the READMEs
7+
* Updated the Bundler instructions and Github URLs in the READMEs
8+
9+
### ActiveModel
10+
11+
* Fixed a problem where `Hashie::Mash#min` and `#max` returned unexpected values
12+
* Added information about `elasticsearch-dsl` to the README
13+
* Added support for inherited index names and doc types
14+
* Added a `Elasticsearch::Model.settings` method
15+
* Changed the naming inheritance logic to use `Elasticsearch::Model.settings`
16+
* Added information about the `settings` method and the `inheritance_enabled` setting into the README
17+
* Disable "verbose" and "warnings" in integration tests
18+
* Added code for establishing ActiveRecord connections to test classes
19+
* Reorganized the class definitions in the integration tests
20+
* Moved `require` within unit test to the top of the file
21+
* Added ActiveRecord 5 support to integration test configuration
22+
* Fixed records sorting with ActiveRecord 5.x
23+
* Added, that `add_index` for ActiveRecord models is only called when it doesn't exist already
24+
* Use `records.__send__ :load` instead of `records.load` in the ActiveRecord adapter
25+
* Call `Kaminari::Hooks.init` only when available
26+
* Fixed the deprecation messages for `raise_in_transactional_callbacks`
27+
* Fixed the deprecation messages for `timestamps` in migrations in integration tests
28+
* Fixed the naming for the indexing integration tests
29+
* Fixed the failing integration tests for ActiveRecord associations
30+
* Fixed integration tests for ActiveRecord pagination
31+
* Added the `rake bundle:install` Rake task to install dependencies for all gemfiles
32+
* Run unit tests against all Gemfiles
33+
* Updated dependencies in gemspec
34+
35+
### Persistence
36+
37+
* Updated dependencies in gemspec
38+
139
## 0.1.9
240

341
The last version for the old versioning scheme -- please see the Git commit log
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Model
3-
VERSION = "0.1.9"
3+
VERSION = "2.0.0"
44
end
55
end
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Persistence
3-
VERSION = "0.1.9"
3+
VERSION = "2.0.0"
44
end
55
end
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Rails
3-
VERSION = "0.1.9"
3+
VERSION = "2.0.0"
44
end
55
end

0 commit comments

Comments
 (0)