Skip to content

Commit cda614f

Browse files
committed
Release 6.8.2
1 parent e0ee762 commit cda614f

File tree

6 files changed

+41
-6
lines changed

6 files changed

+41
-6
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
## 6.8.2
2+
3+
### Client
4+
5+
- Accept options passed to #perform_request to avoid infinite retry loop - https://github.com/elastic/elasticsearch-ruby/pull/837
6+
7+
#### API Key Support
8+
The client now supports API Key Authentication, check "Authentication" on the [transport README](https://github.com/elastic/elasticsearch-ruby/tree/7.x/elasticsearch-transport#authentication) for information on how to use it.
9+
10+
#### X-Opaque-Id Support
11+
12+
The client now supports identifying running tasks with X-Opaque-Id. Check [transport README](https://github.com/elastic/elasticsearch-ruby/tree/7.x/elasticsearch-transport#identifying-running-tasks-with-x-opaque-id) for information on how to use X-Opaque-Id.
13+
14+
#### Faraday migrated to 1.0
15+
16+
We're now using version 1.0 of Faraday:
17+
- The client initializer was modified but this should not disrupt final users at all, check [this commit](https://github.com/elastic/elasticsearch-ruby/commit/0fdc6533f4621a549a4cb99e778bbd827461a2d0) for more information.
18+
- Migrated error checking to remove the deprecated `Faraday::Error` namespace.
19+
- **This change is not compatible with [Typhoeus](https://github.com/typhoeus/typhoeus)**. The latest release is 1.3.1, but it's [still using the deprecated `Faraday::Error` namespace](https://github.com/typhoeus/typhoeus/blob/v1.3.1/lib/typhoeus/adapters/faraday.rb#L100). This has been fixed on master, but the last release was November 6, 2018. Version 1.4.0 should be ok once it's released.
20+
- Note: Faraday 1.0 drops official support for JRuby. It installs fine on the tests we run with JRuby in this repo, but it's something we should pay attention to.
21+
22+
Reference: [Upgrading - Faraday 1.0](https://github.com/lostisland/faraday/blob/master/UPGRADING.md)
23+
24+
[Pull Request](https://github.com/elastic/elasticsearch-ruby/pull/808)
25+
26+
### API
27+
28+
* Ensure that `index` argument is considered in rank_eval api https://github.com/elastic/elasticsearch-ruby/commit/b56beea7fa3c78594428bc718bd412b40d8e424f
29+
* Update handling of publish_address in _nodes/http response https://github.com/elastic/elasticsearch-ruby/commit/68350f9f978badef57930aec35441f4d975f65bf
30+
* Remove percolate Spec (not supported)
31+
32+
### EXT:6.8.2
33+
34+
35+
136
## 6.8.1
237

338
* Lock the version of Faraday: Faraday 1.0 was released with breaking changes. Thank you @taylorthurlow :+1: (#752)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module API
7-
VERSION = '6.8.1'
7+
VERSION = '6.8.2'
88
end
99
end

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module Transport
7-
VERSION = '6.8.1'
7+
VERSION = '6.8.2'
88
end
99
end

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module XPack
7-
VERSION = '6.8.1'
7+
VERSION = '6.8.2'
88
end
99
end

elasticsearch/elasticsearch.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Gem::Specification.new do |s|
2626
s.rdoc_options = ['--charset=UTF-8']
2727

2828
s.required_ruby_version = '>= 2.4'
29-
s.add_dependency 'elasticsearch-api', '6.8.1'
30-
s.add_dependency 'elasticsearch-transport', '6.8.1'
29+
s.add_dependency 'elasticsearch-api', '6.8.2'
30+
s.add_dependency 'elasticsearch-transport', '6.8.2'
3131

3232
s.add_development_dependency 'ansi'
3333
s.add_development_dependency 'bundler'

elasticsearch/lib/elasticsearch/version.rb

Lines changed: 1 addition & 1 deletion
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 = '6.8.1'
6+
VERSION = '6.8.2'
77
end

0 commit comments

Comments
 (0)