Skip to content
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

Release 8.11.2 #2301

Merged
merged 2 commits into from
Feb 6, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
*To see release notes for the `7.x` branch and older releases, see [CHANGELOG on the 7.17 branch](https://github.com/elastic/elasticsearch-ruby/blob/7.17/CHANGELOG.md).*

## 8.11.2 Release notes

Drops runtime dependency on `base64`. Thanks [Earlopain](https://github.com/Earlopain)! Pull Request: [#2295](https://github.com/elastic/elasticsearch-ruby/pull/2295).

## 8.11.1 Release notes

Adds `base64` dependency
Expand Down
6 changes: 6 additions & 0 deletions docs/release_notes/811.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[[release_notes_8110]]
=== 8.11 Release notes

[discrete]
[[release_notes_8_11_2]]
=== 8.11.2 Release notes

Drops runtime dependency on `base64`. Thanks https://github.com/Earlopain[Earlopain]! Pull Request: https://github.com/elastic/elasticsearch-ruby/pull/2295[#2295]).

[discrete]
[[release_notes_8_11_1]]
=== 8.11.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.11.1'.freeze
VERSION = '8.11.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.11.1'
s.add_dependency 'elasticsearch-api', '8.11.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.11.1'.freeze
VERSION = '8.11.2'.freeze
end
Loading