Prep release 2.0.7 (#3920)
* Temporarily downgrade werkzeug until we fix the tests * ChangeLog for release 2.0.7
This commit is contained in:
parent
b4d02c922c
commit
1fc09b5863
29
CHANGELOG.md
29
CHANGELOG.md
@ -4,6 +4,35 @@ Moto Changelog
|
|||||||
Unreleased
|
Unreleased
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
2.0.7
|
||||||
|
-----
|
||||||
|
General Changes:
|
||||||
|
* When running Moto Server inside Docker, it is now possible to specify the service you want to run, using an environment variable (MOTO_SERVICE)
|
||||||
|
* CloudWatchLogs models now appear in the Moto API dashboard
|
||||||
|
|
||||||
|
New Services:
|
||||||
|
* DMS
|
||||||
|
* create_replication_task()
|
||||||
|
* delete_replication_task()
|
||||||
|
* describe_replication_tasks()
|
||||||
|
* start_replication_task()
|
||||||
|
* stop_replication_task()
|
||||||
|
|
||||||
|
New Methods:
|
||||||
|
* AWSLambda:
|
||||||
|
* update_secret_version_stage()
|
||||||
|
* CognitoIDP:
|
||||||
|
* get_user_pool_mfa_config()
|
||||||
|
* set_user_pool_mfa_config()
|
||||||
|
|
||||||
|
Miscellaneous:
|
||||||
|
* CloudWatchLogs:filter_log_events() now supports pagination
|
||||||
|
* CloudWatchLogs:describe_log_streams() now supports pagination
|
||||||
|
* EC2:describe_network_acls() now supports the filter 'owner-id'
|
||||||
|
* EC2:modify_network_interface_attribute() now allows multiple security groups to be specified
|
||||||
|
* SecretsManager:rotate_secret() now triggers the Lambda that is specified
|
||||||
|
|
||||||
|
|
||||||
2.0.6
|
2.0.6
|
||||||
-----
|
-----
|
||||||
New Methods:
|
New Methods:
|
||||||
|
@ -2053,7 +2053,7 @@
|
|||||||
|
|
||||||
## cognito-idp
|
## cognito-idp
|
||||||
<details>
|
<details>
|
||||||
<summary>45% implemented</summary>
|
<summary>47% implemented</summary>
|
||||||
|
|
||||||
- [ ] add_custom_attributes
|
- [ ] add_custom_attributes
|
||||||
- [X] admin_add_user_to_group
|
- [X] admin_add_user_to_group
|
||||||
@ -2951,7 +2951,7 @@
|
|||||||
|
|
||||||
## dms
|
## dms
|
||||||
<details>
|
<details>
|
||||||
<summary>0% implemented</summary>
|
<summary>9% implemented</summary>
|
||||||
|
|
||||||
- [ ] add_tags_to_resource
|
- [ ] add_tags_to_resource
|
||||||
- [ ] apply_pending_maintenance_action
|
- [ ] apply_pending_maintenance_action
|
||||||
@ -9080,7 +9080,7 @@
|
|||||||
|
|
||||||
## secretsmanager
|
## secretsmanager
|
||||||
<details>
|
<details>
|
||||||
<summary>63% implemented</summary>
|
<summary>68% implemented</summary>
|
||||||
|
|
||||||
- [ ] cancel_rotate_secret
|
- [ ] cancel_rotate_secret
|
||||||
- [X] create_secret
|
- [X] create_secret
|
||||||
@ -9102,7 +9102,7 @@
|
|||||||
- [X] tag_resource
|
- [X] tag_resource
|
||||||
- [X] untag_resource
|
- [X] untag_resource
|
||||||
- [X] update_secret
|
- [X] update_secret
|
||||||
- [ ] update_secret_version_stage
|
- [X] update_secret_version_stage
|
||||||
- [ ] validate_resource_policy
|
- [ ] validate_resource_policy
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
3
setup.py
3
setup.py
@ -36,7 +36,8 @@ install_requires = [
|
|||||||
"requests>=2.5",
|
"requests>=2.5",
|
||||||
"xmltodict",
|
"xmltodict",
|
||||||
"six>1.9",
|
"six>1.9",
|
||||||
"werkzeug",
|
# TODO: werkzeug 2.x currently breaks test_s3_server_post_without_content_length
|
||||||
|
"werkzeug<2.0.0",
|
||||||
"pytz",
|
"pytz",
|
||||||
"python-dateutil<3.0.0,>=2.1",
|
"python-dateutil<3.0.0,>=2.1",
|
||||||
"responses>=0.9.0",
|
"responses>=0.9.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user