Skip to content

Commit 07a48b3

Browse files
committed
Release 7.2.0
1 parent a77dd8d commit 07a48b3

File tree

6 files changed

+59
-6
lines changed

6 files changed

+59
-6
lines changed

CHANGELOG.md

+53
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
## 7.2.0
2+
3+
### Client
4+
5+
* Support User-Agent header client team specification
6+
* Improve code handling headers
7+
* Handle headers when using JRuby and Manticore
8+
* Rename method for clarity
9+
* Test selecting connections using multiple threads
10+
* Synchronize access to the connections collection and mutation of @current instance variable
11+
* Fix specs for selecting a connection
12+
* Further fixes to specs for testing selecting connections in parallel
13+
* Support providing a cloud id
14+
* Allow a port to be set with a Cloud id and use default if no port is provided
15+
* Remove unnecessary check for cloud_id when setting default port
16+
* Add documentation for creating client with cloud_id
17+
* Allow compression with Faraday and supported http adapters
18+
* Put development gem dependencies in gemspec
19+
* No reason to use ! for decompress method name
20+
* Check for the existence of headers before checking headers
21+
* Apply compression headers manually based on general :compression option
22+
* Use GZIP constant
23+
* Group tests into their transport adapters
24+
* Support compression when using Curb adapter
25+
* Support compression when using Manticore adapter with JRuby
26+
* Fix Curb unit test, expecting headers to be merged and not set
27+
* Update test descriptions for compression settings
28+
* Add documentation of 'compression' option on client
29+
* Improve client documentation for compression option
30+
* Centralize header handling into one method
31+
* Only add Accept-Encoding header if compression option is true
32+
33+
### API
34+
35+
* Use rewritten test harness from XPACK for rest API tests
36+
* Include skipped tests and further updates
37+
* Delete all repositories and snapshots in a method
38+
* Further updates to the rest API test runner
39+
* Add erroneously removed constants and gems
40+
* Updates to rest api yaml rspec tasks
41+
* The get_source endpoint should raise an error if the resource is not found
42+
* Rename method to clear data in tests and consolidate tasks into one method
43+
* Update api for 7.2
44+
45+
### EXT:7.2.0
46+
47+
48+
49+
### XPACK
50+
51+
* Add data_frame API
52+
* Update data frame files
53+
154
## 7.1.0
255

356
### Client

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
module Elasticsearch
1919
module API
20-
VERSION = "7.1.0"
20+
VERSION = "7.2.0"
2121
end
2222
end

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
module Elasticsearch
1919
module Transport
20-
VERSION = "7.1.0"
20+
VERSION = "7.2.0"
2121
end
2222
end

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
module Elasticsearch
1919
module XPack
20-
VERSION = "7.1.0"
20+
VERSION = "7.2.0"
2121
end
2222
end

elasticsearch/elasticsearch.gemspec

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

4141
s.required_ruby_version = '>= 1.9'
4242

43-
s.add_dependency "elasticsearch-transport", '7.1.0'
44-
s.add_dependency "elasticsearch-api", '7.1.0'
43+
s.add_dependency "elasticsearch-transport", '7.2.0'
44+
s.add_dependency "elasticsearch-api", '7.2.0'
4545

4646
s.add_development_dependency "bundler"
4747

elasticsearch/lib/elasticsearch/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
# under the License.
1717

1818
module Elasticsearch
19-
VERSION = "7.1.0"
19+
VERSION = "7.2.0"
2020
end

0 commit comments

Comments
 (0)