Prep 2.2.10 (#4422)
This commit is contained in:
parent
135edda994
commit
7deabd38e9
31
CHANGELOG.md
31
CHANGELOG.md
@ -1,6 +1,35 @@
|
|||||||
Moto Changelog
|
Moto Changelog
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
2.2.10
|
||||||
|
------
|
||||||
|
New Services:
|
||||||
|
* CloudTrail:
|
||||||
|
* create_trail()
|
||||||
|
* delete_trail()
|
||||||
|
* describe_trails()
|
||||||
|
* get_trail()
|
||||||
|
* get_trail_status()
|
||||||
|
* list_trails()
|
||||||
|
* start_logging()
|
||||||
|
* stop_logging()
|
||||||
|
|
||||||
|
New Methods:
|
||||||
|
* CognitoIDP:
|
||||||
|
* admin_reset_user_password()
|
||||||
|
* S3:
|
||||||
|
* delete_bucket_replication()
|
||||||
|
* get_bucket_replication()
|
||||||
|
* put_bucket_replication()
|
||||||
|
|
||||||
|
Miscellaneous:
|
||||||
|
* ACM: describe_certificate(): the InUseBy-attribute will now show the appropriate Elastic Load Balancers
|
||||||
|
* AWSLambda: If you're running Linux, 'host.docker.internal' is now added as an extra host in the Docker container used to invoke the function.
|
||||||
|
This makes it easier for Lambda-functions to communicate with other servers running on the host-system.
|
||||||
|
* CloudFormation: Now supports update/deletion of type AWS::SNS::Topic
|
||||||
|
* CognitoIdentityProvider: list_users() now has improved support for the Filter-parameter
|
||||||
|
* Kinesis: describe_stream() now supports the Filter-parameter
|
||||||
|
* S3: list_object_versions() now supports the Delimiter and KeyMarker-parameter
|
||||||
|
|
||||||
2.2.9
|
2.2.9
|
||||||
-----
|
-----
|
||||||
@ -8,7 +37,7 @@ Moto Changelog
|
|||||||
* Moto is now compatible with Sure 2.x
|
* Moto is now compatible with Sure 2.x
|
||||||
|
|
||||||
New Methods:
|
New Methods:
|
||||||
* Kinesis
|
* Kinesis:
|
||||||
* list_shards()
|
* list_shards()
|
||||||
* RDS:
|
* RDS:
|
||||||
* create_db_cluster()
|
* create_db_cluster()
|
||||||
|
@ -590,7 +590,7 @@
|
|||||||
|
|
||||||
## cognito-idp
|
## cognito-idp
|
||||||
<details>
|
<details>
|
||||||
<summary>48% implemented</summary>
|
<summary>49% implemented</summary>
|
||||||
|
|
||||||
- [ ] add_custom_attributes
|
- [ ] add_custom_attributes
|
||||||
- [X] admin_add_user_to_group
|
- [X] admin_add_user_to_group
|
||||||
@ -610,7 +610,7 @@
|
|||||||
- [X] admin_list_groups_for_user
|
- [X] admin_list_groups_for_user
|
||||||
- [ ] admin_list_user_auth_events
|
- [ ] admin_list_user_auth_events
|
||||||
- [X] admin_remove_user_from_group
|
- [X] admin_remove_user_from_group
|
||||||
- [ ] admin_reset_user_password
|
- [X] admin_reset_user_password
|
||||||
- [ ] admin_respond_to_auth_challenge
|
- [ ] admin_respond_to_auth_challenge
|
||||||
- [ ] admin_set_user_mfa_preference
|
- [ ] admin_set_user_mfa_preference
|
||||||
- [X] admin_set_user_password
|
- [X] admin_set_user_password
|
||||||
@ -3567,7 +3567,7 @@
|
|||||||
|
|
||||||
## s3
|
## s3
|
||||||
<details>
|
<details>
|
||||||
<summary>56% implemented</summary>
|
<summary>59% implemented</summary>
|
||||||
|
|
||||||
- [X] abort_multipart_upload
|
- [X] abort_multipart_upload
|
||||||
- [X] complete_multipart_upload
|
- [X] complete_multipart_upload
|
||||||
@ -3584,7 +3584,7 @@
|
|||||||
- [ ] delete_bucket_metrics_configuration
|
- [ ] delete_bucket_metrics_configuration
|
||||||
- [ ] delete_bucket_ownership_controls
|
- [ ] delete_bucket_ownership_controls
|
||||||
- [X] delete_bucket_policy
|
- [X] delete_bucket_policy
|
||||||
- [ ] delete_bucket_replication
|
- [X] delete_bucket_replication
|
||||||
- [X] delete_bucket_tagging
|
- [X] delete_bucket_tagging
|
||||||
- [X] delete_bucket_website
|
- [X] delete_bucket_website
|
||||||
- [X] delete_object
|
- [X] delete_object
|
||||||
@ -3608,7 +3608,7 @@
|
|||||||
- [ ] get_bucket_ownership_controls
|
- [ ] get_bucket_ownership_controls
|
||||||
- [X] get_bucket_policy
|
- [X] get_bucket_policy
|
||||||
- [ ] get_bucket_policy_status
|
- [ ] get_bucket_policy_status
|
||||||
- [ ] get_bucket_replication
|
- [X] get_bucket_replication
|
||||||
- [ ] get_bucket_request_payment
|
- [ ] get_bucket_request_payment
|
||||||
- [X] get_bucket_tagging
|
- [X] get_bucket_tagging
|
||||||
- [X] get_bucket_versioning
|
- [X] get_bucket_versioning
|
||||||
@ -3648,7 +3648,7 @@
|
|||||||
- [X] put_bucket_notification_configuration
|
- [X] put_bucket_notification_configuration
|
||||||
- [ ] put_bucket_ownership_controls
|
- [ ] put_bucket_ownership_controls
|
||||||
- [X] put_bucket_policy
|
- [X] put_bucket_policy
|
||||||
- [ ] put_bucket_replication
|
- [X] put_bucket_replication
|
||||||
- [ ] put_bucket_request_payment
|
- [ ] put_bucket_request_payment
|
||||||
- [X] put_bucket_tagging
|
- [X] put_bucket_tagging
|
||||||
- [ ] put_bucket_versioning
|
- [ ] put_bucket_versioning
|
||||||
|
Loading…
Reference in New Issue
Block a user