From ab29b5e17ef2e8e848ecabb032a2c56cc8f45f7f Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 23 Aug 2022 18:10:20 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-rds-95575.json | 5 +++++ .changes/next-release/api-change-ssoadmin-11129.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-rds-95575.json create mode 100644 .changes/next-release/api-change-ssoadmin-11129.json diff --git a/.changes/next-release/api-change-rds-95575.json b/.changes/next-release/api-change-rds-95575.json new file mode 100644 index 0000000000..164cbb12bf --- /dev/null +++ b/.changes/next-release/api-change-rds-95575.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``rds``", + "description": "[``botocore``] RDS for Oracle supports Oracle Data Guard switchover and read replica backups." +} diff --git a/.changes/next-release/api-change-ssoadmin-11129.json b/.changes/next-release/api-change-ssoadmin-11129.json new file mode 100644 index 0000000000..8cf0271e87 --- /dev/null +++ b/.changes/next-release/api-change-ssoadmin-11129.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``sso-admin``", + "description": "[``botocore``] Documentation updates to reflect service rename - AWS IAM Identity Center (successor to AWS Single Sign-On)" +} From 1480e058b9f58067a507bb94217baf560e55273a Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 23 Aug 2022 18:10:21 +0000 Subject: [PATCH 2/2] Bumping version to 1.24.58 --- .changes/1.24.58.json | 12 ++++++++++++ .changes/next-release/api-change-rds-95575.json | 5 ----- .changes/next-release/api-change-ssoadmin-11129.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.24.58.json delete mode 100644 .changes/next-release/api-change-rds-95575.json delete mode 100644 .changes/next-release/api-change-ssoadmin-11129.json diff --git a/.changes/1.24.58.json b/.changes/1.24.58.json new file mode 100644 index 0000000000..b81c4c8bbf --- /dev/null +++ b/.changes/1.24.58.json @@ -0,0 +1,12 @@ +[ + { + "category": "``rds``", + "description": "[``botocore``] RDS for Oracle supports Oracle Data Guard switchover and read replica backups.", + "type": "api-change" + }, + { + "category": "``sso-admin``", + "description": "[``botocore``] Documentation updates to reflect service rename - AWS IAM Identity Center (successor to AWS Single Sign-On)", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-rds-95575.json b/.changes/next-release/api-change-rds-95575.json deleted file mode 100644 index 164cbb12bf..0000000000 --- a/.changes/next-release/api-change-rds-95575.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``rds``", - "description": "[``botocore``] RDS for Oracle supports Oracle Data Guard switchover and read replica backups." -} diff --git a/.changes/next-release/api-change-ssoadmin-11129.json b/.changes/next-release/api-change-ssoadmin-11129.json deleted file mode 100644 index 8cf0271e87..0000000000 --- a/.changes/next-release/api-change-ssoadmin-11129.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sso-admin``", - "description": "[``botocore``] Documentation updates to reflect service rename - AWS IAM Identity Center (successor to AWS Single Sign-On)" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4ac1e04d18..c9db585f1a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.24.58 +======= + +* api-change:``rds``: [``botocore``] RDS for Oracle supports Oracle Data Guard switchover and read replica backups. +* api-change:``sso-admin``: [``botocore``] Documentation updates to reflect service rename - AWS IAM Identity Center (successor to AWS Single Sign-On) + + 1.24.57 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 98a627aeef..c478b83b3c 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.57' +__version__ = '1.24.58' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 184176d932..e37b6de154 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.27.57,<1.28.0 + botocore>=1.27.58,<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 19e8e01e98..71cae84cac 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.27.57,<1.28.0', + 'botocore>=1.27.58,<1.28.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]