Skip to content

Commit

Permalink
Release 6.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
estolfo committed Apr 8, 2019
1 parent 5d93448 commit 20c55a5
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 6 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
## 6.3.0

### API

* Update bulk method
* Generate code with params registry
* Update cat.aliases method
* Update cat.allocation method
* Update cat.count method
* Update cat.fielddata method
* Update cat.health method
* Update cat.help method
* Update cat.indices method
* Update cat API methods
* Update clear_scroll API
* Update cluster API endpoint methods
* Update top-level API endpoint methods
* Update all methods based on rest-api-spec
* Fix minor issues with API methods
* Add unfreeze and freeze endpoints back
* Fix missing params for cat APIs
* Add support for node_id in cluster/stats
* Reference current version, not master
* Keep create method as-is
* Reference current version, not master for ingest/plugins
* Account for indices.create/20_mix_typeless_typeful not cleaning up after itself
* Add missing params

### XPACK

* Update API for 6.7.0
* Updates to support 6.7.0
* Blacklist individual tests, not entire files
* Sometimes the SINGLE_TEST env variable is the empty string
* Fix logic for checking if a verison should be skipped

## 6.2.0

### Client
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch-api/lib/elasticsearch/api/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Elasticsearch
module API
VERSION = "6.2.0"
VERSION = "6.3.0"
end
end
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Elasticsearch
module Transport
VERSION = "6.2.0"
VERSION = "6.3.0"
end
end
2 changes: 1 addition & 1 deletion elasticsearch-xpack/lib/elasticsearch/xpack/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Elasticsearch
module XPack
VERSION = "6.2.0"
VERSION = "6.3.0"
end
end
4 changes: 2 additions & 2 deletions elasticsearch/elasticsearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 1.9'

s.add_dependency "elasticsearch-transport", '6.2.0'
s.add_dependency "elasticsearch-api", '6.2.0'
s.add_dependency "elasticsearch-transport", '6.3.0'
s.add_dependency "elasticsearch-api", '6.3.0'

s.add_development_dependency "bundler"

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/lib/elasticsearch/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Elasticsearch
VERSION = "6.2.0"
VERSION = "6.3.0"
end

0 comments on commit 20c55a5

Please sign in to comment.