diff --git a/.changes/1.26.162.json b/.changes/1.26.162.json new file mode 100644 index 0000000000..cd071e9292 --- /dev/null +++ b/.changes/1.26.162.json @@ -0,0 +1,62 @@ +[ + { + "category": "Parsers", + "description": "[``botocore``] Fixes datetime parse error handling for out-of-range and negative timestamps (`#2564 `__).", + "type": "bugfix" + }, + { + "category": "``appfabric``", + "description": "[``botocore``] Initial release of AWS AppFabric for connecting SaaS applications for better productivity and security.", + "type": "api-change" + }, + { + "category": "``appflow``", + "description": "[``botocore``] This release adds support to bypass SSO with the SAPOData connector when connecting to an SAP instance.", + "type": "api-change" + }, + { + "category": "``emr-serverless``", + "description": "[``botocore``] This release adds support to update the release label of an EMR Serverless application to upgrade it to a different version of Amazon EMR via UpdateApplication API.", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "[``botocore``] IVS customers can now revoke the viewer session associated with an auth token, to prevent and stop playback using that token.", + "type": "api-change" + }, + { + "category": "``kinesisvideo``", + "description": "[``botocore``] General Availability (GA) release of Kinesis Video Streams at Edge, enabling customers to provide a configuration for the Kinesis Video Streams EdgeAgent running on an on-premise IoT device. Customers can now locally record from cameras and stream videos to the cloud on a configured schedule.", + "type": "api-change" + }, + { + "category": "``macie2``", + "description": "[``botocore``] This release adds support for configuring new classification jobs to use the set of managed data identifiers that we recommend for jobs. For the managed data identifier selection type (managedDataIdentifierSelector), specify RECOMMENDED.", + "type": "api-change" + }, + { + "category": "``privatenetworks``", + "description": "[``botocore``] This release allows Private5G customers to choose different commitment plans (60-days, 1-year, 3-years) when placing new orders, enables automatic renewal option for 1-year and 3-years commitments. It also allows customers to update the commitment plan of an existing radio unit.", + "type": "api-change" + }, + { + "category": "``sagemaker-featurestore-runtime``", + "description": "[``botocore``] Introducing TTL for online store records for feature groups.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Introducing TTL for online store records in feature groups.", + "type": "api-change" + }, + { + "category": "``ssm``", + "description": "[``botocore``] Systems Manager doc-only update for June 2023.", + "type": "api-change" + }, + { + "category": "``verifiedpermissions``", + "description": "[``botocore``] This update fixes several broken links to the Cedar documentation.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3e833ccff4..b267d002b1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,23 @@ CHANGELOG ========= +1.26.162 +======== + +* bugfix:Parsers: [``botocore``] Fixes datetime parse error handling for out-of-range and negative timestamps (`#2564 `__). +* api-change:``appfabric``: [``botocore``] Initial release of AWS AppFabric for connecting SaaS applications for better productivity and security. +* api-change:``appflow``: [``botocore``] This release adds support to bypass SSO with the SAPOData connector when connecting to an SAP instance. +* api-change:``emr-serverless``: [``botocore``] This release adds support to update the release label of an EMR Serverless application to upgrade it to a different version of Amazon EMR via UpdateApplication API. +* api-change:``ivs``: [``botocore``] IVS customers can now revoke the viewer session associated with an auth token, to prevent and stop playback using that token. +* api-change:``kinesisvideo``: [``botocore``] General Availability (GA) release of Kinesis Video Streams at Edge, enabling customers to provide a configuration for the Kinesis Video Streams EdgeAgent running on an on-premise IoT device. Customers can now locally record from cameras and stream videos to the cloud on a configured schedule. +* api-change:``macie2``: [``botocore``] This release adds support for configuring new classification jobs to use the set of managed data identifiers that we recommend for jobs. For the managed data identifier selection type (managedDataIdentifierSelector), specify RECOMMENDED. +* api-change:``privatenetworks``: [``botocore``] This release allows Private5G customers to choose different commitment plans (60-days, 1-year, 3-years) when placing new orders, enables automatic renewal option for 1-year and 3-years commitments. It also allows customers to update the commitment plan of an existing radio unit. +* api-change:``sagemaker-featurestore-runtime``: [``botocore``] Introducing TTL for online store records for feature groups. +* api-change:``sagemaker``: [``botocore``] Introducing TTL for online store records in feature groups. +* api-change:``ssm``: [``botocore``] Systems Manager doc-only update for June 2023. +* api-change:``verifiedpermissions``: [``botocore``] This update fixes several broken links to the Cedar documentation. + + 1.26.161 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index d58a5a8704..98e175a4dd 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.161' +__version__ = '1.26.162' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 39a17ed27f..7200c82c2c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.161,<1.30.0 + botocore>=1.29.162,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index e3cc5ab796..2cf9efc9b6 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.161,<1.30.0', + 'botocore>=1.29.162,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]