Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 8.0.1

Bugfix release:

- elasticsearch-rails: Fixes [#1082](https://github.com/elastic/elasticsearch-rails/issues/1082) `rake elasticsearch:import:model - ArgumentError: unknown keyword: :type (ArgumentError)`. Thanks @beatjoerg [Pull Request](https://github.com/elastic/elasticsearch-rails/pull/1083).
- elasticsearch-model: Fixes `ArgumentError` when calling `dup` on aggregations. Thanks @rafayqayyum [Pull Request](https://github.com/elastic/elasticsearch-rails/pull/1090).

## 8.0.0

First general availability release for `8.0.0`. Major versions of `8.x` will support Elasticsearch version `8.x` changing the `elasticsearch` dependency's major version: `gem 'elasticsearch', '~> 8'`.
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch-model/lib/elasticsearch/model/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

module Elasticsearch
module Model
VERSION = '8.0.0'.freeze
VERSION = '8.0.1'.freeze
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Gem::Specification.new do |s|
s.add_dependency 'activemodel', '> 4'
s.add_dependency 'activesupport', '> 4'
s.add_dependency 'elasticsearch', '~> 8'
s.add_dependency 'elasticsearch-model', '8'
s.add_dependency 'elasticsearch-model', '~> 8.0'
s.add_dependency 'hashie'

s.add_development_dependency 'bundler'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

module Elasticsearch
module Persistence
VERSION = '8.0.0'.freeze
VERSION = '8.0.1'.freeze
end
end
2 changes: 1 addition & 1 deletion elasticsearch-rails/lib/elasticsearch/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

module Elasticsearch
module Rails
VERSION = '8.0.0'.freeze
VERSION = '8.0.1'.freeze
end
end