Skip to content

Commit 99b65db

Browse files
Merge branch 'release-1.37.24' into develop
* release-1.37.24: Bumping version to 1.37.24 Add changelog entries from botocore
2 parents 62a0b9e + 759af7c commit 99b65db

File tree

5 files changed

+70
-3
lines changed

5 files changed

+70
-3
lines changed

Diff for: .changes/1.37.24.json

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"category": "``bedrock-runtime``",
4+
"description": "[``botocore``] Add Prompt Caching support to Converse and ConverseStream APIs",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``deadline``",
9+
"description": "[``botocore``] With this release you can use a new field to specify the search term match type. Search term match types currently support fuzzy and contains matching.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``ec2``",
14+
"description": "[``botocore``] Release VPC Route Server, a new feature allowing dynamic routing in VPCs.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``eks``",
19+
"description": "[``botocore``] Add support for updating RemoteNetworkConfig for hybrid nodes on EKS UpdateClusterConfig API",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``marketplace-entitlement``",
24+
"description": "[``botocore``] Add support for Marketplace Entitlement Service dual-stack endpoints.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``outposts``",
29+
"description": "[``botocore``] Enabling Asset Level Capacity Management feature, which allows customers to create a Capacity Task for a single Asset on their active Outpost.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``s3``",
34+
"description": "[``botocore``] Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``s3control``",
39+
"description": "[``botocore``] Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``sesv2``",
44+
"description": "[``botocore``] Add dual-stack support to global endpoints.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``transfer``",
49+
"description": "[``botocore``] Add WebAppEndpointPolicy support for WebApps",
50+
"type": "api-change"
51+
}
52+
]

Diff for: CHANGELOG.rst

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

5+
1.37.24
6+
=======
7+
8+
* api-change:``bedrock-runtime``: [``botocore``] Add Prompt Caching support to Converse and ConverseStream APIs
9+
* api-change:``deadline``: [``botocore``] With this release you can use a new field to specify the search term match type. Search term match types currently support fuzzy and contains matching.
10+
* api-change:``ec2``: [``botocore``] Release VPC Route Server, a new feature allowing dynamic routing in VPCs.
11+
* api-change:``eks``: [``botocore``] Add support for updating RemoteNetworkConfig for hybrid nodes on EKS UpdateClusterConfig API
12+
* api-change:``marketplace-entitlement``: [``botocore``] Add support for Marketplace Entitlement Service dual-stack endpoints.
13+
* api-change:``outposts``: [``botocore``] Enabling Asset Level Capacity Management feature, which allows customers to create a Capacity Task for a single Asset on their active Outpost.
14+
* api-change:``s3``: [``botocore``] Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones
15+
* api-change:``s3control``: [``botocore``] Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones
16+
* api-change:``sesv2``: [``botocore``] Add dual-stack support to global endpoints.
17+
* api-change:``transfer``: [``botocore``] Add WebAppEndpointPolicy support for WebApps
18+
19+
520
1.37.23
621
=======
722

Diff for: 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.23'
20+
__version__ = '1.37.24'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

Diff for: 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.23,<1.38.0
6+
botocore>=1.37.24,<1.38.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.11.0,<0.12.0
99

Diff for: setup.py

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

1515

1616
requires = [
17-
'botocore>=1.37.23,<1.38.0',
17+
'botocore>=1.37.24,<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)