diff --git a/.changes/1.24.63.json b/.changes/1.24.63.json new file mode 100644 index 0000000000..cdf4c91724 --- /dev/null +++ b/.changes/1.24.63.json @@ -0,0 +1,37 @@ +[ + { + "category": "Endpoints", + "description": "[``botocore``] Deprecate SSL common name", + "type": "enhancement" + }, + { + "category": "``greengrassv2``", + "description": "[``botocore``] Adds topologyFilter to ListInstalledComponentsRequest which allows filtration of components by ROOT or ALL (including root and dependency components). Adds lastStatusChangeTimestamp to ListInstalledComponents response to show the last time a component changed state on a device.", + "type": "api-change" + }, + { + "category": "``identitystore``", + "description": "[``botocore``] Documentation updates for the Identity Store CLI Reference.", + "type": "api-change" + }, + { + "category": "``lookoutequipment``", + "description": "[``botocore``] This release adds new apis for providing labels.", + "type": "api-change" + }, + { + "category": "``macie2``", + "description": "[``botocore``] This release of the Amazon Macie API adds support for using allow lists to define specific text and text patterns to ignore when inspecting data sources for sensitive data.", + "type": "api-change" + }, + { + "category": "``sso-admin``", + "description": "[``botocore``] Documentation updates for the AWS IAM Identity Center CLI Reference.", + "type": "api-change" + }, + { + "category": "``sso``", + "description": "[``botocore``] Documentation updates for the AWS IAM Identity Center Portal CLI Reference.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 02dd1b29d8..9ba362aa57 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.24.63 +======= + +* enhancement:Endpoints: [``botocore``] Deprecate SSL common name +* api-change:``greengrassv2``: [``botocore``] Adds topologyFilter to ListInstalledComponentsRequest which allows filtration of components by ROOT or ALL (including root and dependency components). Adds lastStatusChangeTimestamp to ListInstalledComponents response to show the last time a component changed state on a device. +* api-change:``identitystore``: [``botocore``] Documentation updates for the Identity Store CLI Reference. +* api-change:``lookoutequipment``: [``botocore``] This release adds new apis for providing labels. +* api-change:``macie2``: [``botocore``] This release of the Amazon Macie API adds support for using allow lists to define specific text and text patterns to ignore when inspecting data sources for sensitive data. +* api-change:``sso-admin``: [``botocore``] Documentation updates for the AWS IAM Identity Center CLI Reference. +* api-change:``sso``: [``botocore``] Documentation updates for the AWS IAM Identity Center Portal CLI Reference. + + 1.24.62 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 2ae4c9b4b0..90fe7c1cf4 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.24.62' +__version__ = '1.24.63' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index b52c845571..fd5ac0b407 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.27.62,<1.28.0 + botocore>=1.27.63,<1.28.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index b2557d522a..c60871f0d7 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.27.62,<1.28.0', + 'botocore>=1.27.63,<1.28.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]