Skip to content

Commit 585db84

Browse files
Merge branch 'release-1.32.1' into develop
* release-1.32.1: Bumping version to 1.32.1 Update changelog based on model updates
2 parents a548393 + 1ea676a commit 585db84

File tree

6 files changed

+89
-4
lines changed

6 files changed

+89
-4
lines changed

.changes/1.32.1.json

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
[
2+
{
3+
"category": "``appstream``",
4+
"description": "This release includes support for images of Windows Server 2022 platform.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``b2bi``",
9+
"description": "Documentation updates for AWS B2B Data Interchange",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``billingconductor``",
14+
"description": "Billing Conductor is releasing a new API, GetBillingGroupCostReport, which provides the ability to retrieve/view the Billing Group Cost Report broken down by attributes for a specific billing group.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``connect``",
19+
"description": "This release adds support for more granular billing using tags (key:value pairs)",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``controltower``",
24+
"description": "Documentation updates for AWS Control Tower.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``firehose``",
29+
"description": "This release, 1) adds configurable buffering hints for the Splunk destination, and 2) reduces the minimum configurable buffering interval for supported destinations",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``gamelift``",
34+
"description": "Amazon GameLift adds the ability to add and update the game properties of active game sessions.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``iot``",
39+
"description": "This release adds the ability to self-manage certificate signing in AWS IoT Core fleet provisioning using the new certificate provider resource.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``neptune-graph``",
44+
"description": "This is the initial SDK release for Amazon Neptune Analytics",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``opensearch``",
49+
"description": "Updating documentation for Amazon OpenSearch Service support for new zero-ETL integration with Amazon S3.",
50+
"type": "api-change"
51+
},
52+
{
53+
"category": "``quicksight``",
54+
"description": "Update Dashboard Links support; SingleAxisOptions support; Scatterplot Query limit support.",
55+
"type": "api-change"
56+
},
57+
{
58+
"category": "``workspaces``",
59+
"description": "Updated note to ensure customers understand running modes.",
60+
"type": "api-change"
61+
},
62+
{
63+
"category": "``endpoint-rules``",
64+
"description": "Update endpoint-rules command to latest version",
65+
"type": "api-change"
66+
}
67+
]

CHANGELOG.rst

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

5+
1.32.1
6+
======
7+
8+
* api-change:``appstream``: This release includes support for images of Windows Server 2022 platform.
9+
* api-change:``b2bi``: Documentation updates for AWS B2B Data Interchange
10+
* api-change:``billingconductor``: Billing Conductor is releasing a new API, GetBillingGroupCostReport, which provides the ability to retrieve/view the Billing Group Cost Report broken down by attributes for a specific billing group.
11+
* api-change:``connect``: This release adds support for more granular billing using tags (key:value pairs)
12+
* api-change:``controltower``: Documentation updates for AWS Control Tower.
13+
* api-change:``firehose``: This release, 1) adds configurable buffering hints for the Splunk destination, and 2) reduces the minimum configurable buffering interval for supported destinations
14+
* api-change:``gamelift``: Amazon GameLift adds the ability to add and update the game properties of active game sessions.
15+
* api-change:``iot``: This release adds the ability to self-manage certificate signing in AWS IoT Core fleet provisioning using the new certificate provider resource.
16+
* api-change:``neptune-graph``: This is the initial SDK release for Amazon Neptune Analytics
17+
* api-change:``opensearch``: Updating documentation for Amazon OpenSearch Service support for new zero-ETL integration with Amazon S3.
18+
* api-change:``quicksight``: Update Dashboard Links support; SingleAxisOptions support; Scatterplot Query limit support.
19+
* api-change:``workspaces``: Updated note to ensure customers understand running modes.
20+
* api-change:``endpoint-rules``: Update endpoint-rules command to latest version
21+
22+
523
1.32.0
624
======
725

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.32.0'
20+
__version__ = '1.32.1'
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.32'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.32.0'
55+
release = '1.32.1'
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.34.0
6+
botocore==1.34.1
77
docutils>=0.10,<0.17
88
s3transfer>=0.9.0,<0.10.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.34.0',
27+
'botocore==1.34.1',
2828
'docutils>=0.10,<0.17',
2929
's3transfer>=0.9.0,<0.10.0',
3030
'PyYAML>=3.10,<6.1',

0 commit comments

Comments
 (0)