Skip to content

Commit 2a16442

Browse files
committedJan 15, 2025·
Bumps version to 8.16.1 and updates changelog
1 parent 197887d commit 2a16442

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed
 

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
*See the full release notes on the official documentation website: https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/current/release_notes.html*
22

3+
## 8.16.1 Release notes
4+
5+
### Client
6+
7+
* Fixes ScrollHelper issue #2556 - There was a bug where an additional search (with scroll) request was made to Elasticsearch for each resulting hit. It was rewritten so that the docs are retrieved as needed and the Helper instance doesn't store documents internally, with big savings in memory and requests to Elasticsearch.
8+
9+
310
## 8.16.0 Release notes
411

512
### Client

‎docs/release_notes/816.asciidoc

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
[[release_notes_8_16]]
22
=== 8.16 Release notes
33

4+
[discrete]
5+
[[release_notes_8_16_1]]
6+
=== 8.16.1 Release notes
7+
8+
[discrete]
9+
==== Client
10+
11+
* Fixes ScrollHelper issue https://github.com/elastic/elasticsearch-ruby/issues/2556[#2556] - There was a bug where an additional search (with scroll) request was made to Elasticsearch for each resulting hit. It was rewritten so that the docs are retrieved as needed and the Helper instance doesn't store documents internally, with big savings in memory and requests to Elasticsearch.
12+
413
[discrete]
514
[[release_notes_8_16_0]]
615
=== 8.16.0 Release notes
@@ -35,7 +44,7 @@ Added in:
3544
* `indices.promote_data_stream` - `master_timeout`.
3645
* `search_shards` - `master_timeout`.
3746

38-
**APIs Promoted from Exprimental to Stable:**
47+
**APIs Promoted from Experimental to Stable:**
3948

4049
* `indices.delete_data_lifecycle`
4150
* `indices.explain_data_lifecycle`

‎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 = '8.16.0'.freeze
20+
VERSION = '8.16.1'.freeze
2121
end
2222
end

‎elasticsearch/elasticsearch.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
4646
s.required_ruby_version = '>= 2.5'
4747

4848
s.add_dependency 'elastic-transport', '~> 8.3'
49-
s.add_dependency 'elasticsearch-api', '8.16.0'
49+
s.add_dependency 'elasticsearch-api', '8.16.1'
5050

5151
s.add_development_dependency 'base64'
5252
s.add_development_dependency 'bundler'

‎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 = '8.16.0'.freeze
19+
VERSION = '8.16.1'.freeze
2020
end

0 commit comments

Comments
 (0)
Please sign in to comment.