diff --git a/.changes/1.24.73.json b/.changes/1.24.73.json new file mode 100644 index 0000000000..ed96d8890c --- /dev/null +++ b/.changes/1.24.73.json @@ -0,0 +1,12 @@ +[ + { + "category": "``amplifyuibuilder``", + "description": "[``botocore``] Amplify Studio UIBuilder is introducing forms functionality. Forms can be configured from Data Store models, JSON, or from scratch. These forms can then be generated in your project and used like any other React components.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] This update introduces API operations to manage and create local gateway route tables, CoIP pools, and VIF group associations.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 78ee391b81..b5d1f62b2b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.24.73 +======= + +* api-change:``amplifyuibuilder``: [``botocore``] Amplify Studio UIBuilder is introducing forms functionality. Forms can be configured from Data Store models, JSON, or from scratch. These forms can then be generated in your project and used like any other React components. +* api-change:``ec2``: [``botocore``] This update introduces API operations to manage and create local gateway route tables, CoIP pools, and VIF group associations. + + 1.24.72 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index fe062ad71a..0fdd94689d 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.24.72' +__version__ = '1.24.73' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index d852263423..ed4233d7be 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.27.72,<1.28.0 + botocore>=1.27.73,<1.28.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index f7b8011579..51687f59a8 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.27.72,<1.28.0', + 'botocore>=1.27.73,<1.28.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]