Skip to content

Commit 7d87f43

Browse files
Merge branch 'release-1.42.10' into develop
* release-1.42.10: Bumping version to 1.42.10 Update changelog based on model updates
2 parents e9d2f9d + b27c00b commit 7d87f43

File tree

6 files changed

+96
-5
lines changed

6 files changed

+96
-5
lines changed

.changes/1.42.10.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
[
2+
{
3+
"category": "``arc-region-switch``",
4+
"description": "Endpoint rule test and documentation update.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``bcm-recommended-actions``",
9+
"description": "Initial SDK release for AWS Billing and Cost Management Recommended Actions.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``directconnect``",
14+
"description": "Added pagination support for DescribeHostedConnections, DescribeVirtualInterfaces, DescribeConnections, DescribeInterconnects, DescribeLags. Added asnLong support for BGP peer operations which supports a large range.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``dynamodb``",
19+
"description": "This release 1/ Adds support for throttled keys mode for CloudWatch Contributor Insights, 2/ Adds throttling reasons to exceptions across dataplane APIs. 3/ Explicitly models ThrottlingException as a class in statically typed languages. Refer to the launch day blog post for more details.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``ec2``",
24+
"description": "This release adds ModifyInstanceConnectEndpoint API to update configurations on existing EC2 Instance Connect Endpoints and improves IPv6 support through dualstack DNS names for EC2 Instance Connect Endpoints.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``endpoint-rules``",
29+
"description": "Update endpoint-rules command to latest version",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``fsx``",
34+
"description": "Amazon FSx for NetApp ONTAP 2nd generation file systems now support decreasing SSD storage capacity.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``glue``",
39+
"description": "AWS Glue now supports Trusted Identity Propagation.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``guardduty``",
44+
"description": "Added support for entity lists.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``medialive``",
49+
"description": "CMAF Ingest output groups in MediaLive can now accept one additional destination url for single pipeline channels and up to two additional destination urls for standard channels.",
50+
"type": "api-change"
51+
},
52+
{
53+
"category": "``pcs``",
54+
"description": "Updated the regex pattern and description of iamInstanceProfileArn in the CreateComputeNodeGroup and UpdateComputeNodeGroup API actions. Name and path requirements apply to the ARN of the IAM role associated with the instance profile and not the ARN of the instance profile.",
55+
"type": "api-change"
56+
},
57+
{
58+
"category": "``qapps``",
59+
"description": "Documentation update for Amazon Q Apps API Reference",
60+
"type": "api-change"
61+
},
62+
{
63+
"category": "``servicediscovery``",
64+
"description": "Added support for cross account through Id parameter overloading with ARN and allow owner account for some APIs instead of ARN",
65+
"type": "api-change"
66+
},
67+
{
68+
"category": "``workspaces``",
69+
"description": "New APIs introduced to import WorkSpaces BYOL image using a new process that leveraged EC2 Image Builder. WorkSpaces tests and fixes your image's compatibility issues and supports customized VM images.",
70+
"type": "api-change"
71+
}
72+
]

CHANGELOG.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22
CHANGELOG
33
=========
44

5+
1.42.10
6+
=======
7+
8+
* api-change:``arc-region-switch``: Endpoint rule test and documentation update.
9+
* api-change:``bcm-recommended-actions``: Initial SDK release for AWS Billing and Cost Management Recommended Actions.
10+
* api-change:``directconnect``: Added pagination support for DescribeHostedConnections, DescribeVirtualInterfaces, DescribeConnections, DescribeInterconnects, DescribeLags. Added asnLong support for BGP peer operations which supports a large range.
11+
* api-change:``dynamodb``: This release 1/ Adds support for throttled keys mode for CloudWatch Contributor Insights, 2/ Adds throttling reasons to exceptions across dataplane APIs. 3/ Explicitly models ThrottlingException as a class in statically typed languages. Refer to the launch day blog post for more details.
12+
* api-change:``ec2``: This release adds ModifyInstanceConnectEndpoint API to update configurations on existing EC2 Instance Connect Endpoints and improves IPv6 support through dualstack DNS names for EC2 Instance Connect Endpoints.
13+
* api-change:``endpoint-rules``: Update endpoint-rules command to latest version
14+
* api-change:``fsx``: Amazon FSx for NetApp ONTAP 2nd generation file systems now support decreasing SSD storage capacity.
15+
* api-change:``glue``: AWS Glue now supports Trusted Identity Propagation.
16+
* api-change:``guardduty``: Added support for entity lists.
17+
* api-change:``medialive``: CMAF Ingest output groups in MediaLive can now accept one additional destination url for single pipeline channels and up to two additional destination urls for standard channels.
18+
* api-change:``pcs``: Updated the regex pattern and description of iamInstanceProfileArn in the CreateComputeNodeGroup and UpdateComputeNodeGroup API actions. Name and path requirements apply to the ARN of the IAM role associated with the instance profile and not the ARN of the instance profile.
19+
* api-change:``qapps``: Documentation update for Amazon Q Apps API Reference
20+
* api-change:``servicediscovery``: Added support for cross account through Id parameter overloading with ARN and allow owner account for some APIs instead of ARN
21+
* api-change:``workspaces``: New APIs introduced to import WorkSpaces BYOL image using a new process that leveraged EC2 Image Builder. WorkSpaces tests and fixes your image's compatibility issues and supports customized VM images.
22+
23+
524
1.42.9
625
======
726

awscli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import os
2020

21-
__version__ = '1.42.9'
21+
__version__ = '1.42.10'
2222

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

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '1.42'
53+
version = '1.42.'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.42.9'
55+
release = '1.42.10'
5656

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

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.40.9
6+
botocore==1.40.10
77
docutils>=0.18.1,<=0.19
88
s3transfer>=0.13.0,<0.14.0
99
PyYAML>=3.10,<6.1

setup.py

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

2525

2626
install_requires = [
27-
'botocore==1.40.9',
27+
'botocore==1.40.10',
2828
'docutils>=0.18.1,<=0.19',
2929
's3transfer>=0.13.0,<0.14.0',
3030
'PyYAML>=3.10,<6.1',

0 commit comments

Comments
 (0)