aws-sdk-core 3.215.0 → 3.215.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: 82d0478bce0427efc353f39ee83d0a20de26a91488553f6a61c914a7c6d0be84
4
- data.tar.gz: 5595b4be5dfd7fd6fcbf0b7f5f999f1cefce47f2e02d1ac6ada2a5010d19241c
3
+ metadata.gz: f2db2754760f96d9db50166b8e7df8835da9f6c4f22fc5863c735bf430836ba3
4
+ data.tar.gz: c471ae0f2bd0d4ae6becf61924503c18eb879a9c1b5d1c6bbece136f46586577
5
5
  SHA512:
6
- metadata.gz: 120cb1bef0a1c6d02f2e8c23008116426a3f21d2c9e3a2deae2ebbe605794998b119347a45e3af78d631fab02deb95ae7c7efa7e300cf91bd3f5943797c718b1
7
- data.tar.gz: 898ad9005753c7b458b4e283674c90cc0bcbbfe8ddbdb7fe12aa73c2961310b54baa83b055de886a9abf61ddbdd478042fc2d4219e0fe054a2a601d54b8980ae
6
+ metadata.gz: a328281836956b7c2cf2d4f3e013d5d869f5a4fe6605b385816025917180925881b2777d978bc7bca1ce7ff025921599e1c0040553a7d64aa09daf6f0416177c
7
+ data.tar.gz: ee39dc732d9ed7d852d9aa8a6fecc7fa19e2c56fb250c3fcb60ffd6ca2d8f4365d3a77be64851d11552ef60548add61101d1b77a0f3e5d000f9f7c1543c9e3ef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.215.1 (2025-01-14)
5
+ ------------------
6
+
7
+ * Issue - Fixed error when attempting to log an unlinked tempfile.
8
+
4
9
  3.215.0 (2025-01-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.215.0
1
+ 3.215.1
@@ -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
 
@@ -669,7 +669,7 @@ module Aws::SSO
669
669
  tracer: tracer
670
670
  )
671
671
  context[:gem_name] = 'aws-sdk-core'
672
- context[:gem_version] = '3.215.0'
672
+ context[:gem_version] = '3.215.1'
673
673
  Seahorse::Client::Request.new(handlers, context)
674
674
  end
675
675
 
data/lib/aws-sdk-sso.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::SSO
56
56
  autoload :EndpointProvider, 'aws-sdk-sso/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sso/endpoints'
58
58
 
59
- GEM_VERSION = '3.215.0'
59
+ GEM_VERSION = '3.215.1'
60
60
 
61
61
  end
62
62
 
@@ -1022,7 +1022,7 @@ module Aws::SSOOIDC
1022
1022
  tracer: tracer
1023
1023
  )
1024
1024
  context[:gem_name] = 'aws-sdk-core'
1025
- context[:gem_version] = '3.215.0'
1025
+ context[:gem_version] = '3.215.1'
1026
1026
  Seahorse::Client::Request.new(handlers, context)
1027
1027
  end
1028
1028
 
@@ -56,7 +56,7 @@ module Aws::SSOOIDC
56
56
  autoload :EndpointProvider, 'aws-sdk-ssooidc/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-ssooidc/endpoints'
58
58
 
59
- GEM_VERSION = '3.215.0'
59
+ GEM_VERSION = '3.215.1'
60
60
 
61
61
  end
62
62
 
@@ -2572,7 +2572,7 @@ module Aws::STS
2572
2572
  tracer: tracer
2573
2573
  )
2574
2574
  context[:gem_name] = 'aws-sdk-core'
2575
- context[:gem_version] = '3.215.0'
2575
+ context[:gem_version] = '3.215.1'
2576
2576
  Seahorse::Client::Request.new(handlers, context)
2577
2577
  end
2578
2578
 
data/lib/aws-sdk-sts.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::STS
56
56
  autoload :EndpointProvider, 'aws-sdk-sts/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sts/endpoints'
58
58
 
59
- GEM_VERSION = '3.215.0'
59
+ GEM_VERSION = '3.215.1'
60
60
 
61
61
  end
62
62
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.215.0
4
+ version: 3.215.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-10 00:00:00.000000000 Z
11
+ date: 2025-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath