diff --git a/.changes/1.24.41.json b/.changes/1.24.41.json new file mode 100644 index 0000000000..25a66a9c84 --- /dev/null +++ b/.changes/1.24.41.json @@ -0,0 +1,22 @@ +[ + { + "category": "Config", + "description": "[``botocore``] Obey _X_AMZN_TRACE_ID environment variable instead of _X_AMZ_TRACE_ID", + "type": "bugfix" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Documentation updates for Amazon EC2.", + "type": "api-change" + }, + { + "category": "``fsx``", + "description": "[``botocore``] Documentation updates for Amazon FSx", + "type": "api-change" + }, + { + "category": "``shield``", + "description": "[``botocore``] AWS Shield Advanced now supports filtering for ListProtections and ListProtectionGroups.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aa7c0a304e..f5abf48186 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.24.41 +======= + +* bugfix:Config: [``botocore``] Obey _X_AMZN_TRACE_ID environment variable instead of _X_AMZ_TRACE_ID +* api-change:``ec2``: [``botocore``] Documentation updates for Amazon EC2. +* api-change:``fsx``: [``botocore``] Documentation updates for Amazon FSx +* api-change:``shield``: [``botocore``] AWS Shield Advanced now supports filtering for ListProtections and ListProtectionGroups. + + 1.24.40 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index b4a14c10ae..2c0d407f8a 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.40' +__version__ = '1.24.41' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 5ba9df7cf9..ce35b01e64 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.27.40,<1.28.0 + botocore>=1.27.41,<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 8d4f0f96c1..252f518e4f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.27.40,<1.28.0', + 'botocore>=1.27.41,<1.28.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]