Skip to content

Commit 84a4b27

Browse files
Merge branch 'release-1.35.86'
* release-1.35.86: Bumping version to 1.35.86 Add changelog entries from botocore
2 parents 32d54c8 + 2f685aa commit 84a4b27

File tree

5 files changed

+82
-3
lines changed

5 files changed

+82
-3
lines changed

.changes/1.35.86.json

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
[
2+
{
3+
"category": "``bedrock-agent``",
4+
"description": "[``botocore``] Support for custom user agent and max web pages crawled for web connector. Support app only credentials for SharePoint connector. Increase agents memory duration limit to 365 days. Support to specify max number of session summaries to include in agent invocation context.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``bedrock-agent-runtime``",
9+
"description": "[``botocore``] bedrock agents now supports long term memory and performance configs. Invokeflow supports performance configs. RetrieveAndGenerate performance configs",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``bedrock-data-automation``",
14+
"description": "[``botocore``] Documentation update for Amazon Bedrock Data Automation",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``bedrock-data-automation-runtime``",
19+
"description": "[``botocore``] Documentation update for Amazon Bedrock Data Automation Runtime",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``billing``",
24+
"description": "[``botocore``] Added new API's for defining and fetching Billing Views.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``ce``",
29+
"description": "[``botocore``] Support for retrieving cost, usage, and forecast for billing view.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``connect``",
34+
"description": "[``botocore``] This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``docdb``",
39+
"description": "[``botocore``] Support AWS Secret Manager managed password for AWS DocumentDB instance-based cluster.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``eks``",
44+
"description": "[``botocore``] This release expands the catalog of upgrade insight checks",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``macie2``",
49+
"description": "[``botocore``] This release adds support for identifying S3 general purpose buckets that exceed the Amazon Macie quota for preventative control monitoring.",
50+
"type": "api-change"
51+
},
52+
{
53+
"category": "``outposts``",
54+
"description": "[``botocore``] Add CS8365C as a supported power connector for Outpost sites.",
55+
"type": "api-change"
56+
},
57+
{
58+
"category": "``sagemaker``",
59+
"description": "[``botocore``] This release adds support for c6i, m6i and r6i instance on SageMaker Hyperpod and trn1 instances in batch",
60+
"type": "api-change"
61+
}
62+
]

CHANGELOG.rst

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

5+
1.35.86
6+
=======
7+
8+
* api-change:``bedrock-agent``: [``botocore``] Support for custom user agent and max web pages crawled for web connector. Support app only credentials for SharePoint connector. Increase agents memory duration limit to 365 days. Support to specify max number of session summaries to include in agent invocation context.
9+
* api-change:``bedrock-agent-runtime``: [``botocore``] bedrock agents now supports long term memory and performance configs. Invokeflow supports performance configs. RetrieveAndGenerate performance configs
10+
* api-change:``bedrock-data-automation``: [``botocore``] Documentation update for Amazon Bedrock Data Automation
11+
* api-change:``bedrock-data-automation-runtime``: [``botocore``] Documentation update for Amazon Bedrock Data Automation Runtime
12+
* api-change:``billing``: [``botocore``] Added new API's for defining and fetching Billing Views.
13+
* api-change:``ce``: [``botocore``] Support for retrieving cost, usage, and forecast for billing view.
14+
* api-change:``connect``: [``botocore``] This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.
15+
* api-change:``docdb``: [``botocore``] Support AWS Secret Manager managed password for AWS DocumentDB instance-based cluster.
16+
* api-change:``eks``: [``botocore``] This release expands the catalog of upgrade insight checks
17+
* api-change:``macie2``: [``botocore``] This release adds support for identifying S3 general purpose buckets that exceed the Amazon Macie quota for preventative control monitoring.
18+
* api-change:``outposts``: [``botocore``] Add CS8365C as a supported power connector for Outpost sites.
19+
* api-change:``sagemaker``: [``botocore``] This release adds support for c6i, m6i and r6i instance on SageMaker Hyperpod and trn1 instances in batch
20+
21+
522
1.35.85
623
=======
724

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.35.85'
20+
__version__ = '1.35.86'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

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.35.85,<1.36.0
6+
botocore>=1.35.86,<1.36.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.10.0,<0.11.0
99

setup.py

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

1515

1616
requires = [
17-
'botocore>=1.35.85,<1.36.0',
17+
'botocore>=1.35.86,<1.36.0',
1818
'jmespath>=0.7.1,<2.0.0',
1919
's3transfer>=0.10.0,<0.11.0',
2020
]

0 commit comments

Comments
 (0)