diff --git a/.changes/1.26.83.json b/.changes/1.26.83.json new file mode 100644 index 0000000000..0cd5ff14c6 --- /dev/null +++ b/.changes/1.26.83.json @@ -0,0 +1,32 @@ +[ + { + "category": "``iot``", + "description": "[``botocore``] A recurring maintenance window is an optional configuration used for rolling out the job document to all devices in the target group observing a predetermined start time, duration, and frequency that the maintenance window occurs.", + "type": "api-change" + }, + { + "category": "``migrationhubstrategy``", + "description": "[``botocore``] This release updates the File Import API to allow importing servers already discovered by customers with reduced pre-requisites.", + "type": "api-change" + }, + { + "category": "``organizations``", + "description": "[``botocore``] This release introduces a new reason code, ACCOUNT_CREATION_NOT_COMPLETE, to ConstraintViolationException in CreateOrganization API.", + "type": "api-change" + }, + { + "category": "``pi``", + "description": "[``botocore``] This release adds a new field PeriodAlignment to allow the customer specifying the returned timestamp of time periods to be either the start or end time.", + "type": "api-change" + }, + { + "category": "``pipes``", + "description": "[``botocore``] This release fixes some input parameter range and patterns.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Add a new field \"EndpointMetrics\" in SageMaker Inference Recommender \"ListInferenceRecommendationsJobSteps\" API response.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8909d176ee..9afe97f645 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.26.83 +======= + +* api-change:``iot``: [``botocore``] A recurring maintenance window is an optional configuration used for rolling out the job document to all devices in the target group observing a predetermined start time, duration, and frequency that the maintenance window occurs. +* api-change:``migrationhubstrategy``: [``botocore``] This release updates the File Import API to allow importing servers already discovered by customers with reduced pre-requisites. +* api-change:``organizations``: [``botocore``] This release introduces a new reason code, ACCOUNT_CREATION_NOT_COMPLETE, to ConstraintViolationException in CreateOrganization API. +* api-change:``pi``: [``botocore``] This release adds a new field PeriodAlignment to allow the customer specifying the returned timestamp of time periods to be either the start or end time. +* api-change:``pipes``: [``botocore``] This release fixes some input parameter range and patterns. +* api-change:``sagemaker``: [``botocore``] Add a new field "EndpointMetrics" in SageMaker Inference Recommender "ListInferenceRecommendationsJobSteps" API response. + + 1.26.82 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 31394f1e46..0bbe310e2b 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.82' +__version__ = '1.26.83' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index f074ad4d4a..21856d7584 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.82,<1.30.0 + botocore>=1.29.83,<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 6f8afec6d1..552afe8d3a 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.82,<1.30.0', + 'botocore>=1.29.83,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]