Skip to content

Commit f20209f

Browse files
Merge branch 'release-1.38.27' into develop
* release-1.38.27: Bumping version to 1.38.27 Update changelog based on model updates
2 parents 26cd248 + 2c52259 commit f20209f

File tree

6 files changed

+59
-4
lines changed

6 files changed

+59
-4
lines changed

.changes/1.38.27.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[
2+
{
3+
"category": "``bedrock-agent``",
4+
"description": "Added optional \"customMetadataField\" for Amazon Aurora knowledge bases, allowing single-column metadata. Also added optional \"textIndexName\" for MongoDB Atlas knowledge bases, enabling hybrid search support.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``chime-sdk-voice``",
9+
"description": "Added FOC date as an attribute of PhoneNumberOrder, added AccessDeniedException as a possible return type of ValidateE911Address",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``mailmanager``",
14+
"description": "Add support for Dual_Stack and PrivateLink types of IngressPoint. For configuration requests, SES Mail Manager will now accept both IPv4/IPv6 dual-stack endpoints and AWS PrivateLink VPC endpoints for email receiving.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``opensearch``",
19+
"description": "Improve descriptions for various API commands and data types.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``route53``",
24+
"description": "Added us-gov-east-1 and us-gov-west-1 as valid Latency Based Routing regions for change-resource-record-sets.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``sagemaker``",
29+
"description": "Adds support for i3en, m7i, r7i instance types for SageMaker Hyperpod",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``sesv2``",
34+
"description": "This release enables customers to provide attachments in the SESv2 SendEmail and SendBulkEmail APIs.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``transcribe``",
39+
"description": "This Feature Adds Support for the \"zh-HK\" Locale for Batch Operations",
40+
"type": "api-change"
41+
}
42+
]

CHANGELOG.rst

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

5+
1.38.27
6+
=======
7+
8+
* api-change:``bedrock-agent``: Added optional "customMetadataField" for Amazon Aurora knowledge bases, allowing single-column metadata. Also added optional "textIndexName" for MongoDB Atlas knowledge bases, enabling hybrid search support.
9+
* api-change:``chime-sdk-voice``: Added FOC date as an attribute of PhoneNumberOrder, added AccessDeniedException as a possible return type of ValidateE911Address
10+
* api-change:``mailmanager``: Add support for Dual_Stack and PrivateLink types of IngressPoint. For configuration requests, SES Mail Manager will now accept both IPv4/IPv6 dual-stack endpoints and AWS PrivateLink VPC endpoints for email receiving.
11+
* api-change:``opensearch``: Improve descriptions for various API commands and data types.
12+
* api-change:``route53``: Added us-gov-east-1 and us-gov-west-1 as valid Latency Based Routing regions for change-resource-record-sets.
13+
* api-change:``sagemaker``: Adds support for i3en, m7i, r7i instance types for SageMaker Hyperpod
14+
* api-change:``sesv2``: This release enables customers to provide attachments in the SESv2 SendEmail and SendBulkEmail APIs.
15+
* api-change:``transcribe``: This Feature Adds Support for the "zh-HK" Locale for Batch Operations
16+
17+
518
1.38.26
619
=======
720

awscli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import os
2020

21-
__version__ = '1.38.26'
21+
__version__ = '1.38.27'
2222

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

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

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

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.26
6+
botocore==1.37.27
77
docutils>=0.10,<0.17
88
s3transfer>=0.11.0,<0.12.0
99
PyYAML>=3.10,<6.1

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.37.26',
27+
'botocore==1.37.27',
2828
'docutils>=0.10,<0.17',
2929
's3transfer>=0.11.0,<0.12.0',
3030
'PyYAML>=3.10,<6.1',

0 commit comments

Comments
 (0)