Skip to content

Commit d10ead8

Browse files
Bumping version to 1.37.2
1 parent 235677f commit d10ead8

14 files changed

+64
-48
lines changed

.changes/1.37.2.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[
2+
{
3+
"category": "``application-signals``",
4+
"description": "[``botocore``] This release adds API support for reading Service Level Objectives and Services from monitoring accounts, from SLO and Service-scoped operations, including ListServices and ListServiceLevelObjectives.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``batch``",
9+
"description": "[``botocore``] AWS Batch: Resource Aware Scheduling feature support",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``chime``",
14+
"description": "[``botocore``] Removes the Amazon Chime SDK APIs from the \"chime\" namespace. Amazon Chime SDK APIs continue to be available in the AWS SDK via the dedicated Amazon Chime SDK namespaces: chime-sdk-identity, chime-sdk-mediapipelines, chime-sdk-meetings, chime-sdk-messaging, and chime-sdk-voice.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``cloudfront``",
19+
"description": "[``botocore``] Documentation update for VPC origin config.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``ec2``",
24+
"description": "[``botocore``] Amazon EC2 Fleet customers can now override the Block Device Mapping specified in the Launch Template when creating a new Fleet request, saving the effort of creating and associating new Launch Templates to customize the Block Device Mapping.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``iotfleetwise``",
29+
"description": "[``botocore``] This release adds an optional listResponseScope request parameter in certain list API requests to limit the response to metadata only.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``oam``",
34+
"description": "[``botocore``] This release adds support for sharing AWS::ApplicationSignals::Service and AWS::ApplicationSignals::ServiceLevelObjective resources.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``sagemaker``",
39+
"description": "[``botocore``] AWS SageMaker InferenceComponents now support rolling update deployments for Inference Components.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``Protocol``",
44+
"description": "[``botocore``] Adds support for the smithy-rpc-v2-cbor protocol. If a service supports smithy-rpc-v2-cbor, this protocol will automatically be used. For more information, see https://smithy.io/2.0/additional-specs/protocols/smithy-rpc-v2.html",
45+
"type": "enhancement"
46+
}
47+
]

.changes/next-release/api-change-applicationsignals-59355.json

-5
This file was deleted.

.changes/next-release/api-change-batch-98635.json

-5
This file was deleted.

.changes/next-release/api-change-chime-1525.json

-5
This file was deleted.

.changes/next-release/api-change-cloudfront-30080.json

-5
This file was deleted.

.changes/next-release/api-change-ec2-82328.json

-5
This file was deleted.

.changes/next-release/api-change-iotfleetwise-12581.json

-5
This file was deleted.

.changes/next-release/api-change-oam-35689.json

-5
This file was deleted.

.changes/next-release/api-change-sagemaker-18065.json

-5
This file was deleted.

.changes/next-release/enhancement-Protocol-13828.json

-5
This file was deleted.

CHANGELOG.rst

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

5+
1.37.2
6+
======
7+
8+
* api-change:``application-signals``: [``botocore``] This release adds API support for reading Service Level Objectives and Services from monitoring accounts, from SLO and Service-scoped operations, including ListServices and ListServiceLevelObjectives.
9+
* api-change:``batch``: [``botocore``] AWS Batch: Resource Aware Scheduling feature support
10+
* api-change:``chime``: [``botocore``] Removes the Amazon Chime SDK APIs from the "chime" namespace. Amazon Chime SDK APIs continue to be available in the AWS SDK via the dedicated Amazon Chime SDK namespaces: chime-sdk-identity, chime-sdk-mediapipelines, chime-sdk-meetings, chime-sdk-messaging, and chime-sdk-voice.
11+
* api-change:``cloudfront``: [``botocore``] Documentation update for VPC origin config.
12+
* api-change:``ec2``: [``botocore``] Amazon EC2 Fleet customers can now override the Block Device Mapping specified in the Launch Template when creating a new Fleet request, saving the effort of creating and associating new Launch Templates to customize the Block Device Mapping.
13+
* api-change:``iotfleetwise``: [``botocore``] This release adds an optional listResponseScope request parameter in certain list API requests to limit the response to metadata only.
14+
* api-change:``oam``: [``botocore``] This release adds support for sharing AWS::ApplicationSignals::Service and AWS::ApplicationSignals::ServiceLevelObjective resources.
15+
* api-change:``sagemaker``: [``botocore``] AWS SageMaker InferenceComponents now support rolling update deployments for Inference Components.
16+
* enhancement:``Protocol``: [``botocore``] Adds support for the smithy-rpc-v2-cbor protocol. If a service supports smithy-rpc-v2-cbor, this protocol will automatically be used. For more information, see https://smithy.io/2.0/additional-specs/protocols/smithy-rpc-v2.html
17+
18+
519
1.37.1
620
======
721

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.1'
20+
__version__ = '1.37.2'
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.1,<1.38.0
6+
botocore>=1.37.2,<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.1,<1.38.0',
17+
'botocore>=1.37.2,<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)