diff --git a/.changes/1.26.89.json b/.changes/1.26.89.json new file mode 100644 index 0000000000..62a729b9a7 --- /dev/null +++ b/.changes/1.26.89.json @@ -0,0 +1,12 @@ +[ + { + "category": "``ivschat``", + "description": "[``botocore``] This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations.", + "type": "api-change" + }, + { + "category": "``secretsmanager``", + "description": "[``botocore``] The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-ivschat-25108.json b/.changes/next-release/api-change-ivschat-25108.json deleted file mode 100644 index 9dd9fe8aaf..0000000000 --- a/.changes/next-release/api-change-ivschat-25108.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ivschat``", - "description": "[``botocore``] This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations." -} diff --git a/.changes/next-release/api-change-secretsmanager-30533.json b/.changes/next-release/api-change-secretsmanager-30533.json deleted file mode 100644 index de540c24a5..0000000000 --- a/.changes/next-release/api-change-secretsmanager-30533.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``secretsmanager``", - "description": "[``botocore``] The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 07eb3c7950..e566c161f9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.26.89 +======= + +* api-change:``ivschat``: [``botocore``] This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations. +* api-change:``secretsmanager``: [``botocore``] The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values. + + 1.26.88 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 5c9a29b011..784a9c9fab 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.88' +__version__ = '1.26.89' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 6851a6a7b5..6d41f8f222 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.88,<1.30.0 + botocore>=1.29.89,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 2190eb485a..6156bedb45 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.88,<1.30.0', + 'botocore>=1.29.89,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]