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 7.17.11 #2401

Merged
merged 4 commits into from
Jun 3, 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
5 changes: 3 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ steps:
- "free"
- "platinum"
ruby:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
Expand All @@ -31,11 +32,11 @@ steps:
- with:
stack_version: "8.14.0-SNAPSHOT"
suite: "free"
ruby: "3.2"
ruby: "3.3"
- with:
stack_version: "8.14.0-SNAPSHOT"
suite: "platinum"
ruby: "3.2"
ruby: "3.3"
command: ./.buildkite/run-tests.sh
artifact_paths: "elasticsearch-api/tmp/*"
- wait: ~
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/docs-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: docs-preview

on:
pull_request_target:
types: [opened]

permissions:
pull-requests: write

jobs:
doc-preview-pr:
runs-on: ubuntu-latest
steps:
- uses: elastic/docs/.github/actions/docs-preview@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
repo: ${{ github.event.repository.name }}
preview-path: 'guide/en/elasticsearch/client/ruby-api/index.html'
pr: ${{ github.event.pull_request.number }}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 7.17.11

- Ruby 3.3 added to the test matrix. Tested versions of Ruby for 7.17.11: Ruby (MRI) 3.0, 3.1, 3.2, 3.3, JRuby 9.3, JRuby 9.4.
- Adds `base64` dependency to `elasticsearch-transport`: base64 was added to the gemspec, since starting in Ruby 3.4.0, base64 will no longer be part of the default gems and will no longer be in the standard library, [#2400](https://github.com/elastic/elasticsearch-ruby/pull/2400)

## 7.17.10

Backports support for Faraday 2 from `elastic-transport`. ¡Gracias [santiagorodriguez96](https://github.com/santiagorodriguez96)!
Expand Down
7 changes: 7 additions & 0 deletions docs/release_notes/717.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
[[release_notes_717]]
=== 7.17 Release notes

[discrete]
[[release_notes_71711]]
=== 7.17.11 Release notes

- Ruby 3.3 added to the test matrix. Tested versions of Ruby for 7.17.11: Ruby (MRI) 3.0, 3.1, 3.2, 3.3, JRuby 9.3, JRuby 9.4.
- Adds `base64` dependency to `elasticsearch-transport`: base64 was added to the gemspec, since starting in Ruby 3.4.0, base64 will no longer be part of the default gems and will no longer be in the standard library, https://github.com/elastic/elasticsearch-ruby/pull/2400[#2400].

[discrete]
[[release_notes_71710]]
=== 7.17.10 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 = '7.17.10'.freeze
VERSION = '7.17.11'.freeze
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

module Elasticsearch
module Transport
VERSION = '7.17.10'.freeze
VERSION = '7.17.11'.freeze
end
end
2 changes: 1 addition & 1 deletion elasticsearch-xpack/lib/elasticsearch/xpack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

module Elasticsearch
module XPack
VERSION = '7.17.10'.freeze
VERSION = '7.17.11'.freeze
end
end
4 changes: 2 additions & 2 deletions elasticsearch/elasticsearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 2.4'

s.add_dependency 'elasticsearch-transport', '7.17.10'
s.add_dependency 'elasticsearch-api', '7.17.10'
s.add_dependency 'elasticsearch-transport', '7.17.11'
s.add_dependency 'elasticsearch-api', '7.17.11'

s.add_development_dependency 'bundler'
s.add_development_dependency 'byebug' unless defined?(JRUBY_VERSION) || defined?(Rubinius)
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 = '7.17.10'.freeze
VERSION = '7.17.11'.freeze
end
Loading