Skip to content

Commit

Permalink
Merge branch 'release-1.18.20'
Browse files Browse the repository at this point in the history
* release-1.18.20:
  Bumping version to 1.18.20
  Add changelog entries from botocore
  Change object name to use only filename (#2654)
  • Loading branch information
aws-sdk-python-automation committed Aug 12, 2021
2 parents 764161c + e10c742 commit ff19c50
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 4 deletions.
27 changes: 27 additions & 0 deletions .changes/1.18.20.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``sagemaker``",
"description": "[``botocore``] Amazon SageMaker Autopilot adds new metrics for all candidate models generated by Autopilot experiments.",
"type": "api-change"
},
{
"category": "``apigatewayv2``",
"description": "[``botocore``] Adding support for ACM imported or private CA certificates for mTLS enabled domain names",
"type": "api-change"
},
{
"category": "``apigateway``",
"description": "[``botocore``] Adding support for ACM imported or private CA certificates for mTLS enabled domain names",
"type": "api-change"
},
{
"category": "``databrew``",
"description": "[``botocore``] This SDK release adds support for the output of a recipe job results to Tableau Hyper format.",
"type": "api-change"
},
{
"category": "``lambda``",
"description": "[``botocore``] Lambda Python 3.9 runtime launch",
"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.18.20
=======

* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Autopilot adds new metrics for all candidate models generated by Autopilot experiments.
* api-change:``apigatewayv2``: [``botocore``] Adding support for ACM imported or private CA certificates for mTLS enabled domain names
* api-change:``apigateway``: [``botocore``] Adding support for ACM imported or private CA certificates for mTLS enabled domain names
* api-change:``databrew``: [``botocore``] This SDK release adds support for the output of a recipe job results to Tableau Hyper format.
* api-change:``lambda``: [``botocore``] Lambda Python 3.9 runtime launch


1.18.19
=======

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


__author__ = 'Amazon Web Services'
__version__ = '1.18.19'
__version__ = '1.18.20'


# The default Boto3 session; autoloaded when needed.
Expand Down
3 changes: 2 additions & 1 deletion docs/source/guide/s3-uploading-files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ and uploading each chunk in parallel.
import logging
import boto3
from botocore.exceptions import ClientError
import os
def upload_file(file_name, bucket, object_name=None):
Expand All @@ -38,7 +39,7 @@ and uploading each chunk in parallel.
# If S3 object_name was not specified, use file_name
if object_name is None:
object_name = file_name
object_name = os.path.basename(file_name)
# Upload the file
s3_client = boto3.client('s3')
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.21.19,<1.22.0
botocore>=1.21.20,<1.22.0
jmespath>=0.7.1,<1.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 @@ -14,7 +14,7 @@


requires = [
'botocore>=1.21.19,<1.22.0',
'botocore>=1.21.20,<1.22.0',
'jmespath>=0.7.1,<1.0.0',
's3transfer>=0.5.0,<0.6.0'
]
Expand Down

0 comments on commit ff19c50

Please sign in to comment.