diff --git a/.changes/1.28.48.json b/.changes/1.28.48.json new file mode 100644 index 0000000000..d2683ef4c3 --- /dev/null +++ b/.changes/1.28.48.json @@ -0,0 +1,22 @@ +[ + { + "category": "``appstream``", + "description": "[``botocore``] This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance.", + "type": "api-change" + }, + { + "category": "``cloudformation``", + "description": "[``botocore``] Documentation updates for AWS CloudFormation", + "type": "api-change" + }, + { + "category": "``entityresolution``", + "description": "[``botocore``] Changed \"ResolutionTechniques\" and \"MappedInputFields\" in workflow and schema mapping operations to be required fields.", + "type": "api-change" + }, + { + "category": "``lookoutequipment``", + "description": "[``botocore``] This release adds APIs for the new scheduled retraining feature.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-appstream-64609.json b/.changes/next-release/api-change-appstream-64609.json deleted file mode 100644 index f831595e18..0000000000 --- a/.changes/next-release/api-change-appstream-64609.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``appstream``", - "description": "[``botocore``] This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance." -} diff --git a/.changes/next-release/api-change-cloudformation-66124.json b/.changes/next-release/api-change-cloudformation-66124.json deleted file mode 100644 index 3326ab3c85..0000000000 --- a/.changes/next-release/api-change-cloudformation-66124.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cloudformation``", - "description": "[``botocore``] Documentation updates for AWS CloudFormation" -} diff --git a/.changes/next-release/api-change-entityresolution-7247.json b/.changes/next-release/api-change-entityresolution-7247.json deleted file mode 100644 index 9975bff02c..0000000000 --- a/.changes/next-release/api-change-entityresolution-7247.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``entityresolution``", - "description": "[``botocore``] Changed \"ResolutionTechniques\" and \"MappedInputFields\" in workflow and schema mapping operations to be required fields." -} diff --git a/.changes/next-release/api-change-lookoutequipment-4266.json b/.changes/next-release/api-change-lookoutequipment-4266.json deleted file mode 100644 index f46a225056..0000000000 --- a/.changes/next-release/api-change-lookoutequipment-4266.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``lookoutequipment``", - "description": "[``botocore``] This release adds APIs for the new scheduled retraining feature." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d8b9b738a6..e980318687 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.28.48 +======= + +* api-change:``appstream``: [``botocore``] This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance. +* api-change:``cloudformation``: [``botocore``] Documentation updates for AWS CloudFormation +* api-change:``entityresolution``: [``botocore``] Changed "ResolutionTechniques" and "MappedInputFields" in workflow and schema mapping operations to be required fields. +* api-change:``lookoutequipment``: [``botocore``] This release adds APIs for the new scheduled retraining feature. + + 1.28.47 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 51e528d20b..07adabe8ce 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.28.47' +__version__ = '1.28.48' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 217e622e52..1379aeb50d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.47,<1.32.0 + botocore>=1.31.48,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index bd0adffd5e..b25c426b72 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.47,<1.32.0', + 'botocore>=1.31.48,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]