diff --git a/.changes/1.17.111.json b/.changes/1.17.111.json new file mode 100644 index 0000000000..22ffd598aa --- /dev/null +++ b/.changes/1.17.111.json @@ -0,0 +1,32 @@ +[ + { + "category": "``amplifybackend``", + "description": "[``botocore``] Added Sign in with Apple OAuth provider.", + "type": "api-change" + }, + { + "category": "``redshift``", + "description": "[``botocore``] Release new APIs to support new Redshift feature - Authentication Profile", + "type": "api-change" + }, + { + "category": "``ssm``", + "description": "[``botocore``] Changes to OpsCenter APIs to support a new feature, operational insights.", + "type": "api-change" + }, + { + "category": "``lex-models``", + "description": "[``botocore``] Customers can now migrate bots built with Lex V1 APIs to V2 APIs. This release adds APIs to initiate and manage the migration of a bot.", + "type": "api-change" + }, + { + "category": "``directconnect``", + "description": "[``botocore``] This release adds a new filed named awsLogicalDeviceId that it displays the AWS Direct Connect endpoint which terminates a physical connection's BGP Sessions.", + "type": "api-change" + }, + { + "category": "``pricing``", + "description": "[``botocore``] Documentation updates for api.pricing", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fecc7ab335..31bad2546c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.17.111 +======== + +* api-change:``amplifybackend``: [``botocore``] Added Sign in with Apple OAuth provider. +* api-change:``redshift``: [``botocore``] Release new APIs to support new Redshift feature - Authentication Profile +* api-change:``ssm``: [``botocore``] Changes to OpsCenter APIs to support a new feature, operational insights. +* api-change:``lex-models``: [``botocore``] Customers can now migrate bots built with Lex V1 APIs to V2 APIs. This release adds APIs to initiate and manage the migration of a bot. +* api-change:``directconnect``: [``botocore``] This release adds a new filed named awsLogicalDeviceId that it displays the AWS Direct Connect endpoint which terminates a physical connection's BGP Sessions. +* api-change:``pricing``: [``botocore``] Documentation updates for api.pricing + + 1.17.110 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index cd2cd5536f..31b04ffc48 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.110' +__version__ = '1.17.111' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 85ce73afb5..c06965ea25 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.110,<1.21.0 + botocore>=1.20.111,<1.21.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.4.0,<0.5.0 diff --git a/setup.py b/setup.py index daded09e12..bd9dbfa4d7 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.110,<1.21.0', + 'botocore>=1.20.111,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.4.0,<0.5.0' ]