commit
39390585b5
5 changed files with 13 additions and 8 deletions
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 1.3.2
|
||||
current_version = 1.3.3
|
||||
|
||||
[bumpversion:file:setup.py]
|
||||
|
||||
|
|
|
|||
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,7 +1,16 @@
|
|||
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.
|
||||
|
||||
|
|
|
|||
|
|
@ -434,7 +434,6 @@
|
|||
- [ ] get_applied_schema_version
|
||||
- [ ] get_directory
|
||||
- [ ] get_facet
|
||||
- [ ] get_object_attributes
|
||||
- [ ] get_object_information
|
||||
- [ ] get_schema_as_json
|
||||
- [ ] get_typed_link_facet_information
|
||||
|
|
@ -4379,7 +4378,6 @@
|
|||
- [ ] create_user
|
||||
- [ ] delete_alias
|
||||
- [ ] delete_group
|
||||
- [ ] delete_mailbox_permissions
|
||||
- [ ] delete_resource
|
||||
- [ ] delete_user
|
||||
- [ ] deregister_from_work_mail
|
||||
|
|
@ -4392,12 +4390,10 @@
|
|||
- [ ] list_aliases
|
||||
- [ ] list_group_members
|
||||
- [ ] list_groups
|
||||
- [ ] list_mailbox_permissions
|
||||
- [ ] list_organizations
|
||||
- [ ] list_resource_delegates
|
||||
- [ ] list_resources
|
||||
- [ ] list_users
|
||||
- [ ] put_mailbox_permissions
|
||||
- [ ] register_to_work_mail
|
||||
- [ ] reset_password
|
||||
- [ ] update_primary_email_address
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import logging
|
|||
# logging.getLogger('boto').setLevel(logging.CRITICAL)
|
||||
|
||||
__title__ = 'moto'
|
||||
__version__ = '1.3.2'
|
||||
__version__ = '1.3.3'
|
||||
|
||||
from .acm import mock_acm # flake8: noqa
|
||||
from .apigateway import mock_apigateway, mock_apigateway_deprecated # flake8: noqa
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -40,7 +40,7 @@ else:
|
|||
|
||||
setup(
|
||||
name='moto',
|
||||
version='1.3.2',
|
||||
version='1.3.3',
|
||||
description='A library that allows your python tests to easily'
|
||||
' mock out the boto library',
|
||||
author='Steve Pulec',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue