aws-sdk-s3 1.143.0 → 1.145.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +3 -0
- data/lib/aws-sdk-s3/client.rb +223 -238
- data/lib/aws-sdk-s3/endpoint_provider.rb +6 -6
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +3 -2
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +3 -2
- data/lib/aws-sdk-s3/resource.rb +1 -1
- data/lib/aws-sdk-s3/types.rb +55 -36
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9625b6a8df7b7e34f8ad36181eed81bf25998a5a2ade6252d521b6c6b6a1263
|
4
|
+
data.tar.gz: 40a60782c83c9ffa49f0bfe55c6e96895a9ac4c522c4a557b9d882f5f169170c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04abb6f42387a15d13222f3e9e430db7eac8019414ef2966948c0d39de2bc337b5739bdb27da0b798db010bb5788291488bb4c347109c0cf74c9c475cd4b07f6
|
7
|
+
data.tar.gz: 3e130b382e6513104964cd2104a047a03675afb397fb443ee554b8b054e5571f0652d9b986e02fadb9f654a89a31e0055d4386d1300c2e4dd8c5e3c6ed83224a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.145.0 (2024-03-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Amazon S3.
|
8
|
+
|
9
|
+
1.144.0 (2024-03-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).
|
13
|
+
|
14
|
+
1.143.1 (2024-03-12)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Issue - Include original part errors in message when aborting multipart upload fails (#2990).
|
18
|
+
|
4
19
|
1.143.0 (2024-01-26)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.145.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
@@ -1253,6 +1253,9 @@ module Aws::S3
|
|
1253
1253
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html
|
1254
1254
|
# @option options [String] :encoding_type
|
1255
1255
|
# Encoding type used by Amazon S3 to encode object keys in the response.
|
1256
|
+
# If using `url`, non-ASCII characters used in an object's key name
|
1257
|
+
# will be URL encoded. For example, the object test\_file(3).png will
|
1258
|
+
# appear as test\_file%283%29.png.
|
1256
1259
|
# @option options [String] :prefix
|
1257
1260
|
# Limits the response to keys that begin with the specified prefix.
|
1258
1261
|
#
|