From df05d204f02737a41ed8ce6c165d1ef1ae712a13 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 8 Oct 2024 18:05:06 +0000 Subject: [PATCH 1/2] Update changelog based on model updates --- .changes/next-release/api-change-elasticache-99773.json | 5 +++++ .changes/next-release/api-change-memorydb-84567.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-elasticache-99773.json create mode 100644 .changes/next-release/api-change-memorydb-84567.json diff --git a/.changes/next-release/api-change-elasticache-99773.json b/.changes/next-release/api-change-elasticache-99773.json new file mode 100644 index 000000000000..0dc9bd709c6b --- /dev/null +++ b/.changes/next-release/api-change-elasticache-99773.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``elasticache``", + "description": "AWS ElastiCache SDK now supports using APIs with newly launched Valkey engine. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage." +} diff --git a/.changes/next-release/api-change-memorydb-84567.json b/.changes/next-release/api-change-memorydb-84567.json new file mode 100644 index 000000000000..557f5fd4d911 --- /dev/null +++ b/.changes/next-release/api-change-memorydb-84567.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``memorydb``", + "description": "Amazon MemoryDB SDK now supports all APIs for newly launched Valkey engine. Please refer to the updated Amazon MemoryDB public documentation for detailed information on API usage." +} From fd8c1260d7df9dd7f94ddfd369667b25cd18aa65 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 8 Oct 2024 18:06:21 +0000 Subject: [PATCH 2/2] Bumping version to 1.35.2 --- .changes/1.35.2.json | 17 +++++++++++++++++ .../api-change-elasticache-99773.json | 5 ----- .../next-release/api-change-memorydb-84567.json | 5 ----- .changes/next-release/enhancement-s3-92930.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.35.2.json delete mode 100644 .changes/next-release/api-change-elasticache-99773.json delete mode 100644 .changes/next-release/api-change-memorydb-84567.json delete mode 100644 .changes/next-release/enhancement-s3-92930.json diff --git a/.changes/1.35.2.json b/.changes/1.35.2.json new file mode 100644 index 000000000000..672f7eec55d2 --- /dev/null +++ b/.changes/1.35.2.json @@ -0,0 +1,17 @@ +[ + { + "category": "``elasticache``", + "description": "AWS ElastiCache SDK now supports using APIs with newly launched Valkey engine. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage.", + "type": "api-change" + }, + { + "category": "``memorydb``", + "description": "Amazon MemoryDB SDK now supports all APIs for newly launched Valkey engine. Please refer to the updated Amazon MemoryDB public documentation for detailed information on API usage.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "Adds logic to gracefully handle invalid timestamps returned in the Expires header.", + "type": "enhancement" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-elasticache-99773.json b/.changes/next-release/api-change-elasticache-99773.json deleted file mode 100644 index 0dc9bd709c6b..000000000000 --- a/.changes/next-release/api-change-elasticache-99773.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``elasticache``", - "description": "AWS ElastiCache SDK now supports using APIs with newly launched Valkey engine. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage." -} diff --git a/.changes/next-release/api-change-memorydb-84567.json b/.changes/next-release/api-change-memorydb-84567.json deleted file mode 100644 index 557f5fd4d911..000000000000 --- a/.changes/next-release/api-change-memorydb-84567.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``memorydb``", - "description": "Amazon MemoryDB SDK now supports all APIs for newly launched Valkey engine. Please refer to the updated Amazon MemoryDB public documentation for detailed information on API usage." -} diff --git a/.changes/next-release/enhancement-s3-92930.json b/.changes/next-release/enhancement-s3-92930.json deleted file mode 100644 index 5fc2e636ecd0..000000000000 --- a/.changes/next-release/enhancement-s3-92930.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "enhancement", - "category": "``s3``", - "description": "Adds logic to gracefully handle invalid timestamps returned in the Expires header." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index db190fbf0629..285f82c25a6a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.35.2 +====== + +* api-change:``elasticache``: AWS ElastiCache SDK now supports using APIs with newly launched Valkey engine. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage. +* api-change:``memorydb``: Amazon MemoryDB SDK now supports all APIs for newly launched Valkey engine. Please refer to the updated Amazon MemoryDB public documentation for detailed information on API usage. +* enhancement:``s3``: Adds logic to gracefully handle invalid timestamps returned in the Expires header. + + 1.35.1 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index badeb2a4e5bd..7466baa6b09e 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -18,7 +18,7 @@ import os -__version__ = '1.35.1' +__version__ = '1.35.2' # # 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 66c7362d3016..9ba30502006d 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.35' # The full version, including alpha/beta/rc tags. -release = '1.35.1' +release = '1.35.2' # 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 fbd1d4c548cd..ce9272deb5f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.35.35 + botocore==1.35.36 docutils>=0.10,<0.17 s3transfer>=0.10.0,<0.11.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index 839253e8b0c5..bd08b4448fae 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.35.35', + 'botocore==1.35.36', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',