From 2ea886f7cc0eb799edec3f740483c00d8b9d4be3 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 16 Nov 2021 19:15:08 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-cloudtrail-87314.json | 5 +++++ .changes/next-release/api-change-location-13980.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-cloudtrail-87314.json create mode 100644 .changes/next-release/api-change-location-13980.json diff --git a/.changes/next-release/api-change-cloudtrail-87314.json b/.changes/next-release/api-change-cloudtrail-87314.json new file mode 100644 index 0000000000..2dead19024 --- /dev/null +++ b/.changes/next-release/api-change-cloudtrail-87314.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``cloudtrail``", + "description": "[``botocore``] CloudTrail Insights now supports ApiErrorRateInsight, which enables customers to identify unusual activity in their AWS account based on API error codes and their rate." +} diff --git a/.changes/next-release/api-change-location-13980.json b/.changes/next-release/api-change-location-13980.json new file mode 100644 index 0000000000..c4ee166ad4 --- /dev/null +++ b/.changes/next-release/api-change-location-13980.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``location``", + "description": "[``botocore``] This release adds the support for Relevance, Distance, Time Zone, Language and Interpolated Address for Geocoding and Reverse Geocoding." +} From 6485bfc6837cf01f2b749189742135dbd8f43108 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 16 Nov 2021 19:15:25 +0000 Subject: [PATCH 2/2] Bumping version to 1.20.7 --- .changes/1.20.7.json | 12 ++++++++++++ .../next-release/api-change-cloudtrail-87314.json | 5 ----- .changes/next-release/api-change-location-13980.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.20.7.json delete mode 100644 .changes/next-release/api-change-cloudtrail-87314.json delete mode 100644 .changes/next-release/api-change-location-13980.json diff --git a/.changes/1.20.7.json b/.changes/1.20.7.json new file mode 100644 index 0000000000..ffe30e9eb4 --- /dev/null +++ b/.changes/1.20.7.json @@ -0,0 +1,12 @@ +[ + { + "category": "``location``", + "description": "[``botocore``] This release adds the support for Relevance, Distance, Time Zone, Language and Interpolated Address for Geocoding and Reverse Geocoding.", + "type": "api-change" + }, + { + "category": "``cloudtrail``", + "description": "[``botocore``] CloudTrail Insights now supports ApiErrorRateInsight, which enables customers to identify unusual activity in their AWS account based on API error codes and their rate.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cloudtrail-87314.json b/.changes/next-release/api-change-cloudtrail-87314.json deleted file mode 100644 index 2dead19024..0000000000 --- a/.changes/next-release/api-change-cloudtrail-87314.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cloudtrail``", - "description": "[``botocore``] CloudTrail Insights now supports ApiErrorRateInsight, which enables customers to identify unusual activity in their AWS account based on API error codes and their rate." -} diff --git a/.changes/next-release/api-change-location-13980.json b/.changes/next-release/api-change-location-13980.json deleted file mode 100644 index c4ee166ad4..0000000000 --- a/.changes/next-release/api-change-location-13980.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``location``", - "description": "[``botocore``] This release adds the support for Relevance, Distance, Time Zone, Language and Interpolated Address for Geocoding and Reverse Geocoding." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 48cf733b67..32d45119a1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.20.7 +====== + +* api-change:``location``: [``botocore``] This release adds the support for Relevance, Distance, Time Zone, Language and Interpolated Address for Geocoding and Reverse Geocoding. +* api-change:``cloudtrail``: [``botocore``] CloudTrail Insights now supports ApiErrorRateInsight, which enables customers to identify unusual activity in their AWS account based on API error codes and their rate. + + 1.20.6 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 1d51e875de..bda5e1eb2b 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.20.6' +__version__ = '1.20.7' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 6ec1d9cea5..18aa4c4347 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.23.6,<1.24.0 + botocore>=1.23.7,<1.24.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index 2eb7fa5079..621d14ef68 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.23.6,<1.24.0', + 'botocore>=1.23.7,<1.24.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]