aws-sdk-s3 1.227.0 → 1.228.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 831799e011074750bd3c117869fe3b149fc8157b445882260efca9af75974324
4
- data.tar.gz: 4ff7b892dea83427c937112765abd00f4026e2e9b73d95370b945db3f9aa6850
3
+ metadata.gz: 707edfd91b8b1c3422d80e345a544b90757ca353b282ffa6df8856de6afd263e
4
+ data.tar.gz: b2fe82651b7ca955e7c6cadfb19d4f70a8b01e76005ac12f904fd6bc71f4c811
5
5
  SHA512:
6
- metadata.gz: e812cb152a8322b8a1ee788e498077129658b6b65526d18749019336b91f02c11e3d386a202cafec08f6bbc3d6cfa0928450e84c9d5e6addbf838f3ba3f355ca
7
- data.tar.gz: 4b2fa156720de6a8c8ee14df23b96129a8b1c1cd273b173e73c6c0cb2815fb30ea4b0dd3efb17bec14ffc80ae6b8bcc680f3e23fb6f6a97498ae4c87a746796a
6
+ metadata.gz: e332ec84f826bbb1d50c457b61b05b52b660bca9723121231c58f8d9d11621ac53b09fd989a1e97734440e5e836bc5c1e267203164357a10d205ff16d458e6d1
7
+ data.tar.gz: 20425c6e9ecdfa528eeae37b322b7d32ad82a20ccb0c3bb94f109643995f718498103371892fc6bd47425021ea81017e542981a153c110a2b351e0d1be289af2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.228.1 (2026-07-23)
5
+ ------------------
6
+
7
+ * Issue - Ensure the source file is closed on multipart `upload_file` part failure, preventing leaked file descriptors (#3408).
8
+
9
+ 1.228.0 (2026-07-16)
10
+ ------------------
11
+
12
+ * Feature - Documentation update for removing the 30 day minimum restriction for transition to Standard-IA or OneZone-IA storage classes
13
+
4
14
  1.227.0 (2026-07-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.227.0
1
+ 1.228.1
@@ -22242,8 +22242,6 @@ module Aws::S3
22242
22242
  # : * To use the `UpdateObjectEncryption` operation, you must have the
22243
22243
  # following permissions:
22244
22244
  #
22245
- # * `s3:PutObject`
22246
- #
22247
22245
  # * `s3:UpdateObjectEncryption`
22248
22246
  #
22249
22247
  # * `kms:Encrypt`
@@ -24104,7 +24102,7 @@ module Aws::S3
24104
24102
  tracer: tracer
24105
24103
  )
24106
24104
  context[:gem_name] = 'aws-sdk-s3'
24107
- context[:gem_version] = '1.227.0'
24105
+ context[:gem_version] = '1.228.1'
24108
24106
  Seahorse::Client::Request.new(handlers, context)
24109
24107
  end
24110
24108
 
@@ -154,7 +154,6 @@ module Aws
154
154
  Thread.current[:net_http_override_body_stream_chunk] = @http_chunk_size if @http_chunk_size
155
155
  update_progress(progress, p)
156
156
  resp = @client.upload_part(p)
157
- p[:body].close
158
157
  completed_part = { etag: resp.etag, part_number: p[:part_number] }
159
158
  apply_part_checksum(resp, completed_part)
160
159
  completed.push(completed_part)
@@ -162,6 +161,7 @@ module Aws
162
161
  abort_upload = true
163
162
  errors << e
164
163
  ensure
164
+ p[:body].close
165
165
  Thread.current[:net_http_override_body_stream_chunk] = nil if @http_chunk_size
166
166
  completion_queue << :done
167
167
  end
@@ -3483,7 +3483,12 @@ module Aws::S3
3483
3483
  end
3484
3484
 
3485
3485
  # @!attribute [rw] location
3486
- # A forward slash followed by the name of the bucket.
3486
+ # A forward slash followed by the name of the bucket for all account
3487
+ # regional namespace buckets and all global general purpose buckets
3488
+ # created in us-east-1. For example, `/amzn-s3-demo-bucket`. For
3489
+ # global general purpose buckets created in other Amazon Web Services
3490
+ # Regions, the Location field is the global endpoint URL. For example,
3491
+ # `http://amzn-s3-demo-bucket.s3.amazonaws.com/`.
3487
3492
  # @return [String]
3488
3493
  #
3489
3494
  # @!attribute [rw] bucket_arn
@@ -6128,8 +6133,17 @@ module Aws::S3
6128
6133
  include Aws::Structure
6129
6134
  end
6130
6135
 
6136
+ # <note markdown="1"> For information about using the Amazon S3 API—including error
6137
+ # handling—see the [Amazon S3 Developer Guide][1].
6138
+ #
6139
+ # </note>
6140
+ #
6131
6141
  # Container for all error elements.
6132
6142
  #
6143
+ #
6144
+ #
6145
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/developerguide/Welcome.html
6146
+ #
6133
6147
  # @!attribute [rw] key
6134
6148
  # The error key.
6135
6149
  # @return [String]
@@ -21175,15 +21189,12 @@ module Aws::S3
21175
21189
  #
21176
21190
  # @!attribute [rw] days
21177
21191
  # Indicates the number of days after creation when objects are
21178
- # transitioned to the specified storage class. If the specified
21179
- # storage class is `INTELLIGENT_TIERING`, `GLACIER_IR`, `GLACIER`, or
21180
- # `DEEP_ARCHIVE`, valid values are `0` or positive integers. If the
21181
- # specified storage class is `STANDARD_IA` or `ONEZONE_IA`, valid
21182
- # values are positive integers greater than `30`. Be aware that some
21183
- # storage classes have a minimum storage duration and that you're
21184
- # charged for transitioning objects before their minimum storage
21185
- # duration. For more information, see [ Constraints and considerations
21186
- # for transitions][1] in the *Amazon S3 User Guide*.
21192
+ # transitioned to the specified storage class. The value can be `0` or
21193
+ # any positive integer. Be aware that some storage classes have a
21194
+ # minimum storage duration and that you're charged for transitioning
21195
+ # objects before their minimum storage duration. For more information,
21196
+ # see [ Constraints and considerations for transitions][1] in the
21197
+ # *Amazon S3 User Guide*.
21187
21198
  #
21188
21199
  #
21189
21200
  #
data/lib/aws-sdk-s3.rb CHANGED
@@ -75,7 +75,7 @@ module Aws::S3
75
75
  autoload :ObjectVersion, 'aws-sdk-s3/object_version'
76
76
  autoload :EventStreams, 'aws-sdk-s3/event_streams'
77
77
 
78
- GEM_VERSION = '1.227.0'
78
+ GEM_VERSION = '1.228.1'
79
79
 
80
80
  end
81
81
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.227.0
4
+ version: 1.228.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services