commit
39390585b5
@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 1.3.2
|
current_version = 1.3.3
|
||||||
|
|
||||||
[bumpversion:file:setup.py]
|
[bumpversion:file:setup.py]
|
||||||
|
|
||||||
|
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,7 +1,16 @@
|
|||||||
Moto Changelog
|
Moto Changelog
|
||||||
===================
|
===================
|
||||||
|
|
||||||
1.3.1
|
1.3.3
|
||||||
|
------
|
||||||
|
|
||||||
|
* Fix a regression in S3 url regexes
|
||||||
|
* APIGateway region fixes
|
||||||
|
* ECS improvements
|
||||||
|
* Add @mock_cognitoidentity, thanks to @brcoding
|
||||||
|
|
||||||
|
|
||||||
|
1.3.2
|
||||||
------
|
------
|
||||||
The huge change in this version is that the responses library is no longer vendored. Many developers are now unblocked. Kudos to @spulec for the fix.
|
The huge change in this version is that the responses library is no longer vendored. Many developers are now unblocked. Kudos to @spulec for the fix.
|
||||||
|
|
||||||
|
@ -434,7 +434,6 @@
|
|||||||
- [ ] get_applied_schema_version
|
- [ ] get_applied_schema_version
|
||||||
- [ ] get_directory
|
- [ ] get_directory
|
||||||
- [ ] get_facet
|
- [ ] get_facet
|
||||||
- [ ] get_object_attributes
|
|
||||||
- [ ] get_object_information
|
- [ ] get_object_information
|
||||||
- [ ] get_schema_as_json
|
- [ ] get_schema_as_json
|
||||||
- [ ] get_typed_link_facet_information
|
- [ ] get_typed_link_facet_information
|
||||||
@ -4379,7 +4378,6 @@
|
|||||||
- [ ] create_user
|
- [ ] create_user
|
||||||
- [ ] delete_alias
|
- [ ] delete_alias
|
||||||
- [ ] delete_group
|
- [ ] delete_group
|
||||||
- [ ] delete_mailbox_permissions
|
|
||||||
- [ ] delete_resource
|
- [ ] delete_resource
|
||||||
- [ ] delete_user
|
- [ ] delete_user
|
||||||
- [ ] deregister_from_work_mail
|
- [ ] deregister_from_work_mail
|
||||||
@ -4392,12 +4390,10 @@
|
|||||||
- [ ] list_aliases
|
- [ ] list_aliases
|
||||||
- [ ] list_group_members
|
- [ ] list_group_members
|
||||||
- [ ] list_groups
|
- [ ] list_groups
|
||||||
- [ ] list_mailbox_permissions
|
|
||||||
- [ ] list_organizations
|
- [ ] list_organizations
|
||||||
- [ ] list_resource_delegates
|
- [ ] list_resource_delegates
|
||||||
- [ ] list_resources
|
- [ ] list_resources
|
||||||
- [ ] list_users
|
- [ ] list_users
|
||||||
- [ ] put_mailbox_permissions
|
|
||||||
- [ ] register_to_work_mail
|
- [ ] register_to_work_mail
|
||||||
- [ ] reset_password
|
- [ ] reset_password
|
||||||
- [ ] update_primary_email_address
|
- [ ] update_primary_email_address
|
||||||
|
@ -3,7 +3,7 @@ import logging
|
|||||||
# logging.getLogger('boto').setLevel(logging.CRITICAL)
|
# logging.getLogger('boto').setLevel(logging.CRITICAL)
|
||||||
|
|
||||||
__title__ = 'moto'
|
__title__ = 'moto'
|
||||||
__version__ = '1.3.2'
|
__version__ = '1.3.3'
|
||||||
|
|
||||||
from .acm import mock_acm # flake8: noqa
|
from .acm import mock_acm # flake8: noqa
|
||||||
from .apigateway import mock_apigateway, mock_apigateway_deprecated # flake8: noqa
|
from .apigateway import mock_apigateway, mock_apigateway_deprecated # flake8: noqa
|
||||||
|
2
setup.py
2
setup.py
@ -40,7 +40,7 @@ else:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='moto',
|
name='moto',
|
||||||
version='1.3.2',
|
version='1.3.3',
|
||||||
description='A library that allows your python tests to easily'
|
description='A library that allows your python tests to easily'
|
||||||
' mock out the boto library',
|
' mock out the boto library',
|
||||||
author='Steve Pulec',
|
author='Steve Pulec',
|
||||||
|
Loading…
Reference in New Issue
Block a user