diff --git a/.changes/1.34.63.json b/.changes/1.34.63.json new file mode 100644 index 0000000000..36c400983a --- /dev/null +++ b/.changes/1.34.63.json @@ -0,0 +1,47 @@ +[ + { + "category": "``amplify``", + "description": "[``botocore``] Documentation updates for Amplify. Identifies the APIs available only to apps created using Amplify Gen 1.", + "type": "api-change" + }, + { + "category": "``ec2-instance-connect``", + "description": "[``botocore``] This release includes a new exception type \"SerialConsoleSessionUnsupportedException\" for SendSerialConsoleSSHPublicKey API.", + "type": "api-change" + }, + { + "category": "``elbv2``", + "description": "[``botocore``] This release allows you to configure HTTP client keep-alive duration for communication between clients and Application Load Balancers.", + "type": "api-change" + }, + { + "category": "``fis``", + "description": "[``botocore``] This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses.", + "type": "api-change" + }, + { + "category": "``iot-roborunner``", + "description": "[``botocore``] The iot-roborunner client has been removed following the deprecation of the service.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2.", + "type": "api-change" + }, + { + "category": "``secretsmanager``", + "description": "[``botocore``] Doc only update for Secrets Manager", + "type": "api-change" + }, + { + "category": "``timestream-influxdb``", + "description": "[``botocore``] This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs.", + "type": "api-change" + }, + { + "category": "``urllib3``", + "description": "[``botocore``] Added support for urllib3 2.2.1+ in Python 3.10+", + "type": "enhancement" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ce07393d2e..11ff8ff5e8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ CHANGELOG ========= +1.34.63 +======= + +* api-change:``amplify``: [``botocore``] Documentation updates for Amplify. Identifies the APIs available only to apps created using Amplify Gen 1. +* api-change:``ec2-instance-connect``: [``botocore``] This release includes a new exception type "SerialConsoleSessionUnsupportedException" for SendSerialConsoleSSHPublicKey API. +* api-change:``elbv2``: [``botocore``] This release allows you to configure HTTP client keep-alive duration for communication between clients and Application Load Balancers. +* api-change:``fis``: [``botocore``] This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses. +* api-change:``iot-roborunner``: [``botocore``] The iot-roborunner client has been removed following the deprecation of the service. +* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2. +* api-change:``secretsmanager``: [``botocore``] Doc only update for Secrets Manager +* api-change:``timestream-influxdb``: [``botocore``] This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs. +* enhancement:``urllib3``: [``botocore``] Added support for urllib3 2.2.1+ in Python 3.10+ + + 1.34.62 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 1b3f3364df..3e52c6dbfe 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.62' +__version__ = '1.34.63' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 395fded369..99a3f973d0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.62,<1.35.0 + botocore>=1.34.63,<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 c0cf21c8c3..170995edaa 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.62,<1.35.0', + 'botocore>=1.34.63,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]