Skip to content

Commit 53d7b36

Browse files
Merge branch 'release-1.22.99'
* release-1.22.99: Bumping version to 1.22.99 Add changelog entries from botocore add --use-json to cloudformation package example Update deprecated Runtime
2 parents 83130db + 9d63244 commit 53d7b36

8 files changed

Lines changed: 38 additions & 7 deletions

File tree

.changes/1.22.99.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"category": "``macie2``",
4+
"description": "[``botocore``] Sensitive data findings in Amazon Macie now indicate how Macie found the sensitive data that produced a finding (originType).",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``rds``",
9+
"description": "[``botocore``] Added a new cluster-level attribute to set the capacity range for Aurora Serverless v2 instances.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``mgn``",
14+
"description": "[``botocore``] Removed required annotation from input fields in Describe operations requests. Added quotaValue to ServiceQuotaExceededException",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``connect``",
19+
"description": "[``botocore``] This release adds APIs to search, claim, release, list, update, and describe phone numbers. You can also use them to associate and disassociate contact flows to phone numbers.",
20+
"type": "api-change"
21+
}
22+
]

CHANGELOG.rst

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

5+
1.22.99
6+
=======
7+
8+
* api-change:``macie2``: [``botocore``] Sensitive data findings in Amazon Macie now indicate how Macie found the sensitive data that produced a finding (originType).
9+
* api-change:``rds``: [``botocore``] Added a new cluster-level attribute to set the capacity range for Aurora Serverless v2 instances.
10+
* api-change:``mgn``: [``botocore``] Removed required annotation from input fields in Describe operations requests. Added quotaValue to ServiceQuotaExceededException
11+
* api-change:``connect``: [``botocore``] This release adds APIs to search, claim, release, list, update, and describe phone numbers. You can also use them to associate and disassociate contact flows to phone numbers.
12+
13+
514
1.22.98
615
=======
716

awscli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
import os
1919

20-
__version__ = '1.22.98'
20+
__version__ = '1.22.99'
2121

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

awscli/examples/cloudformation/package.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ Following command exports a template named ``template.json`` by uploading local
22
artifacts to S3 bucket ``bucket-name`` and writes the exported template to
33
``packaged-template.json``::
44

5-
aws cloudformation package --template-file /path_to_template/template.json --s3-bucket bucket-name --output-template-file packaged-template.json
5+
aws cloudformation package --template-file /path_to_template/template.json --s3-bucket bucket-name --output-template-file packaged-template.json --use-json
66

awscli/examples/lambda/create-function.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The following ``create-function`` example creates a Lambda function named ``my-f
44

55
aws lambda create-function \
66
--function-name my-function \
7-
--runtime nodejs10.x \
7+
--runtime nodejs14.x \
88
--zip-file fileb://my-function.zip \
99
--handler my-function.handler \
1010
--role arn:aws:iam::123456789012:role/service-role/MyTestFunction-role-tges6bf4
@@ -29,7 +29,7 @@ Output::
2929
"Timeout": 3,
3030
"LastModified": "2019-08-14T22:26:11.234+0000",
3131
"Handler": "my-function.handler",
32-
"Runtime": "nodejs10.x",
32+
"Runtime": "nodejs14.x",
3333
"Description": ""
3434
}
3535

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
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.98'
55+
release = '1.22.99'
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.24.43
6+
botocore==1.24.44
77
docutils>=0.10,<0.16
88
s3transfer>=0.5.0,<0.6.0
99
PyYAML>=3.10,<5.5

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.24.43',
27+
'botocore==1.24.44',
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)