diff --git a/.changes/1.26.135.json b/.changes/1.26.135.json new file mode 100644 index 0000000000..174eb8eb9a --- /dev/null +++ b/.changes/1.26.135.json @@ -0,0 +1,27 @@ +[ + { + "category": "``detective``", + "description": "[``botocore``] Added and updated API operations in Detective to support the integration of ASFF Security Hub findings.", + "type": "api-change" + }, + { + "category": "``directconnect``", + "description": "[``botocore``] This release includes an update to the mtu value for CreateTransitVirtualInterface from 9001 mtu to 8500 mtu.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Add Support for Tags for Custom Entity Types", + "type": "api-change" + }, + { + "category": "``secretsmanager``", + "description": "[``botocore``] Documentation updates for Secrets Manager", + "type": "api-change" + }, + { + "category": "``wafv2``", + "description": "[``botocore``] My AWS Service (placeholder) - You can now rate limit web requests based on aggregation keys other than IP addresses, and you can aggregate using combinations of keys. You can also rate limit all requests that match a scope-down statement, without further aggregation.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-detective-91827.json b/.changes/next-release/api-change-detective-91827.json deleted file mode 100644 index b126246ece..0000000000 --- a/.changes/next-release/api-change-detective-91827.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``detective``", - "description": "[``botocore``] Added and updated API operations in Detective to support the integration of ASFF Security Hub findings." -} diff --git a/.changes/next-release/api-change-directconnect-17210.json b/.changes/next-release/api-change-directconnect-17210.json deleted file mode 100644 index 3f1874cdf5..0000000000 --- a/.changes/next-release/api-change-directconnect-17210.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``directconnect``", - "description": "[``botocore``] This release includes an update to the mtu value for CreateTransitVirtualInterface from 9001 mtu to 8500 mtu." -} diff --git a/.changes/next-release/api-change-glue-12746.json b/.changes/next-release/api-change-glue-12746.json deleted file mode 100644 index 7b29c2ece2..0000000000 --- a/.changes/next-release/api-change-glue-12746.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``glue``", - "description": "[``botocore``] Add Support for Tags for Custom Entity Types" -} diff --git a/.changes/next-release/api-change-secretsmanager-60877.json b/.changes/next-release/api-change-secretsmanager-60877.json deleted file mode 100644 index faec915958..0000000000 --- a/.changes/next-release/api-change-secretsmanager-60877.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``secretsmanager``", - "description": "[``botocore``] Documentation updates for Secrets Manager" -} diff --git a/.changes/next-release/api-change-wafv2-16771.json b/.changes/next-release/api-change-wafv2-16771.json deleted file mode 100644 index 7b94f916ee..0000000000 --- a/.changes/next-release/api-change-wafv2-16771.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``wafv2``", - "description": "[``botocore``] My AWS Service (placeholder) - You can now rate limit web requests based on aggregation keys other than IP addresses, and you can aggregate using combinations of keys. You can also rate limit all requests that match a scope-down statement, without further aggregation." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index de03dfd7ea..80ea0706da 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.26.135 +======== + +* api-change:``detective``: [``botocore``] Added and updated API operations in Detective to support the integration of ASFF Security Hub findings. +* api-change:``directconnect``: [``botocore``] This release includes an update to the mtu value for CreateTransitVirtualInterface from 9001 mtu to 8500 mtu. +* api-change:``glue``: [``botocore``] Add Support for Tags for Custom Entity Types +* api-change:``secretsmanager``: [``botocore``] Documentation updates for Secrets Manager +* api-change:``wafv2``: [``botocore``] My AWS Service (placeholder) - You can now rate limit web requests based on aggregation keys other than IP addresses, and you can aggregate using combinations of keys. You can also rate limit all requests that match a scope-down statement, without further aggregation. + + 1.26.134 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 0451c96e3b..9e441c3080 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.134' +__version__ = '1.26.135' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 376d533cbc..dec47d0c46 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.134,<1.30.0 + botocore>=1.29.135,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 1c475a6c57..559e936762 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.134,<1.30.0', + 'botocore>=1.29.135,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]