Prep 2.2.14 (#4569)
This commit is contained in:
parent
b71b6904fd
commit
163042af94
33
CHANGELOG.md
33
CHANGELOG.md
@ -1,6 +1,39 @@
|
||||
Moto Changelog
|
||||
===================
|
||||
|
||||
2.2.14
|
||||
------
|
||||
General:
|
||||
* Improved documentation for both users and contributors:
|
||||
http://docs.getmoto.org/en/latest/
|
||||
* The `@mock_all`-decorator is now available to mock all services at the same time
|
||||
* The `moto.core.patch_client`/`moto.core.patch_resource`-methods are now available to patch boto3-clients and -resources instantiated after the mock was started.
|
||||
This provides a workaround when encountering InvalidAccessKeyId-errors.
|
||||
|
||||
New Methods:
|
||||
* APIGateway:
|
||||
* delete_base_path_mapping()
|
||||
* EC2:
|
||||
* assign_ipv6_addresses()
|
||||
* assign_private_ip_addresses()
|
||||
* unassign_ipv6_addresses()
|
||||
* unassign_private_ip_addresses()
|
||||
* SSM:
|
||||
* create_maintenance_window()
|
||||
* delete_maintenance_window()
|
||||
* get_maintenance_window()
|
||||
|
||||
Miscellaneous:
|
||||
* CloudFormation no longer throws errors when trying to update unsupported resources.
|
||||
* CloudTrail:get_trail_status() now also supports ARN's as a parameter
|
||||
* CognitoIDP:list_users() now supports the AttributesToGet-parameter
|
||||
* IOT:attach_policy() now supports Cognito IdentityPools as a target
|
||||
* IOT:list_job_executions_for_thing() now supports pagination
|
||||
* Kinesis:split_shards() now behaves more like AWS, by closing the original shard and creating two new ones
|
||||
* Logs:put_log_events() now enforces timestamp-validation
|
||||
* S3:create_multipart_upload() now supports the Tagging-parameter
|
||||
* SSM:get_parameters_by_path() now support filtering by label
|
||||
|
||||
2.2.13
|
||||
-----
|
||||
General:
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
## apigateway
|
||||
<details>
|
||||
<summary>50% implemented</summary>
|
||||
<summary>51% implemented</summary>
|
||||
|
||||
- [X] create_api_key
|
||||
- [X] create_authorizer
|
||||
@ -41,7 +41,7 @@
|
||||
- [ ] create_vpc_link
|
||||
- [X] delete_api_key
|
||||
- [X] delete_authorizer
|
||||
- [ ] delete_base_path_mapping
|
||||
- [X] delete_base_path_mapping
|
||||
- [ ] delete_client_certificate
|
||||
- [X] delete_deployment
|
||||
- [ ] delete_documentation_part
|
||||
@ -1066,8 +1066,8 @@
|
||||
- [X] allocate_address
|
||||
- [ ] allocate_hosts
|
||||
- [ ] apply_security_groups_to_client_vpn_target_network
|
||||
- [ ] assign_ipv6_addresses
|
||||
- [ ] assign_private_ip_addresses
|
||||
- [X] assign_ipv6_addresses
|
||||
- [X] assign_private_ip_addresses
|
||||
- [X] associate_address
|
||||
- [ ] associate_client_vpn_target_network
|
||||
- [X] associate_dhcp_options
|
||||
@ -1523,8 +1523,8 @@
|
||||
- [X] stop_instances
|
||||
- [ ] terminate_client_vpn_connections
|
||||
- [X] terminate_instances
|
||||
- [ ] unassign_ipv6_addresses
|
||||
- [ ] unassign_private_ip_addresses
|
||||
- [X] unassign_ipv6_addresses
|
||||
- [X] unassign_private_ip_addresses
|
||||
- [ ] unmonitor_instances
|
||||
- [X] update_security_group_rule_descriptions_egress
|
||||
- [X] update_security_group_rule_descriptions_ingress
|
||||
|
@ -44,7 +44,7 @@ apigateway
|
||||
- [ ] create_vpc_link
|
||||
- [X] delete_api_key
|
||||
- [X] delete_authorizer
|
||||
- [ ] delete_base_path_mapping
|
||||
- [X] delete_base_path_mapping
|
||||
- [ ] delete_client_certificate
|
||||
- [X] delete_deployment
|
||||
- [ ] delete_documentation_part
|
||||
|
@ -37,8 +37,8 @@ ec2
|
||||
- [X] allocate_address
|
||||
- [ ] allocate_hosts
|
||||
- [ ] apply_security_groups_to_client_vpn_target_network
|
||||
- [ ] assign_ipv6_addresses
|
||||
- [ ] assign_private_ip_addresses
|
||||
- [X] assign_ipv6_addresses
|
||||
- [X] assign_private_ip_addresses
|
||||
- [X] associate_address
|
||||
- [ ] associate_client_vpn_target_network
|
||||
- [X] associate_dhcp_options
|
||||
@ -505,8 +505,8 @@ ec2
|
||||
- [X] stop_instances
|
||||
- [ ] terminate_client_vpn_connections
|
||||
- [X] terminate_instances
|
||||
- [ ] unassign_ipv6_addresses
|
||||
- [ ] unassign_private_ip_addresses
|
||||
- [X] unassign_ipv6_addresses
|
||||
- [X] unassign_private_ip_addresses
|
||||
- [ ] unmonitor_instances
|
||||
- [X] update_security_group_rule_descriptions_egress
|
||||
- [X] update_security_group_rule_descriptions_ingress
|
||||
|
Loading…
Reference in New Issue
Block a user