Prep release 3.1.7 (#5083)
This commit is contained in:
parent
b57ce46670
commit
a6d3a90c10
16
CHANGELOG.md
16
CHANGELOG.md
@ -1,6 +1,22 @@
|
||||
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
|
||||
-----
|
||||
Docker Digest for 3.1.6: _sha256:722b9c05ad3454047688db4ba95991f6af4166c63d871149b1b1eef9d70be70f_
|
||||
|
@ -4559,6 +4559,7 @@
|
||||
- [ ] tag_resource
|
||||
- [ ] untag_resource
|
||||
- [ ] update_dataset_entries
|
||||
- [ ] update_stream_processor
|
||||
</details>
|
||||
|
||||
## resource-groups
|
||||
@ -5237,7 +5238,7 @@
|
||||
|
||||
## ses
|
||||
<details>
|
||||
<summary>35% implemented</summary>
|
||||
<summary>36% implemented</summary>
|
||||
|
||||
- [ ] 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
|
||||
|
@ -89,4 +89,5 @@ rekognition
|
||||
- [ ] tag_resource
|
||||
- [ ] untag_resource
|
||||
- [ ] update_dataset_entries
|
||||
- [ ] update_stream_processor
|
||||
|
||||
|
@ -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
|
||||
|
@ -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():
|
||||
|
Loading…
Reference in New Issue
Block a user