Update upstream source from tag 'upstream/1.18.46+dfsg'

Update to upstream version '1.18.46+dfsg'
with Debian dir a6cd3bea81
This commit is contained in:
Noah Meyerhans 2021-09-22 13:08:19 -07:00
commit 8db494609d
9 changed files with 60 additions and 11 deletions

37
.changes/1.18.46.json Normal file
View file

@ -0,0 +1,37 @@
[
{
"category": "``imagebuilder``",
"description": "[``botocore``] This feature adds support for specifying GP3 volume throughput and configuring instance metadata options for instances launched by EC2 Image Builder.",
"type": "api-change"
},
{
"category": "``wafv2``",
"description": "[``botocore``] Added the regex match rule statement, for matching web requests against a single regular expression.",
"type": "api-change"
},
{
"category": "``mediatailor``",
"description": "[``botocore``] This release adds support to configure logs for playback configuration.",
"type": "api-change"
},
{
"category": "``lexv2-models``",
"description": "[``botocore``] Update lexv2-models client to latest version",
"type": "api-change"
},
{
"category": "``iam``",
"description": "[``botocore``] Added changes to OIDC API about not using port numbers in the URL.",
"type": "api-change"
},
{
"category": "``license-manager``",
"description": "[``botocore``] AWS License Manager now allows customers to change their Windows Server or SQL license types from Bring-Your-Own-License (BYOL) to License Included or vice-versa (using the customer's media).",
"type": "api-change"
},
{
"category": "``mediapackage-vod``",
"description": "[``botocore``] MediaPackage VOD will now return the current processing statuses of an asset's endpoints. The status can be QUEUED, PROCESSING, PLAYABLE, or FAILED.",
"type": "api-change"
}
]

View file

@ -2,6 +2,18 @@
CHANGELOG
=========
1.18.46
=======
* api-change:``imagebuilder``: [``botocore``] This feature adds support for specifying GP3 volume throughput and configuring instance metadata options for instances launched by EC2 Image Builder.
* api-change:``wafv2``: [``botocore``] Added the regex match rule statement, for matching web requests against a single regular expression.
* api-change:``mediatailor``: [``botocore``] This release adds support to configure logs for playback configuration.
* api-change:``lexv2-models``: [``botocore``] Update lexv2-models client to latest version
* api-change:``iam``: [``botocore``] Added changes to OIDC API about not using port numbers in the URL.
* api-change:``license-manager``: [``botocore``] AWS License Manager now allows customers to change their Windows Server or SQL license types from Bring-Your-Own-License (BYOL) to License Included or vice-versa (using the customer's media).
* api-change:``mediapackage-vod``: [``botocore``] MediaPackage VOD will now return the current processing statuses of an asset's endpoints. The status can be QUEUED, PROCESSING, PLAYABLE, or FAILED.
1.18.45
=======

View file

@ -18,7 +18,7 @@ from boto3.compat import _warn_deprecated_python
__author__ = 'Amazon Web Services'
__version__ = '1.18.45'
__version__ = '1.18.46'
# The default Boto3 session; autoloaded when needed.

View file

@ -549,7 +549,7 @@ class ResourceModel(object):
:type subresources: bool
:param subresources: ``True`` to get sub-resources, ``False`` to
get references.
:rtype: list(:py:class:`ResponseResource`)
:rtype: list(:py:class:`Action`)
"""
resources = []
@ -578,7 +578,7 @@ class ResourceModel(object):
"""
Get a list of sub-resources.
:type: list(:py:class:`ResponseResource`)
:type: list(:py:class:`Action`)
"""
return self._get_related_resources(True)
@ -587,7 +587,7 @@ class ResourceModel(object):
"""
Get a list of reference resources.
:type: list(:py:class:`ResponseResource`)
:type: list(:py:class:`Action`)
"""
return self._get_related_resources(False)

File diff suppressed because one or more lines are too long

View file

@ -82,8 +82,10 @@ iniconfig==1.1.1 \
--hash=sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3 \
--hash=sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32
# via pytest
nose==1.3.3 \
--hash=sha256:b40c2ff268beb85356ada25f626ca0dabc89705f31051649772cf00fc9510326
nose==1.3.7 \
--hash=sha256:9ff7c6cc443f8c51994b34a667bbcf45afd6d945be7477b52e97516fd17c53ac \
--hash=sha256:dadcddc0aefbf99eea214e0f1232b94f2fa9bd98fa8353711dacb112bfcbbb2a \
--hash=sha256:f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98
# via -r requirements-dev.txt
packaging==21.0 \
--hash=sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7 \

View file

@ -1,4 +1,4 @@
nose==1.3.3
nose==1.3.7
wheel==0.37.0
coverage==5.5

View file

@ -3,7 +3,7 @@ universal = 0
[metadata]
requires_dist =
botocore>=1.21.45,<1.22.0
botocore>=1.21.46,<1.22.0
jmespath>=0.7.1,<1.0.0
s3transfer>=0.5.0,<0.6.0

View file

@ -14,7 +14,7 @@ VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
requires = [
'botocore>=1.21.45,<1.22.0',
'botocore>=1.21.46,<1.22.0',
'jmespath>=0.7.1,<1.0.0',
's3transfer>=0.5.0,<0.6.0'
]