aws-sdk-core 3.131.3 → 3.131.4

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: 841c00d0f15577e794600c6d510e131c28c5daceaf682ea8f037b672600d2ba1
4
- data.tar.gz: 8c1036761b99ae9d06809e8382a3abf7c018852616a26bfb907981550b960b9f
3
+ metadata.gz: 1517d4e44a815a45cc20f7b2ad8a5b2ee92715e64ae5fbfa1b4f3ea5c409ef85
4
+ data.tar.gz: eef9fac00faaebd1587870c13ce8724f87f01685a8608d2551301c2474331ac2
5
5
  SHA512:
6
- metadata.gz: 4fb0e66c9f849349f474881b161b81f5b07d6258998d741b12203a6814c79f029e70651c8da0aa364255e70ce89a1ed94a4e45376087e81ea4d37d391131138a
7
- data.tar.gz: 2ac018694538ba648287e3080ecd0e9bffcd350abc1f5a0a15f958a544b94d1f8d88ac245f20bd2708488b24e189137aeee40f8ae0e34b62c3be71cf197214ed
6
+ metadata.gz: 678474a08d1cb4f1bd4dc942e7c386a276bd870e5630fdae4e75c1048cd4faabaa0d7d8f34fc96bc213952f381fd4e4cfe945294431f98d117d5bddfca95245a
7
+ data.tar.gz: 8c09ccc63d95c379d99662bb8f05fdb325f2aa544cafd18b16e0f5636b1ef2805774383f002057034f5d0d1917dd5979f3cb62eba098acf071c26283ec367386
data/CHANGELOG.md CHANGED
@@ -1,10 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.131.4 (2022-07-27)
5
+ ------------------
6
+
7
+ * Issue - Fix `to_json` usage on pageable responses when using Rails (#2733).
8
+ * Issue - Use `expand_path` on credential/config paths in SharedConfig (#2735).
9
+
4
10
  3.131.3 (2022-07-18)
5
11
  ------------------
6
12
 
7
- * Issue - Add support for serializing shapes on the body with `jsonvalue` members.
13
+ * Issue - Add support for serializing shapes on the body with `jsonvalue` members.
8
14
 
9
15
  3.131.2 (2022-06-20)
10
16
  ------------------
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.131.3
1
+ 3.131.4
@@ -146,6 +146,9 @@ module Aws
146
146
  data.to_h
147
147
  end
148
148
 
149
+ def to_json(options = {})
150
+ to_h.to_json(options)
151
+ end
149
152
  end
150
153
 
151
154
  # The actual decorator module implementation. It is in a distinct module
@@ -51,10 +51,12 @@ module Aws
51
51
  @config_enabled = options[:config_enabled]
52
52
  @credentials_path = options[:credentials_path] ||
53
53
  determine_credentials_path
54
+ @credentials_path = File.expand_path(@credentials_path) if @credentials_path
54
55
  @parsed_credentials = {}
55
56
  load_credentials_file if loadable?(@credentials_path)
56
57
  if @config_enabled
57
58
  @config_path = options[:config_path] || determine_config_path
59
+ @config_path = File.expand_path(@config_path) if @config_path
58
60
  load_config_file if loadable?(@config_path)
59
61
  end
60
62
  end
@@ -545,7 +545,7 @@ module Aws::SSO
545
545
  params: params,
546
546
  config: config)
547
547
  context[:gem_name] = 'aws-sdk-core'
548
- context[:gem_version] = '3.131.3'
548
+ context[:gem_version] = '3.131.4'
549
549
  Seahorse::Client::Request.new(handlers, context)
550
550
  end
551
551
 
data/lib/aws-sdk-sso.rb CHANGED
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-sso/customizations'
50
50
  # @!group service
51
51
  module Aws::SSO
52
52
 
53
- GEM_VERSION = '3.131.3'
53
+ GEM_VERSION = '3.131.4'
54
54
 
55
55
  end
@@ -2299,7 +2299,7 @@ module Aws::STS
2299
2299
  params: params,
2300
2300
  config: config)
2301
2301
  context[:gem_name] = 'aws-sdk-core'
2302
- context[:gem_version] = '3.131.3'
2302
+ context[:gem_version] = '3.131.4'
2303
2303
  Seahorse::Client::Request.new(handlers, context)
2304
2304
  end
2305
2305
 
data/lib/aws-sdk-sts.rb CHANGED
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-sts/customizations'
50
50
  # @!group service
51
51
  module Aws::STS
52
52
 
53
- GEM_VERSION = '3.131.3'
53
+ GEM_VERSION = '3.131.4'
54
54
 
55
55
  end
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.131.3
4
+ version: 3.131.4
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: 2022-07-18 00:00:00.000000000 Z
11
+ date: 2022-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath