diff --git a/.changes/1.23.10.json b/.changes/1.23.10.json new file mode 100644 index 0000000000..207d030e41 --- /dev/null +++ b/.changes/1.23.10.json @@ -0,0 +1,22 @@ +[ + { + "category": "``sagemaker``", + "description": "[``botocore``] Amazon SageMaker Notebook Instances now allows configuration of Instance Metadata Service version and Amazon SageMaker Studio now supports G5 instance types.", + "type": "api-change" + }, + { + "category": "``appflow``", + "description": "[``botocore``] Adding the following features/changes: Parquet output that preserves typing from the source connector, Failed executions threshold before deactivation for scheduled flows, increasing max size of access and refresh token from 2048 to 4096", + "type": "api-change" + }, + { + "category": "``datasync``", + "description": "[``botocore``] AWS DataSync now supports TLS encryption in transit, file system policies and access points for EFS locations.", + "type": "api-change" + }, + { + "category": "``emr-serverless``", + "description": "[``botocore``] This release adds support for Amazon EMR Serverless, a serverless runtime environment that simplifies running analytics applications using the latest open source frameworks such as Apache Spark and Apache Hive.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-appflow-83943.json b/.changes/next-release/api-change-appflow-83943.json deleted file mode 100644 index 05e4f9c05c..0000000000 --- a/.changes/next-release/api-change-appflow-83943.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``appflow``", - "description": "[``botocore``] Adding the following features/changes: Parquet output that preserves typing from the source connector, Failed executions threshold before deactivation for scheduled flows, increasing max size of access and refresh token from 2048 to 4096" -} diff --git a/.changes/next-release/api-change-datasync-80289.json b/.changes/next-release/api-change-datasync-80289.json deleted file mode 100644 index e3fa238df5..0000000000 --- a/.changes/next-release/api-change-datasync-80289.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``datasync``", - "description": "[``botocore``] AWS DataSync now supports TLS encryption in transit, file system policies and access points for EFS locations." -} diff --git a/.changes/next-release/api-change-emrserverless-82781.json b/.changes/next-release/api-change-emrserverless-82781.json deleted file mode 100644 index 3c6af84c6e..0000000000 --- a/.changes/next-release/api-change-emrserverless-82781.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``emr-serverless``", - "description": "[``botocore``] This release adds support for Amazon EMR Serverless, a serverless runtime environment that simplifies running analytics applications using the latest open source frameworks such as Apache Spark and Apache Hive." -} diff --git a/.changes/next-release/api-change-sagemaker-51352.json b/.changes/next-release/api-change-sagemaker-51352.json deleted file mode 100644 index a5fb7385eb..0000000000 --- a/.changes/next-release/api-change-sagemaker-51352.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "[``botocore``] Amazon SageMaker Notebook Instances now allows configuration of Instance Metadata Service version and Amazon SageMaker Studio now supports G5 instance types." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7d9e4fc471..fc82845a28 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.23.10 +======= + +* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Notebook Instances now allows configuration of Instance Metadata Service version and Amazon SageMaker Studio now supports G5 instance types. +* api-change:``appflow``: [``botocore``] Adding the following features/changes: Parquet output that preserves typing from the source connector, Failed executions threshold before deactivation for scheduled flows, increasing max size of access and refresh token from 2048 to 4096 +* api-change:``datasync``: [``botocore``] AWS DataSync now supports TLS encryption in transit, file system policies and access points for EFS locations. +* api-change:``emr-serverless``: [``botocore``] This release adds support for Amazon EMR Serverless, a serverless runtime environment that simplifies running analytics applications using the latest open source frameworks such as Apache Spark and Apache Hive. + + 1.23.9 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 9ff6abe9f0..e67d53bf8a 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.23.9' +__version__ = '1.23.10' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 6aa9377d94..9e7533db16 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.26.9,<1.27.0 + botocore>=1.26.10,<1.27.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index 1ee291647b..a98c0dacca 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.26.9,<1.27.0', + 'botocore>=1.26.10,<1.27.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.5.0,<0.6.0', ]