Prep release 3.1.7 (#5083)

This commit is contained in:
Bert Blommers 2022-04-30 14:20:36 +00:00 committed by GitHub
parent b57ce46670
commit a6d3a90c10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 26 additions and 8 deletions

View File

@ -1,6 +1,22 @@
Moto Changelog Moto Changelog
============== ==============
3.1.7
-----
Docker Digest for 3.1.7: <autopopulateddigest>
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 3.1.6
----- -----
Docker Digest for 3.1.6: _sha256:722b9c05ad3454047688db4ba95991f6af4166c63d871149b1b1eef9d70be70f_ Docker Digest for 3.1.6: _sha256:722b9c05ad3454047688db4ba95991f6af4166c63d871149b1b1eef9d70be70f_

View File

@ -4559,6 +4559,7 @@
- [ ] tag_resource - [ ] tag_resource
- [ ] untag_resource - [ ] untag_resource
- [ ] update_dataset_entries - [ ] update_dataset_entries
- [ ] update_stream_processor
</details> </details>
## resource-groups ## resource-groups
@ -5237,7 +5238,7 @@
## ses ## ses
<details> <details>
<summary>35% implemented</summary> <summary>36% implemented</summary>
- [ ] clone_receipt_rule_set - [ ] clone_receipt_rule_set
- [X] create_configuration_set - [X] create_configuration_set
@ -5269,7 +5270,7 @@
- [X] get_identity_mail_from_domain_attributes - [X] get_identity_mail_from_domain_attributes
- [X] get_identity_notification_attributes - [X] get_identity_notification_attributes
- [ ] get_identity_policies - [ ] get_identity_policies
- [ ] get_identity_verification_attributes - [X] get_identity_verification_attributes
- [X] get_send_quota - [X] get_send_quota
- [X] get_send_statistics - [X] get_send_statistics
- [X] get_template - [X] get_template
@ -5834,6 +5835,7 @@
- ce - ce
- chime - chime
- chime-sdk-identity - chime-sdk-identity
- chime-sdk-media-pipelines
- chime-sdk-meetings - chime-sdk-meetings
- chime-sdk-messaging - chime-sdk-messaging
- cloud9 - cloud9
@ -5909,6 +5911,7 @@
- iottwinmaker - iottwinmaker
- iotwireless - iotwireless
- ivs - ivs
- ivschat
- kafka - kafka
- kafkaconnect - kafkaconnect
- kendra - kendra

View File

@ -89,4 +89,5 @@ rekognition
- [ ] tag_resource - [ ] tag_resource
- [ ] untag_resource - [ ] untag_resource
- [ ] update_dataset_entries - [ ] update_dataset_entries
- [ ] update_stream_processor

View File

@ -55,7 +55,7 @@ ses
- [X] get_identity_mail_from_domain_attributes - [X] get_identity_mail_from_domain_attributes
- [X] get_identity_notification_attributes - [X] get_identity_notification_attributes
- [ ] get_identity_policies - [ ] get_identity_policies
- [ ] get_identity_verification_attributes - [X] get_identity_verification_attributes
- [X] get_send_quota - [X] get_send_quota
- [X] get_send_statistics - [X] get_send_statistics
- [X] get_template - [X] get_template

View File

@ -1754,11 +1754,9 @@ class CognitoIdpBackend(BaseBackend):
class GlobalCognitoIdpBackend(CognitoIdpBackend): class GlobalCognitoIdpBackend(CognitoIdpBackend):
""" # Some operations are unauthenticated
Some operations are unauthenticated # Without authentication-header, we lose the context of which region the request was send to
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
This backend will cycle through all backends as a workaround
"""
def _find_backend_for_clientid(self, client_id): def _find_backend_for_clientid(self, client_id):
for region, backend in cognitoidp_backends.items(): for region, backend in cognitoidp_backends.items():