aws-sdk-cognitoidentityprovider 1.109.0 → 1.111.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cognitoidentityprovider/client.rb +1131 -158
- data/lib/aws-sdk-cognitoidentityprovider/client_api.rb +398 -5
- data/lib/aws-sdk-cognitoidentityprovider/errors.rb +165 -0
- data/lib/aws-sdk-cognitoidentityprovider/types.rb +2729 -473
- data/lib/aws-sdk-cognitoidentityprovider.rb +1 -1
- data/sig/client.rbs +178 -19
- data/sig/errors.rbs +31 -0
- data/sig/types.rbs +240 -16
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d95b173ac6233daee177ad5977e36c0c0ef9926fa6e139b2c56fed2580930a02
|
4
|
+
data.tar.gz: 8f25cbbeaa42efce522d50233e5934a45de01117003796d32e1bd2d095777388
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a109efab5c87602e7f1658a0730f46b4b31b9d77e81c3d5143edd9534b51e453daa869335c90863c7a2f9fba8a33abf82ce506571cfae7e8c45bd8a8e968c7be
|
7
|
+
data.tar.gz: f339021926e3a009f0d3b3ba9f9ecff092dd8abdc7de3eb5c0cd65bb09e8b14c97f0e1940c272838d19f65c476844917bd9cf933706780166f2911981e65b3fc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.111.0 (2024-12-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Change `CustomDomainConfig` from a required to an optional parameter for the `UpdateUserPoolDomain` operation.
|
8
|
+
|
9
|
+
1.110.0 (2024-11-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for users to sign up and sign in without passwords, using email and SMS OTPs and Passkeys. Add support for Passkeys based on WebAuthn. Add support for enhanced branding customization for hosted authentication pages with Amazon Cognito Managed Login. Add feature tiers with new pricing.
|
13
|
+
|
4
14
|
1.109.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.111.0
|