Skip to content

Commit f191144

Browse files
Merge branch 'release-1.21.21'
* release-1.21.21: Bumping version to 1.21.21 Add changelog entries from botocore Add support for jmespath 1.0 (#3189)
2 parents 37a4c83 + 39fefd8 commit f191144

File tree

6 files changed

+56
-6
lines changed

6 files changed

+56
-6
lines changed

.changes/1.21.21.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"category": "Dependency",
4+
"description": "[``botocore``] Added support for jmespath 1.0",
5+
"type": "enhancement"
6+
},
7+
{
8+
"category": "``amplifybackend``",
9+
"description": "[``botocore``] Adding the ability to customize Cognito verification messages for email and SMS in CreateBackendAuth and UpdateBackendAuth. Adding deprecation documentation for ForgotPassword in CreateBackendAuth and UpdateBackendAuth",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``acm-pca``",
14+
"description": "[``botocore``] AWS Certificate Manager (ACM) Private Certificate Authority (CA) now supports customizable certificate subject names and extensions.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``ssm-incidents``",
19+
"description": "[``botocore``] Removed incorrect validation pattern for IncidentRecordSource.invokedBy",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "Dependency",
24+
"description": "Added support for jmespath 1.0",
25+
"type": "enhancement"
26+
},
27+
{
28+
"category": "``billingconductor``",
29+
"description": "[``botocore``] This is the initial SDK release for AWS Billing Conductor. The AWS Billing Conductor is a customizable billing service, allowing you to customize your billing data to match your desired business structure.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``s3outposts``",
34+
"description": "[``botocore``] S3 on Outposts is releasing a new API, ListSharedEndpoints, that lists all endpoints associated with S3 on Outpost, that has been shared by Resource Access Manager (RAM).",
35+
"type": "api-change"
36+
}
37+
]

CHANGELOG.rst

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

5+
1.21.21
6+
=======
7+
8+
* enhancement:Dependency: [``botocore``] Added support for jmespath 1.0
9+
* api-change:``amplifybackend``: [``botocore``] Adding the ability to customize Cognito verification messages for email and SMS in CreateBackendAuth and UpdateBackendAuth. Adding deprecation documentation for ForgotPassword in CreateBackendAuth and UpdateBackendAuth
10+
* api-change:``acm-pca``: [``botocore``] AWS Certificate Manager (ACM) Private Certificate Authority (CA) now supports customizable certificate subject names and extensions.
11+
* api-change:``ssm-incidents``: [``botocore``] Removed incorrect validation pattern for IncidentRecordSource.invokedBy
12+
* enhancement:Dependency: Added support for jmespath 1.0
13+
* api-change:``billingconductor``: [``botocore``] This is the initial SDK release for AWS Billing Conductor. The AWS Billing Conductor is a customizable billing service, allowing you to customize your billing data to match your desired business structure.
14+
* api-change:``s3outposts``: [``botocore``] S3 on Outposts is releasing a new API, ListSharedEndpoints, that lists all endpoints associated with S3 on Outpost, that has been shared by Resource Access Manager (RAM).
15+
16+
517
1.21.20
618
=======
719

boto3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from boto3.session import Session
1818

1919
__author__ = 'Amazon Web Services'
20-
__version__ = '1.21.20'
20+
__version__ = '1.21.21'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
-e git+https://github.com/boto/botocore.git@develop#egg=botocore
2-
-e git+https://github.com/boto/jmespath.git@develop#egg=jmespath
2+
-e 'git+https://github.com/boto/jmespath.git@develop#egg=jmespath; python_version > "3.6"'
3+
jmespath<1.0; python_version <= '3.6'
34
-e git+https://github.com/boto/s3transfer.git@develop#egg=s3transfer

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.24.20,<1.25.0
7-
jmespath>=0.7.1,<1.0.0
6+
botocore>=1.24.21,<1.25.0
7+
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.5.0,<0.6.0
99

1010
[options.extras_require]

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414

1515
requires = [
16-
'botocore>=1.24.20,<1.25.0',
17-
'jmespath>=0.7.1,<1.0.0',
16+
'botocore>=1.24.21,<1.25.0',
17+
'jmespath>=0.7.1,<2.0.0',
1818
's3transfer>=0.5.0,<0.6.0',
1919
]
2020

0 commit comments

Comments
 (0)