Skip to content

Commit

Permalink
Merge branch 'release-1.27.1'
Browse files Browse the repository at this point in the history
* release-1.27.1:
  Bumping version to 1.27.1
  Add changelog entries from botocore
  docs: Fix broken Django Project hyperlink (#3767)
  docs: fix broken hyperlink to examples (#3730)
  • Loading branch information
aws-sdk-python-automation committed Jul 5, 2023
2 parents 4498148 + b5c3db8 commit a2180b5
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 6 deletions.
27 changes: 27 additions & 0 deletions .changes/1.27.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``comprehendmedical``",
"description": "[``botocore``] Update to Amazon Comprehend Medical documentation.",
"type": "api-change"
},
{
"category": "``connect``",
"description": "[``botocore``] GetMetricDataV2 API: Channels filters do not count towards overall limitation of 100 filter values.",
"type": "api-change"
},
{
"category": "``kms``",
"description": "[``botocore``] Added Dry Run Feature to cryptographic and cross-account mutating KMS APIs (14 in all). This feature allows users to test their permissions and parameters before making the actual API call.",
"type": "api-change"
},
{
"category": "``mgn``",
"description": "[``botocore``] This release introduces the Global view feature and new Replication state APIs.",
"type": "api-change"
},
{
"category": "``securityhub``",
"description": "[``botocore``] Documentation updates for AWS Security Hub",
"type": "api-change"
}
]
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CHANGELOG
=========

1.27.1
======

* api-change:``comprehendmedical``: [``botocore``] Update to Amazon Comprehend Medical documentation.
* api-change:``connect``: [``botocore``] GetMetricDataV2 API: Channels filters do not count towards overall limitation of 100 filter values.
* api-change:``kms``: [``botocore``] Added Dry Run Feature to cryptographic and cross-account mutating KMS APIs (14 in all). This feature allows users to test their permissions and parameters before making the actual API call.
* api-change:``mgn``: [``botocore``] This release introduces the Global view feature and new Replication state APIs.
* api-change:``securityhub``: [``botocore``] Documentation updates for AWS Security Hub


1.27.0
======

Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from boto3.session import Session

__author__ = 'Amazon Web Services'
__version__ = '1.27.0'
__version__ = '1.27.1'


# The default Boto3 session; autoloaded when needed.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/collections.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Overview
--------
A collection provides an iterable interface to a group of resources.
Collections behave similarly to
`Django QuerySets <https://docs.djangoproject.com/en/1.7/ref/models/querysets/>`_
`Django QuerySets <https://docs.djangoproject.com/en/4.2/ref/models/querysets/>`_
and expose a similar API. A collection seamlessly handles pagination for
you, making it possible to easily iterate over all items from all pages of
data. Example of a collection::
Expand Down
4 changes: 2 additions & 2 deletions docs/source/guide/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ Code Examples
This section describes code examples that demonstrate how to use the AWS SDK
for Python to call various AWS services. The source files for the examples,
plus additional example programs, are available in the `AWS Code
Catalog <https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/python/example_code>`_.
Catalog <https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/python/example_code>`_.

To propose a new code example for the AWS documentation team to consider producing, create a new request.
The team is looking to produce code examples that cover broader scenarios and use cases,
versus simple code snippets that cover only individual API calls. For instructions, see
the "Proposing new code examples" section in the
`Readme on GitHub <https://github.com/awsdocs/aws-doc-sdk-examples/blob/master/README.rst>`_.
`Readme on GitHub <https://github.com/awsdocs/aws-doc-sdk-examples/blob/main/README.md>`_.

Before running an example, your AWS credentials must be configured as
described in :doc:`quickstart`.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.30.0,<1.31.0
botocore>=1.30.1,<1.31.0
jmespath>=0.7.1,<2.0.0
s3transfer>=0.6.0,<0.7.0

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


requires = [
'botocore>=1.30.0,<1.31.0',
'botocore>=1.30.1,<1.31.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.6.0,<0.7.0',
]
Expand Down

0 comments on commit a2180b5

Please sign in to comment.