Skip to content

Commit

Permalink
Release 7.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
estolfo committed Nov 5, 2019
1 parent 1d8b0e1 commit b5aa0bc
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 6 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
## 7.4.0

### Client

* Accept options passed to #perform_request to avoid infinite retry loop
* Fix minor typo

### API

* Update documentation of put_script method

### EXT:7.4.0



### XPACK

* Add ParamsRegistry in each direcotry and for Xpack top-level API
* Add ParamsRegistry for Xpack data_frame API
* Add ParamsRegistry for Xpack graph API
* Add ParamsRegistry for Xpack license API
* Add ParamsRegistry for Xpack MachineLearning API
* Fix path for loading params_registry files
* Add ParamsRegistry for Xpack Migration API
* Add ParamsRegistry for Xpack Monitoring API
* Add ParamsRegistry for Xpack Rollup API
* Add ParamsRegistry for Xpack security API
* Add ParamsRegistry for Xpack sql API
* Add ParamsRegistry for Xpack watcher API
* Update missed file with ParamsRegistry
* Update versions in params registry files
* Add update_data_frame_transform
* Support Index Lifecycle Management(ILM) API

## 7.3.0

### Client
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch-api/lib/elasticsearch/api/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

module Elasticsearch
module API
VERSION = "7.3.0"
VERSION = "7.4.0"
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

module Elasticsearch
module Transport
VERSION = "7.3.0"
VERSION = "7.4.0"
end
end
2 changes: 1 addition & 1 deletion elasticsearch-xpack/lib/elasticsearch/xpack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

module Elasticsearch
module XPack
VERSION = "7.3.0"
VERSION = "7.4.0"
end
end
4 changes: 2 additions & 2 deletions elasticsearch/elasticsearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 1.9'

s.add_dependency "elasticsearch-transport", '7.3.0'
s.add_dependency "elasticsearch-api", '7.3.0'
s.add_dependency "elasticsearch-transport", '7.4.0'
s.add_dependency "elasticsearch-api", '7.4.0'

s.add_development_dependency "bundler"

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/lib/elasticsearch/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# See the LICENSE file in the project root for more information

module Elasticsearch
VERSION = "7.3.0"
VERSION = "7.4.0"
end

0 comments on commit b5aa0bc

Please sign in to comment.