Skip to content
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
2 changes: 1 addition & 1 deletion build_tools/services.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ServiceEnumerator
MINIMUM_CORE_VERSION = "3.254.0"

# Minimum `aws-sdk-core` version for new S3 gem builds
MINIMUM_CORE_VERSION_S3 = "3.254.0"
MINIMUM_CORE_VERSION_S3 = "3.254.1"

EVENTSTREAM_PLUGIN = "Aws::Plugins::EventStreamConfiguration"

Expand Down
1 change: 1 addition & 0 deletions gems/aws-sdk-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Unreleased Changes
------------------
* Issue - Fix a double space appearing in the frameworks section of the User-Agent header.

3.254.0 (2026-07-09)
------------------
Expand Down
2 changes: 1 addition & 1 deletion gems/aws-sdk-core/lib/aws-sdk-core/plugins/user_agent.rb
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def framework_metadata

frameworks[match[:name]] = match[:version]
end
frameworks.map { |n, v| "lib/#{n}##{v}" }.join(' ')
frameworks.map { |n, v| "lib/#{n}##{v}" }.join(' ') unless frameworks.empty?
end

def metric_metadata
Expand Down