diff --git a/.changes/1.34.11.json b/.changes/1.34.11.json new file mode 100644 index 0000000000..285a9a8b03 --- /dev/null +++ b/.changes/1.34.11.json @@ -0,0 +1,17 @@ +[ + { + "category": "``apprunner``", + "description": "[``botocore``] AWS App Runner adds Python 3.11 and Node.js 18 runtimes.", + "type": "api-change" + }, + { + "category": "``location``", + "description": "[``botocore``] This release introduces a new parameter to bypasses an API key's expiry conditions and delete the key.", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "[``botocore``] Add LinkEntityArn support for different partitions; Add UnsupportedUserEditionException in UpdateDashboardLinks API; Add support for New Reader Experience Topics", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-apprunner-43616.json b/.changes/next-release/api-change-apprunner-43616.json deleted file mode 100644 index 54ce5411f6..0000000000 --- a/.changes/next-release/api-change-apprunner-43616.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``apprunner``", - "description": "[``botocore``] AWS App Runner adds Python 3.11 and Node.js 18 runtimes." -} diff --git a/.changes/next-release/api-change-location-99591.json b/.changes/next-release/api-change-location-99591.json deleted file mode 100644 index 3591723120..0000000000 --- a/.changes/next-release/api-change-location-99591.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``location``", - "description": "[``botocore``] This release introduces a new parameter to bypasses an API key's expiry conditions and delete the key." -} diff --git a/.changes/next-release/api-change-quicksight-5897.json b/.changes/next-release/api-change-quicksight-5897.json deleted file mode 100644 index 609c96e60b..0000000000 --- a/.changes/next-release/api-change-quicksight-5897.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``quicksight``", - "description": "[``botocore``] Add LinkEntityArn support for different partitions; Add UnsupportedUserEditionException in UpdateDashboardLinks API; Add support for New Reader Experience Topics" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3064037727..cc995f1c16 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.11 +======= + +* api-change:``apprunner``: [``botocore``] AWS App Runner adds Python 3.11 and Node.js 18 runtimes. +* api-change:``location``: [``botocore``] This release introduces a new parameter to bypasses an API key's expiry conditions and delete the key. +* api-change:``quicksight``: [``botocore``] Add LinkEntityArn support for different partitions; Add UnsupportedUserEditionException in UpdateDashboardLinks API; Add support for New Reader Experience Topics + + 1.34.10 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index e602437fce..b110905508 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.10' +__version__ = '1.34.11' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index f1f98b175a..909b91598d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.10,<1.35.0 + botocore>=1.34.11,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index db15278721..b92d2521fb 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.10,<1.35.0', + 'botocore>=1.34.11,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]