Skip to content

Commit 65fd41c

Browse files
Merge branch 'release-1.38.32'
* release-1.38.32: Bumping version to 1.38.32 Update endpoints model Update to latest models Use usedforsecurity=False for md5 (#3486)
2 parents f1bc967 + fa57939 commit 65fd41c

File tree

14 files changed

+354
-183
lines changed

14 files changed

+354
-183
lines changed

.changes/1.38.32.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"category": "``bedrock-agent-runtime``",
4+
"description": "This release introduces the `PromptCreationConfigurations` input parameter, which includes fields to control prompt population for `InvokeAgent` or `InvokeInlineAgent` requests.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``kms``",
9+
"description": "Remove unpopulated KeyMaterialId from Encrypt Response",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``rds``",
14+
"description": "Include Global Cluster Identifier in DBCluster if the DBCluster is a Global Cluster Member.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``rekognition``",
19+
"description": "Adds support for defining an ordered preference list of different Rekognition Face Liveness challenge types when calling CreateFaceLivenessSession.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``route53``",
24+
"description": "Amazon Route 53 now supports the Asia Pacific (Taipei) Region (ap-east-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``s3tables``",
29+
"description": "S3 Tables now supports getting details about a table via its table ARN.",
30+
"type": "api-change"
31+
}
32+
]

CHANGELOG.rst

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

5+
1.38.32
6+
=======
7+
8+
* api-change:``bedrock-agent-runtime``: This release introduces the `PromptCreationConfigurations` input parameter, which includes fields to control prompt population for `InvokeAgent` or `InvokeInlineAgent` requests.
9+
* api-change:``kms``: Remove unpopulated KeyMaterialId from Encrypt Response
10+
* api-change:``rds``: Include Global Cluster Identifier in DBCluster if the DBCluster is a Global Cluster Member.
11+
* api-change:``rekognition``: Adds support for defining an ordered preference list of different Rekognition Face Liveness challenge types when calling CreateFaceLivenessSession.
12+
* api-change:``route53``: Amazon Route 53 now supports the Asia Pacific (Taipei) Region (ap-east-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
13+
* api-change:``s3tables``: S3 Tables now supports getting details about a table via its table ARN.
14+
15+
516
1.38.31
617
=======
718

botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
import re
1818

19-
__version__ = '1.38.31'
19+
__version__ = '1.38.32'
2020

2121

2222
class NullHandler(logging.Handler):

botocore/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def total_seconds(delta):
148148
# Checks to see if md5 is available on this system. A given system might not
149149
# have access to it for various reasons, such as FIPS mode being enabled.
150150
try:
151-
hashlib.md5()
151+
hashlib.md5(usedforsecurity=False)
152152
MD5_AVAILABLE = True
153153
except (AttributeError, ValueError):
154154
MD5_AVAILABLE = False

botocore/data/bedrock-agent-runtime/2023-07-26/service-2.json

Lines changed: 79 additions & 52 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)