Skip to content

Commit cb8d9be

Browse files
Merge branch 'release-1.22.85'
* release-1.22.85: Bumping version to 1.22.85 Update changelog based on model updates Update put-bucket-inventory-configuration.rst (#6830) Pin Jinja2<3.1 to avoid breakages in Sphinx (#6827)
2 parents 57d3055 + c93d338 commit cb8d9be

File tree

8 files changed

+47
-5
lines changed

8 files changed

+47
-5
lines changed

.changes/1.22.85.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"category": "``iot-data``",
4+
"description": "Update the default AWS IoT Core Data Plane endpoint from VeriSign signed to ATS signed. If you have firewalls with strict egress rules, configure the rules to grant you access to data-ats.iot.[region].amazonaws.com or data-ats.iot.[region].amazonaws.com.cn.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``fms``",
9+
"description": "AWS Firewall Manager now supports the configuration of third-party policies that can use either the centralized or distributed deployment models.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``ec2``",
14+
"description": "This release simplifies the auto-recovery configuration process enabling customers to set the recovery behavior to disabled or default",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``fsx``",
19+
"description": "This release adds support for modifying throughput capacity for FSx for ONTAP file systems.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``iot``",
24+
"description": "Doc only update for IoT that fixes customer-reported issues.",
25+
"type": "api-change"
26+
}
27+
]

CHANGELOG.rst

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

5+
1.22.85
6+
=======
7+
8+
* api-change:``iot-data``: Update the default AWS IoT Core Data Plane endpoint from VeriSign signed to ATS signed. If you have firewalls with strict egress rules, configure the rules to grant you access to data-ats.iot.[region].amazonaws.com or data-ats.iot.[region].amazonaws.com.cn.
9+
* api-change:``fms``: AWS Firewall Manager now supports the configuration of third-party policies that can use either the centralized or distributed deployment models.
10+
* api-change:``ec2``: This release simplifies the auto-recovery configuration process enabling customers to set the recovery behavior to disabled or default
11+
* api-change:``fsx``: This release adds support for modifying throughput capacity for FSx for ONTAP file systems.
12+
* api-change:``iot``: Doc only update for IoT that fixes customer-reported issues.
13+
14+
515
1.22.84
616
=======
717

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.22.84'
20+
__version__ = '1.22.85'
2121

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

awscli/examples/s3api/put-bucket-inventory-configuration.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The following ``put-bucket-inventory-configuration`` example sets a weekly ORC-f
99

1010
This command produces no output.
1111

12-
**Example 1: To set an inventory configuration for a bucket**
12+
**Example 2: To set an inventory configuration for a bucket**
1313

1414
The following ``put-bucket-inventory-configuration`` example sets a daily CSV-formatted inventory report for the bucket ``my-bucket``. ::
1515

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.22.'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.22.84'
55+
release = '1.22.85'
5656

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

requirements-docs.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Newer versions of Jinja break our current copy of Sphinx
2+
# See https://github.com/sphinx-doc/sphinx/issues/10306 for details
3+
jinja2<3.1
4+
5+
16
docutils>=0.10,<0.16
27
Sphinx==1.2.3
38
-e .

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.24.29
6+
botocore==1.24.30
77
docutils>=0.10,<0.16
88
s3transfer>=0.5.0,<0.6.0
99
PyYAML>=3.10,<5.5

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.24.29',
27+
'botocore==1.24.30',
2828
'docutils>=0.10,<0.16',
2929
's3transfer>=0.5.0,<0.6.0',
3030
'PyYAML>=3.10,<5.5',

0 commit comments

Comments
 (0)