aws-sdk-s3 1.217.0 → 1.217.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/client.rb +1 -1
- data/lib/aws-sdk-s3/plugins/sse_cpk.rb +3 -0
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 80d0d50561fa174f60eb3162b93fc65d636d4d995f865dd73fa5e540625bc9eb
|
|
4
|
+
data.tar.gz: eef0aa119ba790548fd9c3fc65a20b33ad36347c023de018d98248607746aaab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a4b1a0951f46b596fbe6c08f1d33acac3d17de4c13a04dc09172662491c7a24a3c3a263681bc432ea4ab75d40a7da6dcf126064f66757c93e685ccd405ab278
|
|
7
|
+
data.tar.gz: 2cb005b279c2e6d08f6fff9a961476f381afb2286495aa02d0a26172b2301511a7841d44c20aeac052ce6ed680f73e7b69cc779cc7f5468b089c76134dd2037c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.217.1 (2026-03-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Issue - Fix `require_https_for_sse_cpk` option being ignored; the HTTPS enforcement for SSE-CPK operations now correctly respects the configured value, allowing it to be disabled for local development.
|
|
8
|
+
|
|
4
9
|
1.217.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.217.
|
|
1
|
+
1.217.1
|
data/lib/aws-sdk-s3/client.rb
CHANGED
|
@@ -22600,7 +22600,7 @@ module Aws::S3
|
|
|
22600
22600
|
tracer: tracer
|
|
22601
22601
|
)
|
|
22602
22602
|
context[:gem_name] = 'aws-sdk-s3'
|
|
22603
|
-
context[:gem_version] = '1.217.
|
|
22603
|
+
context[:gem_version] = '1.217.1'
|
|
22604
22604
|
Seahorse::Client::Request.new(handlers, context)
|
|
22605
22605
|
end
|
|
22606
22606
|
|
|
@@ -41,6 +41,9 @@ This should only be disabled for local testing.
|
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
def require_https(context)
|
|
44
|
+
# Skip the check if the user opted out of HTTPS enforcement
|
|
45
|
+
return unless context.config.require_https_for_sse_cpk
|
|
46
|
+
|
|
44
47
|
unless URI::HTTPS === context.config.endpoint
|
|
45
48
|
msg = <<-MSG.strip.gsub("\n", ' ')
|
|
46
49
|
Attempting to send customer-provided-keys for S3
|
data/lib/aws-sdk-s3.rb
CHANGED