Skip to content

Bumps version to 8.17.2 and updates CHANGELOG #2621

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,51 @@
*See the full release notes on the official documentation website: https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/current/release_notes.html*

## 8.17.2 Release notes

### API

New APIs:
* `esql.async_query_delete`
* `indices.get_data_lifecycle_stats`
* `inference.update`
* `security.delegate_pki`

Updates APIs:
* `async_search.submit` - Adds `keep_alive` Time parameter.
* `indices.put_template` - Adds `cause` String parameter.
* `xpack.info` - Adds `human` parameter for human-readable information.
* Timeout parameters updated:
* `:master_timeout` (Time), explicit operation timeout for connection to master node.
* `:timeout` (Time), explicit operation timeout.
* Added to:
* `index_lifecycle_management.delete_lifecycle` - adds both.
* `index_lifecycle_management.delete_lifecycle` - adds `master_timeout`.
* `index_lifecycle_management.get_lifecycle` - adds both.
* `index_lifecycle_management.put_lifecycle` - adds both.
* `index_lifecycle_management.start` - adds both.
* `index_lifecycle_management.stop` - adds both.
* `ingest.delete_geoip_database` - adds both.
* `ingest.delete_geoip_location_database` - adds both.
* `ingest.put_geoip_database` - adds both.
* `ingest.put_ip_location_database` - adds both.
* `license.post_start_trial` - removes `timeout`.
* `shutdown.delete_node` - adds both.
* `shutdown.put_node` - adds both.
* `snapshot_lifecycle_management.delete_lifecycle` - adds both.
* `snapshot_lifecycle_management.execute_lifecycle` - adds both.
* `snapshot_lifecycle_management.execute_retention` - adds both.
* `snapshot_lifecycle_management.get_lifecycle` - adds both.
* `snapshot_lifecycle_management.get_stats` - adds both.
* `snapshot_lifecycle_management.get_status` - adds both.
* `snapshot_lifecycle_management.put_lifecycle` - adds both.

APIs promoted from Experimental to Stable:
* `inference.delete`
* `inference.get`
* `inference.inference`
* `inference.put`
* `inference.stream_inference`

## 8.17.1 Release notes

### Client
Expand Down
52 changes: 52 additions & 0 deletions docs/release_notes/817.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,58 @@
[[release_notes_8_17]]
=== 8.17 Release notes

[discrete]
[[release_notes_8_17_2]]
=== 8.17.2 Release notes

[discrete]
==== API

New APIs:

* `esql.async_query_delete`
* `indices.get_data_lifecycle_stats`
* `inference.update`
* `security.delegate_pki`

Updated APIs:

* `async_search.submit` - Adds `keep_alive` Time parameter.
* `indices.put_template` - Adds `cause` String parameter.
* `xpack.info` - Adds `human` parameter for human-readable information.
* Timeout parameters updated:
** `:master_timeout` (Time), explicit operation timeout for connection to master node.
** `:timeout` (Time), explicit operation timeout.
*** Added to:
**** `index_lifecycle_management.delete_lifecycle` - adds both.
**** `index_lifecycle_management.delete_lifecycle` - adds `master_timeout`.
**** `index_lifecycle_management.get_lifecycle` - adds both.
**** `index_lifecycle_management.put_lifecycle` - adds both.
**** `index_lifecycle_management.start` - adds both.
**** `index_lifecycle_management.stop` - adds both.
**** `ingest.delete_geoip_database` - adds both.
**** `ingest.delete_geoip_location_database` - adds both.
**** `ingest.put_geoip_database` - adds both.
**** `ingest.put_ip_location_database` - adds both.
**** `license.post_start_trial` - removes `timeout`.
**** `shutdown.delete_node` - adds both.
**** `shutdown.put_node` - adds both.
**** `snapshot_lifecycle_management.delete_lifecycle` - adds both.
**** `snapshot_lifecycle_management.execute_lifecycle` - adds both.
**** `snapshot_lifecycle_management.execute_retention` - adds both.
**** `snapshot_lifecycle_management.get_lifecycle` - adds both.
**** `snapshot_lifecycle_management.get_stats` - adds both.
**** `snapshot_lifecycle_management.get_status` - adds both.
**** `snapshot_lifecycle_management.put_lifecycle` - adds both.

APIs promoted from Experimental to Stable:

* `inference.delete`
* `inference.get`
* `inference.inference`
* `inference.put`
* `inference.stream_inference`

[discrete]
[[release_notes_8_17_1]]
=== 8.17.1 Release notes
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch-api/lib/elasticsearch/api/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

module Elasticsearch
module API
VERSION = '8.17.1'.freeze
VERSION = '8.17.2'.freeze
end
end
2 changes: 1 addition & 1 deletion elasticsearch/elasticsearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.5'

s.add_dependency 'elastic-transport', '~> 8.3'
s.add_dependency 'elasticsearch-api', '8.17.1'
s.add_dependency 'elasticsearch-api', '8.17.2'

s.add_development_dependency 'base64'
s.add_development_dependency 'bundler'
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/lib/elasticsearch/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
# under the License.

module Elasticsearch
VERSION = '8.17.1'.freeze
VERSION = '8.17.2'.freeze
end