diff --git a/.changes/1.34.80.json b/.changes/1.34.80.json new file mode 100644 index 0000000000..b245db7e5e --- /dev/null +++ b/.changes/1.34.80.json @@ -0,0 +1,17 @@ +[ + { + "category": "``controlcatalog``", + "description": "[``botocore``] This is the initial SDK release for AWS Control Catalog, a central catalog for AWS managed controls. This release includes 3 new APIs - ListDomains, ListObjectives, and ListCommonControls - that vend high-level data to categorize controls across the AWS platform.", + "type": "api-change" + }, + { + "category": "``mgn``", + "description": "[``botocore``] Added USE_SOURCE as default option to LaunchConfigurationTemplate bootMode parameter.", + "type": "api-change" + }, + { + "category": "``networkmonitor``", + "description": "[``botocore``] Updated the allowed monitorName length for CloudWatch Network Monitor.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 72bfa1a10f..b1417975d0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.80 +======= + +* api-change:``controlcatalog``: [``botocore``] This is the initial SDK release for AWS Control Catalog, a central catalog for AWS managed controls. This release includes 3 new APIs - ListDomains, ListObjectives, and ListCommonControls - that vend high-level data to categorize controls across the AWS platform. +* api-change:``mgn``: [``botocore``] Added USE_SOURCE as default option to LaunchConfigurationTemplate bootMode parameter. +* api-change:``networkmonitor``: [``botocore``] Updated the allowed monitorName length for CloudWatch Network Monitor. + + 1.34.79 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index fd75f90281..8a8b80b921 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.79' +__version__ = '1.34.80' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 0d2094da48..6666cc8423 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.79,<1.35.0 + botocore>=1.34.80,<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 bae1dafbe6..26f3353097 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.79,<1.35.0', + 'botocore>=1.34.80,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]