Skip to content

Commit 05f5628

Browse files
Merge branch 'release-1.43.5' into develop
* release-1.43.5: Bumping version to 1.43.5 Add changelog entries from botocore
2 parents 5128f23 + 65d9798 commit 05f5628

5 files changed

Lines changed: 64 additions & 3 deletions

File tree

.changes/1.43.5.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[
2+
{
3+
"category": "``bedrock-agentcore-control``",
4+
"description": "[``botocore``] Adds support for bring-your-own file system in AgentCore Runtime. Developers can mount Amazon S3 Files and Amazon EFS access points directly into agent sessions using filesystemConfigurations.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``endpoint-rules``",
9+
"description": "[``botocore``] Update endpoint-rules client to latest version",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``glue``",
14+
"description": "[``botocore``] Adds support for a CustomLogGroupPrefix parameter in StartDataQualityRulesetEvaluationRun to specify custom CloudWatch log group paths, and a RulesetName filter in ListDataQualityRulesetEvaluationRuns to filter evaluation runs by ruleset name.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``imagebuilder``",
19+
"description": "[``botocore``] The ImportDiskImage API now enforces a maximum character limit of 128 characters on the image name field.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``lexv2-models``",
24+
"description": "[``botocore``] Amazon Lex V2 introduces audio filler support for speech-to-speech bots. Configure melody or typing sounds that play during backend processing to reduce perceived latency and maintain a natural conversational experience for callers.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``mwaa``",
29+
"description": "[``botocore``] Amazon MWAA now supports a PublicAndPrivate webserver access mode. The Airflow web server is accessible over both public and private endpoints, enabling workers in VPCs without internet access to reach the Task API privately while retaining public access to the Airflow UI.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``s3``",
34+
"description": "[``botocore``] Validate outpost access point resource name",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``sagemaker``",
39+
"description": "[``botocore``] Amazon SageMaker HyperPod now returns ImageVersionStatus in DescribeCluster, DescribeClusterNode, and ListClusterNodes responses, indicating whether cluster instances are running the latest available image version.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``securityhub``",
44+
"description": "[``botocore``] Release GenerateRecommendedPolicyV2 and GetRecommendedPolicyV2 APIs. This supports generating and retrieving policy recommendations to remediate unused permissions findings that are now being supported on Security Hub.",
45+
"type": "api-change"
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.43.5
6+
======
7+
8+
* api-change:``bedrock-agentcore-control``: [``botocore``] Adds support for bring-your-own file system in AgentCore Runtime. Developers can mount Amazon S3 Files and Amazon EFS access points directly into agent sessions using filesystemConfigurations.
9+
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
10+
* api-change:``glue``: [``botocore``] Adds support for a CustomLogGroupPrefix parameter in StartDataQualityRulesetEvaluationRun to specify custom CloudWatch log group paths, and a RulesetName filter in ListDataQualityRulesetEvaluationRuns to filter evaluation runs by ruleset name.
11+
* api-change:``imagebuilder``: [``botocore``] The ImportDiskImage API now enforces a maximum character limit of 128 characters on the image name field.
12+
* api-change:``lexv2-models``: [``botocore``] Amazon Lex V2 introduces audio filler support for speech-to-speech bots. Configure melody or typing sounds that play during backend processing to reduce perceived latency and maintain a natural conversational experience for callers.
13+
* api-change:``mwaa``: [``botocore``] Amazon MWAA now supports a PublicAndPrivate webserver access mode. The Airflow web server is accessible over both public and private endpoints, enabling workers in VPCs without internet access to reach the Task API privately while retaining public access to the Airflow UI.
14+
* api-change:``s3``: [``botocore``] Validate outpost access point resource name
15+
* api-change:``sagemaker``: [``botocore``] Amazon SageMaker HyperPod now returns ImageVersionStatus in DescribeCluster, DescribeClusterNode, and ListClusterNodes responses, indicating whether cluster instances are running the latest available image version.
16+
* api-change:``securityhub``: [``botocore``] Release GenerateRecommendedPolicyV2 and GetRecommendedPolicyV2 APIs. This supports generating and retrieving policy recommendations to remediate unused permissions findings that are now being supported on Security Hub.
17+
18+
519
1.43.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.43.4'
21+
__version__ = '1.43.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.43.4,<1.44.0
6+
botocore>=1.43.5,<1.44.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.17.0,<0.18.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.43.4,<1.44.0',
17+
'botocore>=1.43.5,<1.44.0',
1818
'jmespath>=0.7.1,<2.0.0',
1919
's3transfer>=0.17.0,<0.18.0',
2020
]

0 commit comments

Comments
 (0)