Skip to content

Commit f225e61

Browse files
Merge branch 'release-1.34.143' into develop
* release-1.34.143: Bumping version to 1.34.143 Add changelog entries from botocore
2 parents f902982 + 5527d5b commit f225e61

File tree

5 files changed

+70
-3
lines changed

5 files changed

+70
-3
lines changed

.changes/1.34.143.json

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"category": "``batch``",
4+
"description": "[``botocore``] This feature allows AWS Batch Jobs with EKS container orchestration type to be run as Multi-Node Parallel Jobs.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``bedrock``",
9+
"description": "[``botocore``] Add support for contextual grounding check for Guardrails for Amazon Bedrock.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``bedrock-agent``",
14+
"description": "[``botocore``] Introduces new data sources and chunking strategies for Knowledge bases, advanced parsing logic using FMs, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``bedrock-agent-runtime``",
19+
"description": "[``botocore``] Introduces query decomposition, enhanced Agents integration with Knowledge bases, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources for end-to-end solutions.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``bedrock-runtime``",
24+
"description": "[``botocore``] Add support for contextual grounding check and ApplyGuardrail API for Guardrails for Amazon Bedrock.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``ec2``",
29+
"description": "[``botocore``] Add parameters to enable provisioning IPAM BYOIPv4 space at a Local Zone Network Border Group level",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``glue``",
34+
"description": "[``botocore``] Add recipe step support for recipe node",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``groundstation``",
39+
"description": "[``botocore``] Documentation update specifying OEM ephemeris units of measurement",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``license-manager-linux-subscriptions``",
44+
"description": "[``botocore``] Add support for third party subscription providers, starting with RHEL subscriptions through Red Hat Subscription Manager (RHSM). Additionally, add support for tagging subscription provider resources, and detect when an instance has more than one Linux subscription and notify the customer.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``mediaconnect``",
49+
"description": "[``botocore``] AWS Elemental MediaConnect introduces the ability to disable outputs. Disabling an output allows you to keep the output attached to the flow, but stop streaming to the output destination. A disabled output does not incur data transfer costs.",
50+
"type": "api-change"
51+
}
52+
]

CHANGELOG.rst

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

5+
1.34.143
6+
========
7+
8+
* api-change:``batch``: [``botocore``] This feature allows AWS Batch Jobs with EKS container orchestration type to be run as Multi-Node Parallel Jobs.
9+
* api-change:``bedrock``: [``botocore``] Add support for contextual grounding check for Guardrails for Amazon Bedrock.
10+
* api-change:``bedrock-agent``: [``botocore``] Introduces new data sources and chunking strategies for Knowledge bases, advanced parsing logic using FMs, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources.
11+
* api-change:``bedrock-agent-runtime``: [``botocore``] Introduces query decomposition, enhanced Agents integration with Knowledge bases, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources for end-to-end solutions.
12+
* api-change:``bedrock-runtime``: [``botocore``] Add support for contextual grounding check and ApplyGuardrail API for Guardrails for Amazon Bedrock.
13+
* api-change:``ec2``: [``botocore``] Add parameters to enable provisioning IPAM BYOIPv4 space at a Local Zone Network Border Group level
14+
* api-change:``glue``: [``botocore``] Add recipe step support for recipe node
15+
* api-change:``groundstation``: [``botocore``] Documentation update specifying OEM ephemeris units of measurement
16+
* api-change:``license-manager-linux-subscriptions``: [``botocore``] Add support for third party subscription providers, starting with RHEL subscriptions through Red Hat Subscription Manager (RHSM). Additionally, add support for tagging subscription provider resources, and detect when an instance has more than one Linux subscription and notify the customer.
17+
* api-change:``mediaconnect``: [``botocore``] AWS Elemental MediaConnect introduces the ability to disable outputs. Disabling an output allows you to keep the output attached to the flow, but stop streaming to the output destination. A disabled output does not incur data transfer costs.
18+
19+
520
1.34.142
621
========
722

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.34.142'
20+
__version__ = '1.34.143'
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.34.142,<1.35.0
6+
botocore>=1.34.143,<1.35.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.34.142,<1.35.0',
17+
'botocore>=1.34.143,<1.35.0',
1818
'jmespath>=0.7.1,<2.0.0',
1919
's3transfer>=0.10.0,<0.11.0',
2020
]

0 commit comments

Comments
 (0)