aws-sdk-s3 1.151.0 → 1.208.0
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 +352 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/access_grants_credentials_provider.rb +12 -3
- data/lib/aws-sdk-s3/bucket.rb +358 -109
- data/lib/aws-sdk-s3/bucket_acl.rb +10 -9
- data/lib/aws-sdk-s3/bucket_cors.rb +10 -9
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +11 -6
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +64 -7
- data/lib/aws-sdk-s3/bucket_logging.rb +5 -5
- data/lib/aws-sdk-s3/bucket_notification.rb +3 -3
- data/lib/aws-sdk-s3/bucket_policy.rb +14 -13
- data/lib/aws-sdk-s3/bucket_request_payment.rb +6 -6
- data/lib/aws-sdk-s3/bucket_tagging.rb +7 -7
- data/lib/aws-sdk-s3/bucket_versioning.rb +47 -14
- data/lib/aws-sdk-s3/bucket_website.rb +7 -7
- data/lib/aws-sdk-s3/client.rb +5530 -2075
- data/lib/aws-sdk-s3/client_api.rb +660 -162
- data/lib/aws-sdk-s3/customizations/bucket.rb +1 -1
- data/lib/aws-sdk-s3/customizations/object.rb +87 -91
- data/lib/aws-sdk-s3/customizations/object_summary.rb +5 -0
- data/lib/aws-sdk-s3/customizations/object_version.rb +13 -0
- data/lib/aws-sdk-s3/customizations.rb +28 -39
- data/lib/aws-sdk-s3/default_executor.rb +103 -0
- data/lib/aws-sdk-s3/encryption/client.rb +4 -4
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +4 -2
- data/lib/aws-sdk-s3/encryptionV2/client.rb +100 -25
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +7 -162
- data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +17 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +10 -2
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +5 -0
- data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
- data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
- data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
- data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
- data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
- data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +1 -0
- data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
- data/lib/aws-sdk-s3/endpoint_parameters.rb +37 -34
- data/lib/aws-sdk-s3/endpoint_provider.rb +572 -277
- data/lib/aws-sdk-s3/endpoints.rb +566 -1612
- data/lib/aws-sdk-s3/errors.rb +58 -0
- data/lib/aws-sdk-s3/file_downloader.rb +192 -146
- data/lib/aws-sdk-s3/file_uploader.rb +10 -14
- data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
- data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +105 -102
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +97 -108
- data/lib/aws-sdk-s3/multipart_upload.rb +112 -12
- data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +55 -39
- data/lib/aws-sdk-s3/object.rb +713 -227
- data/lib/aws-sdk-s3/object_acl.rb +15 -9
- data/lib/aws-sdk-s3/object_copier.rb +1 -1
- data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
- data/lib/aws-sdk-s3/object_summary.rb +592 -173
- data/lib/aws-sdk-s3/object_version.rb +102 -17
- data/lib/aws-sdk-s3/plugins/access_grants.rb +75 -5
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/endpoints.rb +25 -213
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +18 -21
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +55 -18
- data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +5 -7
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
- data/lib/aws-sdk-s3/presigner.rb +5 -5
- data/lib/aws-sdk-s3/resource.rb +53 -20
- data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
- data/lib/aws-sdk-s3/types.rb +4705 -1528
- data/lib/aws-sdk-s3.rb +35 -31
- data/sig/bucket.rbs +28 -9
- data/sig/bucket_acl.rbs +1 -1
- data/sig/bucket_cors.rbs +1 -1
- data/sig/bucket_lifecycle.rbs +1 -1
- data/sig/bucket_lifecycle_configuration.rbs +8 -4
- data/sig/bucket_logging.rbs +1 -1
- data/sig/bucket_policy.rbs +1 -1
- data/sig/bucket_request_payment.rbs +1 -1
- data/sig/bucket_tagging.rbs +1 -1
- data/sig/bucket_versioning.rbs +3 -3
- data/sig/bucket_website.rbs +1 -1
- data/sig/client.rbs +322 -72
- data/sig/errors.rbs +10 -0
- data/sig/multipart_upload.rbs +13 -3
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +44 -16
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +29 -16
- data/sig/object_version.rbs +15 -3
- data/sig/resource.rbs +20 -5
- data/sig/types.rbs +403 -66
- data/sig/waiters.rbs +12 -0
- metadata +29 -12
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8d399e87c3b6a02f60b4fc2efbb7e656af4f8ef66302eec0454129bded2fdb0
|
|
4
|
+
data.tar.gz: 3d348a0ce7abfbc7bfd9210227df82f33d4576f321f9da5374b29f6834e62a38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 525a8c73faf271316eb39fad4880032687e38fc54f452b733c7f161af4e367bf142c73b7218185f5d335219940bce706a5f9884d0716a388a8289a1ea44150f4
|
|
7
|
+
data.tar.gz: ff3d94155efdef438f2db5f4e2a6126590924fb5b712e74981dd174f2e05a7bebcfb1c23e69f00d1aa84b0a1f20415670a630a93ef142472159ee6d8de20df3b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,358 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.208.0 (2025-12-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updates to the S3 Encryption Client. The V3 S3 Encryption Client now requires key committing algorithm suites by default.
|
|
8
|
+
|
|
9
|
+
1.207.0 (2025-12-15)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations.
|
|
13
|
+
|
|
14
|
+
1.206.0 (2025-12-02)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - New S3 Storage Class FSX_ONTAP
|
|
18
|
+
|
|
19
|
+
1.205.0 (2025-11-20)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Enable / Disable ABAC on a general purpose bucket.
|
|
23
|
+
|
|
24
|
+
1.204.0 (2025-11-19)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Adds support for blocking SSE-C writes to general purpose buckets.
|
|
28
|
+
|
|
29
|
+
1.203.1 (2025-11-10)
|
|
30
|
+
------------------
|
|
31
|
+
|
|
32
|
+
* Issue - Deprecated `:checksum_mode` parameter in `FileDownloader#download`. When set to "DISABLED", a deprecation warning is issued and the parameter is ignored. Use `:response_checksum_validation` on the S3 client instead to control checksum validation behavior.
|
|
33
|
+
|
|
34
|
+
1.203.0 (2025-11-05)
|
|
35
|
+
------------------
|
|
36
|
+
|
|
37
|
+
* Feature - Launch IPv6 dual-stack support for S3 Express
|
|
38
|
+
|
|
39
|
+
1.202.0 (2025-10-28)
|
|
40
|
+
------------------
|
|
41
|
+
|
|
42
|
+
* Feature - Amazon Simple Storage Service / Features: Add conditional writes in CopyObject on destination key to prevent unintended object modifications.
|
|
43
|
+
|
|
44
|
+
1.201.0 (2025-10-21)
|
|
45
|
+
------------------
|
|
46
|
+
|
|
47
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
48
|
+
|
|
49
|
+
* Issue - Fix multipart upload to respect `request_checksum_calculation` `when_required` mode.
|
|
50
|
+
|
|
51
|
+
1.200.0 (2025-10-15)
|
|
52
|
+
------------------
|
|
53
|
+
|
|
54
|
+
* Feature - Add lightweight thread pool executor for multipart `download_file`, `upload_file` and `upload_stream`.
|
|
55
|
+
|
|
56
|
+
* Feature - Add custom executor support for `Aws::S3::TransferManager`.
|
|
57
|
+
|
|
58
|
+
1.199.1 (2025-09-25)
|
|
59
|
+
------------------
|
|
60
|
+
|
|
61
|
+
* Issue - Update `TransferManager#download_file` and `Object#download_file` documentation regarding temporary file usage and failure handling for different destination types.
|
|
62
|
+
|
|
63
|
+
1.199.0 (2025-09-08)
|
|
64
|
+
------------------
|
|
65
|
+
|
|
66
|
+
* Feature - This release includes backward compatibility work on the "Expires" parameter.
|
|
67
|
+
|
|
68
|
+
1.198.0 (2025-08-26)
|
|
69
|
+
------------------
|
|
70
|
+
|
|
71
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
72
|
+
|
|
73
|
+
* Issue - Fix multipart `download_file` to support `Pathname`, `File` and `Tempfile` objects as download destinations.
|
|
74
|
+
|
|
75
|
+
1.197.0 (2025-08-19)
|
|
76
|
+
------------------
|
|
77
|
+
|
|
78
|
+
* Issue - When multipart stream uploader fails to complete multipart upload, it calls abort multipart upload.
|
|
79
|
+
|
|
80
|
+
* Issue - For `Aws::S3::Object` class, the following methods have been deprecated: `download_file`, `upload_file` and `upload_stream`. Use `Aws::S3::TransferManager` instead.
|
|
81
|
+
|
|
82
|
+
* Feature - Add `Aws::S3::TransferManager`, a S3 transfer utility that provides upload/download capabilities with automatic multipart handling, progress tracking, and handling of large files.
|
|
83
|
+
|
|
84
|
+
1.196.1 (2025-08-05)
|
|
85
|
+
------------------
|
|
86
|
+
|
|
87
|
+
* Issue - Add range validation to multipart download to ensure all parts are successfully processed.
|
|
88
|
+
|
|
89
|
+
* Issue - When multipart uploader fails to complete multipart upload, it calls abort multipart upload.
|
|
90
|
+
|
|
91
|
+
* Issue - Clean up partially downloaded file on multipart `download_file` failure while preserving existing file.
|
|
92
|
+
|
|
93
|
+
1.196.0 (2025-08-04)
|
|
94
|
+
------------------
|
|
95
|
+
|
|
96
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
97
|
+
|
|
98
|
+
1.195.0 (2025-07-31)
|
|
99
|
+
------------------
|
|
100
|
+
|
|
101
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
102
|
+
|
|
103
|
+
1.194.0 (2025-07-21)
|
|
104
|
+
------------------
|
|
105
|
+
|
|
106
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
107
|
+
|
|
108
|
+
1.193.0 (2025-07-15)
|
|
109
|
+
------------------
|
|
110
|
+
|
|
111
|
+
* Feature - Amazon S3 Metadata live inventory tables provide a queryable inventory of all the objects in your general purpose bucket so that you can determine the latest state of your data. To help minimize your storage costs, use journal table record expiration to set a retention period for your records.
|
|
112
|
+
|
|
113
|
+
1.192.0 (2025-07-02)
|
|
114
|
+
------------------
|
|
115
|
+
|
|
116
|
+
* Feature - Added support for directory bucket creation with tags and bucket ARN retrieval in CreateBucket, ListDirectoryBuckets, and HeadBucket operations
|
|
117
|
+
|
|
118
|
+
1.191.0 (2025-06-25)
|
|
119
|
+
------------------
|
|
120
|
+
|
|
121
|
+
* Feature - Adds support for additional server-side encryption mode and storage class values for accessing Amazon FSx data from Amazon S3 using S3 Access Points
|
|
122
|
+
|
|
123
|
+
1.190.0 (2025-06-18)
|
|
124
|
+
------------------
|
|
125
|
+
|
|
126
|
+
* Feature - Added support for renaming objects within the same bucket using the new RenameObject API.
|
|
127
|
+
|
|
128
|
+
1.189.1 (2025-06-10)
|
|
129
|
+
------------------
|
|
130
|
+
|
|
131
|
+
* Issue - Only load required `cgi` modules for Ruby 3.5.
|
|
132
|
+
|
|
133
|
+
1.189.0 (2025-06-02)
|
|
134
|
+
------------------
|
|
135
|
+
|
|
136
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
137
|
+
|
|
138
|
+
1.188.0 (2025-05-29)
|
|
139
|
+
------------------
|
|
140
|
+
|
|
141
|
+
* Feature - Adding checksum support for S3 PutBucketOwnershipControls API.
|
|
142
|
+
|
|
143
|
+
1.187.0 (2025-05-28)
|
|
144
|
+
------------------
|
|
145
|
+
|
|
146
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
147
|
+
|
|
148
|
+
* Issue - Signal data in http response listeners prior to writing, so that data can be inspected or verified before potential mutation.
|
|
149
|
+
|
|
150
|
+
1.186.1 (2025-05-15)
|
|
151
|
+
------------------
|
|
152
|
+
* Issue - Abort multipart download if object is modified during download.
|
|
153
|
+
|
|
154
|
+
1.186.0 (2025-05-12)
|
|
155
|
+
------------------
|
|
156
|
+
|
|
157
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
158
|
+
|
|
159
|
+
1.185.0 (2025-05-01)
|
|
160
|
+
------------------
|
|
161
|
+
|
|
162
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
163
|
+
|
|
164
|
+
1.184.0 (2025-04-28)
|
|
165
|
+
------------------
|
|
166
|
+
|
|
167
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
168
|
+
|
|
169
|
+
1.183.0 (2025-03-31)
|
|
170
|
+
------------------
|
|
171
|
+
|
|
172
|
+
* Feature - Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones
|
|
173
|
+
|
|
174
|
+
1.182.0 (2025-02-18)
|
|
175
|
+
------------------
|
|
176
|
+
|
|
177
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
178
|
+
|
|
179
|
+
1.181.0 (2025-02-14)
|
|
180
|
+
------------------
|
|
181
|
+
|
|
182
|
+
* Feature - Added support for Content-Range header in HeadObject response.
|
|
183
|
+
|
|
184
|
+
1.180.0 (2025-02-06)
|
|
185
|
+
------------------
|
|
186
|
+
|
|
187
|
+
* Feature - Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.
|
|
188
|
+
|
|
189
|
+
1.179.0 (2025-01-29)
|
|
190
|
+
------------------
|
|
191
|
+
|
|
192
|
+
* Feature - Change the type of MpuObjectSize in CompleteMultipartUploadRequest from int to long.
|
|
193
|
+
|
|
194
|
+
1.178.0 (2025-01-15)
|
|
195
|
+
------------------
|
|
196
|
+
|
|
197
|
+
* Feature - This change enhances integrity protections for new SDK requests to S3. S3 SDKs now support the CRC64NVME checksum algorithm, full object checksums for multipart S3 objects, and new default integrity protections for S3 requests.
|
|
198
|
+
|
|
199
|
+
* Feature - Default to using `CRC32` checksum validation for S3 uploads and downloads.
|
|
200
|
+
|
|
201
|
+
1.177.0 (2025-01-03)
|
|
202
|
+
------------------
|
|
203
|
+
|
|
204
|
+
* Feature - This change is only for updating the model regexp of CopySource which is not for validation but only for documentation and user guide change.
|
|
205
|
+
|
|
206
|
+
1.176.1 (2024-12-12)
|
|
207
|
+
------------------
|
|
208
|
+
|
|
209
|
+
* Issue - Do not normalize object keys when calling `presigned_url` or `presigned_request`.
|
|
210
|
+
|
|
211
|
+
1.176.0 (2024-12-03)
|
|
212
|
+
------------------
|
|
213
|
+
|
|
214
|
+
* Feature - Amazon S3 Metadata stores object metadata in read-only, fully managed Apache Iceberg metadata tables that you can query. You can create metadata table configurations for S3 general purpose buckets.
|
|
215
|
+
|
|
216
|
+
1.175.0 (2024-12-02)
|
|
217
|
+
------------------
|
|
218
|
+
|
|
219
|
+
* Feature - Amazon S3 introduces support for AWS Dedicated Local Zones
|
|
220
|
+
|
|
221
|
+
1.174.0 (2024-11-25)
|
|
222
|
+
------------------
|
|
223
|
+
|
|
224
|
+
* Feature - Amazon Simple Storage Service / Features: Add support for ETag based conditional writes in PutObject and CompleteMultiPartUpload APIs to prevent unintended object modifications.
|
|
225
|
+
|
|
226
|
+
1.173.0 (2024-11-21)
|
|
227
|
+
------------------
|
|
228
|
+
|
|
229
|
+
* Feature - Add support for conditional deletes for the S3 DeleteObject and DeleteObjects APIs. Add support for write offset bytes option used to append to objects with the S3 PutObject API.
|
|
230
|
+
|
|
231
|
+
1.172.0 (2024-11-18)
|
|
232
|
+
------------------
|
|
233
|
+
|
|
234
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
235
|
+
|
|
236
|
+
1.171.0 (2024-11-14)
|
|
237
|
+
------------------
|
|
238
|
+
|
|
239
|
+
* Feature - This release updates the ListBuckets API Reference documentation in support of the new 10,000 general purpose bucket default quota on all AWS accounts. To increase your bucket quota from 10,000 to up to 1 million buckets, simply request a quota increase via Service Quotas.
|
|
240
|
+
|
|
241
|
+
1.170.1 (2024-11-11)
|
|
242
|
+
------------------
|
|
243
|
+
|
|
244
|
+
* Issue - Tighten regex used to check for S3 200 errors.
|
|
245
|
+
|
|
246
|
+
1.170.0 (2024-11-06)
|
|
247
|
+
------------------
|
|
248
|
+
|
|
249
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
250
|
+
|
|
251
|
+
1.169.0 (2024-10-18)
|
|
252
|
+
------------------
|
|
253
|
+
|
|
254
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
255
|
+
|
|
256
|
+
1.168.0 (2024-10-16)
|
|
257
|
+
------------------
|
|
258
|
+
|
|
259
|
+
* Feature - Add support for the new optional bucket-region and prefix query parameters in the ListBuckets API. For ListBuckets requests that express pagination, Amazon S3 will now return both the bucket names and associated AWS regions in the response.
|
|
260
|
+
|
|
261
|
+
1.167.0 (2024-10-02)
|
|
262
|
+
------------------
|
|
263
|
+
|
|
264
|
+
* Feature - This release introduces a header representing the minimum object size limit for Lifecycle transitions.
|
|
265
|
+
|
|
266
|
+
1.166.0 (2024-09-24)
|
|
267
|
+
------------------
|
|
268
|
+
|
|
269
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
270
|
+
|
|
271
|
+
1.165.0 (2024-09-23)
|
|
272
|
+
------------------
|
|
273
|
+
|
|
274
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
275
|
+
|
|
276
|
+
1.164.0 (2024-09-20)
|
|
277
|
+
------------------
|
|
278
|
+
|
|
279
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
280
|
+
|
|
281
|
+
1.163.0 (2024-09-18)
|
|
282
|
+
------------------
|
|
283
|
+
|
|
284
|
+
* Feature - Added SSE-KMS support for directory buckets.
|
|
285
|
+
|
|
286
|
+
1.162.0 (2024-09-11)
|
|
287
|
+
------------------
|
|
288
|
+
|
|
289
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
290
|
+
|
|
291
|
+
1.161.0 (2024-09-10)
|
|
292
|
+
------------------
|
|
293
|
+
|
|
294
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
295
|
+
|
|
296
|
+
1.160.0 (2024-09-03)
|
|
297
|
+
------------------
|
|
298
|
+
|
|
299
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
300
|
+
|
|
301
|
+
1.159.0 (2024-08-20)
|
|
302
|
+
------------------
|
|
303
|
+
|
|
304
|
+
* Feature - Amazon Simple Storage Service / Features : Add support for conditional writes for PutObject and CompleteMultipartUpload APIs.
|
|
305
|
+
|
|
306
|
+
1.158.0 (2024-08-15)
|
|
307
|
+
------------------
|
|
308
|
+
|
|
309
|
+
* Feature - Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API.
|
|
310
|
+
|
|
311
|
+
1.157.0 (2024-08-01)
|
|
312
|
+
------------------
|
|
313
|
+
|
|
314
|
+
* Feature - Support `head_bucket`, `get_object_attributes`, `delete_objects`, and `copy_object` for Access Grants.
|
|
315
|
+
|
|
316
|
+
1.156.0 (2024-07-02)
|
|
317
|
+
------------------
|
|
318
|
+
|
|
319
|
+
* Feature - Added response overrides to Head Object requests.
|
|
320
|
+
|
|
321
|
+
1.155.0 (2024-06-28)
|
|
322
|
+
------------------
|
|
323
|
+
|
|
324
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
325
|
+
|
|
326
|
+
1.154.0 (2024-06-25)
|
|
327
|
+
------------------
|
|
328
|
+
|
|
329
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
330
|
+
|
|
331
|
+
1.153.0 (2024-06-24)
|
|
332
|
+
------------------
|
|
333
|
+
|
|
334
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
335
|
+
|
|
336
|
+
1.152.3 (2024-06-13)
|
|
337
|
+
------------------
|
|
338
|
+
|
|
339
|
+
* Issue - Handle 200 errors for all S3 operations that do not have streaming responses.
|
|
340
|
+
|
|
341
|
+
1.152.2 (2024-06-12)
|
|
342
|
+
------------------
|
|
343
|
+
|
|
344
|
+
* Issue - Revert Handling of 200 errors for all S3 operations.
|
|
345
|
+
|
|
346
|
+
1.152.1 (2024-06-10)
|
|
347
|
+
------------------
|
|
348
|
+
|
|
349
|
+
* Issue - Handle 200 errors for all S3 operations that do not have streaming responses.
|
|
350
|
+
|
|
351
|
+
1.152.0 (2024-06-05)
|
|
352
|
+
------------------
|
|
353
|
+
|
|
354
|
+
* Feature - Added new params copySource and key to copyObject API for supporting S3 Access Grants plugin. These changes will not change any of the existing S3 API functionality.
|
|
355
|
+
|
|
4
356
|
1.151.0 (2024-05-14)
|
|
5
357
|
------------------
|
|
6
358
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.208.0
|
|
@@ -47,6 +47,8 @@ module Aws
|
|
|
47
47
|
@caching = options.delete(:caching) != false
|
|
48
48
|
@s3_control_clients = {}
|
|
49
49
|
@bucket_region_cache = Aws::S3.bucket_region_cache
|
|
50
|
+
@head_bucket_mutex = Mutex.new
|
|
51
|
+
@head_bucket_call = false
|
|
50
52
|
return unless @caching
|
|
51
53
|
|
|
52
54
|
@credentials_cache = Aws::S3.access_grants_credentials_cache
|
|
@@ -195,9 +197,16 @@ module Aws
|
|
|
195
197
|
end
|
|
196
198
|
|
|
197
199
|
def new_bucket_region_for(bucket)
|
|
198
|
-
@
|
|
199
|
-
|
|
200
|
-
|
|
200
|
+
@head_bucket_mutex.synchronize do
|
|
201
|
+
begin
|
|
202
|
+
@head_bucket_call = true
|
|
203
|
+
@s3_client.head_bucket(bucket: bucket).bucket_region
|
|
204
|
+
rescue Aws::S3::Errors::Http301Error => e
|
|
205
|
+
e.data.region
|
|
206
|
+
ensure
|
|
207
|
+
@head_bucket_call = false
|
|
208
|
+
end
|
|
209
|
+
end
|
|
201
210
|
end
|
|
202
211
|
|
|
203
212
|
# returns the account id for the configured credentials
|