Skip to content

Commit 6701d41

Browse files
Merge branch 'release-1.42.5' into develop
* release-1.42.5: Bumping version to 1.42.5 Add changelog entries from botocore
2 parents b37b743 + 94aa523 commit 6701d41

File tree

5 files changed

+64
-3
lines changed

5 files changed

+64
-3
lines changed

.changes/1.42.5.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[
2+
{
3+
"category": "``ce``",
4+
"description": "[``botocore``] Add support for Cost Category resource associations including filtering by resource type on ListCostCategoryDefinitions and new ListCostCategoryResourceAssociations API.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``ec2``",
9+
"description": "[``botocore``] Amazon EC2 P6-B300 instances provide 8x NVIDIA Blackwell Ultra GPUs with 2.1 TB high bandwidth GPU memory, 6.4 Tbps EFA networking, 300 Gbps dedicated ENA throughput, and 4 TB of system memory. Amazon EC2 C8a instances are powered by 5th Gen AMD EPYC processors with a maximum frequency of 4.5 GHz.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``identitystore``",
14+
"description": "[``botocore``] Updating AWS Identity Store APIs to support Attribute Extensions capability, with the first release adding Enterprise Attributes. This launch aligns Identity Store APIs with SCIM for enterprise attributes, reducing cases when customers are forced to use SCIM due to lack of SigV4 API support.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``partnercentral-selling``",
19+
"description": "[``botocore``] Deal Sizing Service for AI-based deal size estimation with AWS service-level breakdown, supporting Expansion and Migration deals across Technology, and Reseller partner cohorts, including Pricing Calculator AddOn for MAP deals and funding incentives.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``rds``",
24+
"description": "[``botocore``] Adding support for tagging RDS Instance/Cluster Automated Backups",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``redshift-serverless``",
29+
"description": "[``botocore``] Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``rolesanywhere``",
34+
"description": "[``botocore``] Increases certificate string length for trust anchor source data to support ML-DSA certificates.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``sesv2``",
39+
"description": "[``botocore``] Update Mail Manager Archive ARN validation",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "ContainerProvider",
44+
"description": "[``botocore``] The ContainerProvider now works with arbitray HTTPS URLs for `AWS_CONTAINER_CREDENTIALS_FULL_URI`.",
45+
"type": "enhancement"
46+
}
47+
]

CHANGELOG.rst

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

5+
1.42.5
6+
======
7+
8+
* api-change:``ce``: [``botocore``] Add support for Cost Category resource associations including filtering by resource type on ListCostCategoryDefinitions and new ListCostCategoryResourceAssociations API.
9+
* api-change:``ec2``: [``botocore``] Amazon EC2 P6-B300 instances provide 8x NVIDIA Blackwell Ultra GPUs with 2.1 TB high bandwidth GPU memory, 6.4 Tbps EFA networking, 300 Gbps dedicated ENA throughput, and 4 TB of system memory. Amazon EC2 C8a instances are powered by 5th Gen AMD EPYC processors with a maximum frequency of 4.5 GHz.
10+
* api-change:``identitystore``: [``botocore``] Updating AWS Identity Store APIs to support Attribute Extensions capability, with the first release adding Enterprise Attributes. This launch aligns Identity Store APIs with SCIM for enterprise attributes, reducing cases when customers are forced to use SCIM due to lack of SigV4 API support.
11+
* api-change:``partnercentral-selling``: [``botocore``] Deal Sizing Service for AI-based deal size estimation with AWS service-level breakdown, supporting Expansion and Migration deals across Technology, and Reseller partner cohorts, including Pricing Calculator AddOn for MAP deals and funding incentives.
12+
* api-change:``rds``: [``botocore``] Adding support for tagging RDS Instance/Cluster Automated Backups
13+
* api-change:``redshift-serverless``: [``botocore``] Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages.
14+
* api-change:``rolesanywhere``: [``botocore``] Increases certificate string length for trust anchor source data to support ML-DSA certificates.
15+
* api-change:``sesv2``: [``botocore``] Update Mail Manager Archive ARN validation
16+
* enhancement:ContainerProvider: [``botocore``] The ContainerProvider now works with arbitray HTTPS URLs for `AWS_CONTAINER_CREDENTIALS_FULL_URI`.
17+
18+
519
1.42.4
620
======
721

boto3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from boto3.session import Session
1919

2020
__author__ = 'Amazon Web Services'
21-
__version__ = '1.42.4'
21+
__version__ = '1.42.5'
2222

2323

2424
# The default Boto3 session; autoloaded when needed.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.42.4,<1.43.0
6+
botocore>=1.42.5,<1.43.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.16.0,<0.17.0
99

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
requires = [
17-
'botocore>=1.42.4,<1.43.0',
17+
'botocore>=1.42.5,<1.43.0',
1818
'jmespath>=0.7.1,<2.0.0',
1919
's3transfer>=0.16.0,<0.17.0',
2020
]

0 commit comments

Comments
 (0)