aws-sdk-s3 1.143.0 → 1.146.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2be86d662a76114802ed36113558cb7e2df85c21e6b94e0c7e47b9a69f92ca60
4
- data.tar.gz: 3218088810b2459826d8a0ac475be22c7daeee303e195c8f22bc3569f6a42ab7
3
+ metadata.gz: bbfba787c46b0e8ec4dc57e11a20f0d16d38925d08577e77f5537abdd64789b1
4
+ data.tar.gz: c77ad5e5aae75f9a2407054547768a22ded163a45914de729ceb3a675e876ec8
5
5
  SHA512:
6
- metadata.gz: 02efd7ab304a9b6214ed80d59ff3ed833a3dedb28a6d444bbca6cad8cf46eebd6590290dffc8d0502014cbb31a9209e35cdf8c2e9d90c81b8398d97725f4028f
7
- data.tar.gz: 1af4e138d4866f2ab8e346039c7cf8b0dd141164c72f25b97ba80572bd614ee0881eecba3c8cd5cc58b274ac8318f18fdbbe1a06428b2f9abc5c59e8dbd7e495
6
+ metadata.gz: e1356cafb64aaf42508333251d59c9c2130ac30be57b6a7cb78554a1df241921c5f037d03879b023582292adaade4e2de9b807192f828eb59f7c25e52dd49208
7
+ data.tar.gz: 209a46f38d9169197d85990df7403321cb9f18945567f8826fb01c9e8d8e955041d40d44d710eb773f1d102bfff5cbad3f0eb609131923de185521eadec844ce
data/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
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
+
4
29
  1.143.0 (2024-01-26)
5
30
  ------------------
6
31
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.143.0
1
+ 1.146.1
@@ -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
  #