Skip to content

Commit b89525d

Browse files
Merge branch 'release-1.37.12' into develop
* release-1.37.12: Bumping version to 1.37.12 Add changelog entries from botocore
2 parents fa8c2ae + e0a216e commit b89525d

File tree

5 files changed

+70
-3
lines changed

5 files changed

+70
-3
lines changed

.changes/1.37.12.json

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"category": "``acm-pca``",
4+
"description": "[``botocore``] Private Certificate Authority service now supports P521 and RSA3072 key algorithms.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``amplify``",
9+
"description": "[``botocore``] Introduced support for Skew Protection. Added enableSkewProtection field to createBranch and updateBranch API.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``codebuild``",
14+
"description": "[``botocore``] AWS CodeBuild now supports webhook filtering by organization name",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``datazone``",
19+
"description": "[``botocore``] This release adds support to update projects and environments",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``dynamodb``",
24+
"description": "[``botocore``] Generate account endpoints for DynamoDB requests using ARN-sourced account ID when available",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``ec2``",
29+
"description": "[``botocore``] This release changes the CreateLaunchTemplate, CreateLaunchTemplateVersion, ModifyLaunchTemplate CLI and SDKs such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``ivs-realtime``",
34+
"description": "[``botocore``] IVS Real-Time now offers customers the ability to adjust the participant & composition recording segment duration",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``logs``",
39+
"description": "[``botocore``] Updated CreateLogAnomalyDetector to accept only kms key arn",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``mediapackagev2``",
44+
"description": "[``botocore``] This release adds the ResetChannelState and ResetOriginEndpointState operation to reset MediaPackage V2 channel and origin endpoint. This release also adds a new field, UrlEncodeChildManifest, for HLS/LL-HLS to allow URL-encoding child manifest query string based on the requirements of AWS SigV4.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``s3control``",
49+
"description": "[``botocore``] Updating GetDataAccess response for S3 Access Grants to include the matched Grantee for the requested prefix",
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.37.12
6+
=======
7+
8+
* api-change:``acm-pca``: [``botocore``] Private Certificate Authority service now supports P521 and RSA3072 key algorithms.
9+
* api-change:``amplify``: [``botocore``] Introduced support for Skew Protection. Added enableSkewProtection field to createBranch and updateBranch API.
10+
* api-change:``codebuild``: [``botocore``] AWS CodeBuild now supports webhook filtering by organization name
11+
* api-change:``datazone``: [``botocore``] This release adds support to update projects and environments
12+
* api-change:``dynamodb``: [``botocore``] Generate account endpoints for DynamoDB requests using ARN-sourced account ID when available
13+
* api-change:``ec2``: [``botocore``] This release changes the CreateLaunchTemplate, CreateLaunchTemplateVersion, ModifyLaunchTemplate CLI and SDKs such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
14+
* api-change:``ivs-realtime``: [``botocore``] IVS Real-Time now offers customers the ability to adjust the participant & composition recording segment duration
15+
* api-change:``logs``: [``botocore``] Updated CreateLogAnomalyDetector to accept only kms key arn
16+
* api-change:``mediapackagev2``: [``botocore``] This release adds the ResetChannelState and ResetOriginEndpointState operation to reset MediaPackage V2 channel and origin endpoint. This release also adds a new field, UrlEncodeChildManifest, for HLS/LL-HLS to allow URL-encoding child manifest query string based on the requirements of AWS SigV4.
17+
* api-change:``s3control``: [``botocore``] Updating GetDataAccess response for S3 Access Grants to include the matched Grantee for the requested prefix
18+
19+
520
1.37.11
621
=======
722

boto3/__init__.py

+1-1
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.37.11'
20+
__version__ = '1.37.12'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

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.37.11,<1.38.0
6+
botocore>=1.37.12,<1.38.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.11.0,<0.12.0
99

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
requires = [
17-
'botocore>=1.37.11,<1.38.0',
17+
'botocore>=1.37.12,<1.38.0',
1818
'jmespath>=0.7.1,<2.0.0',
1919
's3transfer>=0.11.0,<0.12.0',
2020
]

0 commit comments

Comments
 (0)