aws-sdk-s3 1.144.0 → 1.146.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: c649924be52736fe2a01f9fc28ed5041a2910f3a19556cf9052fa35822769fd7
4
- data.tar.gz: e5fc6aa148c1754a404db0fe731571487347878748d9a39e88585b8632c725c2
3
+ metadata.gz: 8cce0ddd011617e3a15f4cb1464889a47d48f05fdaf43646dcb36a5eb4b9665e
4
+ data.tar.gz: dc2ccdaa403c4d7c9cfe1eb085699cf1d88fb8db028466bcfef132214a5e74db
5
5
  SHA512:
6
- metadata.gz: f4686748d1b80c3e2bc7d0a06846b5cacf2aa9ae9c5849c58b7f70a8ba8b5df0b7978ddcdd2a089e93fb8da3a1d1abe1506d5e52330bcc5fced3b2e14e74ac5f
7
- data.tar.gz: bca11b0bdea119e64873bb943a75fb174b1592bec943065030847ce6c7f2f7f9af85c57c5e064f1377cbf4c17bb9752b0ee335aa262c7de3c7ab0d8b3f813588
6
+ metadata.gz: f2dc083affe7245a9ba3c60ecaef2005b1ca390c0c98462319ba90710145932283520974bcb69bbe52f7d9ecf8bae930aadece66b599b3596b772f04b1176ad6
7
+ data.tar.gz: ed714310763321fd85aaf09901f3bea4079f08ba6f1717e3bb5fcd22638159e1f9dd54a709e8f562e587deec63cb0b5904f4b37ceb9fdd15b29f35ea7ccede10
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.146.0 (2024-03-18)
5
+ ------------------
6
+
7
+ * Feature - Fix two issues with response root node names.
8
+
9
+ 1.145.0 (2024-03-15)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for Amazon S3.
13
+
4
14
  1.144.0 (2024-03-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.144.0
1
+ 1.146.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
  #