Skip to content

Commit b5aa0bc

Browse files
committed
Release 7.4.0
1 parent 1d8b0e1 commit b5aa0bc

File tree

6 files changed

+40
-6
lines changed

6 files changed

+40
-6
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## 7.4.0
2+
3+
### Client
4+
5+
* Accept options passed to #perform_request to avoid infinite retry loop
6+
* Fix minor typo
7+
8+
### API
9+
10+
* Update documentation of put_script method
11+
12+
### EXT:7.4.0
13+
14+
15+
16+
### XPACK
17+
18+
* Add ParamsRegistry in each direcotry and for Xpack top-level API
19+
* Add ParamsRegistry for Xpack data_frame API
20+
* Add ParamsRegistry for Xpack graph API
21+
* Add ParamsRegistry for Xpack license API
22+
* Add ParamsRegistry for Xpack MachineLearning API
23+
* Fix path for loading params_registry files
24+
* Add ParamsRegistry for Xpack Migration API
25+
* Add ParamsRegistry for Xpack Monitoring API
26+
* Add ParamsRegistry for Xpack Rollup API
27+
* Add ParamsRegistry for Xpack security API
28+
* Add ParamsRegistry for Xpack sql API
29+
* Add ParamsRegistry for Xpack watcher API
30+
* Update missed file with ParamsRegistry
31+
* Update versions in params registry files
32+
* Add update_data_frame_transform
33+
* Support Index Lifecycle Management(ILM) API
34+
135
## 7.3.0
236

337
### Client

elasticsearch-api/lib/elasticsearch/api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module API
7-
VERSION = "7.3.0"
7+
VERSION = "7.4.0"
88
end
99
end

elasticsearch-transport/lib/elasticsearch/transport/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module Transport
7-
VERSION = "7.3.0"
7+
VERSION = "7.4.0"
88
end
99
end

elasticsearch-xpack/lib/elasticsearch/xpack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module XPack
7-
VERSION = "7.3.0"
7+
VERSION = "7.4.0"
88
end
99
end

elasticsearch/elasticsearch.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Gem::Specification.new do |s|
2727

2828
s.required_ruby_version = '>= 1.9'
2929

30-
s.add_dependency "elasticsearch-transport", '7.3.0'
31-
s.add_dependency "elasticsearch-api", '7.3.0'
30+
s.add_dependency "elasticsearch-transport", '7.4.0'
31+
s.add_dependency "elasticsearch-api", '7.4.0'
3232

3333
s.add_development_dependency "bundler"
3434

elasticsearch/lib/elasticsearch/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# See the LICENSE file in the project root for more information
44

55
module Elasticsearch
6-
VERSION = "7.3.0"
6+
VERSION = "7.4.0"
77
end

0 commit comments

Comments
 (0)