aws-sdk-cognitoidentity 1.38.0 → 1.40.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d849ac9e7adc58f4161873832424e9a5e5a0d162be35207fb1d48a880a818e52
|
4
|
+
data.tar.gz: 59eafd6960ed25e69229616bb4c1b2deec59eb1ee83a23a196cce4c8e5767615
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8ce7efccfdc3d370f96049db3f7ee063ca5568eebf81ea643b448161bd963c67fc7b79180b6fa3bd9934eea0c260755ac8e4b37cf87bbd2a26cd10d5d659d46
|
7
|
+
data.tar.gz: cd4ae43971a41655d3e6238c471754f471d61992ac208497ab9333fa8265c75c07bc09008c5239ddda1f5abb8f88539b5a70fa094cc35a9296dd9a8269a5b78b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.40.1 (2022-04-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Issue - Don't pass `:before_refresh` to Client constructors in `CognitoIdentityCredentials` (#2690).
|
8
|
+
|
9
|
+
1.40.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.39.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.38.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.40.1
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::CognitoIdentity
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
80
84
|
|
@@ -1627,7 +1631,7 @@ module Aws::CognitoIdentity
|
|
1627
1631
|
params: params,
|
1628
1632
|
config: config)
|
1629
1633
|
context[:gem_name] = 'aws-sdk-cognitoidentity'
|
1630
|
-
context[:gem_version] = '1.
|
1634
|
+
context[:gem_version] = '1.40.1'
|
1631
1635
|
Seahorse::Client::Request.new(handlers, context)
|
1632
1636
|
end
|
1633
1637
|
|
@@ -85,7 +85,10 @@ module Aws
|
|
85
85
|
@identity_id = options.delete(:identity_id)
|
86
86
|
@custom_role_arn = options.delete(:custom_role_arn)
|
87
87
|
@logins = options.delete(:logins) || {}
|
88
|
-
@
|
88
|
+
@async_refresh = false
|
89
|
+
|
90
|
+
client_opts = {}
|
91
|
+
options.each_pair { |k,v| client_opts[k] = v unless CLIENT_EXCLUDE_OPTIONS.include?(k) }
|
89
92
|
|
90
93
|
if !@identity_pool_id && !@identity_id
|
91
94
|
raise ArgumentError,
|
@@ -93,7 +96,7 @@ module Aws
|
|
93
96
|
end
|
94
97
|
|
95
98
|
@client = options[:client] || CognitoIdentity::Client.new(
|
96
|
-
|
99
|
+
client_opts.merge(credentials: false)
|
97
100
|
)
|
98
101
|
super
|
99
102
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cognitoidentity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.40.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:
|
11
|
+
date: 2022-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|