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:
Bert Blommers 2021-05-12 08:55:50 +01:00 committed by GitHub
parent b4d02c922c
commit 1fc09b5863
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 5 deletions

View File

@ -4,6 +4,35 @@ Moto Changelog
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
-----
New Methods:

View File

@ -2053,7 +2053,7 @@
## cognito-idp
<details>
<summary>45% implemented</summary>
<summary>47% implemented</summary>
- [ ] add_custom_attributes
- [X] admin_add_user_to_group
@ -2951,7 +2951,7 @@
## dms
<details>
<summary>0% implemented</summary>
<summary>9% implemented</summary>
- [ ] add_tags_to_resource
- [ ] apply_pending_maintenance_action
@ -9080,7 +9080,7 @@
## secretsmanager
<details>
<summary>63% implemented</summary>
<summary>68% implemented</summary>
- [ ] cancel_rotate_secret
- [X] create_secret
@ -9102,7 +9102,7 @@
- [X] tag_resource
- [X] untag_resource
- [X] update_secret
- [ ] update_secret_version_stage
- [X] update_secret_version_stage
- [ ] validate_resource_policy
</details>

View File

@ -36,7 +36,8 @@ install_requires = [
"requests>=2.5",
"xmltodict",
"six>1.9",
"werkzeug",
# TODO: werkzeug 2.x currently breaks test_s3_server_post_without_content_length
"werkzeug<2.0.0",
"pytz",
"python-dateutil<3.0.0,>=2.1",
"responses>=0.9.0",