From 4288c2ad58c47936e5523cff580157db636500a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 14:31:35 +0000 Subject: [PATCH 1/5] Bump aws-actions/stale-issue-cleanup Bumps [aws-actions/stale-issue-cleanup](https://github.com/aws-actions/stale-issue-cleanup) from 389be0117d7661840b887276b5da1cc6ddf95c8a to 2017b87caa8e25014362d434a980d60fa758f3af. - [Release notes](https://github.com/aws-actions/stale-issue-cleanup/releases) - [Commits](https://github.com/aws-actions/stale-issue-cleanup/compare/389be0117d7661840b887276b5da1cc6ddf95c8a...2017b87caa8e25014362d434a980d60fa758f3af) --- updated-dependencies: - dependency-name: aws-actions/stale-issue-cleanup dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/stale_issue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale_issue.yml b/.github/workflows/stale_issue.yml index 840f3bd20f..24a437959a 100644 --- a/.github/workflows/stale_issue.yml +++ b/.github/workflows/stale_issue.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest name: Stale issue job steps: - - uses: aws-actions/stale-issue-cleanup@389be0117d7661840b887276b5da1cc6ddf95c8a + - uses: aws-actions/stale-issue-cleanup@2017b87caa8e25014362d434a980d60fa758f3af with: issue-types: issues stale-issue-message: Greetings! It looks like this issue hasn’t been From 2d982362d08bba60a718044114b2599ec7b5a1ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:59:17 +0000 Subject: [PATCH 2/5] Bump certifi from 2024.6.2 to 2024.7.4 Bumps [certifi](https://github.com/certifi/python-certifi) from 2024.6.2 to 2024.7.4. - [Commits](https://github.com/certifi/python-certifi/compare/2024.06.02...2024.07.04) --- updated-dependencies: - dependency-name: certifi dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements-docs-lock.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements-docs-lock.txt b/requirements-docs-lock.txt index ab6d7da8d4..26ae627b4d 100644 --- a/requirements-docs-lock.txt +++ b/requirements-docs-lock.txt @@ -16,9 +16,9 @@ beautifulsoup4==4.12.3 \ --hash=sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051 \ --hash=sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed # via furo -certifi==2024.6.2 \ - --hash=sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516 \ - --hash=sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56 +certifi==2024.7.4 \ + --hash=sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b \ + --hash=sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90 # via requests charset-normalizer==3.3.2 \ --hash=sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027 \ From 38d6688bd37d3e50c25c3b9587e20b5baeb0228c Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Mon, 22 Jul 2024 14:14:19 -0700 Subject: [PATCH 3/5] Updating contributing guide (#4215) --- CONTRIBUTING.rst | 15 ++++++--------- setup.cfg | 8 -------- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 3e9bae73e6..e534516c82 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -40,10 +40,11 @@ ideal report includes: Codestyle --------- -This project uses flake8 to enforce codestyle requirements. We've codified this -process using a tool called `pre-commit `__. pre-commit -allows us to specify a config file with all tools required for code linting, -and surfaces either a git commit hook, or single command, for enforcing these. +This project uses `ruff `__ to enforce +codstyle requirements. We've codified this process using a tool called +`pre-commit `__. pre-commit allows us to specify a +config file with all tools required for code linting, and surfaces either a +git commit hook, or single command, for enforcing these. To validate your PR prior to publishing, you can use the following `installation guide `__ to setup pre-commit. @@ -56,11 +57,7 @@ to automatically perform the codestyle validation: $ pre-commit run This will automatically perform simple updates (such as white space clean up) -and provide a list of any failing flake8 checks. After these are addressed, +and provide a list of any failing checks. After these are addressed, you can commit the changes prior to publishing the PR. These checks are also included in our CI setup under the "Lint" workflow which will provide output on Github for anything missed locally. - -See the `flake8` section of the -`setup.cfg `__ for the -currently enforced rules. diff --git a/setup.cfg b/setup.cfg index 31df55f8b1..5d426dcd84 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,11 +9,3 @@ requires_dist = [options.extras_require] crt = botocore[crt]>=1.21.0,<2.0a0 - -[flake8] -ignore = E203,E501,W503,W504 -exclude = - docs, - boto3/compat.py, - boto3/data, - .changes From 5953105f9e48631769b174ffff528f7e0898853d Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 23 Jul 2024 18:10:16 +0000 Subject: [PATCH 4/5] Add changelog entries from botocore --- .changes/next-release/api-change-appsync-41028.json | 5 +++++ .changes/next-release/api-change-cleanrooms-5965.json | 5 +++++ .changes/next-release/api-change-cleanroomsml-65074.json | 5 +++++ .changes/next-release/api-change-connect-75392.json | 5 +++++ .../next-release/api-change-connectcontactlens-21259.json | 5 +++++ .changes/next-release/api-change-datazone-65572.json | 5 +++++ .changes/next-release/api-change-entityresolution-38687.json | 5 +++++ 7 files changed, 35 insertions(+) create mode 100644 .changes/next-release/api-change-appsync-41028.json create mode 100644 .changes/next-release/api-change-cleanrooms-5965.json create mode 100644 .changes/next-release/api-change-cleanroomsml-65074.json create mode 100644 .changes/next-release/api-change-connect-75392.json create mode 100644 .changes/next-release/api-change-connectcontactlens-21259.json create mode 100644 .changes/next-release/api-change-datazone-65572.json create mode 100644 .changes/next-release/api-change-entityresolution-38687.json diff --git a/.changes/next-release/api-change-appsync-41028.json b/.changes/next-release/api-change-appsync-41028.json new file mode 100644 index 0000000000..53760ffb74 --- /dev/null +++ b/.changes/next-release/api-change-appsync-41028.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``appsync``", + "description": "[``botocore``] Adding support for paginators in AppSync list APIs" +} diff --git a/.changes/next-release/api-change-cleanrooms-5965.json b/.changes/next-release/api-change-cleanrooms-5965.json new file mode 100644 index 0000000000..2c19b5a670 --- /dev/null +++ b/.changes/next-release/api-change-cleanrooms-5965.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``cleanrooms``", + "description": "[``botocore``] This release adds AWS Entity Resolution integration to associate ID namespaces & ID mapping workflow resources as part of ID namespace association and ID mapping table in AWS Clean Rooms. It also introduces a new ID_MAPPING_TABLE analysis rule to manage the protection on ID mapping table." +} diff --git a/.changes/next-release/api-change-cleanroomsml-65074.json b/.changes/next-release/api-change-cleanroomsml-65074.json new file mode 100644 index 0000000000..ddc5217fae --- /dev/null +++ b/.changes/next-release/api-change-cleanroomsml-65074.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``cleanroomsml``", + "description": "[``botocore``] Adds SQL query as the source of seed audience for audience generation job." +} diff --git a/.changes/next-release/api-change-connect-75392.json b/.changes/next-release/api-change-connect-75392.json new file mode 100644 index 0000000000..6ab105bd93 --- /dev/null +++ b/.changes/next-release/api-change-connect-75392.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``connect``", + "description": "[``botocore``] Added PostContactSummary segment type on ListRealTimeContactAnalysisSegmentsV2 API" +} diff --git a/.changes/next-release/api-change-connectcontactlens-21259.json b/.changes/next-release/api-change-connectcontactlens-21259.json new file mode 100644 index 0000000000..c37d78399e --- /dev/null +++ b/.changes/next-release/api-change-connectcontactlens-21259.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``connect-contact-lens``", + "description": "[``botocore``] Added PostContactSummary segment type on ListRealTimeContactAnalysisSegments API" +} diff --git a/.changes/next-release/api-change-datazone-65572.json b/.changes/next-release/api-change-datazone-65572.json new file mode 100644 index 0000000000..9e717e4382 --- /dev/null +++ b/.changes/next-release/api-change-datazone-65572.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``datazone``", + "description": "[``botocore``] This release removes the deprecated dataProductItem field from Search API output." +} diff --git a/.changes/next-release/api-change-entityresolution-38687.json b/.changes/next-release/api-change-entityresolution-38687.json new file mode 100644 index 0000000000..ef016d9bb4 --- /dev/null +++ b/.changes/next-release/api-change-entityresolution-38687.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``entityresolution``", + "description": "[``botocore``] Support First Party ID Mapping" +} From 24baa35b242b45a2a642525353a42ff55043b57c Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 23 Jul 2024 18:11:39 +0000 Subject: [PATCH 5/5] Bumping version to 1.34.147 --- .changes/1.34.147.json | 37 +++++++++++++++++++ .../api-change-appsync-41028.json | 5 --- .../api-change-cleanrooms-5965.json | 5 --- .../api-change-cleanroomsml-65074.json | 5 --- .../api-change-connect-75392.json | 5 --- .../api-change-connectcontactlens-21259.json | 5 --- .../api-change-datazone-65572.json | 5 --- .../api-change-entityresolution-38687.json | 5 --- CHANGELOG.rst | 12 ++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 12 files changed, 52 insertions(+), 38 deletions(-) create mode 100644 .changes/1.34.147.json delete mode 100644 .changes/next-release/api-change-appsync-41028.json delete mode 100644 .changes/next-release/api-change-cleanrooms-5965.json delete mode 100644 .changes/next-release/api-change-cleanroomsml-65074.json delete mode 100644 .changes/next-release/api-change-connect-75392.json delete mode 100644 .changes/next-release/api-change-connectcontactlens-21259.json delete mode 100644 .changes/next-release/api-change-datazone-65572.json delete mode 100644 .changes/next-release/api-change-entityresolution-38687.json diff --git a/.changes/1.34.147.json b/.changes/1.34.147.json new file mode 100644 index 0000000000..027070cf13 --- /dev/null +++ b/.changes/1.34.147.json @@ -0,0 +1,37 @@ +[ + { + "category": "``appsync``", + "description": "[``botocore``] Adding support for paginators in AppSync list APIs", + "type": "api-change" + }, + { + "category": "``cleanrooms``", + "description": "[``botocore``] This release adds AWS Entity Resolution integration to associate ID namespaces & ID mapping workflow resources as part of ID namespace association and ID mapping table in AWS Clean Rooms. It also introduces a new ID_MAPPING_TABLE analysis rule to manage the protection on ID mapping table.", + "type": "api-change" + }, + { + "category": "``cleanroomsml``", + "description": "[``botocore``] Adds SQL query as the source of seed audience for audience generation job.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] Added PostContactSummary segment type on ListRealTimeContactAnalysisSegmentsV2 API", + "type": "api-change" + }, + { + "category": "``connect-contact-lens``", + "description": "[``botocore``] Added PostContactSummary segment type on ListRealTimeContactAnalysisSegments API", + "type": "api-change" + }, + { + "category": "``datazone``", + "description": "[``botocore``] This release removes the deprecated dataProductItem field from Search API output.", + "type": "api-change" + }, + { + "category": "``entityresolution``", + "description": "[``botocore``] Support First Party ID Mapping", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-appsync-41028.json b/.changes/next-release/api-change-appsync-41028.json deleted file mode 100644 index 53760ffb74..0000000000 --- a/.changes/next-release/api-change-appsync-41028.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``appsync``", - "description": "[``botocore``] Adding support for paginators in AppSync list APIs" -} diff --git a/.changes/next-release/api-change-cleanrooms-5965.json b/.changes/next-release/api-change-cleanrooms-5965.json deleted file mode 100644 index 2c19b5a670..0000000000 --- a/.changes/next-release/api-change-cleanrooms-5965.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cleanrooms``", - "description": "[``botocore``] This release adds AWS Entity Resolution integration to associate ID namespaces & ID mapping workflow resources as part of ID namespace association and ID mapping table in AWS Clean Rooms. It also introduces a new ID_MAPPING_TABLE analysis rule to manage the protection on ID mapping table." -} diff --git a/.changes/next-release/api-change-cleanroomsml-65074.json b/.changes/next-release/api-change-cleanroomsml-65074.json deleted file mode 100644 index ddc5217fae..0000000000 --- a/.changes/next-release/api-change-cleanroomsml-65074.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cleanroomsml``", - "description": "[``botocore``] Adds SQL query as the source of seed audience for audience generation job." -} diff --git a/.changes/next-release/api-change-connect-75392.json b/.changes/next-release/api-change-connect-75392.json deleted file mode 100644 index 6ab105bd93..0000000000 --- a/.changes/next-release/api-change-connect-75392.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect``", - "description": "[``botocore``] Added PostContactSummary segment type on ListRealTimeContactAnalysisSegmentsV2 API" -} diff --git a/.changes/next-release/api-change-connectcontactlens-21259.json b/.changes/next-release/api-change-connectcontactlens-21259.json deleted file mode 100644 index c37d78399e..0000000000 --- a/.changes/next-release/api-change-connectcontactlens-21259.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect-contact-lens``", - "description": "[``botocore``] Added PostContactSummary segment type on ListRealTimeContactAnalysisSegments API" -} diff --git a/.changes/next-release/api-change-datazone-65572.json b/.changes/next-release/api-change-datazone-65572.json deleted file mode 100644 index 9e717e4382..0000000000 --- a/.changes/next-release/api-change-datazone-65572.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``datazone``", - "description": "[``botocore``] This release removes the deprecated dataProductItem field from Search API output." -} diff --git a/.changes/next-release/api-change-entityresolution-38687.json b/.changes/next-release/api-change-entityresolution-38687.json deleted file mode 100644 index ef016d9bb4..0000000000 --- a/.changes/next-release/api-change-entityresolution-38687.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``entityresolution``", - "description": "[``botocore``] Support First Party ID Mapping" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e0e5cca561..981a57fdb7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.34.147 +======== + +* api-change:``appsync``: [``botocore``] Adding support for paginators in AppSync list APIs +* api-change:``cleanrooms``: [``botocore``] This release adds AWS Entity Resolution integration to associate ID namespaces & ID mapping workflow resources as part of ID namespace association and ID mapping table in AWS Clean Rooms. It also introduces a new ID_MAPPING_TABLE analysis rule to manage the protection on ID mapping table. +* api-change:``cleanroomsml``: [``botocore``] Adds SQL query as the source of seed audience for audience generation job. +* api-change:``connect``: [``botocore``] Added PostContactSummary segment type on ListRealTimeContactAnalysisSegmentsV2 API +* api-change:``connect-contact-lens``: [``botocore``] Added PostContactSummary segment type on ListRealTimeContactAnalysisSegments API +* api-change:``datazone``: [``botocore``] This release removes the deprecated dataProductItem field from Search API output. +* api-change:``entityresolution``: [``botocore``] Support First Party ID Mapping + + 1.34.146 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 5532e5e53c..b15bd1715e 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.146' +__version__ = '1.34.147' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 5d426dcd84..b24bc8fe03 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.146,<1.35.0 + botocore>=1.34.147,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 01660648b2..5d792a8328 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.34.146,<1.35.0', + 'botocore>=1.34.147,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]