diff --git a/.changes/1.26.133.json b/.changes/1.26.133.json new file mode 100644 index 0000000000..e7096ad24f --- /dev/null +++ b/.changes/1.26.133.json @@ -0,0 +1,52 @@ +[ + { + "category": "endpoints", + "description": "[``botocore``] Include params set in provide-client-param event handlers in dynamic context params for endpoint resolution.", + "type": "bugfix" + }, + { + "category": "``connect``", + "description": "[``botocore``] This release updates GetMetricDataV2 API, to support metric data up-to last 35 days", + "type": "api-change" + }, + { + "category": "``elasticache``", + "description": "[``botocore``] Added support to modify the cluster mode configuration for the existing ElastiCache ReplicationGroups. Customers can now modify the configuration from cluster mode disabled to cluster mode enabled.", + "type": "api-change" + }, + { + "category": "``es``", + "description": "[``botocore``] This release fixes DescribePackages API error with null filter value parameter.", + "type": "api-change" + }, + { + "category": "``health``", + "description": "[``botocore``] Add support for regional endpoints", + "type": "api-change" + }, + { + "category": "``ivs-realtime``", + "description": "[``botocore``] Add methods for inspecting and debugging stages: ListStageSessions, GetStageSession, ListParticipants, GetParticipant, and ListParticipantEvents.", + "type": "api-change" + }, + { + "category": "``omics``", + "description": "[``botocore``] This release provides support for Ready2Run and GPU workflows, an improved read set filter, the direct upload of read sets into Omics Storage, and annotation parsing for analytics stores.", + "type": "api-change" + }, + { + "category": "``opensearch``", + "description": "[``botocore``] This release fixes DescribePackages API error with null filter value parameter.", + "type": "api-change" + }, + { + "category": "``route53resolver``", + "description": "[``botocore``] Update FIPS endpoints for GovCloud (US) regions in SDK.", + "type": "api-change" + }, + { + "category": "``support``", + "description": "[``botocore``] This release adds 2 new Support APIs, DescribeCreateCaseOptions and DescribeSupportedLanguages. You can use these new APIs to get available support languages.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9d010c5b51..eccb8a4678 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,21 @@ CHANGELOG ========= +1.26.133 +======== + +* bugfix:endpoints: [``botocore``] Include params set in provide-client-param event handlers in dynamic context params for endpoint resolution. +* api-change:``connect``: [``botocore``] This release updates GetMetricDataV2 API, to support metric data up-to last 35 days +* api-change:``elasticache``: [``botocore``] Added support to modify the cluster mode configuration for the existing ElastiCache ReplicationGroups. Customers can now modify the configuration from cluster mode disabled to cluster mode enabled. +* api-change:``es``: [``botocore``] This release fixes DescribePackages API error with null filter value parameter. +* api-change:``health``: [``botocore``] Add support for regional endpoints +* api-change:``ivs-realtime``: [``botocore``] Add methods for inspecting and debugging stages: ListStageSessions, GetStageSession, ListParticipants, GetParticipant, and ListParticipantEvents. +* api-change:``omics``: [``botocore``] This release provides support for Ready2Run and GPU workflows, an improved read set filter, the direct upload of read sets into Omics Storage, and annotation parsing for analytics stores. +* api-change:``opensearch``: [``botocore``] This release fixes DescribePackages API error with null filter value parameter. +* api-change:``route53resolver``: [``botocore``] Update FIPS endpoints for GovCloud (US) regions in SDK. +* api-change:``support``: [``botocore``] This release adds 2 new Support APIs, DescribeCreateCaseOptions and DescribeSupportedLanguages. You can use these new APIs to get available support languages. + + 1.26.132 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 85c442e18b..0db355d560 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.132' +__version__ = '1.26.133' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 9f8e0644a0..555c980e27 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.132,<1.30.0 + botocore>=1.29.133,<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 ee7a7c8fc7..46f5361cd1 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.132,<1.30.0', + 'botocore>=1.29.133,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]