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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2d2e8d0282c2d55a8c7242288bfae5c656740bb1d74ae7bb1c9d6210d0199b3
4
- data.tar.gz: 0f544783861a5e9a65ef1986154c0ebc27d35115f971ec5fd657da0846a58c9e
3
+ metadata.gz: 80d0d50561fa174f60eb3162b93fc65d636d4d995f865dd73fa5e540625bc9eb
4
+ data.tar.gz: eef0aa119ba790548fd9c3fc65a20b33ad36347c023de018d98248607746aaab
5
5
  SHA512:
6
- metadata.gz: bb8a4ca2f0f722ee3f8888561fe97395fffb68938364af385b4020e03329ee73dfd1f4f65980cb58550cb30170a207d19b7905c4c5980c64e7e915b785e7c6c8
7
- data.tar.gz: 488a68382810e4a4c6599c15c0374136ea254c7aa85f09c2ed09a2f7d2810efa8bee86c7fa7068f0da7fdb03d1b79fd9646c743b86ef32bc015ab277a6f3ac51
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.0
1
+ 1.217.1
@@ -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.0'
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
@@ -75,7 +75,7 @@ module Aws::S3
75
75
  autoload :ObjectVersion, 'aws-sdk-s3/object_version'
76
76
  autoload :EventStreams, 'aws-sdk-s3/event_streams'
77
77
 
78
- GEM_VERSION = '1.217.0'
78
+ GEM_VERSION = '1.217.1'
79
79
 
80
80
  end
81
81
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.217.0
4
+ version: 1.217.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services