From 76a599bba48b24969a984ee97f026f4c033ed1d9 Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Fri, 24 Sep 2021 14:17:23 -0700 Subject: [PATCH 1/3] Add support for Python 3.10 (#3009) --- .github/workflows/run-tests.yml | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 5f51b5a496..371eb3c45a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] os: [ubuntu-latest, macOS-latest, windows-latest ] steps: diff --git a/setup.py b/setup.py index af96de63f4..40480a9f2d 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ def get_version(): 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], project_urls={ 'Documentation': 'https://boto3.amazonaws.com/v1/documentation/api/latest/index.html', diff --git a/tox.ini b/tox.ini index b6c4008ed0..8f814f19bd 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36,py37,py38,py39 +envlist = py36,py37,py38,py39,py310 # Comment to build sdist and install into virtualenv # This is helpful to test installation but takes extra time From 6a5bac3bde7ef2349db9f3f7b08743cfa10f1665 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 27 Sep 2021 18:06:32 +0000 Subject: [PATCH 2/3] Add changelog entries from botocore --- .changes/next-release/api-change-appintegrations-32718.json | 5 +++++ .changes/next-release/api-change-connect-32174.json | 5 +++++ .changes/next-release/api-change-elbv2-90551.json | 5 +++++ .changes/next-release/api-change-pinpoint-64314.json | 5 +++++ .changes/next-release/api-change-voiceid-71196.json | 5 +++++ .changes/next-release/api-change-wisdom-84307.json | 5 +++++ 6 files changed, 30 insertions(+) create mode 100644 .changes/next-release/api-change-appintegrations-32718.json create mode 100644 .changes/next-release/api-change-connect-32174.json create mode 100644 .changes/next-release/api-change-elbv2-90551.json create mode 100644 .changes/next-release/api-change-pinpoint-64314.json create mode 100644 .changes/next-release/api-change-voiceid-71196.json create mode 100644 .changes/next-release/api-change-wisdom-84307.json diff --git a/.changes/next-release/api-change-appintegrations-32718.json b/.changes/next-release/api-change-appintegrations-32718.json new file mode 100644 index 0000000000..f6330743f7 --- /dev/null +++ b/.changes/next-release/api-change-appintegrations-32718.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``appintegrations``", + "description": "[``botocore``] The Amazon AppIntegrations service enables you to configure and reuse connections to external applications." +} diff --git a/.changes/next-release/api-change-connect-32174.json b/.changes/next-release/api-change-connect-32174.json new file mode 100644 index 0000000000..af15fb7f0d --- /dev/null +++ b/.changes/next-release/api-change-connect-32174.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``connect``", + "description": "[``botocore``] This release updates a set of APIs: CreateIntegrationAssociation, ListIntegrationAssociations, CreateUseCase, and StartOutboundVoiceContact. You can use it to create integrations with Amazon Pinpoint for the Amazon Connect Campaigns use case, Amazon Connect Voice ID, and Amazon Connect Wisdom." +} diff --git a/.changes/next-release/api-change-elbv2-90551.json b/.changes/next-release/api-change-elbv2-90551.json new file mode 100644 index 0000000000..aaded39a44 --- /dev/null +++ b/.changes/next-release/api-change-elbv2-90551.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``elbv2``", + "description": "[``botocore``] Update elbv2 client to latest version" +} diff --git a/.changes/next-release/api-change-pinpoint-64314.json b/.changes/next-release/api-change-pinpoint-64314.json new file mode 100644 index 0000000000..a90fcffb22 --- /dev/null +++ b/.changes/next-release/api-change-pinpoint-64314.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``pinpoint``", + "description": "[``botocore``] Added support for journey with contact center activity" +} diff --git a/.changes/next-release/api-change-voiceid-71196.json b/.changes/next-release/api-change-voiceid-71196.json new file mode 100644 index 0000000000..cae6e34d6b --- /dev/null +++ b/.changes/next-release/api-change-voiceid-71196.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``voice-id``", + "description": "[``botocore``] Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect." +} diff --git a/.changes/next-release/api-change-wisdom-84307.json b/.changes/next-release/api-change-wisdom-84307.json new file mode 100644 index 0000000000..956e37b62a --- /dev/null +++ b/.changes/next-release/api-change-wisdom-84307.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``wisdom``", + "description": "[``botocore``] Released Amazon Connect Wisdom, a feature of Amazon Connect, which provides real-time recommendations and search functionality in general availability (GA). For more information, see https://docs.aws.amazon.com/wisdom/latest/APIReference/Welcome.html." +} From db3460e194a036453e991e79862544efb5f477e9 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 27 Sep 2021 18:06:33 +0000 Subject: [PATCH 3/3] Bumping version to 1.18.49 --- .changes/1.18.49.json | 32 +++++++++++++++++++ .../api-change-appintegrations-32718.json | 5 --- .../api-change-connect-32174.json | 5 --- .../next-release/api-change-elbv2-90551.json | 5 --- .../api-change-pinpoint-64314.json | 5 --- .../api-change-voiceid-71196.json | 5 --- .../next-release/api-change-wisdom-84307.json | 5 --- CHANGELOG.rst | 11 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 11 files changed, 46 insertions(+), 33 deletions(-) create mode 100644 .changes/1.18.49.json delete mode 100644 .changes/next-release/api-change-appintegrations-32718.json delete mode 100644 .changes/next-release/api-change-connect-32174.json delete mode 100644 .changes/next-release/api-change-elbv2-90551.json delete mode 100644 .changes/next-release/api-change-pinpoint-64314.json delete mode 100644 .changes/next-release/api-change-voiceid-71196.json delete mode 100644 .changes/next-release/api-change-wisdom-84307.json diff --git a/.changes/1.18.49.json b/.changes/1.18.49.json new file mode 100644 index 0000000000..0bcc1ab876 --- /dev/null +++ b/.changes/1.18.49.json @@ -0,0 +1,32 @@ +[ + { + "category": "``appintegrations``", + "description": "[``botocore``] The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.", + "type": "api-change" + }, + { + "category": "``wisdom``", + "description": "[``botocore``] Released Amazon Connect Wisdom, a feature of Amazon Connect, which provides real-time recommendations and search functionality in general availability (GA). For more information, see https://docs.aws.amazon.com/wisdom/latest/APIReference/Welcome.html.", + "type": "api-change" + }, + { + "category": "``pinpoint``", + "description": "[``botocore``] Added support for journey with contact center activity", + "type": "api-change" + }, + { + "category": "``voice-id``", + "description": "[``botocore``] Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] This release updates a set of APIs: CreateIntegrationAssociation, ListIntegrationAssociations, CreateUseCase, and StartOutboundVoiceContact. You can use it to create integrations with Amazon Pinpoint for the Amazon Connect Campaigns use case, Amazon Connect Voice ID, and Amazon Connect Wisdom.", + "type": "api-change" + }, + { + "category": "``elbv2``", + "description": "[``botocore``] Update elbv2 client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-appintegrations-32718.json b/.changes/next-release/api-change-appintegrations-32718.json deleted file mode 100644 index f6330743f7..0000000000 --- a/.changes/next-release/api-change-appintegrations-32718.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``appintegrations``", - "description": "[``botocore``] The Amazon AppIntegrations service enables you to configure and reuse connections to external applications." -} diff --git a/.changes/next-release/api-change-connect-32174.json b/.changes/next-release/api-change-connect-32174.json deleted file mode 100644 index af15fb7f0d..0000000000 --- a/.changes/next-release/api-change-connect-32174.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect``", - "description": "[``botocore``] This release updates a set of APIs: CreateIntegrationAssociation, ListIntegrationAssociations, CreateUseCase, and StartOutboundVoiceContact. You can use it to create integrations with Amazon Pinpoint for the Amazon Connect Campaigns use case, Amazon Connect Voice ID, and Amazon Connect Wisdom." -} diff --git a/.changes/next-release/api-change-elbv2-90551.json b/.changes/next-release/api-change-elbv2-90551.json deleted file mode 100644 index aaded39a44..0000000000 --- a/.changes/next-release/api-change-elbv2-90551.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``elbv2``", - "description": "[``botocore``] Update elbv2 client to latest version" -} diff --git a/.changes/next-release/api-change-pinpoint-64314.json b/.changes/next-release/api-change-pinpoint-64314.json deleted file mode 100644 index a90fcffb22..0000000000 --- a/.changes/next-release/api-change-pinpoint-64314.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``pinpoint``", - "description": "[``botocore``] Added support for journey with contact center activity" -} diff --git a/.changes/next-release/api-change-voiceid-71196.json b/.changes/next-release/api-change-voiceid-71196.json deleted file mode 100644 index cae6e34d6b..0000000000 --- a/.changes/next-release/api-change-voiceid-71196.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``voice-id``", - "description": "[``botocore``] Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect." -} diff --git a/.changes/next-release/api-change-wisdom-84307.json b/.changes/next-release/api-change-wisdom-84307.json deleted file mode 100644 index 956e37b62a..0000000000 --- a/.changes/next-release/api-change-wisdom-84307.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``wisdom``", - "description": "[``botocore``] Released Amazon Connect Wisdom, a feature of Amazon Connect, which provides real-time recommendations and search functionality in general availability (GA). For more information, see https://docs.aws.amazon.com/wisdom/latest/APIReference/Welcome.html." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 75e01f4339..503d73fb22 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.18.49 +======= + +* api-change:``appintegrations``: [``botocore``] The Amazon AppIntegrations service enables you to configure and reuse connections to external applications. +* api-change:``wisdom``: [``botocore``] Released Amazon Connect Wisdom, a feature of Amazon Connect, which provides real-time recommendations and search functionality in general availability (GA). For more information, see https://docs.aws.amazon.com/wisdom/latest/APIReference/Welcome.html. +* api-change:``pinpoint``: [``botocore``] Added support for journey with contact center activity +* api-change:``voice-id``: [``botocore``] Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect. +* api-change:``connect``: [``botocore``] This release updates a set of APIs: CreateIntegrationAssociation, ListIntegrationAssociations, CreateUseCase, and StartOutboundVoiceContact. You can use it to create integrations with Amazon Pinpoint for the Amazon Connect Campaigns use case, Amazon Connect Voice ID, and Amazon Connect Wisdom. +* api-change:``elbv2``: [``botocore``] Update elbv2 client to latest version + + 1.18.48 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 16561145ae..b244903762 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.18.48' +__version__ = '1.18.49' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 68da8c5c32..619dbdc14a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.21.48,<1.22.0 + botocore>=1.21.49,<1.22.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index 40480a9f2d..a6da89be7c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.21.48,<1.22.0', + 'botocore>=1.21.49,<1.22.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]