diff --git a/.changes/1.34.157.json b/.changes/1.34.157.json new file mode 100644 index 0000000000..8ee9f98a44 --- /dev/null +++ b/.changes/1.34.157.json @@ -0,0 +1,22 @@ +[ + { + "category": "``cognito-idp``", + "description": "[``botocore``] Added support for threat protection for custom authentication in Amazon Cognito user pools.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] This release fixes a regression in number of access control tags that are allowed to be added to a security profile in Amazon Connect. You can now add up to four access control tags on a single security profile.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Launch of private IPv6 addressing for VPCs and Subnets. VPC IPAM supports the planning and monitoring of private IPv6 usage.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] This release adds support to retrieve the validation status when creating or updating Glue Data Catalog Views. Also added is support for BasicCatalogTarget partition keys.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cognitoidp-56792.json b/.changes/next-release/api-change-cognitoidp-56792.json deleted file mode 100644 index e2406ed5ed..0000000000 --- a/.changes/next-release/api-change-cognitoidp-56792.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cognito-idp``", - "description": "[``botocore``] Added support for threat protection for custom authentication in Amazon Cognito user pools." -} diff --git a/.changes/next-release/api-change-connect-84151.json b/.changes/next-release/api-change-connect-84151.json deleted file mode 100644 index 8e76d812f2..0000000000 --- a/.changes/next-release/api-change-connect-84151.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect``", - "description": "[``botocore``] This release fixes a regression in number of access control tags that are allowed to be added to a security profile in Amazon Connect. You can now add up to four access control tags on a single security profile." -} diff --git a/.changes/next-release/api-change-ec2-74570.json b/.changes/next-release/api-change-ec2-74570.json deleted file mode 100644 index 123d3570f3..0000000000 --- a/.changes/next-release/api-change-ec2-74570.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ec2``", - "description": "[``botocore``] Launch of private IPv6 addressing for VPCs and Subnets. VPC IPAM supports the planning and monitoring of private IPv6 usage." -} diff --git a/.changes/next-release/api-change-glue-7953.json b/.changes/next-release/api-change-glue-7953.json deleted file mode 100644 index 27278ee9d2..0000000000 --- a/.changes/next-release/api-change-glue-7953.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``glue``", - "description": "[``botocore``] This release adds support to retrieve the validation status when creating or updating Glue Data Catalog Views. Also added is support for BasicCatalogTarget partition keys." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d22128c152..5d55830ec7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.157 +======== + +* api-change:``cognito-idp``: [``botocore``] Added support for threat protection for custom authentication in Amazon Cognito user pools. +* api-change:``connect``: [``botocore``] This release fixes a regression in number of access control tags that are allowed to be added to a security profile in Amazon Connect. You can now add up to four access control tags on a single security profile. +* api-change:``ec2``: [``botocore``] Launch of private IPv6 addressing for VPCs and Subnets. VPC IPAM supports the planning and monitoring of private IPv6 usage. +* api-change:``glue``: [``botocore``] This release adds support to retrieve the validation status when creating or updating Glue Data Catalog Views. Also added is support for BasicCatalogTarget partition keys. + + 1.34.156 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 9e71ec2d70..79cf45af93 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.156' +__version__ = '1.34.157' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 2368e4fea9..3956329d3a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.156,<1.35.0 + botocore>=1.34.157,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 1b58485015..3880328a57 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.34.156,<1.35.0', + 'botocore>=1.34.157,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]