diff --git a/.changes/1.17.87.json b/.changes/1.17.87.json new file mode 100644 index 0000000000..6520ba7c23 --- /dev/null +++ b/.changes/1.17.87.json @@ -0,0 +1,27 @@ +[ + { + "category": "``s3``", + "description": "[``botocore``] S3 Inventory now supports Bucket Key Status", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "[``botocore``] Amazon S3 Batch Operations now supports S3 Bucket Keys.", + "type": "api-change" + }, + { + "category": "``route53resolver``", + "description": "[``botocore``] Documentation updates for Route 53 Resolver", + "type": "api-change" + }, + { + "category": "``ssm``", + "description": "[``botocore``] Documentation updates for ssm to fix customer reported issue", + "type": "api-change" + }, + { + "category": "``forecast``", + "description": "[``botocore``] Added optional field AutoMLOverrideStrategy to CreatePredictor API that allows users to customize AutoML strategy. If provided in CreatePredictor request, this field is visible in DescribePredictor and GetAccuracyMetrics responses.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1118abbeeb..f3366f1f92 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.17.87 +======= + +* api-change:``s3``: [``botocore``] S3 Inventory now supports Bucket Key Status +* api-change:``s3control``: [``botocore``] Amazon S3 Batch Operations now supports S3 Bucket Keys. +* api-change:``route53resolver``: [``botocore``] Documentation updates for Route 53 Resolver +* api-change:``ssm``: [``botocore``] Documentation updates for ssm to fix customer reported issue +* api-change:``forecast``: [``botocore``] Added optional field AutoMLOverrideStrategy to CreatePredictor API that allows users to customize AutoML strategy. If provided in CreatePredictor request, this field is visible in DescribePredictor and GetAccuracyMetrics responses. + + 1.17.86 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index a69d1f0ef2..a1423757a0 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.86' +__version__ = '1.17.87' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 5b6fe352ca..397f910385 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.86,<1.21.0 + botocore>=1.20.87,<1.21.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.4.0,<0.5.0 diff --git a/setup.py b/setup.py index 4cf9ca2134..e1fb8bdd1b 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.86,<1.21.0', + 'botocore>=1.20.87,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]