aws-sdk-s3 1.13.0 → 1.146.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1131 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-sdk-s3/bucket.rb +805 -91
  6. data/lib/aws-sdk-s3/bucket_acl.rb +66 -17
  7. data/lib/aws-sdk-s3/bucket_cors.rb +79 -17
  8. data/lib/aws-sdk-s3/bucket_lifecycle.rb +66 -19
  9. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +68 -19
  10. data/lib/aws-sdk-s3/bucket_logging.rb +68 -18
  11. data/lib/aws-sdk-s3/bucket_notification.rb +56 -20
  12. data/lib/aws-sdk-s3/bucket_policy.rb +107 -17
  13. data/lib/aws-sdk-s3/bucket_region_cache.rb +2 -0
  14. data/lib/aws-sdk-s3/bucket_request_payment.rb +60 -15
  15. data/lib/aws-sdk-s3/bucket_tagging.rb +71 -17
  16. data/lib/aws-sdk-s3/bucket_versioning.rb +133 -17
  17. data/lib/aws-sdk-s3/bucket_website.rb +78 -17
  18. data/lib/aws-sdk-s3/client.rb +16336 -3915
  19. data/lib/aws-sdk-s3/client_api.rb +1364 -173
  20. data/lib/aws-sdk-s3/customizations/bucket.rb +57 -38
  21. data/lib/aws-sdk-s3/customizations/errors.rb +27 -0
  22. data/lib/aws-sdk-s3/customizations/multipart_upload.rb +2 -0
  23. data/lib/aws-sdk-s3/customizations/object.rb +327 -53
  24. data/lib/aws-sdk-s3/customizations/object_summary.rb +12 -0
  25. data/lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb +2 -0
  26. data/lib/aws-sdk-s3/customizations/types/permanent_redirect.rb +26 -0
  27. data/lib/aws-sdk-s3/customizations.rb +12 -1
  28. data/lib/aws-sdk-s3/encryption/client.rb +29 -8
  29. data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +71 -29
  30. data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +43 -5
  31. data/lib/aws-sdk-s3/encryption/default_key_provider.rb +2 -0
  32. data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +13 -2
  33. data/lib/aws-sdk-s3/encryption/errors.rb +2 -0
  34. data/lib/aws-sdk-s3/encryption/io_auth_decrypter.rb +11 -3
  35. data/lib/aws-sdk-s3/encryption/io_decrypter.rb +11 -3
  36. data/lib/aws-sdk-s3/encryption/io_encrypter.rb +2 -0
  37. data/lib/aws-sdk-s3/encryption/key_provider.rb +2 -0
  38. data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +46 -11
  39. data/lib/aws-sdk-s3/encryption/materials.rb +8 -6
  40. data/lib/aws-sdk-s3/encryption/utils.rb +25 -0
  41. data/lib/aws-sdk-s3/encryption.rb +4 -0
  42. data/lib/aws-sdk-s3/encryptionV2/client.rb +570 -0
  43. data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +223 -0
  44. data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +170 -0
  45. data/lib/aws-sdk-s3/encryptionV2/default_key_provider.rb +40 -0
  46. data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +65 -0
  47. data/lib/aws-sdk-s3/encryptionV2/errors.rb +37 -0
  48. data/lib/aws-sdk-s3/encryptionV2/io_auth_decrypter.rb +58 -0
  49. data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +37 -0
  50. data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +73 -0
  51. data/lib/aws-sdk-s3/encryptionV2/key_provider.rb +31 -0
  52. data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +173 -0
  53. data/lib/aws-sdk-s3/encryptionV2/materials.rb +60 -0
  54. data/lib/aws-sdk-s3/encryptionV2/utils.rb +103 -0
  55. data/lib/aws-sdk-s3/encryption_v2.rb +23 -0
  56. data/lib/aws-sdk-s3/endpoint_parameters.rb +178 -0
  57. data/lib/aws-sdk-s3/endpoint_provider.rb +591 -0
  58. data/lib/aws-sdk-s3/endpoints.rb +2590 -0
  59. data/lib/aws-sdk-s3/errors.rb +123 -1
  60. data/lib/aws-sdk-s3/event_streams.rb +20 -7
  61. data/lib/aws-sdk-s3/express_credentials.rb +55 -0
  62. data/lib/aws-sdk-s3/express_credentials_cache.rb +30 -0
  63. data/lib/aws-sdk-s3/express_credentials_provider.rb +36 -0
  64. data/lib/aws-sdk-s3/file_downloader.rb +184 -51
  65. data/lib/aws-sdk-s3/file_part.rb +16 -13
  66. data/lib/aws-sdk-s3/file_uploader.rb +39 -20
  67. data/lib/aws-sdk-s3/legacy_signer.rb +17 -25
  68. data/lib/aws-sdk-s3/multipart_file_uploader.rb +82 -23
  69. data/lib/aws-sdk-s3/multipart_stream_uploader.rb +202 -0
  70. data/lib/aws-sdk-s3/multipart_upload.rb +242 -31
  71. data/lib/aws-sdk-s3/multipart_upload_error.rb +2 -0
  72. data/lib/aws-sdk-s3/multipart_upload_part.rb +371 -47
  73. data/lib/aws-sdk-s3/object.rb +2260 -217
  74. data/lib/aws-sdk-s3/object_acl.rb +105 -24
  75. data/lib/aws-sdk-s3/object_copier.rb +9 -5
  76. data/lib/aws-sdk-s3/object_multipart_copier.rb +43 -19
  77. data/lib/aws-sdk-s3/object_summary.rb +1851 -186
  78. data/lib/aws-sdk-s3/object_version.rb +457 -74
  79. data/lib/aws-sdk-s3/plugins/accelerate.rb +17 -64
  80. data/lib/aws-sdk-s3/plugins/arn.rb +70 -0
  81. data/lib/aws-sdk-s3/plugins/bucket_dns.rb +7 -43
  82. data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +20 -3
  83. data/lib/aws-sdk-s3/plugins/dualstack.rb +7 -50
  84. data/lib/aws-sdk-s3/plugins/endpoints.rb +274 -0
  85. data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +5 -4
  86. data/lib/aws-sdk-s3/plugins/express_session_auth.rb +91 -0
  87. data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +3 -1
  88. data/lib/aws-sdk-s3/plugins/http_200_errors.rb +11 -3
  89. data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +44 -0
  90. data/lib/aws-sdk-s3/plugins/location_constraint.rb +5 -1
  91. data/lib/aws-sdk-s3/plugins/md5s.rb +35 -27
  92. data/lib/aws-sdk-s3/plugins/redirects.rb +5 -1
  93. data/lib/aws-sdk-s3/plugins/s3_host_id.rb +2 -0
  94. data/lib/aws-sdk-s3/plugins/s3_signer.rb +60 -91
  95. data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +31 -0
  96. data/lib/aws-sdk-s3/plugins/sse_cpk.rb +3 -1
  97. data/lib/aws-sdk-s3/plugins/streaming_retry.rb +139 -0
  98. data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -0
  99. data/lib/aws-sdk-s3/presigned_post.rb +160 -99
  100. data/lib/aws-sdk-s3/presigner.rb +172 -77
  101. data/lib/aws-sdk-s3/resource.rb +122 -6
  102. data/lib/aws-sdk-s3/types.rb +13937 -5517
  103. data/lib/aws-sdk-s3/waiters.rb +67 -1
  104. data/lib/aws-sdk-s3.rb +16 -6
  105. data/sig/bucket.rbs +212 -0
  106. data/sig/bucket_acl.rbs +78 -0
  107. data/sig/bucket_cors.rbs +69 -0
  108. data/sig/bucket_lifecycle.rbs +88 -0
  109. data/sig/bucket_lifecycle_configuration.rbs +111 -0
  110. data/sig/bucket_logging.rbs +76 -0
  111. data/sig/bucket_notification.rbs +114 -0
  112. data/sig/bucket_policy.rbs +59 -0
  113. data/sig/bucket_request_payment.rbs +54 -0
  114. data/sig/bucket_tagging.rbs +65 -0
  115. data/sig/bucket_versioning.rbs +77 -0
  116. data/sig/bucket_website.rbs +93 -0
  117. data/sig/client.rbs +2360 -0
  118. data/sig/errors.rbs +34 -0
  119. data/sig/multipart_upload.rbs +110 -0
  120. data/sig/multipart_upload_part.rbs +105 -0
  121. data/sig/object.rbs +436 -0
  122. data/sig/object_acl.rbs +86 -0
  123. data/sig/object_summary.rbs +334 -0
  124. data/sig/object_version.rbs +131 -0
  125. data/sig/resource.rbs +124 -0
  126. data/sig/types.rbs +2562 -0
  127. data/sig/waiters.rbs +83 -0
  128. metadata +70 -16
data/CHANGELOG.md ADDED
@@ -0,0 +1,1131 @@
1
+ Unreleased Changes
2
+ ------------------
3
+
4
+ 1.146.1 (2024-03-28)
5
+ ------------------
6
+
7
+ * Issue - Fix bug where thread_count option was not being respected for multipart uploads.
8
+
9
+ 1.146.0 (2024-03-18)
10
+ ------------------
11
+
12
+ * Feature - Fix two issues with response root node names.
13
+
14
+ 1.145.0 (2024-03-15)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for Amazon S3.
18
+
19
+ 1.144.0 (2024-03-13)
20
+ ------------------
21
+
22
+ * Feature - This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).
23
+
24
+ 1.143.1 (2024-03-12)
25
+ ------------------
26
+
27
+ * Issue - Include original part errors in message when aborting multipart upload fails (#2990).
28
+
29
+ 1.143.0 (2024-01-26)
30
+ ------------------
31
+
32
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
33
+
34
+ 1.142.0 (2023-12-22)
35
+ ------------------
36
+
37
+ * Feature - Added additional examples for some operations.
38
+
39
+ 1.141.0 (2023-11-28)
40
+ ------------------
41
+
42
+ * Feature - Adds support for S3 Express One Zone.
43
+
44
+ * 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.
45
+
46
+ 1.140.0 (2023-11-27)
47
+ ------------------
48
+
49
+ * 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.
50
+
51
+ * Issue - Fix thread interruptions in multipart `download_file`, `file_uploader` and `stream_uploader` (#2944).
52
+
53
+ 1.139.0 (2023-11-22)
54
+ ------------------
55
+
56
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
57
+
58
+ 1.138.0 (2023-11-21)
59
+ ------------------
60
+
61
+ * Feature - Add support for automatic date based partitioning in S3 Server Access Logs.
62
+
63
+ 1.137.0 (2023-11-17)
64
+ ------------------
65
+
66
+ * Feature - Removes all default 0 values for numbers and false values for booleans
67
+
68
+ 1.136.0 (2023-09-26)
69
+ ------------------
70
+
71
+ * 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.
72
+
73
+ 1.135.0 (2023-09-20)
74
+ ------------------
75
+
76
+ * Feature - Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException
77
+
78
+ 1.134.0 (2023-08-24)
79
+ ------------------
80
+
81
+ * Feature - Updates to endpoint ruleset tests to address Smithy validation issues.
82
+
83
+ 1.133.0 (2023-08-22)
84
+ ------------------
85
+
86
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
87
+
88
+ * Feature - Add support for `progress_callback` in `Object#download_file` and improve multi-threaded performance #(2901).
89
+
90
+ 1.132.1 (2023-08-09)
91
+ ------------------
92
+
93
+ * Issue - Add support for disabling checksum validation in `Object#download_file` (#2893).
94
+
95
+ 1.132.0 (2023-07-24)
96
+ ------------------
97
+
98
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
99
+
100
+ * Feature - Add support for verifying checksums in FileDownloader.
101
+
102
+ 1.131.0 (2023-07-20)
103
+ ------------------
104
+
105
+ * Feature - Improve performance of S3 clients by simplifying and optimizing endpoint resolution.
106
+
107
+ 1.130.0 (2023-07-13)
108
+ ------------------
109
+
110
+ * Feature - S3 Inventory now supports Object Access Control List and Object Owner as available object metadata fields in inventory reports.
111
+
112
+ * Feature - Allow Object multipart copy API to work when requiring a checksum algorithm.
113
+
114
+ * 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`.
115
+
116
+ 1.129.0 (2023-07-11)
117
+ ------------------
118
+
119
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
120
+
121
+ 1.128.0 (2023-07-06)
122
+ ------------------
123
+
124
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
125
+
126
+ 1.127.0 (2023-06-28)
127
+ ------------------
128
+
129
+ * 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.
130
+
131
+ * Feature - Select minimum expiration time for presigned urls between the expiration time option and the credential expiration time.
132
+
133
+ 1.126.0 (2023-06-16)
134
+ ------------------
135
+
136
+ * 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.
137
+
138
+ 1.125.0 (2023-06-15)
139
+ ------------------
140
+
141
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
142
+
143
+ 1.124.0 (2023-06-13)
144
+ ------------------
145
+
146
+ * Feature - Integrate double encryption feature to SDKs.
147
+
148
+ 1.123.2 (2023-06-12)
149
+ ------------------
150
+
151
+ * Issue - Fix issue when decrypting noncurrent versions of objects when using client side encryption (#2866).
152
+
153
+ 1.123.1 (2023-06-02)
154
+ ------------------
155
+
156
+ * Issue - Fix multipart `download_file` so that it does not download bytes out of range (#2859).
157
+
158
+ 1.123.0 (2023-05-31)
159
+ ------------------
160
+
161
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
162
+
163
+ 1.122.0 (2023-05-04)
164
+ ------------------
165
+
166
+ * Feature - Documentation updates for Amazon S3
167
+
168
+ 1.121.0 (2023-04-19)
169
+ ------------------
170
+
171
+ * Feature - Provides support for "Snow" Storage class.
172
+
173
+ 1.120.1 (2023-04-05)
174
+ ------------------
175
+
176
+ * Issue - Skip `#check_for_cached_region` if custom endpoint provided
177
+
178
+ 1.120.0 (2023-03-31)
179
+ ------------------
180
+
181
+ * Feature - Documentation updates for Amazon S3
182
+
183
+ 1.119.2 (2023-03-22)
184
+ ------------------
185
+
186
+ * Issue - Provide `endpoint` and `bucket` attributes on `Aws::S3::Errors::PermanentRedirect` error objects.
187
+
188
+ 1.119.1 (2023-02-13)
189
+ ------------------
190
+
191
+ * Issue - Ensure object metadata is not lost on multipart copy (#2821).
192
+
193
+ 1.119.0 (2023-01-26)
194
+ ------------------
195
+
196
+ * Feature - Allow FIPS to be used with path-style URLs.
197
+
198
+ 1.118.0 (2023-01-18)
199
+ ------------------
200
+
201
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
202
+
203
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
204
+
205
+ 1.117.2 (2022-11-30)
206
+ ------------------
207
+
208
+ * Issue - Return error messages from failures in threads in `MultipartStreamUploader` (#2793).
209
+
210
+ 1.117.1 (2022-10-26)
211
+ ------------------
212
+
213
+ * Issue - Fix custom endpoint and port regression with `presigned_url` (#2776).
214
+
215
+ 1.117.0 (2022-10-25)
216
+ ------------------
217
+
218
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
219
+
220
+ * Issue - Apply checksums to MultipartStreamUploader (#2769).
221
+
222
+ 1.116.0 (2022-10-21)
223
+ ------------------
224
+
225
+ * 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.
226
+
227
+ 1.115.0 (2022-10-19)
228
+ ------------------
229
+
230
+ * Feature - Updates internal logic for constructing API endpoints. We have added rule-based endpoints and internal model parameters.
231
+
232
+ 1.114.0 (2022-05-03)
233
+ ------------------
234
+
235
+ * Feature - Documentation only update for doc bug fixes for the S3 API docs.
236
+
237
+ 1.113.2 (2022-04-26)
238
+ ------------------
239
+
240
+ * Issue - Fix an issue where `ExpiredToken` errors were retried as if the request was from another region.
241
+
242
+ 1.113.1 (2022-04-25)
243
+ ------------------
244
+
245
+ * Issue - Rewind the underlying file on a streaming retry that is not a truncated body (#2692).
246
+
247
+ 1.113.0 (2022-02-24)
248
+ ------------------
249
+
250
+ * 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
251
+
252
+ 1.112.0 (2022-02-03)
253
+ ------------------
254
+
255
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
256
+
257
+ 1.111.3 (2022-01-24)
258
+ ------------------
259
+
260
+ * Issue - Fix starts_with fields on `PresignedPost` (#2636).
261
+
262
+ 1.111.2 (2022-01-20)
263
+ ------------------
264
+
265
+ * Issue - Minor cleanups.
266
+
267
+ 1.111.1 (2022-01-06)
268
+ ------------------
269
+
270
+ * Issue - Don't fail small files in `upload_file` when `:thread_count` is set. (#2628)
271
+
272
+ 1.111.0 (2022-01-04)
273
+ ------------------
274
+
275
+ * Feature - Minor doc-based updates based on feedback bugs received.
276
+
277
+ 1.110.0 (2021-12-21)
278
+ ------------------
279
+
280
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
281
+
282
+ 1.109.0 (2021-11-30)
283
+ ------------------
284
+
285
+ * 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.
286
+
287
+ 1.108.0 (2021-11-29)
288
+ ------------------
289
+
290
+ * 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.
291
+
292
+ 1.107.0 (2021-11-23)
293
+ ------------------
294
+
295
+ * 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.
296
+
297
+ 1.106.0 (2021-11-17)
298
+ ------------------
299
+
300
+ * Feature - Add `presigned_request` method to `Aws::S3::Object`.
301
+
302
+ 1.105.1 (2021-11-05)
303
+ ------------------
304
+
305
+ * Issue - Raise error when `use_fips_endpoint` is used with `use_accelerate_endpoint`.
306
+
307
+ 1.105.0 (2021-11-04)
308
+ ------------------
309
+
310
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
311
+
312
+ 1.104.0 (2021-10-18)
313
+ ------------------
314
+
315
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
316
+
317
+ 1.103.0 (2021-09-16)
318
+ ------------------
319
+
320
+ * Feature - Add support for access point arn filtering in S3 CW Request Metrics
321
+
322
+ 1.102.0 (2021-09-02)
323
+ ------------------
324
+
325
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
326
+
327
+ 1.101.0 (2021-09-01)
328
+ ------------------
329
+
330
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
331
+
332
+ 1.100.0 (2021-08-27)
333
+ ------------------
334
+
335
+ * Feature - Documentation updates for Amazon S3.
336
+
337
+ 1.99.0 (2021-08-16)
338
+ ------------------
339
+
340
+ * Feature - Documentation updates for Amazon S3
341
+
342
+ 1.98.0 (2021-07-30)
343
+ ------------------
344
+
345
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
346
+
347
+ 1.97.0 (2021-07-28)
348
+ ------------------
349
+
350
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
351
+
352
+ 1.96.2 (2021-07-20)
353
+ ------------------
354
+
355
+ * Issue - Fix file downloading edge case for 1 byte multipart ranges (#2561).
356
+
357
+ 1.96.1 (2021-06-10)
358
+ ------------------
359
+
360
+ * Issue - fix GetBucketLocation location_constraint XML parsing (#2536)
361
+
362
+ 1.96.0 (2021-06-03)
363
+ ------------------
364
+
365
+ * Feature - S3 Inventory now supports Bucket Key Status
366
+
367
+ 1.95.1 (2021-05-24)
368
+ ------------------
369
+
370
+ * Issue - Raise an error when FIPS is in the ARN's region for Access Point and Object Lambda.
371
+
372
+ 1.95.0 (2021-05-21)
373
+ ------------------
374
+
375
+ * Feature - Documentation updates for Amazon S3
376
+
377
+ 1.94.1 (2021-05-05)
378
+ ------------------
379
+
380
+ * Issue - Expose presigned request status to the request handler stack #2513
381
+
382
+ 1.94.0 (2021-04-27)
383
+ ------------------
384
+
385
+ * Feature - Allow S3 Presigner to sign non http verbs like (upload_part, multipart_upload_abort, etc.) #2511
386
+
387
+ 1.93.1 (2021-04-12)
388
+ ------------------
389
+
390
+ * Issue - Fix FIPS and global endpoint behavior for S3 ARNs.
391
+
392
+ * Issue - Increases `multipart_threshold` default from 15 megabytes to 100 megabytes.
393
+
394
+ 1.93.0 (2021-03-24)
395
+ ------------------
396
+
397
+ * Feature - Documentation updates for Amazon S3
398
+
399
+ 1.92.0 (2021-03-18)
400
+ ------------------
401
+
402
+ * Feature - S3 Object Lambda is a new S3 feature that enables users to apply their own custom code to process the output of a standard S3 GET request by automatically invoking a Lambda function with a GET request
403
+
404
+ * Feature - Support S3 Object Lambda ARNs in the `bucket:` parameter.
405
+
406
+ 1.91.0 (2021-03-10)
407
+ ------------------
408
+
409
+ * Feature - Adding ID element to the CORSRule schema
410
+
411
+ 1.90.0 (2021-03-08)
412
+ ------------------
413
+
414
+ * Feature - Amazon S3 Documentation updates
415
+
416
+ 1.89.0 (2021-02-26)
417
+ ------------------
418
+
419
+ * Feature - Add RequestPayer to GetObjectTagging and PutObjectTagging.
420
+
421
+ 1.88.2 (2021-02-25)
422
+ ------------------
423
+
424
+ * Issue - Support https in `Object#public_url` for `virtual_host`. (#1389)
425
+
426
+ * Issue - Fix an issue with the IAD regional endpoint plugin removing `us-east-1` from custom endpoints.
427
+
428
+
429
+ 1.88.1 (2021-02-12)
430
+ ------------------
431
+
432
+ * Issue - Fixed an issue with some plugins expecting `#size` to exist on a request body for streaming IO.
433
+
434
+ 1.88.0 (2021-02-02)
435
+ ------------------
436
+
437
+ * Feature - Support PrivateLink using the client `:endpoint` option. This patch has a minor behavioral change: a client constructed using `:use_dualstack_endpoint` or `:use_accelerate_endpoint` and `:endpoint` will now raise an `ArgumentError`.
438
+
439
+ * Issue - Fix a bug where bucket region detection did not work correctly with ARNs.
440
+
441
+ 1.87.0 (2020-12-21)
442
+ ------------------
443
+
444
+ * Feature - Format GetObject's Expires header to be an http-date instead of iso8601
445
+
446
+ 1.86.2 (2020-12-14)
447
+ ------------------
448
+
449
+ * Issue - Use `URI::DEFAULT_PARSER.escape` (an alias for `URI.escape`) in the legacy signer because Ruby 3 removes WEBrick from stdlib.
450
+
451
+ 1.86.1 (2020-12-11)
452
+ ------------------
453
+
454
+ * Issue - Bump minimum KMS dependency. (#2449)
455
+
456
+ 1.86.0 (2020-12-01)
457
+ ------------------
458
+
459
+ * Feature - S3 adds support for multiple-destination replication, option to sync replica modifications; S3 Bucket Keys to reduce cost of S3 SSE with AWS KMS
460
+
461
+ 1.85.0 (2020-11-20)
462
+ ------------------
463
+
464
+ * Feature - Add new documentation regarding automatically generated Content-MD5 headers when using the SDK or CLI.
465
+
466
+ 1.84.1 (2020-11-10)
467
+ ------------------
468
+
469
+ * Issue - Fix presigned urls for Outpost ARNs.
470
+
471
+ 1.84.0 (2020-11-09)
472
+ ------------------
473
+
474
+ * Feature - S3 Intelligent-Tiering adds support for Archive and Deep Archive Access tiers; S3 Replication adds replication metrics and failure notifications, brings feature parity for delete marker replication
475
+
476
+ 1.83.2 (2020-11-06)
477
+ ------------------
478
+
479
+ * Issue - Fix bug with clients not resolving the correct endpoint in `us-east-1` using access point ARNs.
480
+
481
+ 1.83.1 (2020-10-19)
482
+ ------------------
483
+
484
+ * Issue - Fix `multipart_threshold` documentation.
485
+
486
+ 1.83.0 (2020-10-02)
487
+ ------------------
488
+
489
+ * Feature - Amazon S3 Object Ownership is a new S3 feature that enables bucket owners to automatically assume ownership of objects that are uploaded to their buckets by other AWS Accounts.
490
+
491
+ 1.82.0 (2020-09-30)
492
+ ------------------
493
+
494
+ * Feature - Amazon S3 on Outposts expands object storage to on-premises AWS Outposts environments, enabling you to store and retrieve objects using S3 APIs and features.
495
+
496
+ * Feature - Support Outpost Access Point ARNs.
497
+
498
+ 1.81.1 (2020-09-25)
499
+ ------------------
500
+
501
+ * Issue - Ignore `amz-sdk-request` header (used for standard and adaptive retries) in the pre-signer. (#2411)
502
+
503
+ 1.81.0 (2020-09-15)
504
+ ------------------
505
+
506
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
507
+
508
+ 1.80.0 (2020-09-10)
509
+ ------------------
510
+
511
+ * Feature - Bucket owner verification feature added. This feature introduces the x-amz-expected-bucket-owner and x-amz-source-expected-bucket-owner headers.
512
+
513
+ 1.79.1 (2020-08-26)
514
+ ------------------
515
+
516
+ * Issue - Fix `Aws::S3::PresignedPost` using the `use_accelerate_endpoint` option with Resource clients. (#2103)
517
+
518
+ 1.79.0 (2020-08-25)
519
+ ------------------
520
+
521
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
522
+
523
+ 1.78.0 (2020-08-11)
524
+ ------------------
525
+
526
+ * Feature - Add support for in-region CopyObject and UploadPartCopy through S3 Access Points
527
+
528
+ 1.77.0 (2020-08-10)
529
+ ------------------
530
+
531
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
532
+
533
+ * Issue - Fix issue with JRuby and bump minimum version of core.
534
+
535
+ 1.76.0 (2020-08-07)
536
+ ------------------
537
+
538
+ * Feature - Updates Amazon S3 API reference documentation.
539
+
540
+ * Feature - Updates to the Amazon S3 Encryption Client. This change includes fixes for issues that were reported by Sophie Schmieg from the Google ISE team, and for issues that were discovered by AWS Cryptography.
541
+
542
+ 1.75.0 (2020-07-21)
543
+ ------------------
544
+
545
+ * Feature - Add progress_callback to `Object#upload` to support reporting of upload progress. (#648)
546
+
547
+ 1.74.0 (2020-07-08)
548
+ ------------------
549
+
550
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
551
+
552
+ * Feature - Allow the `use_accelerate_endpoint` option to be used with `Aws::S3::PresignedPost`. (#2103)
553
+
554
+ 1.73.0 (2020-07-02)
555
+ ------------------
556
+
557
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
558
+
559
+ 1.72.0 (2020-06-26)
560
+ ------------------
561
+
562
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
563
+
564
+ 1.71.1 (2020-06-25)
565
+ ------------------
566
+
567
+ * Issue - Fix uninitialized constant `Aws::S3::Plugins::RetryableBlockIO::Forwardable` (#2348)
568
+
569
+ 1.71.0 (2020-06-25)
570
+ ------------------
571
+
572
+ * Issue - This version has been yanked. (#2349).
573
+ * Feature - Retry incomplete, streaming responses to `get_object` using the range parameter to avoid re-downloading already processed data (#2326).
574
+ * Issue - Reduce memory usage of `IOEncryptor` and `IODecryptor`.
575
+
576
+ 1.70.0 (2020-06-23)
577
+ ------------------
578
+
579
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
580
+
581
+ 1.69.1 (2020-06-22)
582
+ ------------------
583
+
584
+ * Issue - Add support for user provided encryption context to `EncryptionV2::Client`.
585
+
586
+ 1.69.0 (2020-06-18)
587
+ ------------------
588
+
589
+ * Feature - Add a new version of the S3 Client Side Encryption Client: `EncryptionV2::Client` which supports more modern encryption algorithms.
590
+
591
+ 1.68.1 (2020-06-11)
592
+ ------------------
593
+
594
+ * Issue - Republish previous version with correct dependency on `aws-sdk-core`.
595
+
596
+ 1.68.0 (2020-06-10)
597
+ ------------------
598
+
599
+ * Issue - This version has been yanked. (#2327).
600
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
601
+
602
+ * Feature - Change `:compute_checksums` option to compute checksums only for optional operations when set to true, and no operations when set to false. Operations that require checksums are now modeled with `httpChecksumRequired` and computed automatically in aws-sdk-core.
603
+
604
+ 1.67.1 (2020-06-01)
605
+ ------------------
606
+
607
+ * Issue - Add support for Object.exists? and Waiters for the encryption client.
608
+
609
+ 1.67.0 (2020-05-28)
610
+ ------------------
611
+
612
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
613
+
614
+ 1.66.0 (2020-05-21)
615
+ ------------------
616
+
617
+ * Feature - Deprecates unusable input members bound to Content-MD5 header. Updates example and documentation.
618
+
619
+ 1.65.0 (2020-05-18)
620
+ ------------------
621
+
622
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
623
+
624
+ * Feature - Allow S3 presigner to presign non-object operations such as `list_objects`.
625
+
626
+ 1.64.0 (2020-05-07)
627
+ ------------------
628
+
629
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
630
+
631
+ 1.63.1 (2020-05-04)
632
+ ------------------
633
+
634
+ * Issue - Handle copy_object, complete_multipart_upload, and upload_part_copy http responses with 200 OK and incomplete bodies as errors.
635
+
636
+ 1.63.0 (2020-04-22)
637
+ ------------------
638
+
639
+ * Feature - Add `presigned_request` method to the `Presigner` class. This method returns a URL and headers necessary rather than hoisting them onto the query string.
640
+ * Feature - Force HTTPS when using `virtual_host: true` on the `Presigner` class.
641
+
642
+ 1.62.0 (2020-04-20)
643
+ ------------------
644
+
645
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
646
+
647
+ 1.61.2 (2020-04-03)
648
+ ------------------
649
+
650
+ * Issue - Add `put_bucket_lifecycle_configuration` and `put_bucket_replication` as required operations used in the MD5 plugin.
651
+
652
+ 1.61.1 (2020-03-10)
653
+ ------------------
654
+
655
+ * Issue - Fix raising in `Object#upload_stream` block not triggering the `Aws::S3::MultipartStreamUploader#abort_upload`.
656
+
657
+ 1.61.0 (2020-03-09)
658
+ ------------------
659
+
660
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
661
+ * Issue - Don't update endpoint on region mismatch errors when using a custom endpoint.
662
+
663
+ 1.60.2 (2020-02-07)
664
+ ------------------
665
+
666
+ * Issue - Allow `Aws::S3::Encrypted::Client` to be used with a Resource client.
667
+
668
+ 1.60.1 (2019-12-19)
669
+ ------------------
670
+
671
+ * Issue - Allow downcased option for S3 us-east-1 regionalization.
672
+
673
+ 1.60.0 (2019-12-18)
674
+ ------------------
675
+
676
+ * Feature - Updates Amazon S3 endpoints allowing you to configure your client to opt-in to using S3 with the us-east-1 regional endpoint, instead of global.
677
+
678
+ 1.59.1 (2019-12-17)
679
+ ------------------
680
+
681
+ * Issue - Added validation in the s3 presigner to check for 0 or negative expire_in times.
682
+
683
+ 1.59.0 (2019-12-05)
684
+ ------------------
685
+
686
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
687
+
688
+ * Issue - Fixed an issue with Access Point ARNs not resigning correctly.
689
+
690
+ * Issue - Fixed S3 gemspec to require a minimum core version to support S3 Access Point ARNs. (GitHub PR #2184)
691
+
692
+ 1.58.0 (2019-12-03)
693
+ ------------------
694
+
695
+ * Feature - Amazon S3 Access Points is a new S3 feature that simplifies managing data access at scale for shared data sets on Amazon S3. Access Points provide a customizable way to access the objects in a bucket, with a unique hostname and access policy that enforces the specific permissions and network controls for any request made through the access point. This represents a new way of provisioning access to shared data sets.
696
+
697
+ 1.57.0 (2019-11-20)
698
+ ------------------
699
+
700
+ * Feature - This release introduces support for Amazon S3 Replication Time Control, a new feature of S3 Replication that provides a predictable replication time backed by a Service Level Agreement. S3 Replication Time Control helps customers meet compliance or business requirements for data replication, and provides visibility into the replication process with new Amazon CloudWatch Metrics.
701
+
702
+ 1.56.0 (2019-11-18)
703
+ ------------------
704
+
705
+ * Feature - Added support for S3 Replication for existing objects. This release allows customers who have requested and been granted access to replicate existing S3 objects across buckets.
706
+
707
+ * Issue - Fix issue where `Aws::Errors::MissingRegionError` was not thrown for S3 or S3Control clients.
708
+
709
+ 1.55.0 (2019-11-15)
710
+ ------------------
711
+
712
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
713
+
714
+ 1.54.0 (2019-11-13)
715
+ ------------------
716
+
717
+ * Feature - Support `:s3_us_east_1_regional_endpoint` with `regional` to enable IAD regional endpoint for S3.
718
+
719
+ 1.53.0 (2019-10-31)
720
+ ------------------
721
+
722
+ * Feature - S3 Inventory now supports a new field 'IntelligentTieringAccessTier' that reports the access tier (frequent or infrequent) of objects stored in Intelligent-Tiering storage class.
723
+
724
+ 1.52.0 (2019-10-28)
725
+ ------------------
726
+
727
+ * Feature - Adding support in SelectObjectContent for scanning a portion of an object specified by a scan range.
728
+
729
+ 1.51.0 (2019-10-23)
730
+ ------------------
731
+
732
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
733
+
734
+ 1.50.0 (2019-10-17)
735
+ ------------------
736
+
737
+ * Feature - Add support to yield the response in #upload_file if a block is given.
738
+
739
+ 1.49.0 (2019-10-10)
740
+ ------------------
741
+
742
+ * Feature - Support `#delete_object` and `#head_object` for encryption client.
743
+
744
+ 1.48.0 (2019-08-30)
745
+ ------------------
746
+
747
+ * Feature - Added a `:whitelist_headers` option to S3 presigner.
748
+
749
+ 1.47.0 (2019-08-28)
750
+ ------------------
751
+
752
+ * Feature - Added a `:time` option to S3 presigner.
753
+
754
+ 1.46.0 (2019-07-25)
755
+ ------------------
756
+
757
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
758
+
759
+ 1.45.0 (2019-07-03)
760
+ ------------------
761
+
762
+ * Feature - Add S3 x-amz-server-side-encryption-context support.
763
+
764
+ 1.44.0 (2019-07-01)
765
+ ------------------
766
+
767
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
768
+
769
+ 1.43.0 (2019-06-17)
770
+ ------------------
771
+
772
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
773
+
774
+ 1.42.0 (2019-06-04)
775
+ ------------------
776
+
777
+ * Feature - Documentation updates for s3
778
+
779
+ 1.41.0 (2019-05-29)
780
+ ------------------
781
+
782
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
783
+
784
+ 1.40.0 (2019-05-21)
785
+ ------------------
786
+
787
+ * Feature - API update.
788
+
789
+ 1.39.0 (2019-05-16)
790
+ ------------------
791
+
792
+ * Feature - API update.
793
+
794
+ 1.38.0 (2019-05-15)
795
+ ------------------
796
+
797
+ * Feature - API update.
798
+
799
+ 1.37.0 (2019-05-14)
800
+ ------------------
801
+
802
+ * Feature - API update.
803
+
804
+ 1.36.1 (2019-04-19)
805
+ ------------------
806
+
807
+ * Issue - Reduce memory usage of `Aws::S3::Object#upload_stream` when `StringIO` is used
808
+
809
+ 1.36.0 (2019-03-27)
810
+ ------------------
811
+
812
+ * Feature - API update.
813
+
814
+ 1.35.0 (2019-03-22)
815
+ ------------------
816
+
817
+ * Feature - API update.
818
+
819
+ 1.34.0 (2019-03-21)
820
+ ------------------
821
+
822
+ * Feature - API update.
823
+
824
+ 1.33.0 (2019-03-18)
825
+ ------------------
826
+
827
+ * Feature - API update.
828
+
829
+ 1.32.0 (2019-03-14)
830
+ ------------------
831
+
832
+ * Feature - API update.
833
+
834
+ 1.31.0 (2019-03-08)
835
+ ------------------
836
+
837
+ * Feature - API update.
838
+
839
+ 1.30.1 (2019-01-11)
840
+ ------------------
841
+
842
+ * Issue - Plugin updates to support client-side monitoring.
843
+
844
+ 1.30.0 (2018-12-04)
845
+ ------------------
846
+
847
+ * Feature - API update.
848
+
849
+ 1.29.0 (2018-11-30)
850
+ ------------------
851
+
852
+ * Feature - API update.
853
+
854
+ 1.28.0 (2018-11-29)
855
+ ------------------
856
+
857
+ * Feature - API update.
858
+
859
+ * Issue - Update operations needs Content-MD5 header
860
+
861
+ 1.27.0 (2018-11-27)
862
+ ------------------
863
+
864
+ * Feature - API update.
865
+
866
+ 1.26.0 (2018-11-26)
867
+ ------------------
868
+
869
+ * Feature - API update.
870
+
871
+ 1.25.0 (2018-11-20)
872
+ ------------------
873
+
874
+ * Feature - API update.
875
+
876
+ 1.24.1 (2018-11-16)
877
+ ------------------
878
+
879
+ * Issue - Update version dependency on `aws-sdk-core` to support endpoint discovery.
880
+
881
+ 1.24.0 (2018-11-15)
882
+ ------------------
883
+
884
+ * Feature - API update.
885
+
886
+ 1.23.1 (2018-10-30)
887
+ ------------------
888
+
889
+ * Issue - Support multipart upload empty stream (GitHub Issue #1880)
890
+ * Issue - Aws::S3::Encryption::IOAuthDecrypter - Fixes issue where the body tag being split across packets could cause GCM decryption to fail intermittently.
891
+
892
+ 1.23.0 (2018-10-24)
893
+ ------------------
894
+
895
+ * Feature - API update.
896
+
897
+ 1.22.0 (2018-10-23)
898
+ ------------------
899
+
900
+ * Feature - API update.
901
+
902
+ 1.21.0 (2018-10-04)
903
+ ------------------
904
+
905
+ * Feature - API update.
906
+
907
+ 1.20.0 (2018-09-19)
908
+ ------------------
909
+
910
+ * Feature - API update.
911
+
912
+ 1.19.0 (2018-09-06)
913
+ ------------------
914
+
915
+ * Feature - Adds code paths and plugins for future SDK instrumentation and telemetry.
916
+
917
+ 1.18.0 (2018-09-05)
918
+ ------------------
919
+
920
+ * Feature - API update.
921
+
922
+ 1.17.1 (2018-08-29)
923
+ ------------------
924
+
925
+ * Issue - Update example for bucket#url (Github Issue#1868)
926
+
927
+ * Issue - Support opt-out counting #presigned_url as #api_requests (Github Issue#1866)
928
+
929
+ 1.17.0 (2018-07-11)
930
+ ------------------
931
+
932
+ * Feature - API update.
933
+
934
+ 1.16.1 (2018-07-10)
935
+ ------------------
936
+
937
+ * Issue - Avoids region redirects for FIPS endpoints
938
+
939
+ 1.16.0 (2018-06-28)
940
+ ------------------
941
+
942
+ * Feature - Supports `:version_id` for resource `#download_file` helper.
943
+
944
+ * Issue - Reduce memory allocation in checksum and signature generation.
945
+
946
+ * Issue - Ensure file handlers are closed when an exception is raised in `Aws::S3::FileUploader`.
947
+
948
+ 1.15.0 (2018-06-26)
949
+ ------------------
950
+
951
+ * Feature - API update.
952
+
953
+ 1.14.0 (2018-06-13)
954
+ ------------------
955
+
956
+ * Feature - Adds support for `Aws::S3::Object#upload_stream`, allowing streaming uploads outside of a File-based interface.
957
+
958
+ 1.13.0 (2018-05-22)
959
+ ------------------
960
+
961
+ * Feature - API update.
962
+
963
+ * Issue - Update EventEmitter to Aws::EventEmitter
964
+
965
+ 1.12.0 (2018-05-18)
966
+ ------------------
967
+
968
+ * Feature - API update.
969
+
970
+ 1.11.0 (2018-05-17)
971
+ ------------------
972
+
973
+ * Feature - Support S3 `SelectObjectContent` API
974
+
975
+ 1.10.0 (2018-05-07)
976
+ ------------------
977
+
978
+ * Feature - API update.
979
+
980
+ 1.9.1 (2018-04-19)
981
+ ------------------
982
+
983
+ * Issue - S3 accelerate endpoint doesn't work with 'expect' header
984
+
985
+ 1.9.0 (2018-04-04)
986
+ ------------------
987
+
988
+ * Feature - API update.
989
+
990
+ 1.8.2 (2018-02-23)
991
+ ------------------
992
+
993
+ * Issue - Add support for AES/CBC/PKCS7Padding to encryption client.
994
+
995
+ 1.8.1 (2018-02-16)
996
+ ------------------
997
+
998
+ * Issue - Enhance S3 Multipart Downloader performance #1709
999
+
1000
+ * Issue - Fix Ruby 2.5 warnings.
1001
+
1002
+ 1.8.0 (2017-11-29)
1003
+ ------------------
1004
+
1005
+ * Feature - API update.
1006
+
1007
+ 1.7.0 (2017-11-17)
1008
+ ------------------
1009
+
1010
+ * Feature - API update.
1011
+
1012
+ * Issue - Fix S3 unit test with latest endpoint
1013
+
1014
+ 1.6.0 (2017-11-07)
1015
+ ------------------
1016
+
1017
+ * Feature - API update.
1018
+
1019
+ * Issue - Update S3 unit test with latest endpoint
1020
+
1021
+ 1.5.0 (2017-10-06)
1022
+ ------------------
1023
+
1024
+ * Feature - API update.
1025
+
1026
+ * Issue - Update OJ Json parser error code
1027
+ * Issue - Fix typo
1028
+
1029
+ 1.4.0 (2017-09-14)
1030
+ ------------------
1031
+
1032
+ * Feature - API update.
1033
+
1034
+ 1.3.0 (2017-09-13)
1035
+ ------------------
1036
+
1037
+ * Feature - API update.
1038
+
1039
+ 1.2.0 (2017-09-07)
1040
+ ------------------
1041
+
1042
+ * Feature - API update.
1043
+
1044
+ 1.1.0 (2017-09-01)
1045
+ ------------------
1046
+
1047
+ * Feature - API update.
1048
+
1049
+ * Issue - Add object streaming behavior smoke test
1050
+
1051
+ * Issue - Update `aws-sdk-s3` gemspec metadata.
1052
+
1053
+ 1.0.0 (2017-08-29)
1054
+ ------------------
1055
+
1056
+ 1.0.0.rc15 (2017-08-15)
1057
+ ------------------
1058
+
1059
+ * Feature - API update.
1060
+
1061
+ * Issue - Aws::S3 - Fix Multipart Downloader bug issue #1566, now file batches exist in a newly created tmp directory under destination directory.
1062
+
1063
+ 1.0.0.rc14 (2017-08-01)
1064
+ ------------------
1065
+
1066
+ * Feature - API update.
1067
+
1068
+ 1.0.0.rc13 (2017-07-25)
1069
+ ------------------
1070
+
1071
+ * Feature - API update.
1072
+
1073
+ 1.0.0.rc12 (2017-07-13)
1074
+ ------------------
1075
+
1076
+ * Feature - API update.
1077
+
1078
+ 1.0.0.rc11 (2017-07-06)
1079
+ ------------------
1080
+
1081
+ * Feature - API update.
1082
+
1083
+ 1.0.0.rc10 (2017-06-29)
1084
+ ------------------
1085
+
1086
+ * Feature - API update.
1087
+
1088
+ 1.0.0.rc9 (2017-06-26)
1089
+ ------------------
1090
+
1091
+ * Feature - API update.
1092
+
1093
+ 1.0.0.rc8 (2017-05-23)
1094
+ ------------------
1095
+
1096
+ * Feature - API update.
1097
+
1098
+ 1.0.0.rc7 (2017-05-09)
1099
+ ------------------
1100
+
1101
+ * Issue - Correct dependency on `aws-sdk-kms` gem.
1102
+
1103
+ 1.0.0.rc6 (2017-05-09)
1104
+ ------------------
1105
+
1106
+ * Feature - API update.
1107
+
1108
+ 1.0.0.rc5 (2017-05-05)
1109
+ ------------------
1110
+
1111
+ * Feature - Aws::S3 - Added Multipart Download Helper feature to support different `:mode` ("auto", "single_request", "get_range") in downloading large objects with `#download_file` in multipart when possible.
1112
+
1113
+ 1.0.0.rc4 (2017-04-21)
1114
+ ------------------
1115
+
1116
+ * Feature - API update.
1117
+
1118
+ 1.0.0.rc3 (2017-03-09)
1119
+ ------------------
1120
+
1121
+ * Issue - Correct dependency on `aws-sdk-kms` gem.
1122
+
1123
+ 1.0.0.rc2 (2016-12-09)
1124
+ ------------------
1125
+
1126
+ * Feature - API update.
1127
+
1128
+ 1.0.0.rc1 (2016-12-05)
1129
+ ------------------
1130
+
1131
+ * Feature - Initial preview release of the `aws-sdk-s3` gem.