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

Bumps version to 8.3.5 and updates CHANGELOG #85

Merged
merged 1 commit into from
Jul 16, 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
11 changes: 6 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
## 8.3.4

- Fixes issue with ES_SERVERLESS_SERVICE_VERSION for backwards compatibility

## 8.3.3
## 8.3.5

- Small updates in source code documentation.
- Updates meta header for Elasticsearch Serverless.
- Fixes issues with ES_SERVERLESS_SERVICE_VERSION for backwards compatibility

## 8.3.3, 8.3.4 (yanked)

- Yanked due to errors.

## 8.3.2

Expand Down
6 changes: 5 additions & 1 deletion lib/elastic/transport/meta_header.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ def meta_header_service_version
if enterprise_search?
Elastic::ENTERPRISE_SERVICE_VERSION
elsif serverless?
Elastic::ES_SERVERLESS_SERVICE_VERSION || Elastic::ELASTICSEARCH_SERVICE_VERSION
if defined?(Elastic::ES_SERVERLESS_SERVICE_VERSION)
Elastic::ES_SERVERLESS_SERVICE_VERSION
else
Elastic::ELASTICSEARCH_SERVICE_VERSION
end
elsif elasticsearch?
Elastic::ELASTICSEARCH_SERVICE_VERSION
elsif defined?(Elasticsearch::VERSION)
Expand Down
2 changes: 1 addition & 1 deletion lib/elastic/transport/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

module Elastic
module Transport
VERSION = '8.3.4'.freeze
VERSION = '8.3.5'.freeze
end
end