Skip to content

Commit 20c55a5

Browse files
committed
Release 6.3.0
1 parent 5d93448 commit 20c55a5

File tree

6 files changed

+42
-6
lines changed

6 files changed

+42
-6
lines changed

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
## 6.3.0
2+
3+
### API
4+
5+
* Update bulk method
6+
* Generate code with params registry
7+
* Update cat.aliases method
8+
* Update cat.allocation method
9+
* Update cat.count method
10+
* Update cat.fielddata method
11+
* Update cat.health method
12+
* Update cat.help method
13+
* Update cat.indices method
14+
* Update cat API methods
15+
* Update clear_scroll API
16+
* Update cluster API endpoint methods
17+
* Update top-level API endpoint methods
18+
* Update all methods based on rest-api-spec
19+
* Fix minor issues with API methods
20+
* Add unfreeze and freeze endpoints back
21+
* Fix missing params for cat APIs
22+
* Add support for node_id in cluster/stats
23+
* Reference current version, not master
24+
* Keep create method as-is
25+
* Reference current version, not master for ingest/plugins
26+
* Account for indices.create/20_mix_typeless_typeful not cleaning up after itself
27+
* Add missing params
28+
29+
### XPACK
30+
31+
* Update API for 6.7.0
32+
* Updates to support 6.7.0
33+
* Blacklist individual tests, not entire files
34+
* Sometimes the SINGLE_TEST env variable is the empty string
35+
* Fix logic for checking if a verison should be skipped
36+
137
## 6.2.0
238

339
### Client
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module API
3-
VERSION = "6.2.0"
3+
VERSION = "6.3.0"
44
end
55
end
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Transport
3-
VERSION = "6.2.0"
3+
VERSION = "6.3.0"
44
end
55
end
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module XPack
3-
VERSION = "6.2.0"
3+
VERSION = "6.3.0"
44
end
55
end

elasticsearch/elasticsearch.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Gem::Specification.new do |s|
2222

2323
s.required_ruby_version = '>= 1.9'
2424

25-
s.add_dependency "elasticsearch-transport", '6.2.0'
26-
s.add_dependency "elasticsearch-api", '6.2.0'
25+
s.add_dependency "elasticsearch-transport", '6.3.0'
26+
s.add_dependency "elasticsearch-api", '6.3.0'
2727

2828
s.add_development_dependency "bundler"
2929

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Elasticsearch
2-
VERSION = "6.2.0"
2+
VERSION = "6.3.0"
33
end

0 commit comments

Comments
 (0)