diff --git a/CHANGELOG.md b/CHANGELOG.md index 590de860a..be9245442 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ Moto Changelog ============== +3.1.7 +----- +Docker Digest for 3.1.7: + + New Methods: + * SES: + * get_identity_verification_attributes() + + Miscellaneous: + * CognitoIDP: UserPools now come with default values for the following attributes: Policies, AdminCreateUserConfig, EmailConfiguration, VerificationMessageTemplate + * ELBv2: Improved the response-format of the `create_rule()` and `set_rule_priorities()`-methods + * MediaConnect: Now has the correct format for flow/source ARN's + * Organizations: Fixes the behaviour for close_account() + * Sagemaker: Now supports tagging of Models, EndpointConfigs, ProcessingJobs + + 3.1.6 ----- Docker Digest for 3.1.6: _sha256:722b9c05ad3454047688db4ba95991f6af4166c63d871149b1b1eef9d70be70f_ diff --git a/IMPLEMENTATION_COVERAGE.md b/IMPLEMENTATION_COVERAGE.md index 5bb83a9ad..97ce00316 100644 --- a/IMPLEMENTATION_COVERAGE.md +++ b/IMPLEMENTATION_COVERAGE.md @@ -4559,6 +4559,7 @@ - [ ] tag_resource - [ ] untag_resource - [ ] update_dataset_entries +- [ ] update_stream_processor ## resource-groups @@ -5237,7 +5238,7 @@ ## ses
-35% implemented +36% implemented - [ ] clone_receipt_rule_set - [X] create_configuration_set @@ -5269,7 +5270,7 @@ - [X] get_identity_mail_from_domain_attributes - [X] get_identity_notification_attributes - [ ] get_identity_policies -- [ ] get_identity_verification_attributes +- [X] get_identity_verification_attributes - [X] get_send_quota - [X] get_send_statistics - [X] get_template @@ -5834,6 +5835,7 @@ - ce - chime - chime-sdk-identity +- chime-sdk-media-pipelines - chime-sdk-meetings - chime-sdk-messaging - cloud9 @@ -5909,6 +5911,7 @@ - iottwinmaker - iotwireless - ivs +- ivschat - kafka - kafkaconnect - kendra diff --git a/docs/docs/services/rekognition.rst b/docs/docs/services/rekognition.rst index 99d2ab09e..f88c64bb5 100644 --- a/docs/docs/services/rekognition.rst +++ b/docs/docs/services/rekognition.rst @@ -89,4 +89,5 @@ rekognition - [ ] tag_resource - [ ] untag_resource - [ ] update_dataset_entries +- [ ] update_stream_processor diff --git a/docs/docs/services/ses.rst b/docs/docs/services/ses.rst index 5e494ce77..de91a56be 100644 --- a/docs/docs/services/ses.rst +++ b/docs/docs/services/ses.rst @@ -55,7 +55,7 @@ ses - [X] get_identity_mail_from_domain_attributes - [X] get_identity_notification_attributes - [ ] get_identity_policies -- [ ] get_identity_verification_attributes +- [X] get_identity_verification_attributes - [X] get_send_quota - [X] get_send_statistics - [X] get_template diff --git a/moto/cognitoidp/models.py b/moto/cognitoidp/models.py index 488c4f088..3724ddb5b 100644 --- a/moto/cognitoidp/models.py +++ b/moto/cognitoidp/models.py @@ -1754,11 +1754,9 @@ class CognitoIdpBackend(BaseBackend): class GlobalCognitoIdpBackend(CognitoIdpBackend): - """ - Some operations are unauthenticated - Without authentication-header, we lose the context of which region the request was send to - This backend will cycle through all backends as a workaround - """ + # Some operations are unauthenticated + # Without authentication-header, we lose the context of which region the request was send to + # This backend will cycle through all backends as a workaround def _find_backend_for_clientid(self, client_id): for region, backend in cognitoidp_backends.items():