File tree 6 files changed +23
-6
lines changed
elasticsearch-api/lib/elasticsearch/api
elasticsearch-transport/lib/elasticsearch/transport
elasticsearch-xpack/lib/elasticsearch/xpack
6 files changed +23
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 7.3.0
2
+
3
+ ### Client
4
+
5
+ * Add note to readme about the default port value
6
+ * Add note about exception to default port rule when connecting using Elastic Cloud ID
7
+ * Cluster name is variable in cloud id
8
+
9
+ ### XPACK
10
+
11
+ * Support allow_no_match parameter in stop_data_frame_transform
12
+ * Add allow_no_match to get_data_frame_transform API
13
+ * Add missing headers
14
+ * Support get_builtin_privileges API
15
+ * Update tests for changed xpack paths
16
+ * test: integration task in xpack gem shouldn't do anything in favor of test: rest_api
17
+
1
18
## 7.2.0
2
19
3
20
### Client
Original file line number Diff line number Diff line change 4
4
5
5
module Elasticsearch
6
6
module API
7
- VERSION = "7.2 .0"
7
+ VERSION = "7.3 .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.2 .0"
7
+ VERSION = "7.3 .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.2 .0"
7
+ VERSION = "7.3 .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.2 .0'
31
- s . add_dependency "elasticsearch-api" , '7.2 .0'
30
+ s . add_dependency "elasticsearch-transport" , '7.3 .0'
31
+ s . add_dependency "elasticsearch-api" , '7.3 .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.2 .0"
6
+ VERSION = "7.3 .0"
7
7
end
You can’t perform that action at this time.
0 commit comments