diff --git a/.changes/1.28.50.json b/.changes/1.28.50.json new file mode 100644 index 0000000000..915d5d72e3 --- /dev/null +++ b/.changes/1.28.50.json @@ -0,0 +1,17 @@ +[ + { + "category": "``discovery``", + "description": "[``botocore``] Add sensitive protection for customer information", + "type": "api-change" + }, + { + "category": "``macie2``", + "description": "[``botocore``] This release changes the default managedDataIdentifierSelector setting for new classification jobs to RECOMMENDED. By default, new classification jobs now use the recommended set of managed data identifiers.", + "type": "api-change" + }, + { + "category": "``workmail``", + "description": "[``botocore``] This release includes four new APIs UpdateUser, UpdateGroup, ListGroupsForEntity and DescribeEntity, along with RemoteUsers and some enhancements to existing APIs.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 270d98ba29..318f5f9dea 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.28.50 +======= + +* api-change:``discovery``: [``botocore``] Add sensitive protection for customer information +* api-change:``macie2``: [``botocore``] This release changes the default managedDataIdentifierSelector setting for new classification jobs to RECOMMENDED. By default, new classification jobs now use the recommended set of managed data identifiers. +* api-change:``workmail``: [``botocore``] This release includes four new APIs UpdateUser, UpdateGroup, ListGroupsForEntity and DescribeEntity, along with RemoteUsers and some enhancements to existing APIs. + + 1.28.49 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 78eefce42e..9fd7908c62 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.28.49' +__version__ = '1.28.50' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 072a5f5128..779400d7cc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.49,<1.32.0 + botocore>=1.31.50,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 1304449575..7f8dcdb8d2 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.49,<1.32.0', + 'botocore>=1.31.50,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]