diff --git a/.changes/1.26.85.json b/.changes/1.26.85.json new file mode 100644 index 0000000000..9efabeb3c5 --- /dev/null +++ b/.changes/1.26.85.json @@ -0,0 +1,12 @@ +[ + { + "category": "``account``", + "description": "[``botocore``] AWS Account alternate contact email addresses can now have a length of 254 characters and contain the character \"|\".", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "[``botocore``] Updated text description in DeleteChannel, Stream, and StreamSummary.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-account-15321.json b/.changes/next-release/api-change-account-15321.json deleted file mode 100644 index bfeeb5f512..0000000000 --- a/.changes/next-release/api-change-account-15321.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``account``", - "description": "[``botocore``] AWS Account alternate contact email addresses can now have a length of 254 characters and contain the character \"|\"." -} diff --git a/.changes/next-release/api-change-ivs-36142.json b/.changes/next-release/api-change-ivs-36142.json deleted file mode 100644 index fc0cc6a57b..0000000000 --- a/.changes/next-release/api-change-ivs-36142.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ivs``", - "description": "[``botocore``] Updated text description in DeleteChannel, Stream, and StreamSummary." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c3badce778..50940d68ce 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.26.85 +======= + +* api-change:``account``: [``botocore``] AWS Account alternate contact email addresses can now have a length of 254 characters and contain the character "|". +* api-change:``ivs``: [``botocore``] Updated text description in DeleteChannel, Stream, and StreamSummary. + + 1.26.84 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index d75f072976..3b2f1b35cc 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.84' +__version__ = '1.26.85' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 71b89b8da1..4d6d6f6d55 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.84,<1.30.0 + botocore>=1.29.85,<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 35fe6be249..6318ffb2d3 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.84,<1.30.0', + 'botocore>=1.29.85,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]