From 92062bf2d40a5a326a81be36665bb566090b14fb Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Mon, 11 Nov 2024 07:35:20 -0800 Subject: [PATCH 1/3] Remove macOS fallback now that setup-python issue is resolved (#4340) --- .github/workflows/run-crt-test.yml | 9 --------- .github/workflows/run-tests.yml | 9 --------- 2 files changed, 18 deletions(-) diff --git a/.github/workflows/run-crt-test.yml b/.github/workflows/run-crt-test.yml index 9fc346ffe1..ee2d0ca9ac 100644 --- a/.github/workflows/run-crt-test.yml +++ b/.github/workflows/run-crt-test.yml @@ -16,15 +16,6 @@ jobs: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] os: [ubuntu-latest, macOS-latest, windows-latest] - # Python 3.8 and 3.9 do not run on m1 hardware which is now standard for - # macOS-latest. - # https://github.com/actions/setup-python/issues/696#issuecomment-1637587760 - exclude: - - { python-version: "3.8", os: "macos-latest" } - - { python-version: "3.9", os: "macos-latest" } - include: - - { python-version: "3.8", os: "macos-13" } - - { python-version: "3.9", os: "macos-13" } steps: - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index daa992c9c1..07fb6ef4e2 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,15 +17,6 @@ jobs: matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] os: [ubuntu-latest, macOS-latest, windows-latest] - # Python 3.8 and 3.9 do not run on m1 hardware which is now standard for - # macOS-latest. - # https://github.com/actions/setup-python/issues/696#issuecomment-1637587760 - exclude: - - { python-version: "3.8", os: "macos-latest" } - - { python-version: "3.9", os: "macos-latest" } - include: - - { python-version: "3.8", os: "macos-13" } - - { python-version: "3.9", os: "macos-13" } steps: - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 From a9644019c58f0a0e68516a243341301bfced4a8d Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 11 Nov 2024 19:06:33 +0000 Subject: [PATCH 2/3] Add changelog entries from botocore --- .changes/next-release/api-change-cloudfront-57602.json | 5 +++++ .changes/next-release/api-change-inspector2-50915.json | 5 +++++ .changes/next-release/api-change-lambda-39055.json | 5 +++++ .changes/next-release/api-change-opensearch-5290.json | 5 +++++ .changes/next-release/api-change-outposts-76485.json | 5 +++++ 5 files changed, 25 insertions(+) create mode 100644 .changes/next-release/api-change-cloudfront-57602.json create mode 100644 .changes/next-release/api-change-inspector2-50915.json create mode 100644 .changes/next-release/api-change-lambda-39055.json create mode 100644 .changes/next-release/api-change-opensearch-5290.json create mode 100644 .changes/next-release/api-change-outposts-76485.json diff --git a/.changes/next-release/api-change-cloudfront-57602.json b/.changes/next-release/api-change-cloudfront-57602.json new file mode 100644 index 0000000000..14194232f9 --- /dev/null +++ b/.changes/next-release/api-change-cloudfront-57602.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``cloudfront``", + "description": "[``botocore``] No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged." +} diff --git a/.changes/next-release/api-change-inspector2-50915.json b/.changes/next-release/api-change-inspector2-50915.json new file mode 100644 index 0000000000..143341b576 --- /dev/null +++ b/.changes/next-release/api-change-inspector2-50915.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``inspector2``", + "description": "[``botocore``] Adds support for filePath filter." +} diff --git a/.changes/next-release/api-change-lambda-39055.json b/.changes/next-release/api-change-lambda-39055.json new file mode 100644 index 0000000000..ff5c0b9eb5 --- /dev/null +++ b/.changes/next-release/api-change-lambda-39055.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``lambda``", + "description": "[``botocore``] Add Python 3.13 (python3.13) support to AWS Lambda" +} diff --git a/.changes/next-release/api-change-opensearch-5290.json b/.changes/next-release/api-change-opensearch-5290.json new file mode 100644 index 0000000000..e3f0e1d6dd --- /dev/null +++ b/.changes/next-release/api-change-opensearch-5290.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``opensearch``", + "description": "[``botocore``] Adds Support for new AssociatePackages and DissociatePackages API in Amazon OpenSearch Service that allows association and dissociation operations to be carried out on multiple packages at the same time." +} diff --git a/.changes/next-release/api-change-outposts-76485.json b/.changes/next-release/api-change-outposts-76485.json new file mode 100644 index 0000000000..d1ab6ad511 --- /dev/null +++ b/.changes/next-release/api-change-outposts-76485.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``outposts``", + "description": "[``botocore``] This release updates StartCapacityTask to allow an active Outpost to be modified. It also adds a new API to list all running EC2 instances on the Outpost." +} From 7a9111b00bf13248d93c7b3ef31dd4a81bc218fd Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 11 Nov 2024 19:06:59 +0000 Subject: [PATCH 3/3] Bumping version to 1.35.58 --- .changes/1.35.58.json | 27 +++++++++++++++++++ .../api-change-cloudfront-57602.json | 5 ---- .../api-change-inspector2-50915.json | 5 ---- .../next-release/api-change-lambda-39055.json | 5 ---- .../api-change-opensearch-5290.json | 5 ---- .../api-change-outposts-76485.json | 5 ---- CHANGELOG.rst | 10 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 10 files changed, 40 insertions(+), 28 deletions(-) create mode 100644 .changes/1.35.58.json delete mode 100644 .changes/next-release/api-change-cloudfront-57602.json delete mode 100644 .changes/next-release/api-change-inspector2-50915.json delete mode 100644 .changes/next-release/api-change-lambda-39055.json delete mode 100644 .changes/next-release/api-change-opensearch-5290.json delete mode 100644 .changes/next-release/api-change-outposts-76485.json diff --git a/.changes/1.35.58.json b/.changes/1.35.58.json new file mode 100644 index 0000000000..c070b586d7 --- /dev/null +++ b/.changes/1.35.58.json @@ -0,0 +1,27 @@ +[ + { + "category": "``cloudfront``", + "description": "[``botocore``] No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.", + "type": "api-change" + }, + { + "category": "``inspector2``", + "description": "[``botocore``] Adds support for filePath filter.", + "type": "api-change" + }, + { + "category": "``lambda``", + "description": "[``botocore``] Add Python 3.13 (python3.13) support to AWS Lambda", + "type": "api-change" + }, + { + "category": "``opensearch``", + "description": "[``botocore``] Adds Support for new AssociatePackages and DissociatePackages API in Amazon OpenSearch Service that allows association and dissociation operations to be carried out on multiple packages at the same time.", + "type": "api-change" + }, + { + "category": "``outposts``", + "description": "[``botocore``] This release updates StartCapacityTask to allow an active Outpost to be modified. It also adds a new API to list all running EC2 instances on the Outpost.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cloudfront-57602.json b/.changes/next-release/api-change-cloudfront-57602.json deleted file mode 100644 index 14194232f9..0000000000 --- a/.changes/next-release/api-change-cloudfront-57602.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cloudfront``", - "description": "[``botocore``] No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged." -} diff --git a/.changes/next-release/api-change-inspector2-50915.json b/.changes/next-release/api-change-inspector2-50915.json deleted file mode 100644 index 143341b576..0000000000 --- a/.changes/next-release/api-change-inspector2-50915.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``inspector2``", - "description": "[``botocore``] Adds support for filePath filter." -} diff --git a/.changes/next-release/api-change-lambda-39055.json b/.changes/next-release/api-change-lambda-39055.json deleted file mode 100644 index ff5c0b9eb5..0000000000 --- a/.changes/next-release/api-change-lambda-39055.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``lambda``", - "description": "[``botocore``] Add Python 3.13 (python3.13) support to AWS Lambda" -} diff --git a/.changes/next-release/api-change-opensearch-5290.json b/.changes/next-release/api-change-opensearch-5290.json deleted file mode 100644 index e3f0e1d6dd..0000000000 --- a/.changes/next-release/api-change-opensearch-5290.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``opensearch``", - "description": "[``botocore``] Adds Support for new AssociatePackages and DissociatePackages API in Amazon OpenSearch Service that allows association and dissociation operations to be carried out on multiple packages at the same time." -} diff --git a/.changes/next-release/api-change-outposts-76485.json b/.changes/next-release/api-change-outposts-76485.json deleted file mode 100644 index d1ab6ad511..0000000000 --- a/.changes/next-release/api-change-outposts-76485.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``outposts``", - "description": "[``botocore``] This release updates StartCapacityTask to allow an active Outpost to be modified. It also adds a new API to list all running EC2 instances on the Outpost." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 96bc4e8df0..5ee5e39a8c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.35.58 +======= + +* api-change:``cloudfront``: [``botocore``] No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged. +* api-change:``inspector2``: [``botocore``] Adds support for filePath filter. +* api-change:``lambda``: [``botocore``] Add Python 3.13 (python3.13) support to AWS Lambda +* api-change:``opensearch``: [``botocore``] Adds Support for new AssociatePackages and DissociatePackages API in Amazon OpenSearch Service that allows association and dissociation operations to be carried out on multiple packages at the same time. +* api-change:``outposts``: [``botocore``] This release updates StartCapacityTask to allow an active Outpost to be modified. It also adds a new API to list all running EC2 instances on the Outpost. + + 1.35.57 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index dbd31a0a2a..76418611f2 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.57' +__version__ = '1.35.58' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index c212e75df6..451dbd6290 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.57,<1.36.0 + botocore>=1.35.58,<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 2d5c7882b0..6411a396de 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.57,<1.36.0', + 'botocore>=1.35.58,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]