diff --git a/.changes/1.29.9.json b/.changes/1.29.9.json new file mode 100644 index 000000000000..d206292502a5 --- /dev/null +++ b/.changes/1.29.9.json @@ -0,0 +1,22 @@ +[ + { + "category": "``glue``", + "description": "This release adds support for AWS Glue Crawler with Apache Hudi Tables, allowing Crawlers to discover Hudi Tables in S3 and register them in Glue Data Catalog for query engines to query against.", + "type": "api-change" + }, + { + "category": "``mediaconvert``", + "description": "This release includes improvements to Preserve 444 handling, compatibility of HEVC sources without frame rates, and general improvements to MP4 outputs.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle.", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "Fixed VolumeEncryptionKey descriptions", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 363295ad0f6e..f980681769ef 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.29.9 +====== + +* api-change:``glue``: This release adds support for AWS Glue Crawler with Apache Hudi Tables, allowing Crawlers to discover Hudi Tables in S3 and register them in Glue Data Catalog for query engines to query against. +* api-change:``mediaconvert``: This release includes improvements to Preserve 444 handling, compatibility of HEVC sources without frame rates, and general improvements to MP4 outputs. +* api-change:``rds``: Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle. +* api-change:``workspaces``: Fixed VolumeEncryptionKey descriptions + + 1.29.8 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index 5e778baa3719..479a6482a381 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.29.8' +__version__ = '1.29.9' # # 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 a4e0c6ea22d8..c2977dbe46b8 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.8' +release = '1.29.9' # 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 20b6b49da1d4..28c0c1fa0746 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.31.8 + botocore==1.31.9 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index ff9849e57932..66b26f22c5ed 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.31.8', + 'botocore==1.31.9', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<6.1',