Skip to content

Commit 47c4ef5

Browse files
Merge branch 'release-1.45.35' into develop
* release-1.45.35: Bumping version to 1.45.35 Update changelog based on model updates
2 parents 45be38b + 47b2da5 commit 47c4ef5

6 files changed

Lines changed: 95 additions & 4 deletions

File tree

.changes/1.45.35.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
[
2+
{
3+
"category": "``application-signals``",
4+
"description": "Application Signals now supports dynamic instrumentation and Service Events telemetry. Add instrumentation at runtime without restarts, and use fine-grained profiling data to quickly pinpoint latency and error root causes.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``bedrock-agentcore``",
9+
"description": "Adds an optional extractionMode field to CreateEvent. SKIP retains the event in short-term memory but excludes it from long-term memory extraction.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``directconnect``",
14+
"description": "Added VIF rate limiting support for AWS Direct Connect, allowing customers to set bandwidth allocations on virtual interfaces to manage traffic on dedicated connections.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``ec2``",
19+
"description": "This release adds support for AMI Watermark and Allowed AMIs integration",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``endpoint-rules``",
24+
"description": "Update endpoint-rules command to latest version",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``guardduty``",
29+
"description": "Added AI-powered investigations that automatically analyze security findings, correlate related activity, and produce structured summaries with risk assessment, confidence scoring, MITRE technique classification, and actionable next steps.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``kafka``",
34+
"description": "Amazon MSK Replicator now supports mTLS authentication when connecting to external Apache Kafka clusters, enabling customers to replicate data from clusters that require mutual TLS for client authentication. This capability is supported when replicating to Amazon MSK Express brokers.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``lambda``",
39+
"description": "Add support for tagging Network Connector resources in AWS Lambda.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``lambda-core``",
44+
"description": "Initial release of the AWS Lambda Core SDK with APIs to create, manage, and tag network connectors that enable Lambda compute resources to access private resources in your Amazon VPC.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``lambda-microvms``",
49+
"description": "Lambda MicroVMs GA launch. Lambda MicroVMs enable isolated and highly responsive execution of user-supplied or LLM-generated code.",
50+
"type": "api-change"
51+
},
52+
{
53+
"category": "``logs``",
54+
"description": "CloudWatch Logs Updates - New APIs introduced to support syslog ingestion to a log group. For more information, see CloudWatch Logs API documentation.",
55+
"type": "api-change"
56+
},
57+
{
58+
"category": "``mediaconnect``",
59+
"description": "AWS MediaConnect now supports Content Quality Analysis for Router Inputs, enabling detection of black frames, frozen frames, and silent audio with configurable thresholds.",
60+
"type": "api-change"
61+
},
62+
{
63+
"category": "``omics``",
64+
"description": "Adds support for scratch ephemeral storage mounted at tmp",
65+
"type": "api-change"
66+
},
67+
{
68+
"category": "``quicksight``",
69+
"description": "Updated the Amazon Quick Spaces API to remove unsupported SPACE and ARTIFACT values from the SpaceQuickSightResourceType enum.",
70+
"type": "api-change"
71+
}
72+
]

CHANGELOG.rst

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

5+
1.45.35
6+
=======
7+
8+
* api-change:``application-signals``: Application Signals now supports dynamic instrumentation and Service Events telemetry. Add instrumentation at runtime without restarts, and use fine-grained profiling data to quickly pinpoint latency and error root causes.
9+
* api-change:``bedrock-agentcore``: Adds an optional extractionMode field to CreateEvent. SKIP retains the event in short-term memory but excludes it from long-term memory extraction.
10+
* api-change:``directconnect``: Added VIF rate limiting support for AWS Direct Connect, allowing customers to set bandwidth allocations on virtual interfaces to manage traffic on dedicated connections.
11+
* api-change:``ec2``: This release adds support for AMI Watermark and Allowed AMIs integration
12+
* api-change:``endpoint-rules``: Update endpoint-rules command to latest version
13+
* api-change:``guardduty``: Added AI-powered investigations that automatically analyze security findings, correlate related activity, and produce structured summaries with risk assessment, confidence scoring, MITRE technique classification, and actionable next steps.
14+
* api-change:``kafka``: Amazon MSK Replicator now supports mTLS authentication when connecting to external Apache Kafka clusters, enabling customers to replicate data from clusters that require mutual TLS for client authentication. This capability is supported when replicating to Amazon MSK Express brokers.
15+
* api-change:``lambda``: Add support for tagging Network Connector resources in AWS Lambda.
16+
* api-change:``lambda-core``: Initial release of the AWS Lambda Core SDK with APIs to create, manage, and tag network connectors that enable Lambda compute resources to access private resources in your Amazon VPC.
17+
* api-change:``lambda-microvms``: Lambda MicroVMs GA launch. Lambda MicroVMs enable isolated and highly responsive execution of user-supplied or LLM-generated code.
18+
* api-change:``logs``: CloudWatch Logs Updates - New APIs introduced to support syslog ingestion to a log group. For more information, see CloudWatch Logs API documentation.
19+
* api-change:``mediaconnect``: AWS MediaConnect now supports Content Quality Analysis for Router Inputs, enabling detection of black frames, frozen frames, and silent audio with configurable thresholds.
20+
* api-change:``omics``: Adds support for scratch ephemeral storage mounted at tmp
21+
* api-change:``quicksight``: Updated the Amazon Quick Spaces API to remove unsupported SPACE and ARTIFACT values from the SpaceQuickSightResourceType enum.
22+
23+
524
1.45.34
625
=======
726

awscli/__init__.py

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

1919
import os
2020

21-
__version__ = '1.45.34'
21+
__version__ = '1.45.35'
2222

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

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.45.'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.45.34'
55+
release = '1.45.35'
5656

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

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.34
6+
botocore==1.43.35
77
docutils>=0.18.1,<=0.19
88
s3transfer>=0.19.0,<0.20.0
99
PyYAML>=3.10,<6.1

setup.py

Lines changed: 1 addition & 1 deletion
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.43.34',
27+
'botocore==1.43.35',
2828
'docutils>=0.18.1,<=0.19',
2929
's3transfer>=0.19.0,<0.20.0',
3030
'PyYAML>=3.10,<6.1',

0 commit comments

Comments
 (0)