File tree Expand file tree Collapse file tree 6 files changed +40
-6
lines changed
elasticsearch-api/lib/elasticsearch/api
elasticsearch-transport/lib/elasticsearch/transport
elasticsearch-xpack/lib/elasticsearch/xpack Expand file tree Collapse file tree 6 files changed +40
-6
lines changed Original file line number Diff line number Diff line change
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
+
1
35
## 7.3.0
2
36
3
37
### Client
Original file line number Diff line number Diff line change 4
4
5
5
module Elasticsearch
6
6
module API
7
- VERSION = "7.3 .0"
7
+ VERSION = "7.4 .0"
8
8
end
9
9
end
Original file line number Diff line number Diff line change 4
4
5
5
module Elasticsearch
6
6
module Transport
7
- VERSION = "7.3 .0"
7
+ VERSION = "7.4 .0"
8
8
end
9
9
end
Original file line number Diff line number Diff line change 4
4
5
5
module Elasticsearch
6
6
module XPack
7
- VERSION = "7.3 .0"
7
+ VERSION = "7.4 .0"
8
8
end
9
9
end
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ Gem::Specification.new do |s|
27
27
28
28
s . required_ruby_version = '>= 1.9'
29
29
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'
32
32
33
33
s . add_development_dependency "bundler"
34
34
Original file line number Diff line number Diff line change 3
3
# See the LICENSE file in the project root for more information
4
4
5
5
module Elasticsearch
6
- VERSION = "7.3 .0"
6
+ VERSION = "7.4 .0"
7
7
end
You can’t perform that action at this time.
0 commit comments