Skip to content

Commit f444298

Browse files
committed
Release 7.3.0
1 parent 62773a2 commit f444298

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
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+
118
## 7.2.0
219

320
### Client

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

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

elasticsearch/elasticsearch.gemspec

+2-2
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.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'
3232

3333
s.add_development_dependency "bundler"
3434

elasticsearch/lib/elasticsearch/version.rb

+1-1
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.2.0"
6+
VERSION = "7.3.0"
77
end

0 commit comments

Comments
 (0)