Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scheduled weekly dependency update for week 15 #357

Open
wants to merge 69 commits into
base: dev
Choose a base branch
from

Conversation

pyup-bot
Copy link
Collaborator

Update bcrypt from 3.2.0 to 4.1.2.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update beautifulsoup4 from 4.9.3 to 4.12.3.

Changelog

4.11.1

This release was done to ensure that the unit tests are packaged along
with the released source. There are no functionality changes in this
release, but there are a few other packaging changes:

* The Japanese and Korean translations of the documentation are included.
* The changelog is now packaged as CHANGELOG, and the license file is
packaged as LICENSE. NEWS.txt and COPYING.txt are still present,
but may be removed in the future.
* TODO.txt is no longer packaged, since a TODO is not relevant for released
code.

4.11.0

* Ported unit tests to use pytest.

* Added special string classes, RubyParenthesisString and RubyTextString,
to make it possible to treat ruby text specially in get_text() calls.
[bug=1941980]

* It's now possible to customize the way output is indented by
providing a value for the 'indent' argument to the Formatter
constructor. The 'indent' argument works very similarly to the
argument of the same name in the Python standard library's
json.dump() function. [bug=1955497]

* If the charset-normalizer Python module
(https://pypi.org/project/charset-normalizer/) is installed, Beautiful
Soup will use it to detect the character sets of incoming documents.
This is also the module used by newer versions of the Requests library.
For the sake of backwards compatibility, chardet and cchardet both take
precedence if installed. [bug=1955346]

* Added a workaround for an lxml bug
(https://bugs.launchpad.net/lxml/+bug/1948551) that causes
problems when parsing a Unicode string beginning with BYTE ORDER MARK.
[bug=1947768]

* Issue a warning when an HTML parser is used to parse a document that
looks like XML but not XHTML. [bug=1939121]

* Do a better job of keeping track of namespaces as an XML document is
parsed, so that CSS selectors that use namespaces will do the right
thing more often. [bug=1946243]

* Some time ago, the misleadingly named "text" argument to find-type
methods was renamed to the more accurate "string." But this supposed
"renaming" didn't make it into important places like the method
signatures or the docstrings. That's corrected in this
version. "text" still works, but will give a DeprecationWarning.
[bug=1947038]

* Fixed a crash when pickling a BeautifulSoup object that has no
tree builder. [bug=1934003]

* Fixed a crash when overriding multi_valued_attributes and using the
html5lib parser. [bug=1948488]

* Standardized the wording of the MarkupResemblesLocatorWarning
warnings to omit untrusted input and make the warnings less
judgmental about what you ought to be doing. [bug=1955450]

* Removed support for the iconv_codec library, which doesn't seem
to exist anymore and was never put up on PyPI. (The closest
replacement on PyPI, iconv_codecs, is GPL-licensed, so we can't use
it--it's also quite old.)

4.10.0

* This is the first release of Beautiful Soup to only support Python
3. I dropped Python 2 support to maintain support for newer versions
(58 and up) of setuptools. See:
https://github.com/pypa/setuptools/issues/2769 [bug=1942919]

* The behavior of methods like .get_text() and .strings now differs
depending on the type of tag. The change is visible with HTML tags
like <script>, <style>, and <template>. Starting in 4.9.0, methods
like get_text() returned no results on such tags, because the
contents of those tags are not considered 'text' within the document
as a whole.

But a user who calls script.get_text() is working from a different
definition of 'text' than a user who calls div.get_text()--otherwise
there would be no need to call script.get_text() at all. In 4.10.0,
the contents of (e.g.) a <script> tag are considered 'text' during a
get_text() call on the tag itself, but not considered 'text' during
a get_text() call on the tag's parent.

Because of this change, calling get_text() on each child of a tag
may now return a different result than calling get_text() on the tag
itself. That's because different tags now have different
understandings of what counts as 'text'. [bug=1906226] [bug=1868861]

* NavigableString and its subclasses now implement the get_text()
method, as well as the properties .strings and
.stripped_strings. These methods will either return the string
itself, or nothing, so the only reason to use this is when iterating
over a list of mixed Tag and NavigableString objects. [bug=1904309]

* The 'html5' formatter now treats attributes whose values are the
empty string as HTML boolean attributes. Previously (and in other
formatters), an attribute value must be set as None to be treated as
a boolean attribute. In a future release, I plan to also give this
behavior to the 'html' formatter. Patch by Isaac Muse. [bug=1915424]

* The 'replace_with()' method now takes a variable number of arguments,
and can be used to replace a single element with a sequence of elements.
Patch by Bill Chandos. [rev=605]

* Corrected output when the namespace prefix associated with a
namespaced attribute is the empty string, as opposed to
None. [bug=1915583]

* Performance improvement when processing tags that speeds up overall
tree construction by 2%. Patch by Morotti. [bug=1899358]

* Corrected the use of special string container classes in cases when a
single tag may contain strings with different containers; such as
the <template> tag, which may contain both TemplateString objects
and Comment objects. [bug=1913406]

* The html.parser tree builder can now handle named entities
found in the HTML5 spec in much the same way that the html5lib
tree builder does. Note that the lxml HTML tree builder doesn't handle
named entities this way. [bug=1924908]

* Added a second way to pass specify encodings to UnicodeDammit and
EncodingDetector, based on the order of precedence defined in the
HTML5 spec, starting at:
https://html.spec.whatwg.org/multipage/parsing.html#parsing-with-a-known-character-encoding

Encodings in 'known_definite_encodings' are tried first, then
byte-order-mark sniffing is run, then encodings in 'user_encodings'
are tried. The old argument, 'override_encodings', is now a
deprecated alias for 'known_definite_encodings'.

This changes the default behavior of the html.parser and lxml tree
builders, in a way that may slightly improve encoding
detection but will probably have no effect. [bug=1889014]

* Improve the warning issued when a directory name (as opposed to
the name of a regular file) is passed as markup into the BeautifulSoup
constructor. [bug=1913628]
Links

Update blosc from 1.10.4 to 1.11.1.

Changelog

1.11.0

=============================

* Internal C-Blosc sources updated to 1.21.2 (they are a git submodule now).

* Many small code improvements, improved consistency and typo fixes.
Thanks to Dimitri Papadopoulos Orfanos.

* Support for Python 3.11.  Support for Python 3.7 has been dropped.
Thanks to Dimitri Papadopoulos Orfanos.

* Several other fixes, mainly related with the building process, which
should be more solid now in different situations.

1.10.6

=============================

* Add a missed cmake folder to distributed files.  See 253.
Thanks to Ben Greiner.

1.10.5

=============================

- Reenable the possibility to use an already installed C-Blosc library.
See 244.  Thanks to Ben Greiner.
- Add aarch64 wheels. See 250.  Thanks to odidev.
- Deactivate SSE2 and AVX2 if a CPU has no flags.  See 242.
Thanks to Graham Inggs.
- Wheels for Linux 32 bits are not distributed anymore.
- Updated vendored C-Blosc to 1.21.1.
Links

Update bokeh from 2.3.2 to 3.4.1.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update boto3 from 1.17.44 to 1.34.84.

Changelog

1.34.84

=======

* api-change:``cloudformation``: [``botocore``] Adding support for the new parameter "IncludePropertyValues" in the CloudFormation DescribeChangeSet API. When this parameter is included, the DescribeChangeSet response will include more detailed information such as before and after values for the resource properties that will change.
* api-change:``config``: [``botocore``] Updates documentation for AWS Config
* api-change:``glue``: [``botocore``] Modifying request for GetUnfilteredTableMetadata for view-related fields.
* api-change:``healthlake``: [``botocore``] Added new CREATE_FAILED status for data stores. Added new errorCause to DescribeFHIRDatastore API and ListFHIRDatastores API response for additional insights into data store creation and deletion workflows.
* api-change:``iotfleethub``: [``botocore``] Documentation updates for AWS IoT Fleet Hub to clarify that Fleet Hub supports organization instance of IAM Identity Center.
* api-change:``kms``: [``botocore``] This feature supports the ability to specify a custom rotation period for automatic key rotations, the ability to perform on-demand key rotations, and visibility into your key material rotations.
* api-change:``mediatailor``: [``botocore``] Added InsertionMode to PlaybackConfigurations. This setting controls whether players can use stitched or guided ad insertion. The default for players that do not specify an insertion mode is stitched.
* api-change:``neptune-graph``: [``botocore``] Update to API documentation to resolve customer reported issues.
* api-change:``outposts``: [``botocore``] This release adds EXPEDITORS as a valid shipment carrier.
* api-change:``redshift``: [``botocore``] Adds support for Amazon Redshift DescribeClusterSnapshots API to include Snapshot ARN response field.
* api-change:``transfer``: [``botocore``] This change releases support for importing self signed certificates to the Transfer Family for sending outbound file transfers over TLS/HTTPS.

1.34.83

=======

* api-change:``batch``: [``botocore``] This release adds the task properties field to attempt details and the name field on EKS container detail.
* api-change:``cloudfront``: [``botocore``] CloudFront origin access control extends support to AWS Lambda function URLs and AWS Elemental MediaPackage v2 origins.
* api-change:``cloudwatch``: [``botocore``] This release adds support for Metric Characteristics for CloudWatch Anomaly Detection. Anomaly Detector now takes Metric Characteristics object with Periodic Spikes boolean field that tells Anomaly Detection that spikes that repeat at the same time every week are part of the expected pattern.
* api-change:``codebuild``: [``botocore``] Support access tokens for Bitbucket sources
* api-change:``iam``: [``botocore``] For CreateOpenIDConnectProvider API, the ThumbprintList parameter is no longer required.
* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive introduces workflow monitor, a new feature that enables the visualization and monitoring of your media workflows. Create signal maps of your existing workflows and monitor them by creating notification and monitoring template groups.
* api-change:``omics``: [``botocore``] This release adds support for retrieval of S3 direct access metadata on sequence stores and read sets, and adds support for SHA256up and SHA512up HealthOmics ETags.
* api-change:``pipes``: [``botocore``] LogConfiguration ARN validation fixes
* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for Standard Edition 2 support in RDS Custom for Oracle.
* api-change:``s3control``: [``botocore``] Documentation updates for Amazon S3-control.

1.34.82

=======

* api-change:``cleanrooms``: [``botocore``] AWS Clean Rooms Differential Privacy is now fully available. Differential privacy protects against user-identification attempts.
* api-change:``connect``: [``botocore``] This release adds new Submit Auto Evaluation Action for Amazon Connect Rules.
* api-change:``networkmonitor``: [``botocore``] Examples were added to CloudWatch Network Monitor commands.
* api-change:``qconnect``: [``botocore``] This release adds a new QiC public API updateSession and updates an existing QiC public API createSession
* api-change:``rekognition``: [``botocore``] Added support for ContentType to content moderation detections.
* api-change:``supplychain``: [``botocore``] This release includes API SendDataIntegrationEvent for AWS Supply Chain
* api-change:``workspaces-thin-client``: [``botocore``] Adding tags field to SoftwareSet. Removing tags fields from Summary objects. Changing the list of exceptions in tagging APIs. Fixing an issue where the SDK returns empty tags in Get APIs.

1.34.81

=======

* api-change:``codebuild``: [``botocore``] Add new webhook filter types for GitHub webhooks
* api-change:``mediaconvert``: [``botocore``] This release includes support for bringing your own fonts to use for burn-in or DVB-Sub captioning workflows.
* api-change:``pinpoint``: [``botocore``] The OrchestrationSendingRoleArn has been added to the email channel and is used to send emails from campaigns or journeys.
* api-change:``rds``: [``botocore``] This release adds support for specifying the CA certificate to use for the new db instance when restoring from db snapshot, restoring from s3, restoring to point in time, and creating a db instance read replica.

1.34.80

=======

* api-change:``controlcatalog``: [``botocore``] This is the initial SDK release for AWS Control Catalog, a central catalog for AWS managed controls. This release includes 3 new APIs - ListDomains, ListObjectives, and ListCommonControls - that vend high-level data to categorize controls across the AWS platform.
* api-change:``mgn``: [``botocore``] Added USE_SOURCE as default option to LaunchConfigurationTemplate bootMode parameter.
* api-change:``networkmonitor``: [``botocore``] Updated the allowed monitorName length for CloudWatch Network Monitor.

1.34.79

=======

* api-change:``quicksight``: [``botocore``] Adding IAMIdentityCenterInstanceArn parameter to CreateAccountSubscription
* api-change:``resource-groups``: [``botocore``] Added a new QueryErrorCode RESOURCE_TYPE_NOT_SUPPORTED that is returned by the ListGroupResources operation if the group query contains unsupported resource types.
* api-change:``verifiedpermissions``: [``botocore``] Adding BatchIsAuthorizedWithToken API which supports multiple authorization requests against a PolicyStore given a bearer token.

1.34.78

=======

* api-change:``b2bi``: [``botocore``] Adding support for X12 5010 HIPAA EDI version and associated transaction sets.
* api-change:``cleanrooms``: [``botocore``] Feature: New schemaStatusDetails field to the existing Schema object that displays a status on Schema API responses to show whether a schema is queryable or not. New BatchGetSchemaAnalysisRule API to retrieve multiple schemaAnalysisRules using a single API call.
* api-change:``ec2``: [``botocore``] Amazon EC2 G6 instances powered by NVIDIA L4 Tensor Core GPUs can be used for a wide range of graphics-intensive and machine learning use cases. Gr6 instances also feature NVIDIA L4 GPUs and can be used for graphics workloads with higher memory requirements.
* api-change:``emr-containers``: [``botocore``] This release adds support for integration with EKS AccessEntry APIs to enable automatic Cluster Access for EMR on EKS.
* api-change:``ivs``: [``botocore``] API update to include an SRT ingest endpoint and passphrase for all channels.
* api-change:``verifiedpermissions``: [``botocore``] Adds GroupConfiguration field to Identity Source API's

1.34.77

=======

* api-change:``cleanroomsml``: [``botocore``] The release includes a public SDK for AWS Clean Rooms ML APIs, making them globally available to developers worldwide.
* api-change:``cloudformation``: [``botocore``] This release would return a new field - PolicyAction in cloudformation's existed DescribeChangeSetResponse, showing actions we are going to apply on the physical resource (e.g., Delete, Retain) according to the user's template
* api-change:``datazone``: [``botocore``] This release supports the feature of dataQuality to enrich asset with dataQualityResult in Amazon DataZone.
* api-change:``docdb``: [``botocore``] This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster.
* api-change:``groundstation``: [``botocore``] This release adds visibilityStartTime and visibilityEndTime to DescribeContact and ListContacts responses.
* api-change:``lambda``: [``botocore``] Add Ruby 3.3 (ruby3.3) support to AWS Lambda
* api-change:``medialive``: [``botocore``] Cmaf Ingest outputs are now supported in Media Live
* api-change:``medical-imaging``: [``botocore``] SearchImageSets API now supports following enhancements - Additional support for searching on UpdatedAt and SeriesInstanceUID - Support for searching existing filters between dates/times - Support for sorting the search result by Ascending/Descending - Additional parameters returned in the response
* api-change:``transfer``: [``botocore``] Add ability to specify Security Policies for SFTP Connectors

1.34.76

=======

* api-change:``ecs``: [``botocore``] Documentation only update for Amazon ECS.
* api-change:``glue``: [``botocore``] Adding View related fields to responses of read-only Table APIs.
* api-change:``ivschat``: [``botocore``] Doc-only update. Changed "Resources" to "Key Concepts" in docs and updated text.
* api-change:``rolesanywhere``: [``botocore``] This release increases the limit on the roleArns request parameter for the *Profile APIs that support it. This parameter can now take up to 250 role ARNs.
* api-change:``securityhub``: [``botocore``] Documentation updates for AWS Security Hub

1.34.75

=======

* api-change:``cloudwatch``: [``botocore``] This release adds support for CloudWatch Anomaly Detection on cross-account metrics. SingleMetricAnomalyDetector and MetricDataQuery inputs to Anomaly Detection APIs now take an optional AccountId field.
* api-change:``datazone``: [``botocore``] This release supports the feature of AI recommendations for descriptions to enrich the business data catalog in Amazon DataZone.
* api-change:``deadline``: [``botocore``] AWS Deadline Cloud is a new fully managed service that helps customers set up, deploy, and scale rendering projects in minutes, so they can improve the efficiency of their rendering pipelines and take on more projects.
* api-change:``emr``: [``botocore``] This release fixes a broken link in the documentation.
* api-change:``lightsail``: [``botocore``] This release adds support to upgrade the TLS version of the distribution.

1.34.74

=======

* api-change:``b2bi``: [``botocore``] Supporting new EDI X12 transaction sets for X12 versions 4010, 4030, and 5010.
* api-change:``codebuild``: [``botocore``] Add new fleet status code for Reserved Capacity.
* api-change:``codeconnections``: [``botocore``] Duplicating the CodeStar Connections service into the new, rebranded AWS CodeConnections service.
* api-change:``internetmonitor``: [``botocore``] This release adds support to allow customers to track cross account monitors through ListMonitor, GetMonitor, ListHealthEvents, GetHealthEvent, StartQuery APIs.
* api-change:``iotwireless``: [``botocore``] Add support for retrieving key historical and live metrics for LoRaWAN devices and gateways
* api-change:``marketplace-catalog``: [``botocore``] This release enhances the ListEntities API to support ResaleAuthorizationId filter and sort for OfferEntity in the request and the addition of a ResaleAuthorizationId field in the response of OfferSummary.
* api-change:``neptune-graph``: [``botocore``] Add the new API Start-Import-Task for Amazon Neptune Analytics.
* api-change:``sagemaker``: [``botocore``] This release adds support for custom images for the CodeEditor App on SageMaker Studio

1.34.73

=======

* api-change:``codecatalyst``: [``botocore``] This release adds support for understanding pending changes to subscriptions by including two new response parameters for the GetSubscription API for Amazon CodeCatalyst.
* api-change:``compute-optimizer``: [``botocore``] This release enables AWS Compute Optimizer to analyze and generate recommendations with a new customization preference, Memory Utilization.
* api-change:``ec2``: [``botocore``] Amazon EC2 C7gd, M7gd and R7gd metal instances with up to 3.8 TB of local NVMe-based SSD block-level storage have up to 45% improved real-time NVMe storage performance than comparable Graviton2-based instances.
* api-change:``eks``: [``botocore``] Add multiple customer error code to handle customer caused failure when managing EKS node groups
* api-change:``guardduty``: [``botocore``] Add EC2 support for GuardDuty Runtime Monitoring auto management.
* api-change:``neptune-graph``: [``botocore``] Update ImportTaskCancelled waiter to evaluate task state correctly and minor documentation changes.
* api-change:``oam``: [``botocore``] This release adds support for sharing AWS::InternetMonitor::Monitor resources.
* api-change:``quicksight``: [``botocore``] Amazon QuickSight: Adds support for setting up VPC Endpoint restrictions for accessing QuickSight Website.

1.34.72

=======

* api-change:``batch``: [``botocore``] This feature allows AWS Batch to support configuration of imagePullSecrets and allowPrivilegeEscalation for jobs running on EKS
* api-change:``bedrock-agent``: [``botocore``] This changes introduces metadata documents statistics and also updates the documentation for bedrock agent.
* api-change:``bedrock-agent-runtime``: [``botocore``] This release introduces filtering support on Retrieve and RetrieveAndGenerate APIs.
* api-change:``elasticache``: [``botocore``] Added minimum capacity to  Amazon ElastiCache Serverless. This feature allows customer to ensure minimum capacity even without current load
* api-change:``secretsmanager``: [``botocore``] Documentation updates for Secrets Manager

1.34.71

=======

* api-change:``bedrock-agent-runtime``: [``botocore``] This release adds support to customize prompts sent through the RetrieveAndGenerate API in Agents for Amazon Bedrock.
* api-change:``ce``: [``botocore``] Adds support for backfill of cost allocation tags, with new StartCostAllocationTagBackfill and ListCostAllocationTagBackfillHistory API.
* api-change:``ec2``: [``botocore``] Documentation updates for Elastic Compute Cloud (EC2).
* api-change:``ecs``: [``botocore``] This is a documentation update for Amazon ECS.
* api-change:``finspace``: [``botocore``] Add new operation delete-kx-cluster-node and add status parameter to list-kx-cluster-node operation.

1.34.70

=======

* api-change:``codebuild``: [``botocore``] Supporting GitLab and GitLab Self Managed as source types in AWS CodeBuild.
* api-change:``ec2``: [``botocore``] Added support for ModifyInstanceMetadataDefaults and GetInstanceMetadataDefaults to set Instance Metadata Service account defaults
* api-change:``ecs``: [``botocore``] Documentation only update for Amazon ECS.
* api-change:``emr-containers``: [``botocore``] This release increases the number of supported job template parameters from 20 to 100.
* api-change:``globalaccelerator``: [``botocore``] AWS Global Accelerator now supports cross-account sharing for bring your own IP addresses.
* api-change:``medialive``: [``botocore``] Exposing TileMedia H265 options
* api-change:``sagemaker``: [``botocore``] Introduced support for the following new instance types on SageMaker Studio for JupyterLab and CodeEditor applications: m6i, m6id, m7i, c6i, c6id, c7i, r6i, r6id, r7i, and p5

1.34.69

=======

* api-change:``firehose``: [``botocore``] Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy.
* api-change:``kendra``: [``botocore``] Documentation update, March 2024. Corrects some docs for Amazon Kendra.
* api-change:``pricing``: [``botocore``] Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs
* api-change:``rolesanywhere``: [``botocore``] This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200.
* api-change:``securityhub``: [``botocore``] Added new resource detail object to ASFF, including resource for LastKnownExploitAt

1.34.68

=======

* api-change:``codeartifact``: [``botocore``] This release adds Package groups to CodeArtifact so you can more conveniently configure package origin controls for multiple packages.

1.34.67

=======

* api-change:``accessanalyzer``: [``botocore``] This release adds support for policy validation and external access findings for DynamoDB tables and streams. IAM Access Analyzer helps you author functional and secure resource-based policies and identify cross-account access. Updated service API, documentation, and paginators.
* api-change:``codebuild``: [``botocore``] This release adds support for new webhook events (RELEASED and PRERELEASED) and filter types (TAG_NAME and RELEASE_NAME).
* api-change:``connect``: [``botocore``] This release updates the *InstanceStorageConfig APIs to support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS. Use this resource type to enable streaming for real-time analysis of chat contacts and to associate a Kinesis stream where real-time analysis chat segments will be published.
* api-change:``dynamodb``: [``botocore``] This release introduces 3 new APIs ('GetResourcePolicy', 'PutResourcePolicy' and 'DeleteResourcePolicy') and modifies the existing 'CreateTable' API for the resource-based policy support. It also modifies several APIs to accept a 'TableArn' for the 'TableName' parameter.
* api-change:``managedblockchain-query``: [``botocore``] AMB Query: update GetTransaction to include transactionId as input
* api-change:``savingsplans``: [``botocore``] Introducing the Savings Plans Return feature enabling customers to return their Savings Plans within 7 days of purchase.

1.34.66

=======

* api-change:``cloudformation``: [``botocore``] Documentation update, March 2024. Corrects some formatting.
* api-change:``ec2``: [``botocore``] This release adds the new DescribeMacHosts API operation for getting information about EC2 Mac Dedicated Hosts. Users can now see the latest macOS versions that their underlying Apple Mac can support without needing to be updated.
* api-change:``finspace``: [``botocore``] Adding new attributes readWrite and onDemand to dataview models for Database Maintenance operations.
* api-change:``logs``: [``botocore``] Update LogSamples field in Anomaly model to be a list of LogEvent
* api-change:``managedblockchain-query``: [``botocore``] Introduces a new API for Amazon Managed Blockchain Query: ListFilteredTransactionEvents.

1.34.65

=======

* api-change:``cloudformation``: [``botocore``] This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed.
* api-change:``kms``: [``botocore``] Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy
* api-change:``mediatailor``: [``botocore``] This release adds support to allow customers to show different content within a channel depending on metadata associated with the viewer.
* api-change:``rds``: [``botocore``] This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.
* api-change:``s3``: [``botocore``] Fix two issues with response root node names.
* api-change:``timestream-query``: [``botocore``] Documentation updates, March 2024

1.34.64

=======

* api-change:``backup``: [``botocore``] This release introduces a boolean attribute ManagedByAWSBackupOnly as part of ListRecoveryPointsByResource api to filter the recovery points based on ownership. This attribute can be used to filter out the recovery points protected by AWSBackup.
* api-change:``codebuild``: [``botocore``] AWS CodeBuild now supports overflow behavior on Reserved Capacity.
* api-change:``connect``: [``botocore``] This release adds Hierarchy based Access Control fields to Security Profile public APIs and adds support for UserAttributeFilter to SearchUsers API.
* api-change:``ec2``: [``botocore``] Add media accelerator and neuron device information on the describe instance types API.
* api-change:``kinesisanalyticsv2``: [``botocore``] Support for Flink 1.18 in Managed Service for Apache Flink
* api-change:``s3``: [``botocore``] Documentation updates for Amazon S3.
* api-change:``sagemaker``: [``botocore``] Adds m6i, m6id, m7i, c6i, c6id, c7i, r6i r6id, r7i, p5 instance type support to Sagemaker Notebook Instances and miscellaneous wording fixes for previous Sagemaker documentation.
* api-change:``workspaces-thin-client``: [``botocore``] Removed unused parameter kmsKeyArn from UpdateDeviceRequest

1.34.63

=======

* api-change:``amplify``: [``botocore``] Documentation updates for Amplify. Identifies the APIs available only to apps created using Amplify Gen 1.
* api-change:``ec2-instance-connect``: [``botocore``] This release includes a new exception type "SerialConsoleSessionUnsupportedException" for SendSerialConsoleSSHPublicKey API.
* api-change:``elbv2``: [``botocore``] This release allows you to configure HTTP client keep-alive duration for communication between clients and Application Load Balancers.
* api-change:``fis``: [``botocore``] This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses.
* api-change:``iot-roborunner``: [``botocore``] The iot-roborunner client has been removed following the deprecation of the service.
* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2.
* api-change:``secretsmanager``: [``botocore``] Doc only update for Secrets Manager
* api-change:``timestream-influxdb``: [``botocore``] This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs.
* enhancement:``urllib3``: [``botocore``] Added support for urllib3 2.2.1+ in Python 3.10+

1.34.62

=======

* api-change:``ivs-realtime``: [``botocore``] adds support for multiple new composition layout configuration options (grid, pip)
* api-change:``kinesisanalyticsv2``: [``botocore``] Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.
* api-change:``s3``: [``botocore``] This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).

1.34.61

=======

* api-change:``cloudformation``: [``botocore``] CloudFormation documentation update for March, 2024
* api-change:``connect``: [``botocore``] This release increases MaxResults limit to 500 in request for SearchUsers, SearchQueues and SearchRoutingProfiles APIs of Amazon Connect.
* api-change:``ec2``: [``botocore``] Documentation updates for Amazon EC2.
* api-change:``kafka``: [``botocore``] Added support for specifying the starting position of topic replication in MSK-Replicator.
* api-change:``ssm``: [``botocore``] March 2024 doc-only updates for Systems Manager.

1.34.60

=======

* api-change:``codestar-connections``: [``botocore``] Added a sync configuration enum to disable publishing of deployment status to source providers (PublishDeploymentStatus). Added a sync configuration enum (TriggerStackUpdateOn) to only trigger changes.
* api-change:``elasticache``: [``botocore``] Revisions to API text that are now to be carried over to SDK text, changing usages of "SFO" in code examples to "us-west-1", and some other typos.
* api-change:``mediapackagev2``: [``botocore``] This release enables customers to safely update their MediaPackage v2 channel groups, channels and origin endpoints using entity tags.

1.34.59

=======

* api-change:``batch``: [``botocore``] This release adds JobStateTimeLimitActions setting to the Job Queue API. It allows you to configure an action Batch can take for a blocking job in front of the queue after the defined period of time. The new parameter applies for ECS, EKS, and FARGATE Job Queues.
* api-change:``bedrock-agent-runtime``: [``botocore``] Documentation update for Bedrock Runtime Agent
* api-change:``cloudtrail``: [``botocore``] Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs.
* api-change:``codebuild``: [``botocore``] This release adds support for a new webhook event: PULL_REQUEST_CLOSED.
* api-change:``cognito-idp``: [``botocore``] Add ConcurrentModificationException to SetUserPoolMfaConfig
* api-change:``guardduty``: [``botocore``] Add RDS Provisioned and Serverless Usage types
* api-change:``transfer``: [``botocore``] Added DES_EDE3_CBC to the list of supported encryption algorithms for messages sent with an AS2 connector.

1.34.58

=======

* api-change:``appconfig``: [``botocore``] AWS AppConfig now supports dynamic parameters, which enhance the functionality of AppConfig Extensions by allowing you to provide parameter values to your Extensions at the time you deploy your configuration.
* api-change:``ec2``: [``botocore``] This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation.
* api-change:``grafana``: [``botocore``] Adds support for the new GrafanaToken as part of the Amazon Managed Grafana Enterprise plugins upgrade to associate your AWS account with a Grafana Labs account.
* api-change:``lambda``: [``botocore``] Documentation updates for AWS Lambda
* api-change:``payment-cryptography-data``: [``botocore``] AWS Payment Cryptography EMV Decrypt Feature  Release
* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for io2 storage for Multi-AZ DB clusters
* api-change:``snowball``: [``botocore``] Doc-only update for change to EKS-Anywhere ordering.
* api-change:``wafv2``: [``botocore``] You can increase the max request body inspection size for some regional resources. The size setting is in the web ACL association config. Also, the AWSManagedRulesBotControlRuleSet EnableMachineLearning setting now takes a Boolean instead of a primitive boolean type, for languages like Java.
* api-change:``workspaces``: [``botocore``] Added note for user decoupling

1.34.57

=======

* api-change:``dynamodb``: [``botocore``] Doc only updates for DynamoDB documentation
* api-change:``imagebuilder``: [``botocore``] Add PENDING status to Lifecycle Execution resource status. Add StartTime and EndTime to ListLifecycleExecutionResource API response.
* api-change:``mwaa``: [``botocore``] Amazon MWAA adds support for Apache Airflow v2.8.1.
* api-change:``rds``: [``botocore``] Updated the input of CreateDBCluster and ModifyDBCluster to support setting CA certificates. Updated the output of DescribeDBCluster to show current CA certificate setting value.
* api-change:``redshift``: [``botocore``] Update for documentation only. Covers port ranges, definition updates for data sharing, and definition updates to cluster-snapshot documentation.
* api-change:``verifiedpermissions``: [``botocore``] Deprecating details in favor of configuration for GetIdentitySource and ListIdentitySources APIs.

1.34.56

=======

* api-change:``apigateway``: [``botocore``] Documentation updates for Amazon API Gateway
* api-change:``chatbot``: [``botocore``] Minor update to documentation.
* api-change:``organizations``: [``botocore``] This release contains an endpoint addition
* api-change:``sesv2``: [``botocore``] Adds support for providing custom headers within SendEmail and SendBulkEmail for SESv2.

1.34.55

=======

* api-change:``cloudformation``: [``botocore``] Add DetailedStatus field to DescribeStackEvents and DescribeStacks APIs
* api-change:``fsx``: [``botocore``] Added support for creating FSx for NetApp ONTAP file systems with up to 12 HA pairs, delivering up to 72 GB/s of read throughput and 12 GB/s of write throughput.
* api-change:``organizations``: [``botocore``] Documentation update for AWS Organizations

1.34.54

=======

* api-change:``accessanalyzer``: [``botocore``] Fixed a typo in description field.
* api-change:``autoscaling``: [``botocore``] With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot Fleet improve the default price protection behavior of attribute-based instance type selection of Spot Instances, to consistently select from a wide range of instance types.
* api-change:``ec2``: [``botocore``] With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot Fleet improve the default price protection behavior of attribute-based instance type selection of Spot Instances, to consistently select from a wide range of instance types.

1.34.53

=======

* api-change:``docdb-elastic``: [``botocore``] Launched Elastic Clusters Readable Secondaries, Start/Stop, Configurable Shard Instance count, Automatic Backups and Snapshot Copying
* api-change:``eks``: [``botocore``] Added support for new AL2023 AMIs to the supported AMITypes.
* api-change:``lexv2-models``: [``botocore``] This release makes AMAZON.QnAIntent generally available in Amazon Lex. This generative AI feature leverages large language models available through Amazon Bedrock to automate frequently asked questions (FAQ) experience for end-users.
* api-change:``migrationhuborchestrator``: [``botocore``] Adds new CreateTemplate, UpdateTemplate and DeleteTemplate APIs.
* api-change:``quicksight``: [``botocore``] TooltipTarget for Combo chart visuals; ColumnConfiguration limit increase to 2000; Documentation Update
* api-change:``sagemaker``: [``botocore``] Adds support for ModelDataSource in Model Packages to support unzipped models. Adds support to specify SourceUri for models which allows registration of models without mandating a container for hosting. Using SourceUri, customers can decouple the model from hosting information during registration.
* api-change:``securitylake``: [``botocore``] Add capability to update the Data Lake's MetaStoreManager Role in order to perform required data lake updates to use Iceberg table format in their data lake or update the role for any other reason.

1.34.52

=======

* api-change:``batch``: [``botocore``] This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs.
* api-change:``bedrock-agent-runtime``: [``botocore``] This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents
* api-change:``ce``: [``botocore``] This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.
* api-change:``ec2``: [``botocore``] This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
* api-change:``iot``: [``botocore``] This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
* api-change:``wafv2``: [``botocore``] AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes.

1.34.51

=======

* api-change:``amplifyuibuilder``: [``botocore``] We have added the ability to tag resources after they are created

1.34.50

=======

* api-change:``apigateway``: [``botocore``] Documentation updates for Amazon API Gateway.
* api-change:``drs``: [``botocore``] Added volume status to DescribeSourceServer replicated volumes.
* api-change:``kafkaconnect``: [``botocore``] Adds support for tagging, with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API.
* api-change:``rds``: [``botocore``] This release adds support for gp3 data volumes for Multi-AZ DB Clusters.

1.34.49

=======

* api-change:``appsync``: [``botocore``] Documentation only updates for AppSync
* api-change:``qldb``: [``botocore``] Clarify possible values for KmsKeyArn and EncryptionDescription.
* api-change:``rds``: [``botocore``] Add pattern and length based validations for DBShardGroupIdentifier
* api-change:``rum``: [``botocore``] Doc-only update for new RUM metrics that were added

1.34.48

=======

* api-change:``internetmonitor``: [``botocore``] This release adds IPv4 prefixes to health events
* api-change:``kinesisvideo``: [``botocore``] Increasing NextToken parameter length restriction for List APIs from 512 to 1024.

1.34.47

=======

* api-change:``iotevents``: [``botocore``] Increase the maximum length of descriptions for Inputs, Detector Models, and Alarm Models
* api-change:``lookoutequipment``: [``botocore``] This release adds a field exposing model quality to read APIs for models. It also adds a model quality field to the API response when creating an inference scheduler.
* api-change:``medialive``: [``botocore``] MediaLive now supports the ability to restart pipelines in a running channel.
* api-change:``ssm``: [``botocore``] This release adds support for sharing Systems Manager parameters with other AWS accounts.

1.34.46

=======

* api-change:``dynamodb``: [``botocore``] Publishing quick fix for doc only update.
* api-change:``firehose``: [``botocore``] This release updates a few Firehose related APIs.
* api-change:``lambda``: [``botocore``] Add .NET 8 (dotnet8) Runtime support to AWS Lambda.

1.34.45

=======

* api-change:``amplify``: [``botocore``] This release contains API changes that enable users to configure their Amplify domains with their own custom SSL/TLS certificate.
* api-change:``chatbot``: [``botocore``] This release adds support for AWS Chatbot. You can now monitor, operate, and troubleshoot your AWS resources with interactive ChatOps using the AWS SDK.
* api-change:``config``: [``botocore``] Documentation updates for the AWS Config CLI
* api-change:``ivs``: [``botocore``] Changed description for latencyMode in Create/UpdateChannel and Channel/ChannelSummary.
* api-change:``keyspaces``: [``botocore``] Documentation updates for Amazon Keyspaces
* api-change:``mediatailor``: [``botocore``] MediaTailor: marking AdBreak.OffsetMillis as required.

1.34.44

=======

* api-change:``connectparticipant``: [``botocore``] Doc only update to GetTranscript API reference guide to inform users about presence of events in the chat transcript.
* api-change:``emr``: [``botocore``] adds fine grained control over Unhealthy Node Replacement to Amazon ElasticMapReduce
* api-change:``firehose``: [``botocore``] This release adds support for Data Message Extraction for decompressed CloudWatch logs, and to use a custom file extension or time zone for S3 destinations.
* api-change:``lambda``: [``botocore``] Documentation-only updates for Lambda to clarify a number of existing actions and properties.
* api-change:``rds``: [``botocore``] Doc only update for a valid option in DB parameter group
* api-change:``sns``: [``botocore``] This release marks phone numbers as sensitive inputs.

1.34.43

=======

* api-change:``artifact``: [``botocore``] This is the initial SDK release for AWS Artifact. AWS Artifact provides on-demand access to compliance and third-party compliance reports. This release includes access to List and Get reports, along with their metadata. This release also includes access to AWS Artifact notifications settings.
* api-change:``codepipeline``: [``botocore``] Add ability to override timeout on action level.
* api-change:``detective``: [``botocore``] Doc only updates for content enhancement
* api-change:``guardduty``: [``botocore``] Marked fields IpAddressV4, PrivateIpAddress, Email as Sensitive.
* api-change:``healthlake``: [``botocore``] This release adds a new response parameter, JobProgressReport, to the DescribeFHIRImportJob and ListFHIRImportJobs API operation. JobProgressReport provides details on the progress of the import job on the server.
* api-change:``opensearch``: [``botocore``] Adds additional supported instance types.
* api-change:``polly``: [``botocore``] Amazon Polly adds 1 new voice - Burcu (tr-TR)
* api-change:``sagemaker``: [``botocore``] This release adds a new API UpdateClusterSoftware for SageMaker HyperPod. This API allows users to patch HyperPod clusters with latest platform softwares.
* api-change:``secretsmanager``: [``botocore``] Doc only update for Secrets Manager
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version

1.34.42

=======

* api-change:``controltower``: [``botocore``] Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance.
* api-change:``lookoutequipment``: [``botocore``] This feature allows customers to see pointwise model diagnostics results for their models.
* api-change:``qbusiness``: [``botocore``] This release adds the metadata-boosting feature, which allows customers to easily fine-tune the underlying ranking of retrieved RAG passages in order to optimize Q&A answer relevance. It also adds new feedback reasons for the PutFeedback API.

1.34.41

=======

* bugfix:ContainerProvider: [``botocore``] Properly refreshes token from file from EKS in ContainerProvider
* api-change:``lightsail``: [``botocore``] This release adds support to upgrade the major version of a database.
* api-change:``marketplace-catalog``: [``botocore``] AWS Marketplace Catalog API now supports setting intent on requests
* api-change:``resource-explorer-2``: [``botocore``] Resource Explorer now uses newly supported IPv4 'amazonaws.com' endpoints by default.
* api-change:``securitylake``: [``botocore``] Documentation updates for Security Lake
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version

1.34.40

=======

* api-change:``appsync``: [``botocore``] Adds support for new options on GraphqlAPIs, Resolvers and  Data Sources for emitting Amazon CloudWatch metrics for enhanced monitoring of AppSync APIs.
* api-change:``cloudwatch``: [``botocore``] Update cloudwatch client to latest version
* api-change:``neptune-graph``: [``botocore``] Adding a new option "parameters" for data plane api ExecuteQuery to support running parameterized query via SDK.
* api-change:``route53domains``: [``botocore``] This release adds bill contact support for RegisterDomain, TransferDomain, UpdateDomainContact and GetDomainDetail API.

1.34.39

=======

* api-change:``amp``: [``botocore``] Overall documentation updates.
* api-change:``batch``: [``botocore``] This feature allows Batch to support configuration of repository credentials for jobs running on ECS
* api-change:``braket``: [``botocore``] Creating a job will result in DeviceOfflineException when using an offline device, and DeviceRetiredException when using a retired device.
* api-change:``cost-optimization-hub``: [``botocore``] Adding includeMemberAccounts field to the response of ListEnrollmentStatuses API.
* api-change:``ecs``: [``botocore``] Documentation only update for Amazon ECS.
* api-change:``iot``: [``botocore``] This release allows AWS IoT Core users to enable Online Certificate Status Protocol (OCSP) Stapling for TLS X.509 Server Certificates when creating and updating AWS IoT Domain Configurations with Custom Domain.
* api-change:``pricing``: [``botocore``] Add Throttling Exception to all APIs.

1.34.38

=======

* api-change:``codepipeline``: [``botocore``] Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths.
* api-change:``quicksight``: [``botocore``] General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update
* api-change:``workspaces``: [``botocore``] This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter "WorkspaceName".

1.34.37

=======

* api-change:``datasync``: [``botocore``] AWS DataSync now supports manifests for specifying files or objects to transfer.
* api-change:``lexv2-models``: [``botocore``] Update lexv2-models client to latest version
* api-change:``redshift``: [``botocore``] LisRecommendations API to fetch Amazon Redshift Advisor recommendations.

1.34.36

=======

* api-change:``appsync``: [``botocore``] Support for environment variables in AppSync GraphQL APIs
* api-change:``ecs``: [``botocore``] This release is a documentation only update to address customer issues.
* api-change:``es``: [``botocore``] This release adds clear visibility to the customers on the changes that they make on the domain.
* api-change:``logs``: [``botocore``] This release adds a new field, logGroupArn, to the response of the logs:DescribeLogGroups action.
* api-change:``opensearch``: [``botocore``] This release adds clear visibility to the customers on the changes that they make on the domain.
* api-change:``wafv2``: [``botocore``] You can now delete an API key that you've created for use with your CAPTCHA JavaScript integration API.

1.34.35

=======

* api-change:``glue``: [``botocore``] Introduce Catalog Encryption Role within Glue Data Catalog Settings. Introduce SASL/PLAIN as an authentication method for Glue Kafka connections
* api-change:``workspaces``: [``botocore``] Added definitions of various WorkSpace states

1.34.34

=======

* api-change:``dynamodb``: [``botocore``] Any number of users can execute up to 50 concurrent restores (any type of restore) in a given account.
* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Canvas adds GenerativeAiSettings support for CanvasAppSettings.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version

1.34.33

=======

* api-change:``cognito-idp``: [``botocore``] Added CreateIdentityProvider and UpdateIdentityProvider details for new SAML IdP features
* api-change:``ivs``: [``botocore``] This release introduces a new resource Playback Restriction Policy which can be used to geo-restrict or domain-restrict channel stream playback when associated with a channel.  New APIs to support this resource were introduced in the form of Create/Delete/Get/Update/List.
* api-change:``managedblockchain-query``: [``botocore``] This release adds support for transactions that have not reached finality. It also removes support for the status property from the response of the GetTransaction operation. You can use the confirmationStatus and executionStatus properties to determine the status of the transaction.
* api-change:``mediaconvert``: [``botocore``] This release includes support for broadcast-mixed audio description tracks.
* api-change:``neptune-graph``: [``botocore``] Adding new APIs in SDK for Amazon Neptune Analytics. These APIs include operations to execute, cancel, list queries and get the graph summary.

1.34.32

=======

* api-change:``cloudformation``: [``botocore``] CloudFormation IaC generator allows you to scan existing resources in your account and select resources to generate a template for a new or existing CloudFormation stack.
* api-change:``elbv2``: [``botocore``] Update elbv2 client to latest version
* api-change:``glue``: [``botocore``] Update page size limits for GetJobRuns and GetTriggers APIs.
* api-change:``ssm``: [``botocore``] This release adds an optional Duration parameter to StateManager Associations. This allows customers to specify how long an apply-only-on-cron association execution should run. Once the specified Duration is out all the ongoing cancellable commands or automations are cancelled.

1.34.31

=======

* api-change:``datazone``: [``botocore``] Add new skipDeletionCheck to DeleteDomain. Add new skipDeletionCheck to DeleteProject which also automatically deletes dependent objects
* api-change:``route53``: [``botocore``] Update the SDKs for text changes in the APIs.

1.34.30

=======

* api-change:``autoscaling``: [``botocore``] EC2 Auto Scaling customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type.
* api-change:``comprehend``: [``botocore``] Comprehend PII analysis now supports Spanish input documents.
* api-change:``ec2``: [``botocore``] EC2 Fleet customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type.
* api-change:``mwaa``: [``botocore``] This release adds MAINTENANCE environment status for Amazon MWAA environments.
* api-change:``rds``: [``botocore``] Introduced support for the InsufficientDBInstanceCapacityFault error in the RDS RestoreDBClusterFromSnapshot and RestoreDBClusterToPointInTime API methods. This provides enhanced error handling, ensuring a more robust experience.
* api-change:``snowball``: [``botocore``] Modified description of createaddress to include direction to add path when providing a JSON file.

1.34.29

=======

* api-change:``connect``: [``botocore``] Update list and string length limits for predefined attributes.
* api-change:``inspector2``: [``botocore``] This release adds ECR container image scanning based on their lastRecordedPullTime.
* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs.

1.34.28

=======

* api-change:``acm-pca``: [``botocore``] AWS Private CA now supports an option to omit the CDP extension from issued certificates, when CRL revocation is enabled.
* api-change:``lightsail``: [``botocore``] This release adds support for IPv6-only instance plans.

1.34.27

=======

* api-change:``ec2``: [``botocore``] Introduced a new clientToken request parameter on CreateNetworkAcl and CreateRouteTable APIs. The clientToken parameter allows idempotent operations on the APIs.
* api-change:``ecs``: [``botocore``] Documentation updates for Amazon ECS.
* api-change:``outposts``: [``botocore``] DeviceSerialNumber parameter is now optional in StartConnection API
* api-change:``rds``: [``botocore``] This release adds support for Aurora Limitless Database.
* api-change:``storagegateway``: [``botocore``] Add DeprecationDate and SoftwareVersion to response of ListGateways.

1.34.26

=======

* api-change:``inspector2``: [``botocore``] This release adds support for CIS scans on EC2 instances.

1.34.25

=======

* enhancement:documentation: [``botocore``] Updates the GitHub issue creation link in our README

1.34.24

=======

* api-change:``appconfigdata``: [``botocore``] Fix FIPS Endpoints in aws-us-gov.
* api-change:``cloud9``: [``botocore``] Doc-only update around removing AL1 from list of available AMIs for Cloud9
* api-change:``cloudfront-keyvaluestore``: [``botocore``] This release improves upon the DescribeKeyValueStore API by returning two additional fields, Status of the KeyValueStore and the FailureReason in case of failures during creation of KeyValueStore.
* api-change:``connectcases``: [``botocore``] This release adds the ability to view audit history on a case and introduces a new parameter, performedBy, for CreateCase and UpdateCase API's.
* api-change:``ec2``: [``botocore``] Documentation updates for Amazon EC2.
* api-change:``ecs``: [``botocore``] This release adds support for Transport Layer Security (TLS) and Configurable Timeout to ECS Service Connect. TLS facilitates privacy and data security for inter-service communications, while Configurable Timeout allows customized per-request timeout and idle timeout for Service Connect services.
* api-change:``finspace``: [``botocore``] Allow customer to set zip default through command line arguments.
* api-change:``organizations``: [``botocore``] Doc only update for quota increase change
* api-change:``rds``: [``botocore``] Introduced support for the InsufficientDBInstanceCapacityFault error in the RDS CreateDBCluster API method. This provides enhanced error handling, ensuring a more robust experience when creating database clusters with insufficient instance capacity.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version

1.34.23

=======

* api-change:``athena``: [``botocore``] Introducing new NotebookS3LocationUri parameter to Athena ImportNotebook API. Payload is no longer required and either Payload or NotebookS3LocationUri needs to be provided (not both) for a successful ImportNotebook API call. If both are provided, an InvalidRequestException will be thrown.
* api-change:``codebuild``: [``botocore``] Release CodeBuild Reserved Capacity feature
* api-change:``dynamodb``: [``botocore``] This release adds support for including ApproximateCreationDateTimePrecision configurations in EnableKinesisStreamingDestination API, adds the same as an optional field in the response of DescribeKinesisStreamingDestination, and adds support for a new UpdateKinesisStreamingDestination API.
* api-change:``qconnect``: [``botocore``] Increased Quick Response name max length to 100

1.34.22

=======

* api-change:``b2bi``: [``botocore``] Increasing TestMapping inputFileContent file size limit to 5MB and adding file size limit 250KB for TestParsing input file. This release also includes exposing InternalServerException for Tag APIs.
* api-change:``cloudtrail``: [``botocore``] This release adds a new API ListInsightsMetricData to retrieve metric data from CloudTrail Insights.
* api-change:``connect``: [``botocore``] GetMetricDataV2 now supports 3 groupings
* api-change:``drs``: [``botocore``] Removed invalid and unnecessary default values.
* api-change:``firehose``: [``botocore``] Allow support for Snowflake as a Kinesis Data Firehose delivery destination.
* api-change:``sagemaker-featurestore-runtime``: [``botocore``] Increase BatchGetRecord limits from 10 items to 100 items

1.34.21

=======

* api-change:``dynamodb``: [``botocore``] Updating note for enabling streams for UpdateTable.
* api-change:``keyspaces``: [``botocore``] This release adds support for Multi-Region Replication with provisioned tables, and Keyspaces auto scaling APIs

1.34.20

=======

* api-change:``iot``: [``botocore``] Revert release of LogTargetTypes
* api-change:``iotfleetwise``: [``botocore``] Updated APIs: SignalNodeType query parameter has been added to ListSignalCatalogNodesRequest and ListVehiclesResponse has been extended with attributes field.
* api-change:``macie2``: [``botocore``] This release adds support for analyzing Amazon S3 objects that are encrypted using dual-layer server-side encryption with AWS KMS keys (DSSE-KMS). It also adds support for reporting DSSE-KMS details in statistics and metadata about encryption settings for S3 buckets and objects.
* api-change:``payment-cryptography``: [``botocore``] Provide an additional option for key exchange using RSA wrap/unwrap in addition to tr-34/tr-31 in ImportKey and ExportKey operations. Added new key usage (type) TR31_M1_ISO_9797_1_MAC_KEY, for use with Generate/VerifyMac dataplane operations  with ISO9797 Algorithm 1 MAC calculations.
* api-change:``personalize-runtime``: [``botocore``] Documentation updates for Amazon Personalize
* api-change:``personalize``: [``botocore``] Documentation updates for Amazon Personalize.
* api-change:``rekognition``: [``botocore``] This release adds ContentType and TaxonomyLevel attributes to DetectModerationLabels and GetMediaAnalysisJob API responses.
* api-change:``securityhub``: [``botocore``] Documentation updates for AWS Security Hub

1.34.19

=======

* api-change:``sagemaker``: [``botocore``] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.

1.34.18

=======

* api-change:``connect``: [``botocore``] Supervisor Barge for Chat is now supported through the MonitorContact API.
* api-change:``connectparticipant``: [``botocore``] Introduce new Supervisor participant role
* api-change:``location``: [``botocore``] Location SDK documentation update. Added missing fonts to the MapConfiguration data type. Updated note for the SubMunicipality property in the place data type.
* api-change:``mwaa``: [``botocore``] This Amazon MWAA feature release includes new fields in CreateWebLoginToken response model. The new fields IamIdentity and AirflowIdentity will let you match identifications, as the Airflow identity length is currently hashed to 64 characters.
* api-change:``s3control``: [``botocore``] S3 On Outposts team adds dualstack endpoints support for S3Control and S3Outposts API calls.
* api-change:``supplychain``: [``botocore``] This release includes APIs CreateBillOfMaterialsImportJob and GetBillOfMaterialsImportJob.
* api-change:``transfer``: [``botocore``] AWS Transfer Family no

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant