File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
elasticsearch-api/lib/elasticsearch/api Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
** See the full release notes on the official documentation website: https://www.elastic.co/docs/release-notes/elasticsearch/clients/ruby **
2
2
3
+ # 9.0.2
4
+
5
+ - Udpates setting 'Accept' and 'Content-Type' headers as to not duplicate or overwrite set headers.
6
+
3
7
# 9.0.1
4
8
5
9
- The request headers were updated for Elasticsearch v9: ` compatible-with=9 ` [ #2660 ] ( https://github.com/elastic/elasticsearch-ruby/pull/2660 ) .
Original file line number Diff line number Diff line change 17
17
18
18
module Elasticsearch
19
19
module API
20
- VERSION = '9.0.1 ' . freeze
20
+ VERSION = '9.0.2 ' . freeze
21
21
ES_SPECIFICATION_COMMIT = '52c473efb1fb5320a5bac12572d0b285882862fb' . freeze
22
22
end
23
23
end
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Gem::Specification.new do |s|
46
46
s . rdoc_options = [ '--charset=UTF-8' ]
47
47
48
48
s . required_ruby_version = '>= 2.6' # For compatibility with JRuby 9.3
49
- s . add_dependency 'elasticsearch-api' , '9.0.1 '
49
+ s . add_dependency 'elasticsearch-api' , '9.0.2 '
50
50
s . add_dependency 'elastic-transport' , '~> 8.3'
51
51
52
52
s . add_development_dependency 'base64'
Original file line number Diff line number Diff line change 16
16
# under the License.
17
17
18
18
module Elasticsearch
19
- VERSION = '9.0.1 ' . freeze
19
+ VERSION = '9.0.2 ' . freeze
20
20
end
You can’t perform that action at this time.
0 commit comments