Skip to content

Commit 8205a0f

Browse files
committedJul 29, 2021
Bump version to 2.2.24
·
1 parent b6c0f52 commit 8205a0f

14 files changed

+59
-44
lines changed
 

‎.changes/2.2.24.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[
2+
{
3+
"category": "``iotsitewise``",
4+
"description": "Added support for AWS IoT SiteWise Edge. You can now create an AWS IoT SiteWise gateway that runs on AWS IoT Greengrass V2. With the gateway, you can collect local server and equipment data, process the data, and export the selected data from the edge to the AWS Cloud.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "eks",
9+
"description": "Updated Kubernetes client authentication API version",
10+
"type": "enhancement"
11+
},
12+
{
13+
"category": "``ec2``",
14+
"description": "This release adds support for G4ad xlarge and 2xlarge instances powered by AMD Radeon Pro V520 GPUs and AMD 2nd Generation EPYC processors",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``chime``",
19+
"description": "Adds support for live transcription of meetings with Amazon Transcribe and Amazon Transcribe Medical. The new APIs, StartMeetingTranscription and StopMeetingTranscription, control the generation of user-attributed transcriptions sent to meeting clients via Amazon Chime SDK data messages.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``cloudformation``",
24+
"description": "SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``sso-admin``",
29+
"description": "Documentation updates for arn:aws:trebuchet:::service:v1:03a2216d-1cda-4696-9ece-1387cb6f6952",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``iot``",
34+
"description": "Increase maximum credential duration of role alias to 12 hours.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``savingsplans``",
39+
"description": "Documentation update for valid Savings Plans offering ID pattern",
40+
"type": "api-change"
41+
}
42+
]

‎.changes/next-release/apichange-chime-80292.json

-5
This file was deleted.

‎.changes/next-release/apichange-cloudformation-20950.json

-5
This file was deleted.

‎.changes/next-release/apichange-ec2-56139.json

-5
This file was deleted.

‎.changes/next-release/apichange-iot-8799.json

-5
This file was deleted.

‎.changes/next-release/apichange-iotsitewise-91380.json

-5
This file was deleted.

‎.changes/next-release/apichange-savingsplans-57796.json

-5
This file was deleted.

‎.changes/next-release/apichange-ssoadmin-13067.json

-5
This file was deleted.

‎.changes/next-release/enhancement-eks-42659.json

-5
This file was deleted.

‎CHANGELOG.rst

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
CHANGELOG
33
=========
44

5+
2.2.24
6+
======
7+
8+
* api-change:``iotsitewise``: Added support for AWS IoT SiteWise Edge. You can now create an AWS IoT SiteWise gateway that runs on AWS IoT Greengrass V2. With the gateway, you can collect local server and equipment data, process the data, and export the selected data from the edge to the AWS Cloud.
9+
* enhancement:eks: Updated Kubernetes client authentication API version
10+
* api-change:``ec2``: This release adds support for G4ad xlarge and 2xlarge instances powered by AMD Radeon Pro V520 GPUs and AMD 2nd Generation EPYC processors
11+
* api-change:``chime``: Adds support for live transcription of meetings with Amazon Transcribe and Amazon Transcribe Medical. The new APIs, StartMeetingTranscription and StopMeetingTranscription, control the generation of user-attributed transcriptions sent to meeting clients via Amazon Chime SDK data messages.
12+
* api-change:``cloudformation``: SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature.
13+
* api-change:``sso-admin``: Documentation updates for arn:aws:trebuchet:::service:v1:03a2216d-1cda-4696-9ece-1387cb6f6952
14+
* api-change:``iot``: Increase maximum credential duration of role alias to 12 hours.
15+
* api-change:``savingsplans``: Documentation update for valid Savings Plans offering ID pattern
16+
17+
518
2.2.23
619
======
720

‎awscli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
import os
1919

20-
__version__ = '2.2.23'
20+
__version__ = '2.2.24'
2121

2222
#
2323
# Get our data path to be added to botocore's search path

‎doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
# The short X.Y version.
7272
version = '2.0'
7373
# The full version, including alpha/beta/rc tags.
74-
release = '2.2.23'
74+
release = '2.2.24'
7575

7676
# The language for content autogenerated by Sphinx. Refer to documentation
7777
# for a list of supported languages.

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ universal = 1
44

55
[metadata]
66
requires_dist =
7-
botocore==2.0.0dev131
7+
botocore==2.0.0dev132
88
colorama>=0.2.5,<0.4.4
99
docutils>=0.10,<0.16
1010
cryptography>=3.3.2,<3.4.0

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def find_version(*file_paths):
2424

2525

2626
requires = [
27-
'botocore==2.0.0dev131',
27+
'botocore==2.0.0dev132',
2828
'colorama>=0.2.5,<0.4.4',
2929
'docutils>=0.10,<0.16',
3030
'cryptography>=3.3.2,<3.4.0',

0 commit comments

Comments
 (0)
Please sign in to comment.