Skip to content

Commit c08b619

Browse files
Merge branch 'release-1.41.7' into develop
* release-1.41.7: Bumping version to 1.41.7 Update changelog based on model updates Merge customizations for Bedrock AgentCore
2 parents 56f645e + 591c898 commit c08b619

File tree

7 files changed

+91
-4
lines changed

7 files changed

+91
-4
lines changed

.changes/1.41.7.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
[
2+
{
3+
"category": "``bedrock``",
4+
"description": "This release adds support for on-demand custom model inference through CustomModelDeployment APIs for Amazon Bedrock.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``bedrock-agentcore``",
9+
"description": "Initial release of Amazon Bedrock AgentCore SDK including Runtime, Built-In Tools, Memory, Gateway and Identity.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``bedrock-agentcore-control``",
14+
"description": "Initial release of Amazon Bedrock AgentCore SDK including Runtime, Built-In Tools, Memory, Gateway and Identity.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``bedrock-runtime``",
19+
"description": "document update to support on demand custom model.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``datasync``",
24+
"description": "AWS DataSync now supports IPv6 address inputs and outputs in create, update, and describe operations for NFS, SMB, and Object Storage locations",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``glue``",
29+
"description": "AWS Glue now supports schema, partition and sort management of Apache Iceberg tables using Glue SDK",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``guardduty``",
34+
"description": "Add expectedBucketOwner parameter to ThreatIntel and IPSet APIs.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``iotwireless``",
39+
"description": "FuotaTaskId is not a valid IdentifierType for EventConfiguration and is being removed from possible IdentifierType values.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``logs``",
44+
"description": "CloudWatch Logs updates: Added X-Ray tracing for Amazon Bedrock Agent resources. Logs introduced Log Group level resource policies (managed through Put/Delete/Describe Resource Policy APIs). For more information, see CloudWatch Logs API documentation.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``mediapackagev2``",
49+
"description": "This release adds support for CDN Authentication using Static Headers in MediaPackage v2.",
50+
"type": "api-change"
51+
},
52+
{
53+
"category": "``networkflowmonitor``",
54+
"description": "Introducing 2 new scope status types - DEACTIVATING and DEACTIVATED.",
55+
"type": "api-change"
56+
},
57+
{
58+
"category": "``payment-cryptography-data``",
59+
"description": "Expand length of message data field for Mac generation and validation to 8192 characters.",
60+
"type": "api-change"
61+
},
62+
{
63+
"category": "``stepfunctions``",
64+
"description": "Doc-only update to introduction, and edits to clarify input parameter and the set of control characters.",
65+
"type": "api-change"
66+
}
67+
]

CHANGELOG.rst

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

5+
1.41.7
6+
======
7+
8+
* api-change:``bedrock``: This release adds support for on-demand custom model inference through CustomModelDeployment APIs for Amazon Bedrock.
9+
* api-change:``bedrock-agentcore``: Initial release of Amazon Bedrock AgentCore SDK including Runtime, Built-In Tools, Memory, Gateway and Identity.
10+
* api-change:``bedrock-agentcore-control``: Initial release of Amazon Bedrock AgentCore SDK including Runtime, Built-In Tools, Memory, Gateway and Identity.
11+
* api-change:``bedrock-runtime``: document update to support on demand custom model.
12+
* api-change:``datasync``: AWS DataSync now supports IPv6 address inputs and outputs in create, update, and describe operations for NFS, SMB, and Object Storage locations
13+
* api-change:``glue``: AWS Glue now supports schema, partition and sort management of Apache Iceberg tables using Glue SDK
14+
* api-change:``guardduty``: Add expectedBucketOwner parameter to ThreatIntel and IPSet APIs.
15+
* api-change:``iotwireless``: FuotaTaskId is not a valid IdentifierType for EventConfiguration and is being removed from possible IdentifierType values.
16+
* api-change:``logs``: CloudWatch Logs updates: Added X-Ray tracing for Amazon Bedrock Agent resources. Logs introduced Log Group level resource policies (managed through Put/Delete/Describe Resource Policy APIs). For more information, see CloudWatch Logs API documentation.
17+
* api-change:``mediapackagev2``: This release adds support for CDN Authentication using Static Headers in MediaPackage v2.
18+
* api-change:``networkflowmonitor``: Introducing 2 new scope status types - DEACTIVATING and DEACTIVATED.
19+
* api-change:``payment-cryptography-data``: Expand length of message data field for Mac generation and validation to 8192 characters.
20+
* api-change:``stepfunctions``: Doc-only update to introduction, and edits to clarify input parameter and the set of control characters.
21+
22+
523
1.41.6
624
======
725

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.41.6'
21+
__version__ = '1.41.7'
2222

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

awscli/customizations/removals.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ def register_removals(event_handler):
6060
'invoke-inline-agent',
6161
'optimize-prompt',
6262
'retrieve-and-generate-stream'])
63+
cmd_remover.remove(on_event='building-command-table.bedrock-agentcore',
64+
remove_commands=['invoke-code-interpreter'])
6365
cmd_remover.remove(on_event='building-command-table.qbusiness',
6466
remove_commands=['chat'])
6567
cmd_remover.remove(on_event='building-command-table.iotsitewise',

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.41'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.41.6'
55+
release = '1.41.7'
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.39.6
6+
botocore==1.39.7
77
docutils>=0.18.1,<=0.19
88
s3transfer>=0.13.0,<0.14.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.39.6',
27+
'botocore==1.39.7',
2828
'docutils>=0.18.1,<=0.19',
2929
's3transfer>=0.13.0,<0.14.0',
3030
'PyYAML>=3.10,<6.1',

0 commit comments

Comments
 (0)