diff --git a/.changes/1.24.10.json b/.changes/1.24.10.json new file mode 100644 index 000000000000..ebd99274d388 --- /dev/null +++ b/.changes/1.24.10.json @@ -0,0 +1,22 @@ +[ + { + "category": "``appflow``", + "description": "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": "``sagemaker``", + "description": "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": "``datasync``", + "description": "AWS DataSync now supports TLS encryption in transit, file system policies and access points for EFS locations.", + "type": "api-change" + }, + { + "category": "``emr-serverless``", + "description": "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/CHANGELOG.rst b/CHANGELOG.rst index 21496d719bcc..5e934d891a65 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.24.10 +======= + +* api-change:``appflow``: 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:``sagemaker``: Amazon SageMaker Notebook Instances now allows configuration of Instance Metadata Service version and Amazon SageMaker Studio now supports G5 instance types. +* api-change:``datasync``: AWS DataSync now supports TLS encryption in transit, file system policies and access points for EFS locations. +* api-change:``emr-serverless``: 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.24.9 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index 8f30b2ebe301..536c0b7daa54 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.24.9' +__version__ = '1.24.10' # # Get our data path to be added to botocore's search path diff --git a/awscli/examples/cloudformation/_package_description.rst b/awscli/examples/cloudformation/_package_description.rst index 78dfc9fc52de..30ff5971002b 100644 --- a/awscli/examples/cloudformation/_package_description.rst +++ b/awscli/examples/cloudformation/_package_description.rst @@ -20,6 +20,8 @@ This command can upload local artifacts referenced in the following places: - ``DefinitionS3Location`` property for the ``AWS::AppSync::GraphQLSchema`` resource - ``RequestMappingTemplateS3Location`` property for the ``AWS::AppSync::Resolver`` resource - ``ResponseMappingTemplateS3Location`` property for the ``AWS::AppSync::Resolver`` resource + - ``RequestMappingTemplateS3Location`` property for the ``AWS::AppSync::FunctionConfiguration`` resource + - ``ResponseMappingTemplateS3Location`` property for the ``AWS::AppSync::FunctionConfiguration`` resource - ``DefinitionUri`` property for the ``AWS::Serverless::Api`` resource - ``Location`` parameter for the ``AWS::Include`` transform - ``SourceBundle`` property for the ``AWS::ElasticBeanstalk::ApplicationVersion`` resource diff --git a/doc/source/conf.py b/doc/source/conf.py index d15c23bc9d2e..b8cf201a3454 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '1.24' +version = '1.24.' # The full version, including alpha/beta/rc tags. -release = '1.24.9' +release = '1.24.10' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 2301b7999bb6..507c2e659b5d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.26.9 + botocore==1.26.10 docutils>=0.10,<0.17 s3transfer>=0.5.0,<0.6.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index 9efa03c46b18..2088d92f02a3 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.26.9', + 'botocore==1.26.10', 'docutils>=0.10,<0.17', 's3transfer>=0.5.0,<0.6.0', 'PyYAML>=3.10,<5.5',