Skip to content

Commit 6c9f051

Browse files
Merge branch 'release-1.29.83'
* release-1.29.83: Bumping version to 1.29.83 Update changelog based on model updates
2 parents cf999cd + 3935fac commit 6c9f051

File tree

6 files changed

+71
-4
lines changed

6 files changed

+71
-4
lines changed

.changes/1.29.83.json

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"category": "``cloudformation``",
4+
"description": "Added new ConcurrencyMode feature for AWS CloudFormation StackSets for faster deployments to target accounts.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``cloudtrail``",
9+
"description": "The Insights in Lake feature lets customers enable CloudTrail Insights on a source CloudTrail Lake event data store and create a destination event data store to collect Insights events based on unusual management event activity in the source event data store.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``comprehend``",
14+
"description": "This release adds support for toxicity detection and prompt safety classification.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``connect``",
19+
"description": "This release adds the ability to integrate customer lambda functions with Connect attachments for scanning and updates the ListIntegrationAssociations API to support filtering on IntegrationArn.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``ec2``",
24+
"description": "AWS EBS now supports Block Public Access for EBS Snapshots. This release introduces the EnableSnapshotBlockPublicAccess, DisableSnapshotBlockPublicAccess and GetSnapshotBlockPublicAccessState APIs to manage account-level public access settings for EBS Snapshots in an AWS Region.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``eks``",
29+
"description": "Adding EKS Anywhere subscription related operations.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``lambda``",
34+
"description": "Add Custom runtime on Amazon Linux 2023 (provided.al2023) support to AWS Lambda.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``logs``",
39+
"description": "Update to support new APIs for delivery of logs from AWS services.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``omics``",
44+
"description": "Support UBAM filetype for Omics Storage and make referenceArn optional",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``endpoint-rules``",
49+
"description": "Update endpoint-rules command to latest version",
50+
"type": "api-change"
51+
}
52+
]

CHANGELOG.rst

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

5+
1.29.83
6+
=======
7+
8+
* api-change:``cloudformation``: Added new ConcurrencyMode feature for AWS CloudFormation StackSets for faster deployments to target accounts.
9+
* api-change:``cloudtrail``: The Insights in Lake feature lets customers enable CloudTrail Insights on a source CloudTrail Lake event data store and create a destination event data store to collect Insights events based on unusual management event activity in the source event data store.
10+
* api-change:``comprehend``: This release adds support for toxicity detection and prompt safety classification.
11+
* api-change:``connect``: This release adds the ability to integrate customer lambda functions with Connect attachments for scanning and updates the ListIntegrationAssociations API to support filtering on IntegrationArn.
12+
* api-change:``ec2``: AWS EBS now supports Block Public Access for EBS Snapshots. This release introduces the EnableSnapshotBlockPublicAccess, DisableSnapshotBlockPublicAccess and GetSnapshotBlockPublicAccessState APIs to manage account-level public access settings for EBS Snapshots in an AWS Region.
13+
* api-change:``eks``: Adding EKS Anywhere subscription related operations.
14+
* api-change:``lambda``: Add Custom runtime on Amazon Linux 2023 (provided.al2023) support to AWS Lambda.
15+
* api-change:``logs``: Update to support new APIs for delivery of logs from AWS services.
16+
* api-change:``omics``: Support UBAM filetype for Omics Storage and make referenceArn optional
17+
* api-change:``endpoint-rules``: Update endpoint-rules command to latest version
18+
19+
520
1.29.82
621
=======
722

awscli/__init__.py

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

20-
__version__ = '1.29.82'
20+
__version__ = '1.29.83'
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
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.29.'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.29.82'
55+
release = '1.29.83'
5656

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

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.31.82
6+
botocore==1.31.83
77
docutils>=0.10,<0.17
88
s3transfer>=0.7.0,<0.8.0
99
PyYAML>=3.10,<6.1

setup.py

+1-1
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.31.82',
27+
'botocore==1.31.83',
2828
'docutils>=0.10,<0.17',
2929
's3transfer>=0.7.0,<0.8.0',
3030
'PyYAML>=3.10,<6.1',

0 commit comments

Comments
 (0)