diff --git a/.changes/1.26.92.json b/.changes/1.26.92.json new file mode 100644 index 0000000000..cdad97400b --- /dev/null +++ b/.changes/1.26.92.json @@ -0,0 +1,17 @@ +[ + { + "category": "``migrationhubstrategy``", + "description": "[``botocore``] This release adds the binary analysis that analyzes IIS application DLLs on Windows and Java applications on Linux to provide anti-pattern report without configuring access to the source code.", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "[``botocore``] Added support for S3 Object Lambda aliases.", + "type": "api-change" + }, + { + "category": "``securitylake``", + "description": "[``botocore``] Make Create/Get/ListSubscribers APIs return resource share ARN and name so they can be used to validate the RAM resource share to accept. GetDatalake can be used to track status of UpdateDatalake and DeleteDatalake requests.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5402de23bb..74682460d3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.26.92 +======= + +* api-change:``migrationhubstrategy``: [``botocore``] This release adds the binary analysis that analyzes IIS application DLLs on Windows and Java applications on Linux to provide anti-pattern report without configuring access to the source code. +* api-change:``s3control``: [``botocore``] Added support for S3 Object Lambda aliases. +* api-change:``securitylake``: [``botocore``] Make Create/Get/ListSubscribers APIs return resource share ARN and name so they can be used to validate the RAM resource share to accept. GetDatalake can be used to track status of UpdateDatalake and DeleteDatalake requests. + + 1.26.91 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 1d5d0da22f..bedf0c82b5 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.91' +__version__ = '1.26.92' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index f958b06073..9fe8a07d53 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.91,<1.30.0 + botocore>=1.29.92,<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 4e2e742419..8474093f76 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.91,<1.30.0', + 'botocore>=1.29.92,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]