diff --git a/.changes/1.29.1.json b/.changes/1.29.1.json new file mode 100644 index 000000000000..8244e4beae64 --- /dev/null +++ b/.changes/1.29.1.json @@ -0,0 +1,27 @@ +[ + { + "category": "``dms``", + "description": "Releasing DMS Serverless. Adding support for PostgreSQL 15.x as source and target endpoint. Adding support for DocDB Elastic Clusters with sharded collections, PostgreSQL datatype mapping customization and disabling hostname validation of the certificate authority in Kafka endpoint settings", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "This release enables customers to create new Apache Iceberg tables and associated metadata in Amazon S3 by using native AWS Glue CreateTable operation.", + "type": "api-change" + }, + { + "category": "``logs``", + "description": "Add CMK encryption support for CloudWatch Logs Insights query result data", + "type": "api-change" + }, + { + "category": "``medialive``", + "description": "This release enables the use of Thumbnails in AWS Elemental MediaLive.", + "type": "api-change" + }, + { + "category": "``mediatailor``", + "description": "The AWS Elemental MediaTailor SDK for Channel Assembly has added support for EXT-X-CUE-OUT and EXT-X-CUE-IN tags to specify ad breaks in HLS outputs, including support for EXT-OATCLS, EXT-X-ASSET, and EXT-X-CUE-OUT-CONT accessory tags.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6ba5ce83e0a5..d6664ff0bc55 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.29.1 +====== + +* api-change:``dms``: Releasing DMS Serverless. Adding support for PostgreSQL 15.x as source and target endpoint. Adding support for DocDB Elastic Clusters with sharded collections, PostgreSQL datatype mapping customization and disabling hostname validation of the certificate authority in Kafka endpoint settings +* api-change:``glue``: This release enables customers to create new Apache Iceberg tables and associated metadata in Amazon S3 by using native AWS Glue CreateTable operation. +* api-change:``logs``: Add CMK encryption support for CloudWatch Logs Insights query result data +* api-change:``medialive``: This release enables the use of Thumbnails in AWS Elemental MediaLive. +* api-change:``mediatailor``: The AWS Elemental MediaTailor SDK for Channel Assembly has added support for EXT-X-CUE-OUT and EXT-X-CUE-IN tags to specify ad breaks in HLS outputs, including support for EXT-OATCLS, EXT-X-ASSET, and EXT-X-CUE-OUT-CONT accessory tags. + + 1.29.0 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index 14300a8efac8..30d5bc7601e4 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.29.0' +__version__ = '1.29.1' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 765204353403..965c5bcf4c43 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.29' # The full version, including alpha/beta/rc tags. -release = '1.29.0' +release = '1.29.1' # 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 55e1765a8144..765567cccf25 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.31.0 + botocore==1.31.1 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index 39355ba31644..1833a6897ebc 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.31.0', + 'botocore==1.31.1', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',