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 6bffd01
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 8.3.4
## 8.3.5

- Fixes issue with ES_SERVERLESS_SERVICE_VERSION for backwards compatibility
- Fixes issues with ES_SERVERLESS_SERVICE_VERSION for backwards compatibility

## 8.3.3

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 6bffd01

Please sign in to comment.