diff --git a/.changes/1.34.22.json b/.changes/1.34.22.json new file mode 100644 index 0000000000..ba7ac424b7 --- /dev/null +++ b/.changes/1.34.22.json @@ -0,0 +1,32 @@ +[ + { + "category": "``b2bi``", + "description": "[``botocore``] Increasing TestMapping inputFileContent file size limit to 5MB and adding file size limit 250KB for TestParsing input file. This release also includes exposing InternalServerException for Tag APIs.", + "type": "api-change" + }, + { + "category": "``cloudtrail``", + "description": "[``botocore``] This release adds a new API ListInsightsMetricData to retrieve metric data from CloudTrail Insights.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] GetMetricDataV2 now supports 3 groupings", + "type": "api-change" + }, + { + "category": "``drs``", + "description": "[``botocore``] Removed invalid and unnecessary default values.", + "type": "api-change" + }, + { + "category": "``firehose``", + "description": "[``botocore``] Allow support for Snowflake as a Kinesis Data Firehose delivery destination.", + "type": "api-change" + }, + { + "category": "``sagemaker-featurestore-runtime``", + "description": "[``botocore``] Increase BatchGetRecord limits from 10 items to 100 items", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e65b49a50f..60fb7734e4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.34.22 +======= + +* api-change:``b2bi``: [``botocore``] Increasing TestMapping inputFileContent file size limit to 5MB and adding file size limit 250KB for TestParsing input file. This release also includes exposing InternalServerException for Tag APIs. +* api-change:``cloudtrail``: [``botocore``] This release adds a new API ListInsightsMetricData to retrieve metric data from CloudTrail Insights. +* api-change:``connect``: [``botocore``] GetMetricDataV2 now supports 3 groupings +* api-change:``drs``: [``botocore``] Removed invalid and unnecessary default values. +* api-change:``firehose``: [``botocore``] Allow support for Snowflake as a Kinesis Data Firehose delivery destination. +* api-change:``sagemaker-featurestore-runtime``: [``botocore``] Increase BatchGetRecord limits from 10 items to 100 items + + 1.34.21 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index cb90d0523e..ad8d40d2ab 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.21' +__version__ = '1.34.22' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 01ef440f61..88a4049c67 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.21,<1.35.0 + botocore>=1.34.22,<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 bb53fb35c5..4816081b15 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.21,<1.35.0', + 'botocore>=1.34.22,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]