aws-sdk-s3 1.143.0 → 1.145.0

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: f9625b6a8df7b7e34f8ad36181eed81bf25998a5a2ade6252d521b6c6b6a1263
4
+ data.tar.gz: 40a60782c83c9ffa49f0bfe55c6e96895a9ac4c522c4a557b9d882f5f169170c
5
5
  SHA512:
6
- metadata.gz: 02efd7ab304a9b6214ed80d59ff3ed833a3dedb28a6d444bbca6cad8cf46eebd6590290dffc8d0502014cbb31a9209e35cdf8c2e9d90c81b8398d97725f4028f
7
- data.tar.gz: 1af4e138d4866f2ab8e346039c7cf8b0dd141164c72f25b97ba80572bd614ee0881eecba3c8cd5cc58b274ac8318f18fdbbe1a06428b2f9abc5c59e8dbd7e495
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.143.0
1
+ 1.145.0
@@ -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
  #