Skip to content

Commit

Permalink
Bumps version to 8.3.5 and updates CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
picandocodigo committed Jul 16, 2024
1 parent 6dd59f0 commit cd69f9e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
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

0 comments on commit cd69f9e

Please sign in to comment.