diff --git a/.changes/1.25.22.json b/.changes/1.25.22.json new file mode 100644 index 000000000000..0c3aa25751cd --- /dev/null +++ b/.changes/1.25.22.json @@ -0,0 +1,12 @@ +[ + { + "category": "``dms``", + "description": "Added new features for AWS DMS version 3.4.7 that includes new endpoint settings for S3, OpenSearch, Postgres, SQLServer and Oracle.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "Adds support for additional retention periods to Performance Insights.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index beb00feea125..3165bcc13367 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.25.22 +======= + +* api-change:``dms``: Added new features for AWS DMS version 3.4.7 that includes new endpoint settings for S3, OpenSearch, Postgres, SQLServer and Oracle. +* api-change:``rds``: Adds support for additional retention periods to Performance Insights. + + 1.25.21 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 533630553fef..265a344eda31 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.25.21' +__version__ = '1.25.22' # # 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 a851df0282c1..29f9c1da9d4d 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.25.' # The full version, including alpha/beta/rc tags. -release = '1.25.21' +release = '1.25.22' # 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 8f2a6b7d55fe..34c35f2cc3a7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.27.21 + botocore==1.27.22 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 c6b407933b90..6151c18aac4d 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.27.21', + 'botocore==1.27.22', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',