From 887fc700043ceb6cc2a54fb6fc1ea5e0eff619a6 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 8 Aug 2023 18:09:56 +0000 Subject: [PATCH] Bumping version to 1.29.22 --- .changes/1.29.22.json | 17 +++++++++++++++++ .../next-release/api-change-backup-3474.json | 5 ----- .../api-change-elasticache-79960.json | 5 ----- .../api-change-servicecatalog-3885.json | 5 ----- CHANGELOG.rst | 8 ++++++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 9 files changed, 29 insertions(+), 19 deletions(-) create mode 100644 .changes/1.29.22.json delete mode 100644 .changes/next-release/api-change-backup-3474.json delete mode 100644 .changes/next-release/api-change-elasticache-79960.json delete mode 100644 .changes/next-release/api-change-servicecatalog-3885.json diff --git a/.changes/1.29.22.json b/.changes/1.29.22.json new file mode 100644 index 000000000000..803879017eee --- /dev/null +++ b/.changes/1.29.22.json @@ -0,0 +1,17 @@ +[ + { + "category": "``backup``", + "description": "This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts.", + "type": "api-change" + }, + { + "category": "``elasticache``", + "description": "Added support for cluster mode in online migration and test migration API", + "type": "api-change" + }, + { + "category": "``servicecatalog``", + "description": "Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-backup-3474.json b/.changes/next-release/api-change-backup-3474.json deleted file mode 100644 index 167212574938..000000000000 --- a/.changes/next-release/api-change-backup-3474.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``backup``", - "description": "This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts." -} diff --git a/.changes/next-release/api-change-elasticache-79960.json b/.changes/next-release/api-change-elasticache-79960.json deleted file mode 100644 index b4a4a14a4658..000000000000 --- a/.changes/next-release/api-change-elasticache-79960.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``elasticache``", - "description": "Added support for cluster mode in online migration and test migration API" -} diff --git a/.changes/next-release/api-change-servicecatalog-3885.json b/.changes/next-release/api-change-servicecatalog-3885.json deleted file mode 100644 index f5de050f5a6d..000000000000 --- a/.changes/next-release/api-change-servicecatalog-3885.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``servicecatalog``", - "description": "Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 35ca8481c1b5..a251ae36641b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.29.22 +======= + +* api-change:``backup``: This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts. +* api-change:``elasticache``: Added support for cluster mode in online migration and test migration API +* api-change:``servicecatalog``: Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API. + + 1.29.21 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 10161c5dda7a..e9be7b3f678f 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.29.21' +__version__ = '1.29.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 81d09538ccd9..5df0d61a6beb 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.21' +release = '1.29.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 1a07b4ce0070..089290cf0153 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.31.21 + botocore==1.31.22 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 cc67e199c226..8e88ac82ebda 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.31.21', + 'botocore==1.31.22', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<6.1',