aws-sdk-s3 1.103.0 → 1.202.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 +664 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/access_grants_credentials.rb +57 -0
- data/lib/aws-sdk-s3/access_grants_credentials_provider.rb +250 -0
- data/lib/aws-sdk-s3/bucket.rb +858 -116
- data/lib/aws-sdk-s3/bucket_acl.rb +32 -9
- data/lib/aws-sdk-s3/bucket_cors.rb +38 -13
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +43 -12
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +100 -13
- data/lib/aws-sdk-s3/bucket_logging.rb +35 -6
- data/lib/aws-sdk-s3/bucket_notification.rb +27 -9
- data/lib/aws-sdk-s3/bucket_policy.rb +79 -10
- data/lib/aws-sdk-s3/bucket_region_cache.rb +9 -5
- data/lib/aws-sdk-s3/bucket_request_payment.rb +29 -7
- data/lib/aws-sdk-s3/bucket_tagging.rb +35 -11
- data/lib/aws-sdk-s3/bucket_versioning.rb +108 -17
- data/lib/aws-sdk-s3/bucket_website.rb +35 -11
- data/lib/aws-sdk-s3/client.rb +11799 -3636
- data/lib/aws-sdk-s3/client_api.rb +1201 -276
- data/lib/aws-sdk-s3/customizations/bucket.rb +23 -47
- data/lib/aws-sdk-s3/customizations/errors.rb +40 -0
- data/lib/aws-sdk-s3/customizations/object.rb +216 -70
- 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/types/permanent_redirect.rb +26 -0
- data/lib/aws-sdk-s3/customizations.rb +27 -29
- data/lib/aws-sdk-s3/default_executor.rb +103 -0
- data/lib/aws-sdk-s3/encryption/client.rb +6 -2
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +13 -9
- data/lib/aws-sdk-s3/encryptionV2/client.rb +6 -2
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +1 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +10 -6
- data/lib/aws-sdk-s3/endpoint_parameters.rb +181 -0
- data/lib/aws-sdk-s3/endpoint_provider.rb +716 -0
- data/lib/aws-sdk-s3/endpoints.rb +1518 -0
- data/lib/aws-sdk-s3/errors.rb +58 -0
- data/lib/aws-sdk-s3/express_credentials.rb +55 -0
- data/lib/aws-sdk-s3/express_credentials_provider.rb +59 -0
- data/lib/aws-sdk-s3/file_downloader.rb +241 -87
- data/lib/aws-sdk-s3/file_uploader.rb +16 -13
- 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 +108 -86
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +110 -92
- data/lib/aws-sdk-s3/multipart_upload.rb +294 -19
- data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +297 -31
- data/lib/aws-sdk-s3/object.rb +2224 -269
- data/lib/aws-sdk-s3/object_acl.rb +59 -17
- data/lib/aws-sdk-s3/object_copier.rb +7 -5
- data/lib/aws-sdk-s3/object_multipart_copier.rb +48 -23
- data/lib/aws-sdk-s3/object_summary.rb +1915 -220
- data/lib/aws-sdk-s3/object_version.rb +450 -58
- data/lib/aws-sdk-s3/plugins/accelerate.rb +3 -44
- data/lib/aws-sdk-s3/plugins/access_grants.rb +178 -0
- data/lib/aws-sdk-s3/plugins/arn.rb +0 -197
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +3 -39
- data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +1 -6
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/dualstack.rb +1 -55
- data/lib/aws-sdk-s3/plugins/endpoints.rb +86 -0
- data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +2 -1
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +88 -0
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +55 -18
- data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +6 -29
- data/lib/aws-sdk-s3/plugins/location_constraint.rb +3 -1
- data/lib/aws-sdk-s3/plugins/md5s.rb +10 -68
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +42 -111
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +28 -9
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
- data/lib/aws-sdk-s3/presigned_post.rb +99 -78
- data/lib/aws-sdk-s3/presigner.rb +32 -41
- data/lib/aws-sdk-s3/resource.rb +139 -12
- data/lib/aws-sdk-s3/transfer_manager.rb +304 -0
- data/lib/aws-sdk-s3/types.rb +10204 -5378
- data/lib/aws-sdk-s3.rb +35 -27
- data/sig/bucket.rbs +231 -0
- data/sig/bucket_acl.rbs +78 -0
- data/sig/bucket_cors.rbs +69 -0
- data/sig/bucket_lifecycle.rbs +88 -0
- data/sig/bucket_lifecycle_configuration.rbs +115 -0
- data/sig/bucket_logging.rbs +76 -0
- data/sig/bucket_notification.rbs +114 -0
- data/sig/bucket_policy.rbs +59 -0
- data/sig/bucket_request_payment.rbs +54 -0
- data/sig/bucket_tagging.rbs +65 -0
- data/sig/bucket_versioning.rbs +77 -0
- data/sig/bucket_website.rbs +93 -0
- data/sig/client.rbs +2586 -0
- data/sig/customizations/bucket.rbs +19 -0
- data/sig/customizations/object.rbs +38 -0
- data/sig/customizations/object_summary.rbs +35 -0
- data/sig/errors.rbs +44 -0
- data/sig/multipart_upload.rbs +120 -0
- data/sig/multipart_upload_part.rbs +109 -0
- data/sig/object.rbs +464 -0
- data/sig/object_acl.rbs +86 -0
- data/sig/object_summary.rbs +347 -0
- data/sig/object_version.rbs +143 -0
- data/sig/resource.rbs +141 -0
- data/sig/types.rbs +2868 -0
- data/sig/waiters.rbs +95 -0
- metadata +51 -16
- data/lib/aws-sdk-s3/arn/access_point_arn.rb +0 -69
- data/lib/aws-sdk-s3/arn/multi_region_access_point_arn.rb +0 -69
- data/lib/aws-sdk-s3/arn/object_lambda_arn.rb +0 -69
- data/lib/aws-sdk-s3/arn/outpost_access_point_arn.rb +0 -73
- data/lib/aws-sdk-s3/plugins/object_lambda_endpoint.rb +0 -25
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ecaf81fce4dfda6453590493fb14d92566b54fc9675774076e6624e6375dadd0
|
|
4
|
+
data.tar.gz: 76bd9b41bc206ec5f02187d9f863dbe246216261bb1c3920d9ea130585c34c35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bb7ae2f06b6639f16733cf84cfa255efa81955c7b4379814460fc9b66748c612a6ae9abfc310eca535a2d0274bc92fb6a0dd1e8621c60659d0c5212e9ed09ac
|
|
7
|
+
data.tar.gz: 5c02919ceaa15b5e189ff0001c56194f25ba01535ba65e0b29766fb4ca73d71f9dce432e726e1d1996a2c8d0c954d31be0e5b2ac22220532828b1f29e4428ad7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,670 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.202.0 (2025-10-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Simple Storage Service / Features: Add conditional writes in CopyObject on destination key to prevent unintended object modifications.
|
|
8
|
+
|
|
9
|
+
1.201.0 (2025-10-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
* Issue - Fix multipart upload to respect `request_checksum_calculation` `when_required` mode.
|
|
15
|
+
|
|
16
|
+
1.200.0 (2025-10-15)
|
|
17
|
+
------------------
|
|
18
|
+
|
|
19
|
+
* Feature - Add lightweight thread pool executor for multipart `download_file`, `upload_file` and `upload_stream`.
|
|
20
|
+
|
|
21
|
+
* Feature - Add custom executor support for `Aws::S3::TransferManager`.
|
|
22
|
+
|
|
23
|
+
1.199.1 (2025-09-25)
|
|
24
|
+
------------------
|
|
25
|
+
|
|
26
|
+
* Issue - Update `TransferManager#download_file` and `Object#download_file` documentation regarding temporary file usage and failure handling for different destination types.
|
|
27
|
+
|
|
28
|
+
1.199.0 (2025-09-08)
|
|
29
|
+
------------------
|
|
30
|
+
|
|
31
|
+
* Feature - This release includes backward compatibility work on the "Expires" parameter.
|
|
32
|
+
|
|
33
|
+
1.198.0 (2025-08-26)
|
|
34
|
+
------------------
|
|
35
|
+
|
|
36
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
37
|
+
|
|
38
|
+
* Issue - Fix multipart `download_file` to support `Pathname`, `File` and `Tempfile` objects as download destinations.
|
|
39
|
+
|
|
40
|
+
1.197.0 (2025-08-19)
|
|
41
|
+
------------------
|
|
42
|
+
|
|
43
|
+
* Issue - When multipart stream uploader fails to complete multipart upload, it calls abort multipart upload.
|
|
44
|
+
|
|
45
|
+
* Issue - For `Aws::S3::Object` class, the following methods have been deprecated: `download_file`, `upload_file` and `upload_stream`. Use `Aws::S3::TransferManager` instead.
|
|
46
|
+
|
|
47
|
+
* 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.
|
|
48
|
+
|
|
49
|
+
1.196.1 (2025-08-05)
|
|
50
|
+
------------------
|
|
51
|
+
|
|
52
|
+
* Issue - Add range validation to multipart download to ensure all parts are successfully processed.
|
|
53
|
+
|
|
54
|
+
* Issue - When multipart uploader fails to complete multipart upload, it calls abort multipart upload.
|
|
55
|
+
|
|
56
|
+
* Issue - Clean up partially downloaded file on multipart `download_file` failure while preserving existing file.
|
|
57
|
+
|
|
58
|
+
1.196.0 (2025-08-04)
|
|
59
|
+
------------------
|
|
60
|
+
|
|
61
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
62
|
+
|
|
63
|
+
1.195.0 (2025-07-31)
|
|
64
|
+
------------------
|
|
65
|
+
|
|
66
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
67
|
+
|
|
68
|
+
1.194.0 (2025-07-21)
|
|
69
|
+
------------------
|
|
70
|
+
|
|
71
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
72
|
+
|
|
73
|
+
1.193.0 (2025-07-15)
|
|
74
|
+
------------------
|
|
75
|
+
|
|
76
|
+
* 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.
|
|
77
|
+
|
|
78
|
+
1.192.0 (2025-07-02)
|
|
79
|
+
------------------
|
|
80
|
+
|
|
81
|
+
* Feature - Added support for directory bucket creation with tags and bucket ARN retrieval in CreateBucket, ListDirectoryBuckets, and HeadBucket operations
|
|
82
|
+
|
|
83
|
+
1.191.0 (2025-06-25)
|
|
84
|
+
------------------
|
|
85
|
+
|
|
86
|
+
* 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
|
|
87
|
+
|
|
88
|
+
1.190.0 (2025-06-18)
|
|
89
|
+
------------------
|
|
90
|
+
|
|
91
|
+
* Feature - Added support for renaming objects within the same bucket using the new RenameObject API.
|
|
92
|
+
|
|
93
|
+
1.189.1 (2025-06-10)
|
|
94
|
+
------------------
|
|
95
|
+
|
|
96
|
+
* Issue - Only load required `cgi` modules for Ruby 3.5.
|
|
97
|
+
|
|
98
|
+
1.189.0 (2025-06-02)
|
|
99
|
+
------------------
|
|
100
|
+
|
|
101
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
102
|
+
|
|
103
|
+
1.188.0 (2025-05-29)
|
|
104
|
+
------------------
|
|
105
|
+
|
|
106
|
+
* Feature - Adding checksum support for S3 PutBucketOwnershipControls API.
|
|
107
|
+
|
|
108
|
+
1.187.0 (2025-05-28)
|
|
109
|
+
------------------
|
|
110
|
+
|
|
111
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
112
|
+
|
|
113
|
+
* Issue - Signal data in http response listeners prior to writing, so that data can be inspected or verified before potential mutation.
|
|
114
|
+
|
|
115
|
+
1.186.1 (2025-05-15)
|
|
116
|
+
------------------
|
|
117
|
+
* Issue - Abort multipart download if object is modified during download.
|
|
118
|
+
|
|
119
|
+
1.186.0 (2025-05-12)
|
|
120
|
+
------------------
|
|
121
|
+
|
|
122
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
123
|
+
|
|
124
|
+
1.185.0 (2025-05-01)
|
|
125
|
+
------------------
|
|
126
|
+
|
|
127
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
128
|
+
|
|
129
|
+
1.184.0 (2025-04-28)
|
|
130
|
+
------------------
|
|
131
|
+
|
|
132
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
133
|
+
|
|
134
|
+
1.183.0 (2025-03-31)
|
|
135
|
+
------------------
|
|
136
|
+
|
|
137
|
+
* Feature - Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones
|
|
138
|
+
|
|
139
|
+
1.182.0 (2025-02-18)
|
|
140
|
+
------------------
|
|
141
|
+
|
|
142
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
143
|
+
|
|
144
|
+
1.181.0 (2025-02-14)
|
|
145
|
+
------------------
|
|
146
|
+
|
|
147
|
+
* Feature - Added support for Content-Range header in HeadObject response.
|
|
148
|
+
|
|
149
|
+
1.180.0 (2025-02-06)
|
|
150
|
+
------------------
|
|
151
|
+
|
|
152
|
+
* Feature - Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.
|
|
153
|
+
|
|
154
|
+
1.179.0 (2025-01-29)
|
|
155
|
+
------------------
|
|
156
|
+
|
|
157
|
+
* Feature - Change the type of MpuObjectSize in CompleteMultipartUploadRequest from int to long.
|
|
158
|
+
|
|
159
|
+
1.178.0 (2025-01-15)
|
|
160
|
+
------------------
|
|
161
|
+
|
|
162
|
+
* 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.
|
|
163
|
+
|
|
164
|
+
* Feature - Default to using `CRC32` checksum validation for S3 uploads and downloads.
|
|
165
|
+
|
|
166
|
+
1.177.0 (2025-01-03)
|
|
167
|
+
------------------
|
|
168
|
+
|
|
169
|
+
* 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.
|
|
170
|
+
|
|
171
|
+
1.176.1 (2024-12-12)
|
|
172
|
+
------------------
|
|
173
|
+
|
|
174
|
+
* Issue - Do not normalize object keys when calling `presigned_url` or `presigned_request`.
|
|
175
|
+
|
|
176
|
+
1.176.0 (2024-12-03)
|
|
177
|
+
------------------
|
|
178
|
+
|
|
179
|
+
* 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.
|
|
180
|
+
|
|
181
|
+
1.175.0 (2024-12-02)
|
|
182
|
+
------------------
|
|
183
|
+
|
|
184
|
+
* Feature - Amazon S3 introduces support for AWS Dedicated Local Zones
|
|
185
|
+
|
|
186
|
+
1.174.0 (2024-11-25)
|
|
187
|
+
------------------
|
|
188
|
+
|
|
189
|
+
* Feature - Amazon Simple Storage Service / Features: Add support for ETag based conditional writes in PutObject and CompleteMultiPartUpload APIs to prevent unintended object modifications.
|
|
190
|
+
|
|
191
|
+
1.173.0 (2024-11-21)
|
|
192
|
+
------------------
|
|
193
|
+
|
|
194
|
+
* 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.
|
|
195
|
+
|
|
196
|
+
1.172.0 (2024-11-18)
|
|
197
|
+
------------------
|
|
198
|
+
|
|
199
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
200
|
+
|
|
201
|
+
1.171.0 (2024-11-14)
|
|
202
|
+
------------------
|
|
203
|
+
|
|
204
|
+
* 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.
|
|
205
|
+
|
|
206
|
+
1.170.1 (2024-11-11)
|
|
207
|
+
------------------
|
|
208
|
+
|
|
209
|
+
* Issue - Tighten regex used to check for S3 200 errors.
|
|
210
|
+
|
|
211
|
+
1.170.0 (2024-11-06)
|
|
212
|
+
------------------
|
|
213
|
+
|
|
214
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
215
|
+
|
|
216
|
+
1.169.0 (2024-10-18)
|
|
217
|
+
------------------
|
|
218
|
+
|
|
219
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
220
|
+
|
|
221
|
+
1.168.0 (2024-10-16)
|
|
222
|
+
------------------
|
|
223
|
+
|
|
224
|
+
* 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.
|
|
225
|
+
|
|
226
|
+
1.167.0 (2024-10-02)
|
|
227
|
+
------------------
|
|
228
|
+
|
|
229
|
+
* Feature - This release introduces a header representing the minimum object size limit for Lifecycle transitions.
|
|
230
|
+
|
|
231
|
+
1.166.0 (2024-09-24)
|
|
232
|
+
------------------
|
|
233
|
+
|
|
234
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
235
|
+
|
|
236
|
+
1.165.0 (2024-09-23)
|
|
237
|
+
------------------
|
|
238
|
+
|
|
239
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
240
|
+
|
|
241
|
+
1.164.0 (2024-09-20)
|
|
242
|
+
------------------
|
|
243
|
+
|
|
244
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
245
|
+
|
|
246
|
+
1.163.0 (2024-09-18)
|
|
247
|
+
------------------
|
|
248
|
+
|
|
249
|
+
* Feature - Added SSE-KMS support for directory buckets.
|
|
250
|
+
|
|
251
|
+
1.162.0 (2024-09-11)
|
|
252
|
+
------------------
|
|
253
|
+
|
|
254
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
255
|
+
|
|
256
|
+
1.161.0 (2024-09-10)
|
|
257
|
+
------------------
|
|
258
|
+
|
|
259
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
260
|
+
|
|
261
|
+
1.160.0 (2024-09-03)
|
|
262
|
+
------------------
|
|
263
|
+
|
|
264
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
265
|
+
|
|
266
|
+
1.159.0 (2024-08-20)
|
|
267
|
+
------------------
|
|
268
|
+
|
|
269
|
+
* Feature - Amazon Simple Storage Service / Features : Add support for conditional writes for PutObject and CompleteMultipartUpload APIs.
|
|
270
|
+
|
|
271
|
+
1.158.0 (2024-08-15)
|
|
272
|
+
------------------
|
|
273
|
+
|
|
274
|
+
* Feature - Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API.
|
|
275
|
+
|
|
276
|
+
1.157.0 (2024-08-01)
|
|
277
|
+
------------------
|
|
278
|
+
|
|
279
|
+
* Feature - Support `head_bucket`, `get_object_attributes`, `delete_objects`, and `copy_object` for Access Grants.
|
|
280
|
+
|
|
281
|
+
1.156.0 (2024-07-02)
|
|
282
|
+
------------------
|
|
283
|
+
|
|
284
|
+
* Feature - Added response overrides to Head Object requests.
|
|
285
|
+
|
|
286
|
+
1.155.0 (2024-06-28)
|
|
287
|
+
------------------
|
|
288
|
+
|
|
289
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
290
|
+
|
|
291
|
+
1.154.0 (2024-06-25)
|
|
292
|
+
------------------
|
|
293
|
+
|
|
294
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
295
|
+
|
|
296
|
+
1.153.0 (2024-06-24)
|
|
297
|
+
------------------
|
|
298
|
+
|
|
299
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
300
|
+
|
|
301
|
+
1.152.3 (2024-06-13)
|
|
302
|
+
------------------
|
|
303
|
+
|
|
304
|
+
* Issue - Handle 200 errors for all S3 operations that do not have streaming responses.
|
|
305
|
+
|
|
306
|
+
1.152.2 (2024-06-12)
|
|
307
|
+
------------------
|
|
308
|
+
|
|
309
|
+
* Issue - Revert Handling of 200 errors for all S3 operations.
|
|
310
|
+
|
|
311
|
+
1.152.1 (2024-06-10)
|
|
312
|
+
------------------
|
|
313
|
+
|
|
314
|
+
* Issue - Handle 200 errors for all S3 operations that do not have streaming responses.
|
|
315
|
+
|
|
316
|
+
1.152.0 (2024-06-05)
|
|
317
|
+
------------------
|
|
318
|
+
|
|
319
|
+
* 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.
|
|
320
|
+
|
|
321
|
+
1.151.0 (2024-05-14)
|
|
322
|
+
------------------
|
|
323
|
+
|
|
324
|
+
* Feature - Updated a few x-id in the http uri traits
|
|
325
|
+
|
|
326
|
+
1.150.0 (2024-05-13)
|
|
327
|
+
------------------
|
|
328
|
+
|
|
329
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
330
|
+
|
|
331
|
+
1.149.1 (2024-05-06)
|
|
332
|
+
------------------
|
|
333
|
+
|
|
334
|
+
* Issue - Fix bug where destination bucket default encryption was inadvertently overridden by source object encryption.
|
|
335
|
+
|
|
336
|
+
1.149.0 (2024-04-30)
|
|
337
|
+
------------------
|
|
338
|
+
|
|
339
|
+
* Feature - Support S3 Access Grants authentication. Access Grants can be enabled with the `access_grants` option, and custom options can be passed into the `access_grants_credentials_provider` option. This feature requires `aws-sdk-s3control` to be installed.
|
|
340
|
+
|
|
341
|
+
* Feature - Add RBS signatures for customizations of S3.
|
|
342
|
+
|
|
343
|
+
1.148.0 (2024-04-25)
|
|
344
|
+
------------------
|
|
345
|
+
|
|
346
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
347
|
+
|
|
348
|
+
1.147.0 (2024-04-16)
|
|
349
|
+
------------------
|
|
350
|
+
|
|
351
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
352
|
+
|
|
353
|
+
* Issue - Omit `ContentType` plugin when generating presigned url.
|
|
354
|
+
|
|
355
|
+
1.146.1 (2024-03-28)
|
|
356
|
+
------------------
|
|
357
|
+
|
|
358
|
+
* Issue - Fix bug where thread_count option was not being respected for multipart uploads.
|
|
359
|
+
|
|
360
|
+
1.146.0 (2024-03-18)
|
|
361
|
+
------------------
|
|
362
|
+
|
|
363
|
+
* Feature - Fix two issues with response root node names.
|
|
364
|
+
|
|
365
|
+
1.145.0 (2024-03-15)
|
|
366
|
+
------------------
|
|
367
|
+
|
|
368
|
+
* Feature - Documentation updates for Amazon S3.
|
|
369
|
+
|
|
370
|
+
1.144.0 (2024-03-13)
|
|
371
|
+
------------------
|
|
372
|
+
|
|
373
|
+
* Feature - This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).
|
|
374
|
+
|
|
375
|
+
1.143.1 (2024-03-12)
|
|
376
|
+
------------------
|
|
377
|
+
|
|
378
|
+
* Issue - Include original part errors in message when aborting multipart upload fails (#2990).
|
|
379
|
+
|
|
380
|
+
1.143.0 (2024-01-26)
|
|
381
|
+
------------------
|
|
382
|
+
|
|
383
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
384
|
+
|
|
385
|
+
1.142.0 (2023-12-22)
|
|
386
|
+
------------------
|
|
387
|
+
|
|
388
|
+
* Feature - Added additional examples for some operations.
|
|
389
|
+
|
|
390
|
+
1.141.0 (2023-11-28)
|
|
391
|
+
------------------
|
|
392
|
+
|
|
393
|
+
* Feature - Adds support for S3 Express One Zone.
|
|
394
|
+
|
|
395
|
+
* Feature - Support S3 Express authentication and endpoints. Express session auth can be disabled with the `disable_s3_express_session_auth` Client option, the `AWS_S3_DISABLE_EXPRESS_SESSION_AUTH` environment variable, and the `s3_disable_express_session_auth` shared config option. A custom `express_credentials_provider` can be configured onto the Client.
|
|
396
|
+
|
|
397
|
+
1.140.0 (2023-11-27)
|
|
398
|
+
------------------
|
|
399
|
+
|
|
400
|
+
* Feature - Adding new params - Key and Prefix, to S3 API operations for supporting S3 Access Grants. Note - These updates will not change any of the existing S3 API functionality.
|
|
401
|
+
|
|
402
|
+
* Issue - Fix thread interruptions in multipart `download_file`, `file_uploader` and `stream_uploader` (#2944).
|
|
403
|
+
|
|
404
|
+
1.139.0 (2023-11-22)
|
|
405
|
+
------------------
|
|
406
|
+
|
|
407
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
408
|
+
|
|
409
|
+
1.138.0 (2023-11-21)
|
|
410
|
+
------------------
|
|
411
|
+
|
|
412
|
+
* Feature - Add support for automatic date based partitioning in S3 Server Access Logs.
|
|
413
|
+
|
|
414
|
+
1.137.0 (2023-11-17)
|
|
415
|
+
------------------
|
|
416
|
+
|
|
417
|
+
* Feature - Removes all default 0 values for numbers and false values for booleans
|
|
418
|
+
|
|
419
|
+
1.136.0 (2023-09-26)
|
|
420
|
+
------------------
|
|
421
|
+
|
|
422
|
+
* Feature - This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.
|
|
423
|
+
|
|
424
|
+
1.135.0 (2023-09-20)
|
|
425
|
+
------------------
|
|
426
|
+
|
|
427
|
+
* Feature - Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException
|
|
428
|
+
|
|
429
|
+
1.134.0 (2023-08-24)
|
|
430
|
+
------------------
|
|
431
|
+
|
|
432
|
+
* Feature - Updates to endpoint ruleset tests to address Smithy validation issues.
|
|
433
|
+
|
|
434
|
+
1.133.0 (2023-08-22)
|
|
435
|
+
------------------
|
|
436
|
+
|
|
437
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
438
|
+
|
|
439
|
+
* Feature - Add support for `progress_callback` in `Object#download_file` and improve multi-threaded performance #(2901).
|
|
440
|
+
|
|
441
|
+
1.132.1 (2023-08-09)
|
|
442
|
+
------------------
|
|
443
|
+
|
|
444
|
+
* Issue - Add support for disabling checksum validation in `Object#download_file` (#2893).
|
|
445
|
+
|
|
446
|
+
1.132.0 (2023-07-24)
|
|
447
|
+
------------------
|
|
448
|
+
|
|
449
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
450
|
+
|
|
451
|
+
* Feature - Add support for verifying checksums in FileDownloader.
|
|
452
|
+
|
|
453
|
+
1.131.0 (2023-07-20)
|
|
454
|
+
------------------
|
|
455
|
+
|
|
456
|
+
* Feature - Improve performance of S3 clients by simplifying and optimizing endpoint resolution.
|
|
457
|
+
|
|
458
|
+
1.130.0 (2023-07-13)
|
|
459
|
+
------------------
|
|
460
|
+
|
|
461
|
+
* Feature - S3 Inventory now supports Object Access Control List and Object Owner as available object metadata fields in inventory reports.
|
|
462
|
+
|
|
463
|
+
* Feature - Allow Object multipart copy API to work when requiring a checksum algorithm.
|
|
464
|
+
|
|
465
|
+
* Feature - Allow Object multipart copy API to optionally copy parts as they exist on the source object if it has parts, instead of generating new part ranges, when specifying `use_source_parts: true`.
|
|
466
|
+
|
|
467
|
+
1.129.0 (2023-07-11)
|
|
468
|
+
------------------
|
|
469
|
+
|
|
470
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
471
|
+
|
|
472
|
+
1.128.0 (2023-07-06)
|
|
473
|
+
------------------
|
|
474
|
+
|
|
475
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
476
|
+
|
|
477
|
+
1.127.0 (2023-06-28)
|
|
478
|
+
------------------
|
|
479
|
+
|
|
480
|
+
* Feature - The S3 LISTObjects, ListObjectsV2 and ListObjectVersions API now supports a new optional header x-amz-optional-object-attributes. If header contains RestoreStatus as the value, then S3 will include Glacier restore status i.e. isRestoreInProgress and RestoreExpiryDate in List response.
|
|
481
|
+
|
|
482
|
+
* Feature - Select minimum expiration time for presigned urls between the expiration time option and the credential expiration time.
|
|
483
|
+
|
|
484
|
+
1.126.0 (2023-06-16)
|
|
485
|
+
------------------
|
|
486
|
+
|
|
487
|
+
* Feature - This release adds SDK support for request-payer request header and request-charged response header in the "GetBucketAccelerateConfiguration", "ListMultipartUploads", "ListObjects", "ListObjectsV2" and "ListObjectVersions" S3 APIs.
|
|
488
|
+
|
|
489
|
+
1.125.0 (2023-06-15)
|
|
490
|
+
------------------
|
|
491
|
+
|
|
492
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
493
|
+
|
|
494
|
+
1.124.0 (2023-06-13)
|
|
495
|
+
------------------
|
|
496
|
+
|
|
497
|
+
* Feature - Integrate double encryption feature to SDKs.
|
|
498
|
+
|
|
499
|
+
1.123.2 (2023-06-12)
|
|
500
|
+
------------------
|
|
501
|
+
|
|
502
|
+
* Issue - Fix issue when decrypting noncurrent versions of objects when using client side encryption (#2866).
|
|
503
|
+
|
|
504
|
+
1.123.1 (2023-06-02)
|
|
505
|
+
------------------
|
|
506
|
+
|
|
507
|
+
* Issue - Fix multipart `download_file` so that it does not download bytes out of range (#2859).
|
|
508
|
+
|
|
509
|
+
1.123.0 (2023-05-31)
|
|
510
|
+
------------------
|
|
511
|
+
|
|
512
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
513
|
+
|
|
514
|
+
1.122.0 (2023-05-04)
|
|
515
|
+
------------------
|
|
516
|
+
|
|
517
|
+
* Feature - Documentation updates for Amazon S3
|
|
518
|
+
|
|
519
|
+
1.121.0 (2023-04-19)
|
|
520
|
+
------------------
|
|
521
|
+
|
|
522
|
+
* Feature - Provides support for "Snow" Storage class.
|
|
523
|
+
|
|
524
|
+
1.120.1 (2023-04-05)
|
|
525
|
+
------------------
|
|
526
|
+
|
|
527
|
+
* Issue - Skip `#check_for_cached_region` if custom endpoint provided
|
|
528
|
+
|
|
529
|
+
1.120.0 (2023-03-31)
|
|
530
|
+
------------------
|
|
531
|
+
|
|
532
|
+
* Feature - Documentation updates for Amazon S3
|
|
533
|
+
|
|
534
|
+
1.119.2 (2023-03-22)
|
|
535
|
+
------------------
|
|
536
|
+
|
|
537
|
+
* Issue - Provide `endpoint` and `bucket` attributes on `Aws::S3::Errors::PermanentRedirect` error objects.
|
|
538
|
+
|
|
539
|
+
1.119.1 (2023-02-13)
|
|
540
|
+
------------------
|
|
541
|
+
|
|
542
|
+
* Issue - Ensure object metadata is not lost on multipart copy (#2821).
|
|
543
|
+
|
|
544
|
+
1.119.0 (2023-01-26)
|
|
545
|
+
------------------
|
|
546
|
+
|
|
547
|
+
* Feature - Allow FIPS to be used with path-style URLs.
|
|
548
|
+
|
|
549
|
+
1.118.0 (2023-01-18)
|
|
550
|
+
------------------
|
|
551
|
+
|
|
552
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
553
|
+
|
|
554
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
|
555
|
+
|
|
556
|
+
1.117.2 (2022-11-30)
|
|
557
|
+
------------------
|
|
558
|
+
|
|
559
|
+
* Issue - Return error messages from failures in threads in `MultipartStreamUploader` (#2793).
|
|
560
|
+
|
|
561
|
+
1.117.1 (2022-10-26)
|
|
562
|
+
------------------
|
|
563
|
+
|
|
564
|
+
* Issue - Fix custom endpoint and port regression with `presigned_url` (#2776).
|
|
565
|
+
|
|
566
|
+
1.117.0 (2022-10-25)
|
|
567
|
+
------------------
|
|
568
|
+
|
|
569
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
570
|
+
|
|
571
|
+
* Issue - Apply checksums to MultipartStreamUploader (#2769).
|
|
572
|
+
|
|
573
|
+
1.116.0 (2022-10-21)
|
|
574
|
+
------------------
|
|
575
|
+
|
|
576
|
+
* Feature - S3 on Outposts launches support for automatic bucket-style alias. You can use the automatic access point alias instead of an access point ARN for any object-level operation in an Outposts bucket.
|
|
577
|
+
|
|
578
|
+
1.115.0 (2022-10-19)
|
|
579
|
+
------------------
|
|
580
|
+
|
|
581
|
+
* Feature - Updates internal logic for constructing API endpoints. We have added rule-based endpoints and internal model parameters.
|
|
582
|
+
|
|
583
|
+
1.114.0 (2022-05-03)
|
|
584
|
+
------------------
|
|
585
|
+
|
|
586
|
+
* Feature - Documentation only update for doc bug fixes for the S3 API docs.
|
|
587
|
+
|
|
588
|
+
1.113.2 (2022-04-26)
|
|
589
|
+
------------------
|
|
590
|
+
|
|
591
|
+
* Issue - Fix an issue where `ExpiredToken` errors were retried as if the request was from another region.
|
|
592
|
+
|
|
593
|
+
1.113.1 (2022-04-25)
|
|
594
|
+
------------------
|
|
595
|
+
|
|
596
|
+
* Issue - Rewind the underlying file on a streaming retry that is not a truncated body (#2692).
|
|
597
|
+
|
|
598
|
+
1.113.0 (2022-02-24)
|
|
599
|
+
------------------
|
|
600
|
+
|
|
601
|
+
* Feature - This release adds support for new integrity checking capabilities in Amazon S3. You can choose from four supported checksum algorithms for data integrity checking on your upload and download requests. In addition, AWS SDK can automatically calculate a checksum as it streams data into S3
|
|
602
|
+
|
|
603
|
+
1.112.0 (2022-02-03)
|
|
604
|
+
------------------
|
|
605
|
+
|
|
606
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
607
|
+
|
|
608
|
+
1.111.3 (2022-01-24)
|
|
609
|
+
------------------
|
|
610
|
+
|
|
611
|
+
* Issue - Fix starts_with fields on `PresignedPost` (#2636).
|
|
612
|
+
|
|
613
|
+
1.111.2 (2022-01-20)
|
|
614
|
+
------------------
|
|
615
|
+
|
|
616
|
+
* Issue - Minor cleanups.
|
|
617
|
+
|
|
618
|
+
1.111.1 (2022-01-06)
|
|
619
|
+
------------------
|
|
620
|
+
|
|
621
|
+
* Issue - Don't fail small files in `upload_file` when `:thread_count` is set. (#2628)
|
|
622
|
+
|
|
623
|
+
1.111.0 (2022-01-04)
|
|
624
|
+
------------------
|
|
625
|
+
|
|
626
|
+
* Feature - Minor doc-based updates based on feedback bugs received.
|
|
627
|
+
|
|
628
|
+
1.110.0 (2021-12-21)
|
|
629
|
+
------------------
|
|
630
|
+
|
|
631
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
632
|
+
|
|
633
|
+
1.109.0 (2021-11-30)
|
|
634
|
+
------------------
|
|
635
|
+
|
|
636
|
+
* Feature - Introduce Amazon S3 Glacier Instant Retrieval storage class and a new setting in S3 Object Ownership to disable ACLs for bucket and the objects in it.
|
|
637
|
+
|
|
638
|
+
1.108.0 (2021-11-29)
|
|
639
|
+
------------------
|
|
640
|
+
|
|
641
|
+
* Feature - Amazon S3 Event Notifications adds Amazon EventBridge as a destination and supports additional event types. The PutBucketNotificationConfiguration API can now skip validation of Amazon SQS, Amazon SNS and AWS Lambda destinations.
|
|
642
|
+
|
|
643
|
+
1.107.0 (2021-11-23)
|
|
644
|
+
------------------
|
|
645
|
+
|
|
646
|
+
* Feature - Introduce two new Filters to S3 Lifecycle configurations - ObjectSizeGreaterThan and ObjectSizeLessThan. Introduce a new way to trigger actions on noncurrent versions by providing the number of newer noncurrent versions along with noncurrent days.
|
|
647
|
+
|
|
648
|
+
1.106.0 (2021-11-17)
|
|
649
|
+
------------------
|
|
650
|
+
|
|
651
|
+
* Feature - Add `presigned_request` method to `Aws::S3::Object`.
|
|
652
|
+
|
|
653
|
+
1.105.1 (2021-11-05)
|
|
654
|
+
------------------
|
|
655
|
+
|
|
656
|
+
* Issue - Raise error when `use_fips_endpoint` is used with `use_accelerate_endpoint`.
|
|
657
|
+
|
|
658
|
+
1.105.0 (2021-11-04)
|
|
659
|
+
------------------
|
|
660
|
+
|
|
661
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
662
|
+
|
|
663
|
+
1.104.0 (2021-10-18)
|
|
664
|
+
------------------
|
|
665
|
+
|
|
666
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
667
|
+
|
|
4
668
|
1.103.0 (2021-09-16)
|
|
5
669
|
------------------
|
|
6
670
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.202.0
|