From f2f8247df3cb8dfff1eeb6af58d6d1d9c72c7b3f Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 6 Jan 2025 19:05:38 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .../next-release/api-change-iotsecuretunneling-45076.json | 5 +++++ .changes/next-release/api-change-supplychain-12199.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-iotsecuretunneling-45076.json create mode 100644 .changes/next-release/api-change-supplychain-12199.json diff --git a/.changes/next-release/api-change-iotsecuretunneling-45076.json b/.changes/next-release/api-change-iotsecuretunneling-45076.json new file mode 100644 index 0000000000..6d9503b599 --- /dev/null +++ b/.changes/next-release/api-change-iotsecuretunneling-45076.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``iotsecuretunneling``", + "description": "[``botocore``] Adds dualstack endpoint support for IoT Secure Tunneling" +} diff --git a/.changes/next-release/api-change-supplychain-12199.json b/.changes/next-release/api-change-supplychain-12199.json new file mode 100644 index 0000000000..f96773c449 --- /dev/null +++ b/.changes/next-release/api-change-supplychain-12199.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``supplychain``", + "description": "[``botocore``] Allow vanity DNS domain when creating a new ASC instance" +} From 91c9f91ddc9ba90b33192e4240469282893e0b60 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 6 Jan 2025 19:06:03 +0000 Subject: [PATCH 2/2] Bumping version to 1.35.93 --- .changes/1.35.93.json | 12 ++++++++++++ .../api-change-iotsecuretunneling-45076.json | 5 ----- .../next-release/api-change-supplychain-12199.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.35.93.json delete mode 100644 .changes/next-release/api-change-iotsecuretunneling-45076.json delete mode 100644 .changes/next-release/api-change-supplychain-12199.json diff --git a/.changes/1.35.93.json b/.changes/1.35.93.json new file mode 100644 index 0000000000..9c719845ca --- /dev/null +++ b/.changes/1.35.93.json @@ -0,0 +1,12 @@ +[ + { + "category": "``iotsecuretunneling``", + "description": "[``botocore``] Adds dualstack endpoint support for IoT Secure Tunneling", + "type": "api-change" + }, + { + "category": "``supplychain``", + "description": "[``botocore``] Allow vanity DNS domain when creating a new ASC instance", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-iotsecuretunneling-45076.json b/.changes/next-release/api-change-iotsecuretunneling-45076.json deleted file mode 100644 index 6d9503b599..0000000000 --- a/.changes/next-release/api-change-iotsecuretunneling-45076.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``iotsecuretunneling``", - "description": "[``botocore``] Adds dualstack endpoint support for IoT Secure Tunneling" -} diff --git a/.changes/next-release/api-change-supplychain-12199.json b/.changes/next-release/api-change-supplychain-12199.json deleted file mode 100644 index f96773c449..0000000000 --- a/.changes/next-release/api-change-supplychain-12199.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``supplychain``", - "description": "[``botocore``] Allow vanity DNS domain when creating a new ASC instance" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 86867984ee..2ad6b3c32b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.35.93 +======= + +* api-change:``iotsecuretunneling``: [``botocore``] Adds dualstack endpoint support for IoT Secure Tunneling +* api-change:``supplychain``: [``botocore``] Allow vanity DNS domain when creating a new ASC instance + + 1.35.92 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 01dae00801..1b348e838a 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.35.92' +__version__ = '1.35.93' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index c827178b44..9148a52f15 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.92,<1.36.0 + botocore>=1.35.93,<1.36.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 7b9b114537..2df16d1a0b 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.92,<1.36.0', + 'botocore>=1.35.93,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]