diff --git a/CHANGELOG.md b/CHANGELOG.md index a70e7c371..70e390ddd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ **See the full release notes on the official documentation website: https://www.elastic.co/docs/release-notes/elasticsearch/clients/ruby** +# 9.3.1 + +## Gem + +* Fixes a bug in BulkHelper when using `update` with slice. Thanks [gitviola](https://github.com/gitviola)! [Pull Request](https://github.com/elastic/elasticsearch-ruby/pull/2907) + +## Elasticsearch API + +* Elasticsearch API code and source code documentation updated to the latest Elasticsearch 9.3 specification. + # 9.3.0 ## Gem @@ -58,6 +68,16 @@ The [Ruby ES|QL Query Builder](https://github.com/elastic/esql-ruby) [version 0. * `indices.get_sample_stats` - Request stats for a random sample of raw documents ingested into the given index or data stream. * `indices.put_sample_configuration` - Create or update the sampling configuration for the specified index. +# 9.2.1 + +## Gem + +* Fixes a bug in BulkHelper when using `update` with slice. Thanks [gitviola](https://github.com/gitviola)! [Pull Request](https://github.com/elastic/elasticsearch-ruby/pull/2907) + +## Elasticsearch API + +* Elasticsearch API code and source code documentation updated to the latest Elasticsearch 9.2 specification. + # 9.2.0 ## Gem diff --git a/elasticsearch-api/lib/elasticsearch/api/version.rb b/elasticsearch-api/lib/elasticsearch/api/version.rb index 40f920549..e2bc106ad 100644 --- a/elasticsearch-api/lib/elasticsearch/api/version.rb +++ b/elasticsearch-api/lib/elasticsearch/api/version.rb @@ -17,7 +17,7 @@ module Elasticsearch module API - VERSION = '9.3.0'.freeze + VERSION = '9.3.1'.freeze ES_SPECIFICATION_COMMIT = 'df81426e814ecb513b012f2c0a706572964c606c'.freeze end end diff --git a/elasticsearch/elasticsearch.gemspec b/elasticsearch/elasticsearch.gemspec index a8183d407..3928ba917 100644 --- a/elasticsearch/elasticsearch.gemspec +++ b/elasticsearch/elasticsearch.gemspec @@ -46,7 +46,7 @@ Gem::Specification.new do |s| s.rdoc_options = ['--charset=UTF-8'] s.required_ruby_version = '>= 2.6' # For compatibility with JRuby 9.3 - s.add_dependency 'elasticsearch-api', '9.3.0' + s.add_dependency 'elasticsearch-api', '9.3.1' s.add_dependency 'elastic-transport', '~> 8.3' s.add_development_dependency 'base64' diff --git a/elasticsearch/lib/elasticsearch/version.rb b/elasticsearch/lib/elasticsearch/version.rb index 83c2fe904..300e62b72 100644 --- a/elasticsearch/lib/elasticsearch/version.rb +++ b/elasticsearch/lib/elasticsearch/version.rb @@ -16,5 +16,5 @@ # under the License. module Elasticsearch - VERSION = '9.3.0'.freeze + VERSION = '9.3.1'.freeze end