From 92a5420cd1ec7af143cf7e1221b3012cb8a90a31 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Thu, 4 Jun 2026 16:56:29 +0100 Subject: [PATCH] Bumps version to 9.3.2 and updates CHANGELOG --- CHANGELOG.md | 10 ++++++++++ elasticsearch-api/lib/elasticsearch/api/version.rb | 2 +- elasticsearch/elasticsearch.gemspec | 2 +- elasticsearch/lib/elasticsearch/version.rb | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e390ddd..5df5ef063 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ **See the full release notes on the official documentation website: https://www.elastic.co/docs/release-notes/elasticsearch/clients/ruby** +# 9.3.2 + +* Updates `elasticsearch-api` to the latest Elasticsearch 9.3 specification. +* Better handling of `content-type` headers when using Manticore and JRuby to avoid duplication. + # 9.3.1 ## Gem @@ -68,6 +73,11 @@ 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.2 + +* Updates `elasticsearch-api` to the latest Elasticsearch 9.2 specification. +* Better handling of `content-type` headers when using Manticore and JRuby to avoid duplication. + # 9.2.1 ## Gem diff --git a/elasticsearch-api/lib/elasticsearch/api/version.rb b/elasticsearch-api/lib/elasticsearch/api/version.rb index 393d6601d..b9070b607 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.1'.freeze + VERSION = '9.3.2'.freeze ES_SPECIFICATION_COMMIT = '31789f4216047ef7ba7969e31610fa2bbfe696b1'.freeze end end diff --git a/elasticsearch/elasticsearch.gemspec b/elasticsearch/elasticsearch.gemspec index 3928ba917..71b3144d7 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.1' + s.add_dependency 'elasticsearch-api', '9.3.2' 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 300e62b72..b3ed0cf0d 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.1'.freeze + VERSION = '9.3.2'.freeze end