Skip to content

Commit

Permalink
Merge branch 'release-1.35.22' into develop
Browse files Browse the repository at this point in the history
* release-1.35.22:
  Bumping version to 1.35.22
  Update changelog based on model updates
  • Loading branch information
aws-sdk-python-automation committed Nov 7, 2024
2 parents 7674dd4 + 781afaa commit 74da4ca
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 4 deletions.
42 changes: 42 additions & 0 deletions .changes/1.35.22.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"category": "``autoscaling``",
"description": "Auto Scaling groups now support the ability to strictly balance instances across Availability Zones by configuring the AvailabilityZoneDistribution parameter. If balanced-only is configured for a group, launches will always be attempted in the under scaled Availability Zone even if it is unhealthy.",
"type": "api-change"
},
{
"category": "``bedrock-agent``",
"description": "Add prompt support for chat template configuration and agent generative AI resource. Add support for configuring an optional guardrail in Prompt and Knowledge Base nodes in Prompt Flows. Add API to validate flow definition",
"type": "api-change"
},
{
"category": "``bedrock-runtime``",
"description": "Add Prompt management support to Bedrock runtime APIs: Converse, ConverseStream, InvokeModel, InvokeModelWithStreamingResponse",
"type": "api-change"
},
{
"category": "``cleanrooms``",
"description": "This release introduces support for Custom Models in AWS Clean Rooms ML.",
"type": "api-change"
},
{
"category": "``cleanroomsml``",
"description": "This release introduces support for Custom Models in AWS Clean Rooms ML.",
"type": "api-change"
},
{
"category": "``quicksight``",
"description": "Add Client Credentials based OAuth support for Snowflake and Starburst",
"type": "api-change"
},
{
"category": "``resource-explorer-2``",
"description": "Add GetManagedView, ListManagedViews APIs.",
"type": "api-change"
},
{
"category": "``synthetics``",
"description": "Add support to toggle if a canary will automatically delete provisioned canary resources such as Lambda functions and layers when a canary is deleted. This behavior can be controlled via the new ProvisionedResourceCleanup property exposed in the CreateCanary and UpdateCanary APIs.",
"type": "api-change"
}
]
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
CHANGELOG
=========

1.35.22
=======

* api-change:``autoscaling``: Auto Scaling groups now support the ability to strictly balance instances across Availability Zones by configuring the AvailabilityZoneDistribution parameter. If balanced-only is configured for a group, launches will always be attempted in the under scaled Availability Zone even if it is unhealthy.
* api-change:``bedrock-agent``: Add prompt support for chat template configuration and agent generative AI resource. Add support for configuring an optional guardrail in Prompt and Knowledge Base nodes in Prompt Flows. Add API to validate flow definition
* api-change:``bedrock-runtime``: Add Prompt management support to Bedrock runtime APIs: Converse, ConverseStream, InvokeModel, InvokeModelWithStreamingResponse
* api-change:``cleanrooms``: This release introduces support for Custom Models in AWS Clean Rooms ML.
* api-change:``cleanroomsml``: This release introduces support for Custom Models in AWS Clean Rooms ML.
* api-change:``quicksight``: Add Client Credentials based OAuth support for Snowflake and Starburst
* api-change:``resource-explorer-2``: Add GetManagedView, ListManagedViews APIs.
* api-change:``synthetics``: Add support to toggle if a canary will automatically delete provisioned canary resources such as Lambda functions and layers when a canary is deleted. This behavior can be controlled via the new ProvisionedResourceCleanup property exposed in the CreateCanary and UpdateCanary APIs.


1.35.21
=======

Expand Down
2 changes: 1 addition & 1 deletion awscli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import os

__version__ = '1.35.21'
__version__ = '1.35.22'

#
# Get our data path to be added to botocore's search path
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.35.'
# The full version, including alpha/beta/rc tags.
release = '1.35.21'
release = '1.35.22'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore==1.35.55
botocore==1.35.56
docutils>=0.10,<0.17
s3transfer>=0.10.0,<0.11.0
PyYAML>=3.10,<6.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def find_version(*file_paths):


install_requires = [
'botocore==1.35.55',
'botocore==1.35.56',
'docutils>=0.10,<0.17',
's3transfer>=0.10.0,<0.11.0',
'PyYAML>=3.10,<6.1',
Expand Down

0 comments on commit 74da4ca

Please sign in to comment.