Skip to content

Commit

Permalink
Merge branch 'release-1.22.6'
Browse files Browse the repository at this point in the history
* release-1.22.6:
  Bumping version to 1.22.6
  Add changelog entries from botocore
  Fix example for ExposeHeaders (#3251)
  • Loading branch information
aws-sdk-python-automation committed May 3, 2022
2 parents e16cd72 + 2e9d154 commit 84c27af
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 4 deletions.
27 changes: 27 additions & 0 deletions .changes/1.22.6.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``ec2``",
"description": "[``botocore``] Adds support for allocating Dedicated Hosts on AWS Outposts. The AllocateHosts API now accepts an OutpostArn request parameter, and the DescribeHosts API now includes an OutpostArn response parameter.",
"type": "api-change"
},
{
"category": "``s3``",
"description": "[``botocore``] Documentation only update for doc bug fixes for the S3 API docs.",
"type": "api-change"
},
{
"category": "``kinesisvideo``",
"description": "[``botocore``] Add support for multiple image feature related APIs for configuring image generation and notification of a video stream. Add \"GET_IMAGES\" to the list of supported API names for the GetDataEndpoint API.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "[``botocore``] SageMaker Autopilot adds new metrics for all candidate models generated by Autopilot experiments; RStudio on SageMaker now allows users to bring your own development environment in a custom image.",
"type": "api-change"
},
{
"category": "``kinesis-video-archived-media``",
"description": "[``botocore``] Add support for GetImages API for retrieving images from a video stream",
"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.22.6
======

* api-change:``ec2``: [``botocore``] Adds support for allocating Dedicated Hosts on AWS Outposts. The AllocateHosts API now accepts an OutpostArn request parameter, and the DescribeHosts API now includes an OutpostArn response parameter.
* api-change:``s3``: [``botocore``] Documentation only update for doc bug fixes for the S3 API docs.
* api-change:``kinesisvideo``: [``botocore``] Add support for multiple image feature related APIs for configuring image generation and notification of a video stream. Add "GET_IMAGES" to the list of supported API names for the GetDataEndpoint API.
* api-change:``sagemaker``: [``botocore``] SageMaker Autopilot adds new metrics for all candidate models generated by Autopilot experiments; RStudio on SageMaker now allows users to bring your own development environment in a custom image.
* api-change:``kinesis-video-archived-media``: [``botocore``] Add support for GetImages API for retrieving images from a video stream


1.22.5
======

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.22.5'
__version__ = '1.22.6'


# The default Boto3 session; autoloaded when needed.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/s3-example-configuring-buckets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ method.
'AllowedHeaders': ['Authorization'],
'AllowedMethods': ['GET', 'PUT'],
'AllowedOrigins': ['*'],
'ExposeHeaders': ['GET', 'PUT'],
'ExposeHeaders': ['ETag', 'x-amz-request-id'],
'MaxAgeSeconds': 3000
}]
}
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.25.5,<1.26.0
botocore>=1.25.6,<1.26.0
jmespath>=0.7.1,<2.0.0
s3transfer>=0.5.0,<0.6.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.25.5,<1.26.0',
'botocore>=1.25.6,<1.26.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.5.0,<0.6.0',
]
Expand Down

0 comments on commit 84c27af

Please sign in to comment.