aws-sdk-core 3.214.1 → 3.219.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99d23d77dd74ca639579a7a2b7aab408659ad813b8e767b0ab0b6a5e43aed50d
4
- data.tar.gz: ea6ada6b8cf80e872f985fc5e289b2cb1a17ab49e34d373f764d01da490af825
3
+ metadata.gz: daacffffa5a66ef5ba66b2abdd92d47fc186f5bf55f9d2e0daf32f1769cd3976
4
+ data.tar.gz: 98e54a35f69070132a9cbc14aab6d1e53b324e649bed80b5775c09b1c299de82
5
5
  SHA512:
6
- metadata.gz: 5d22bc46279b4f56fc95750e3dc771b5dea133a358a3b2750a4216969ec5e93ae7c9c134107eba6a2f496a1b59f9c2f020bcf58770eb9cc96e6046b9bd17f4d7
7
- data.tar.gz: f678aa56840d77c47824e38e633763a9a94697750c395aeaa9220987ce852adbc32684f213e68230f3e3e9320b4d444f2179ea13965de8b70f1387ef0bd26aac
6
+ metadata.gz: 8357279c87cb3d8becf3a903242eb3c1d8dd2398a4ba2672265fbc77534e79abe32c080fe1481ae6211b564159d0a0afca6b45894a1bcc1975d13c76f1c3adf4
7
+ data.tar.gz: 6d1c7706d7828fc2d0c977c8e33f0ae92a32995b9b7878fa9801f3cdc7265d4c2977a4399f2d9c7022d8b9d7ff909b46da8b7f1713e5301c4e4d769e6a015a43
data/CHANGELOG.md CHANGED
@@ -1,6 +1,75 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.219.0 (2025-02-18)
5
+ ------------------
6
+
7
+ * Feature - Updated Aws::STS::Client with the latest API changes.
8
+
9
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
10
+
11
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
12
+
13
+ 3.218.1 (2025-02-07)
14
+ ------------------
15
+
16
+ * Issue - Add handling of block in ExtendedSession delegation (#3178).
17
+
18
+ 3.218.0 (2025-02-06)
19
+ ------------------
20
+
21
+ * Feature - Updated Aws::STS::Client with the latest API changes.
22
+
23
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
24
+
25
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
26
+
27
+ 3.217.1 (2025-01-30)
28
+ ------------------
29
+
30
+ * Issue - Add `transfer-encoding` and `connection` to list of unsigned sigv4 headers.
31
+
32
+ 3.217.0 (2025-01-24)
33
+ ------------------
34
+
35
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
36
+
37
+ * Feature - Fixed typos in the descriptions.
38
+
39
+ 3.216.1 (2025-01-22)
40
+ ------------------
41
+
42
+ * Issue - Use epoch seconds instead of milliseconds in cbor encode/decode.
43
+
44
+ * Issue - Add handling of block in response delegation (#3169).
45
+
46
+ 3.216.0 (2025-01-15)
47
+ ------------------
48
+
49
+ * Feature - Updated Aws::STS::Client with the latest API changes.
50
+
51
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
52
+
53
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
54
+
55
+ * Feature - Always calculate request checksums for operations that support or require it. Supported config options are `when_supported` and `when_required`. The default value is `when_supported`. This option is configured in code with `:request_checksum_calculation`, in the shared config file as `request_checksum_calculation`, and in the ENV as `ENV['AWS_REQUEST_CHECKSUM_CALCULATION']`.
56
+
57
+ * Feature - Always validate response checksums for operations that support or require it. Supported config options are `when_supported` and `when_required`. The default value is `when_supported`. This option is configured in code with `:response_checksum_validation`, in the shared config file as `response_checksum_validation`, and in the ENV as `ENV['AWS_RESPONSE_CHECKSUM_VALIDATION']`.
58
+
59
+ * Feature - Support CRC64NVME checksums through the `aws-crt` gem.
60
+
61
+ 3.215.1 (2025-01-14)
62
+ ------------------
63
+
64
+ * Issue - Fixed error when attempting to log an unlinked tempfile.
65
+
66
+ 3.215.0 (2025-01-10)
67
+ ------------------
68
+
69
+ * Feature - Updated Aws::STS::Client with the latest API changes.
70
+
71
+ * Feature - Fixed typos in the descriptions.
72
+
4
73
  3.214.1 (2024-12-28)
5
74
  ------------------
6
75
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.214.1
1
+ 3.219.0
@@ -61,9 +61,7 @@ module Aws
61
61
  when :tag
62
62
  case (tag = read_tag)
63
63
  when TAG_TYPE_EPOCH
64
- type = peek_type
65
64
  item = decode_item
66
- item /= 1000.0 if type == :integer
67
65
  Time.at(item)
68
66
  when TAG_TYPE_BIGNUM, TAG_TYPE_NEG_BIGNUM
69
67
  read_bignum(tag)
@@ -226,8 +226,8 @@ module Aws
226
226
 
227
227
  def add_time(value)
228
228
  head(MAJOR_TYPE_TAG, TAG_TYPE_EPOCH)
229
- epoch_ms = (value.to_f * 1000).to_i
230
- add_integer(epoch_ms)
229
+ epoch = value.to_f
230
+ add_double(epoch)
231
231
  end
232
232
 
233
233
  def bignum_to_bytes(value)
@@ -51,13 +51,17 @@ module Aws
51
51
  when String then summarize_string(value)
52
52
  when Hash then '{' + summarize_hash(value) + '}'
53
53
  when Array then summarize_array(value)
54
- when File then summarize_file(value.path)
55
- when Pathname then summarize_file(value)
54
+ when File then summarize_file(value)
55
+ when Pathname then summarize_filepath(value)
56
56
  else value.inspect
57
57
  end
58
58
  end
59
59
 
60
- def summarize_file(path)
60
+ def summarize_file(file)
61
+ "#<File:#{file.path} (#{file.size} bytes)>"
62
+ end
63
+
64
+ def summarize_filepath(path)
61
65
  "#<File:#{path} (#{File.size(path)} bytes)>"
62
66
  end
63
67