Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.342.28"
"${LATEST}": "3.342.32"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/CognitoIdentityProvider/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: This release adds refresh token rotation.

### Changed

- Sort exception alphabetically.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CognitoIdentityProvider/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.13-dev"
"dev-master": "1.14-dev"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ public function adminGetUser($input): AdminGetUserResponse
* @throws ResourceNotFoundException
* @throws TooManyRequestsException
* @throws UnexpectedLambdaException
* @throws UnsupportedOperationException
* @throws UserLambdaValidationException
* @throws UserNotConfirmedException
* @throws UserNotFoundException
Expand All @@ -607,6 +608,7 @@ public function adminInitiateAuth($input): AdminInitiateAuthResponse
'ResourceNotFoundException' => ResourceNotFoundException::class,
'TooManyRequestsException' => TooManyRequestsException::class,
'UnexpectedLambdaException' => UnexpectedLambdaException::class,
'UnsupportedOperationException' => UnsupportedOperationException::class,
'UserLambdaValidationException' => UserLambdaValidationException::class,
'UserNotConfirmedException' => UserNotConfirmedException::class,
'UserNotFoundException' => UserNotFoundException::class,
Expand Down Expand Up @@ -1462,6 +1464,7 @@ public function getUser($input): GetUserResponse
* @throws ResourceNotFoundException
* @throws TooManyRequestsException
* @throws UnexpectedLambdaException
* @throws UnsupportedOperationException
* @throws UserLambdaValidationException
* @throws UserNotConfirmedException
* @throws UserNotFoundException
Expand All @@ -1483,6 +1486,7 @@ public function initiateAuth($input): InitiateAuthResponse
'ResourceNotFoundException' => ResourceNotFoundException::class,
'TooManyRequestsException' => TooManyRequestsException::class,
'UnexpectedLambdaException' => UnexpectedLambdaException::class,
'UnsupportedOperationException' => UnsupportedOperationException::class,
'UserLambdaValidationException' => UserLambdaValidationException::class,
'UserNotConfirmedException' => UserNotConfirmedException::class,
'UserNotFoundException' => UserNotFoundException::class,
Expand Down