Skip to content

Commit

Permalink
Merge branch 'release-1.35.45'
Browse files Browse the repository at this point in the history
* release-1.35.45:
  Bumping version to 1.35.45
  Update to latest models
  S3 200 errors implementation (#3276)
  Fix flakey test by allowing arbitrary warnings during capture (#3282)
  • Loading branch information
aws-sdk-python-automation committed Oct 21, 2024
2 parents feac226 + 38b3e6d commit c87e507
Show file tree
Hide file tree
Showing 17 changed files with 911 additions and 161 deletions.
52 changes: 52 additions & 0 deletions .changes/1.35.45.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
[
{
"category": "``application-insights``",
"description": "This feature enables customers to specify SNS Topic ARN. CloudWatch Application Insights (CWAI) will utilize this ARN to send problem notifications.",
"type": "api-change"
},
{
"category": "``autoscaling``",
"description": "Adds support for removing the PlacementGroup setting on an Auto Scaling Group through the UpdateAutoScalingGroup API.",
"type": "api-change"
},
{
"category": "``bedrock-agent-runtime``",
"description": "Knowledge Bases for Amazon Bedrock now supports custom prompts and model parameters in the orchestrationConfiguration of the RetrieveAndGenerate API. The modelArn field accepts Custom Models and Imported Models ARNs.",
"type": "api-change"
},
{
"category": "``dms``",
"description": "Added support for tagging in StartReplicationTaskAssessmentRun API and introduced IsLatestTaskAssessmentRun and ResultStatistic fields for enhanced tracking and assessment result statistics.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "Amazon EC2 now allows you to create network interfaces with just the EFA driver and no ENA driver by specifying the network interface type as efa-only.",
"type": "api-change"
},
{
"category": "``eks``",
"description": "This release adds support for Amazon Application Recovery Controller (ARC) zonal shift and zonal autoshift with EKS that enhances the resiliency of multi-AZ cluster environments",
"type": "api-change"
},
{
"category": "``fms``",
"description": "Update AWS WAF policy - add the option to retrofit existing web ACLs instead of creating all new web ACLs.",
"type": "api-change"
},
{
"category": "``payment-cryptography-data``",
"description": "Adding new API to generate authenticated scripts for EMV pin change use cases.",
"type": "api-change"
},
{
"category": "``wafv2``",
"description": "Add a property to WebACL to indicate whether it's been retrofitted by Firewall Manager.",
"type": "api-change"
},
{
"category": "``s3``",
"description": "Handle HTTP 200 responses with error information for all supported s3 operations.",
"type": "enhancement"
}
]
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
CHANGELOG
=========

1.35.45
=======

* api-change:``application-insights``: This feature enables customers to specify SNS Topic ARN. CloudWatch Application Insights (CWAI) will utilize this ARN to send problem notifications.
* api-change:``autoscaling``: Adds support for removing the PlacementGroup setting on an Auto Scaling Group through the UpdateAutoScalingGroup API.
* api-change:``bedrock-agent-runtime``: Knowledge Bases for Amazon Bedrock now supports custom prompts and model parameters in the orchestrationConfiguration of the RetrieveAndGenerate API. The modelArn field accepts Custom Models and Imported Models ARNs.
* api-change:``dms``: Added support for tagging in StartReplicationTaskAssessmentRun API and introduced IsLatestTaskAssessmentRun and ResultStatistic fields for enhanced tracking and assessment result statistics.
* api-change:``ec2``: Amazon EC2 now allows you to create network interfaces with just the EFA driver and no ENA driver by specifying the network interface type as efa-only.
* api-change:``eks``: This release adds support for Amazon Application Recovery Controller (ARC) zonal shift and zonal autoshift with EKS that enhances the resiliency of multi-AZ cluster environments
* api-change:``fms``: Update AWS WAF policy - add the option to retrofit existing web ACLs instead of creating all new web ACLs.
* api-change:``payment-cryptography-data``: Adding new API to generate authenticated scripts for EMV pin change use cases.
* api-change:``wafv2``: Add a property to WebACL to indicate whether it's been retrofitted by Firewall Manager.
* enhancement:``s3``: Handle HTTP 200 responses with error information for all supported s3 operations.


1.35.44
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.35.44'
__version__ = '1.35.45'


class NullHandler(logging.Handler):
Expand Down
Loading

0 comments on commit c87e507

Please sign in to comment.