Skip to content

Conversation

@pyup-bot
Copy link
Collaborator

@pyup-bot pyup-bot commented Nov 3, 2025

Update amqp from 2.5.2 to 5.3.1.

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

Links

Update asgiref from 3.2.5 to 3.10.0.

Changelog

3.10.0

-------------------

* Added AsyncSingleThreadContext context manager to ensure multiple AsyncToSync
invocations use the same thread. (511)

3.9.2

------------------

* Adds support for Python 3.14.

* Fixes wsgi.errors file descriptor in WsgiToAsgi adapter.

3.9.1

------------------

* Fixed deletion of Local values affecting other contexts. (523)

* Skip CPython specific garbage collection test on pypy. (521)

3.9.0

------------------

* Adds support for Python 3.13.

* Drops support for (end-of-life) Python 3.8.

* Fixes an error with conflicting kwargs between AsyncToSync and the wrapped
function. (471)

* Fixes Local isolation between asyncio Tasks. (478)

* Fixes a reference cycle in Local (508)

* Fixes a deadlock in CurrentThreadExecutor with nested async_to_sync →
sync_to_async → async_to_sync → create_task calls. (494)

* The ApplicationCommunicator testing utility will now return the task result
if it's already completed on send_input and receive_nothing. You may need to
catch (e.g.) the asyncio.exceptions.CancelledError if sending messages to
already finished consumers in your tests. (505)

3.8.1

------------------

* Fixes a regression in 3.8.0 affecting nested task cancellation inside
sync_to_async.

3.8.0

------------------

* Adds support for Python 3.12.

* Drops support for (end-of-life) Python 3.7.

* Fixes task cancellation propagation to subtasks when using synchronous Django
middleware.

* Allows nesting ``sync_to_async`` via ``asyncio.wait_for``.

* Corrects WSGI adapter handling of root path.

* Handles case where `"client"` is ``None`` in WsgiToAsgi adapter.

3.7.2

------------------

* The type annotations for SyncToAsync and AsyncToSync have been changed to
more accurately reflect the kind of callables they return.

3.7.1

------------------

* On Python 3.10 and below, the version of the "typing_extensions" package
is now constrained to be at least version 4 (as we depend on functionality
in that version and above)

3.7.0

------------------

* Contextvars are now required for the implementation of `sync` as Python 3.6
is now no longer a supported version.

* sync_to_async and async_to_sync now pass-through

* Debug and Lifespan State extensions have resulted in a typing change for some
request and response types. This change should be backwards-compatible.

* ``asgiref`` frames will now be hidden in Django tracebacks by default.

* Raw performance and garbage collection improvements in Local, SyncToAsync,
and AsyncToSync.

3.6.0

------------------

* Two new functions are added to the ``asgiref.sync`` module: ``iscoroutinefunction()``
and ``markcoroutinefunction()``.

Python 3.12 deprecates ``asyncio.iscoroutinefunction()`` as an alias for
``inspect.iscoroutinefunction()``, whilst also removing the ``_is_coroutine`` marker.
The latter is replaced with the ``inspect.markcoroutinefunction`` decorator.

The new ``asgiref.sync`` functions are compatibility shims for these
functions that can be used until Python 3.12 is the minimum supported
version.

**Note** that these functions are considered **beta**, and as such, whilst
not likely, are subject to change in a point release, until the final release
of Python 3.12. They are included in ``asgiref`` now so that they can be
adopted by Django 4.2, in preparation for support of Python 3.12.

* The ``loop`` argument to ``asgiref.timeout.timeout`` is deprecated. As per other
``asyncio`` based APIs, the running event loop is used by default. Note that
``asyncio`` provides timeout utilities from Python 3.11, and these should be
preferred where available.

* Support for the ``ASGI_THREADS`` environment variable, used by
``SyncToAsync``, is removed. In general, a running event-loop is not
available to `asgiref` at import time, and so the default thread pool
executor cannot be configured. Protocol servers, or applications, should set
the default executor as required when configuring the event loop at
application startup.

3.5.2

------------------

* Allow async-callables class instances to be passed to AsyncToSync
without warning

* Prevent giving async-callable class instances to SyncToAsync

3.5.1

------------------

* sync_to_async in thread-sensitive mode now works corectly when the
outermost thread is synchronous (214)

3.5.0

------------------

* Python 3.6 is no longer supported, and asyncio calls have been changed to
use only the modern versions of the APIs as a result

* Several causes of RuntimeErrors in cases where an event loop was assigned
to a thread but not running

* Speed improvements in the Local class

3.4.1

------------------

* Fixed an issue with the deadlock detection where it had false positives
during exception handling.

3.4.0

------------------

* Calling sync_to_async directly from inside itself (which causes a deadlock
when in the default, thread-sensitive mode) now has deadlock detection.

* asyncio usage has been updated to use the new versions of get_event_loop,
ensure_future, wait and gather, avoiding deprecation warnings in Python 3.10.
Python 3.6 installs continue to use the old versions; this is only for 3.7+

* sync_to_async and async_to_sync now have improved type hints that pass
through the underlying function type correctly.

* All Websocket* types are now spelled WebSocket, to match our specs and the
official spelling. The old names will work until release 3.5.0, but will
raise deprecation warnings.

* The typing for WebSocketScope and HTTPScope's `extensions` key has been
fixed.

3.3.4

------------------

* The async_to_sync type error is now a warning due the high false negative
rate when trying to detect coroutine-returning callables in Python.

3.3.3

------------------

* The sync conversion functions now correctly detect functools.partial and other
wrappers around async functions on earlier Python releases.

3.3.2

------------------

* SyncToAsync now takes an optional "executor" argument if you want to supply
your own executor rather than using the built-in one.

* async_to_sync and sync_to_async now check their arguments are functions of
the correct type.

* Raising CancelledError inside a SyncToAsync function no longer stops a future
call from functioning.

* ThreadSensitive now provides context hooks/override options so it can be
made to be sensitive in a unit smaller than threads (e.g. per request)

* Drop Python 3.5 support.

* Add type annotations.

3.3.1

------------------

* Updated StatelessServer to use ASGI v3 single-callable applications.

3.3.0

------------------

* sync_to_async now defaults to thread-sensitive mode being on
* async_to_sync now works inside of forked processes
* WsgiToAsgi now correctly clamps its response body when Content-Length is set

3.2.10

-------------------

* Fixed bugs due to bad WeakRef handling introduced in 3.2.8

3.2.9

------------------

* Fixed regression with exception handling in 3.2.8 related to the contextvars fix.

3.2.8

------------------

* Fixed small memory leak in local.Local
* contextvars are now persisted through AsyncToSync

3.2.7

------------------

* Bug fixed in local.Local where deleted Locals would occasionally inherit
their storage into new Locals due to memory reuse.

3.2.6

------------------

* local.Local now works in all threading situations, no longer requires
periodic garbage collection, and works with libraries that monkeypatch
threading (like gevent)
Links

Update billiard from 3.6.3.0 to 4.2.2.

Changelog

4.2.0

--------------------
- Update process.py to close during join only if process has completed.
- Adjust the __repr__ in ApplyResult.
- Remove python 3.7 from CI.
- Added Python 3.12 support.
- Fixed (co_positions): resolve issue caused by absence co_positions (395).
- Fixed: Replaced mktemp usage for Python 3 from python 2.
- Changed nose test to pytest (397) in Integration test.
- Changed nose dependency for unit test (383).

4.1.0

--------------------
- Fixed a python 2 to 3 compat issue which was missed earlier (374).
- Adde Python 3.11 primary support

4.0.2

--------------------
- ExceptionWithTraceback should be an exception.

4.0.1

--------------------
- Add support for Python 3.11 _posixsubprocess.fork_exec() arguments.
- Keep exception traceback somehow (368).

4.0.0

--------------------
- Support Sphinx 4.x.
- Remove dependency to case.
- Drop support of Python < 3.7.
- Update to psutil 5.9.0.
- Add python_requires to enforce Python version.
- Replace deprecated threading Event.isSet with Event.is_set.
- Prevent segmentation fault in get_pdeathsig while using ctypes (361).
- Migrated CI to Github actions.
- Python 3.10 support added.

3.6.4.0

--------------------
- Issue 309: Add Python 3.9 support to spawnv_passfds()
- fix 314
Links

Update boto3 from 1.12.26 to 1.40.64.

Changelog

1.40.64

=======

* api-change:``connectcases``: [``botocore``] Added two new case rule types: Parent Child Field Options (restricts child field options based on parent field value) and Hidden (controls child field visibility based on parent field value). Both enable dynamic field behavior within templates.
* api-change:``ec2``: [``botocore``] Amazon VPC IP Address Manager (IPAM) now supports automated prefix list management, allowing you to create rules that automatically populate customer-managed prefix lists with CIDRs from your IPAM pools or AWS resources based on tags, Regions, or other criteria.
* api-change:``emr``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``fms``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``fsx``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``health``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesis``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lambda``: [``botocore``] Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda
* api-change:``logs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``marketplace-catalog``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mediaconvert``: [``botocore``] Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts.
* api-change:``omics``: [``botocore``] Added WDL_LENIENT engine type that enables implicit typecasting of variable values to its compatible declared types
* api-change:``payment-cryptography``: [``botocore``] Allow additional characters in the CertificateSubject for GetCertificateSigningRequest API.
* api-change:``redshift``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``resourcegroupstaggingapi``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sagemaker``: [``botocore``] Allow update of platform identifier via UpdateNotebookInstance operation.
* api-change:``savingsplans``: [``botocore``] Add dual-stack endpoint support for Savings Plans
* api-change:``snowball``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ssm-quicksetup``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``textract``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``waf``: [``botocore``] Update endpoint ruleset parameters casing

1.40.63

=======

* api-change:``amp``: [``botocore``] Add Anomaly Detection APIs for Amazon Managed Prometheus
* api-change:``apigateway``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``appconfig``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``appflow``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``applicationcostprofiler``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``appmesh``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``appsync``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``artifact``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``auditmanager``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bedrock-agent``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bedrock-agentcore-control``: [``botocore``] Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges.
* api-change:``chime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cleanrooms``: [``botocore``] Added support for advanced Spark configurations to optimize SQL performance
* api-change:``cloudcontrol``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``clouddirectory``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudsearch``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudwatch``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codecatalyst``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codecommit``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codedeploy``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cognito-sync``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``compute-optimizer``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``connectcases``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``deadline``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``devops-guru``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``docdb``: [``botocore``] Adding FailoverState and TagList to GlobalCluster and SynchronizationStatus to GlobalClusterMember.
* api-change:``ecs``: [``botocore``] Amazon ECS Service Connect now supports Envoy access logs, providing deeper observability into request-level traffic patterns and service interactions.
* api-change:``eks-auth``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``elasticache``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``emr-serverless``: [``botocore``] This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``firehose``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``frauddetector``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``geo-places``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``glue``: [``botocore``] This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on AWS Glue.
* api-change:``greengrassv2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotevents-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iot-managed-integrations``: [``botocore``] Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add  "-"  support for name, properties, actions and events in the CapabilityReportCapability object.
* api-change:``keyspacesstreams``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kms``: [``botocore``] Add cross account VPC endpoint service connectivity support to CustomKeyStore.
* api-change:``license-manager-linux-subscriptions``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``marketplace-reporting``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``neptune``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``rtbfabric``: [``botocore``] RTB Fabric documentation update.
* api-change:``s3outposts``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sagemaker-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``schemas``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``serverlessrepo``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``servicecatalog``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sso``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sts``: [``botocore``] Update endpoint ruleset parameters casing

1.40.62

=======

* api-change:``bedrock-runtime``: [``botocore``] Add support for system tool and web citation response.

1.40.61

=======

* api-change:``apigatewayv2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``application-signals``: [``botocore``] Added support for CloudWatch Synthetics Canary resources in ListAuditFindings API. This enhancement allows customers to retrieve audit findings specifically for CloudWatch Synthetics canaries and enables service-canary correlation analysis.
* api-change:``backupsearch``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bcm-pricing-calculator``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bedrock-agent-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bedrock-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cleanroomsml``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:clients: [``botocore``] The following clients have been removed per deprecation of the services - qldb, qldb-session, robomaker, lookoutmetrics, lookoutvision, iotfleethub, apptest
* api-change:``cloud9``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudsearchdomain``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codeconnections``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codeguru-security``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``detective``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ec2``: [``botocore``] This released the DescribeCapacityReservationTopology API.
* api-change:``ecs``: [``botocore``] Amazon ECS supports native linear and canary service deployments, allowing you to shift traffic in increments for more control.
* api-change:``efs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``elastictranscoder``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``emr-containers``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``gameliftstreams``: [``botocore``] Add stream group expiration date and expired status
* api-change:``glacier``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``groundstation``: [``botocore``] Enable use of AzEl ephemerides
* api-change:``inspector-scan``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kafkaconnect``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kendra``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesisvideo``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lambda``: [``botocore``] Added SerializedRequestEntityTooLargeException to Lambda Invoke API
* api-change:``marketplace-deployment``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mediapackage-vod``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``migrationhuborchestrator``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``notifications``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``opensearch``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``organizations``: [``botocore``] Added Account State field to the ListDelegatedAdministrators API response.
* api-change:``partnercentral-selling``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pipes``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ram``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``resource-groups``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``s3``: [``botocore``] Amazon Simple Storage Service / Features: Add conditional writes in CopyObject on destination key to prevent unintended object modifications.
* api-change:``s3control``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sagemaker``: [``botocore``] Amazon SageMaker now supports deleting training and processing jobs in a terminal status.
* api-change:``sagemaker-featurestore-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``security-ir``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``servicecatalog-appregistry``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sqs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``support-app``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``taxsettings``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``trustedadvisor``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``workspaces``: [``botocore``] Added IPv6 address support for WorkSpaces using Dual-Stack subnets
* api-change:``workspaces-instances``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``xray``: [``botocore``] Update endpoint ruleset parameters casing

1.40.60

=======

* api-change:``accessanalyzer``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``aiops``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``athena``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``backup-gateway``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bedrock-data-automation``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``braket``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ce``: [``botocore``] Updated endpoint for eusc-de-east-1 region.
* api-change:``chime-sdk-identity``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``chime-sdk-media-pipelines``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codeartifact``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codeguruprofiler``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cognito-idp``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``comprehend``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``connectcampaigns``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``controltower``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cost-optimization-hub``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``dax``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``elasticbeanstalk``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``entityresolution``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``forecast``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``greengrass``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iam``: [``botocore``] Fixed missing SummaryMap keys in GetAccountSummary response that were being filtered out during deserialization in AWS Java SDK v2
* api-change:``invoicing``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesis``: [``botocore``] Adds support for record sizes up to 10MiB and introduces new UpdateMaxRecordSize API to modify stream record size limits. Adds record size parameters to existing CreateStream and DescribeStreamSummary APIs for request and response payloads respectively.
* api-change:``launch-wizard``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lex-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``managedblockchain``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mturk``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``neptune-graph``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``outposts``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pinpoint``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``rbin``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``rds-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``redshift-serverless``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``rekognition``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``repostspace``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``route53profiles``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``route53resolver``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``s3vectors``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``scheduler``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``secretsmanager``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ses``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``shield``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``simspaceweaver``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``socialmessaging``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ssm-sap``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sso-admin``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``stepfunctions``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``waf-regional``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``workmailmessageflow``: [``botocore``] Update endpoint ruleset parameters casing

1.40.59

=======

* api-change:``acm``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``amplifyuibuilder``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``application-signals``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``billing``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``budgets``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``chime-sdk-messaging``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudtrail``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codepipeline``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``datapipeline``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``datazone``: [``botocore``] This release adds support for MLflow connections Creation in DataZone
* api-change:``docdb``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``dynamodbstreams``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``eks``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``elb``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``evs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``fis``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``gameliftstreams``: [``botocore``] Add status reasons for TERMINATED stream sessions
* api-change:``geo-maps``: [``botocore``] Added support for optional AdditionalFeatures parameter in the V2 GetTile API.
* api-change:``inspector``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iot-managed-integrations``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotwireless``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesisanalytics``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesis-video-signaling``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``location``: [``botocore``] Added support for mobile app restrictions in Amazon Location API keys.
* api-change:``lookoutvision``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mediapackage``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mediastore``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mediastore-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``migrationhubstrategy``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mq``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``panorama``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``payment-cryptography``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``payment-cryptography-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pca-connector-ad``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``qbusiness``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``robomaker``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``route53domains``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``rtbfabric``: [``botocore``] Add support for custom rate limits.
* api-change:``s3tables``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sagemaker``: [``botocore``] Added inference components model data caching feature
* api-change:``sagemaker-metrics``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``securityhub``: [``botocore``] Release 3 layer filter support in GetFindingsV2, GetFindingStatisticsV2, GetResourcesV2,GetResourcesStatisticsV2, AutomationRule V2 APIs. Update filter casing in GetResourcesV2, GetResourcesStatisticsV2 APIs. Add new filters in GetFindingsV2, GetFindingStatisticsV2, AutomationRule V2 APIs.
* api-change:``servicediscovery``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``snow-device-management``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sso-oidc``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``supplychain``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``translate``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``verifiedpermissions``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``vpc-lattice``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``wisdom``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``workspaces-thin-client``: [``botocore``] Update endpoint ruleset parameters casing

1.40.58

=======

* api-change:``account``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``application-autoscaling``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bedrock-agentcore``: [``botocore``] Fixing the service documentation name
* api-change:``bedrock-agentcore-control``: [``botocore``] Fixing the service documentation name
* api-change:``chime-sdk-voice``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudtrail-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codebuild``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codestar-connections``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``config``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``connect-contact-lens``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cur``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``discovery``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``dms``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``docdb-elastic``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``drs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``dsql``: [``botocore``] Add support for resource-based policies for Aurora DSQL clusters. This will enable you to implement Block Public Access (BPA) which will help restrict access to your Aurora DSQL public or VPC endpoints.
* api-change:``ebs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ecr``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ecr-public``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``healthlake``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``internetmonitor``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotevents``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iot-jobs-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesis-video-archived-media``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesis-video-webrtc-storage``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lambda``: [``botocore``] Add NodeJs 24 (nodejs24.x) support to AWS Lambda.
* api-change:``macie2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``managedblockchain-query``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``marketplacecommerceanalytics``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mediatailor``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mgh``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mgn``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mpa``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``neptunedata``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``networkmonitor``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``odb``: [``botocore``] Doc-only update that removes duplicate values from descriptions of ODB peering APIs.
* api-change:``omics``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``opensearchserverless``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pca-connector-scep``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``personalize-events``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pinpoint-email``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``resiliencehub``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``rum``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sagemaker``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sagemaker-edge``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``savingsplans``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``securitylake``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sesv2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``storagegateway``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``synthetics``: [``botocore``] Update endpoint ruleset parameters casing

1.40.57

=======

* api-change:``appfabric``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``autoscaling``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``b2bi``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bcm-dashboards``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ce``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``chatbot``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudformation``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudhsm``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudhsmv2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codeguru-reviewer``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cognito-identity``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``comprehendmedical``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``connect``: [``botocore``] This release added support for email address alias configuration and outbound campaign preview mode.
* api-change:``connectcampaignsv2``: [``botocore``] Updated Amazon Connect Outbound Campaigns V2 SDK to support Preview Outbound Mode
* api-change:``connectparticipant``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``devicefarm``: [``botocore``] This release adds support for optionally including an app as part of a CreateRemoteAccessSession request
* api-change:``directconnect``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ds-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ec2``: [``botocore``] This release adds AvailabilityZoneId support for CreateNetworkInterface and DescribeNetworkInterfaces APIs.
* api-change:``ec2-instance-connect``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``forecastquery``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iam``: [``botocore``] Updated OIDC and SAML apis to reject multiple simultaneous requests to change a unique object.
* api-change:``inspector2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iot``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotanalytics``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotfleetwise``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotsecuretunneling``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotsitewise``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ivschat``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesisanalyticsv2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lexv2-models``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mailmanager``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``marketplace-agreement``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``medialive``: [``botocore``] Add 3 API operations for fetching alerts: ListAlerts (Channels), ListClusterAlerts (MediaLive Anywhere), and ListMultiplexAlerts
* api-change:``mwaa``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``notificationscontacts``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``oam``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pcs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pinpoint-sms-voice-v2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``redshift-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``route53``: [``botocore``] Amazon Route 53 now supports the ISOB West Region for private DNS for Amazon VPCs and cloudwatch healthchecks.
* api-change:``route53-recovery-cluster``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``rtbfabric``: [``botocore``] Update for general availability of AWS RTB Fabric service.
* api-change:``sagemaker-a2i-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sns``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ssm-incidents``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``workdocs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``workmail``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``workspaces``: [``botocore``] Update endpoint ruleset parameters casing

1.40.56

=======

* api-change:``dynamodb``: [``botocore``] Add AccountID based endpoint metric to endpoint rules.
* api-change:``emr``: [``botocore``] Added RECONFIGURING to the InstanceFleetState convenience enum.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``mediaconvert``: [``botocore``] This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters.
* api-change:``meteringmarketplace``: [``botocore``] Added ClientToken parameter to MeterUsage API for specifying idempotent requests.

1.40.55

=======

* api-change:``amp``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``amplifybackend``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``appconfigdata``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``appintegrations``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``application-insights``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``arc-zonal-shift``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bcm-recommended-actions``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bedrock-data-automation-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``chime-sdk-meetings``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudfront``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``cloudfront-keyvaluestore``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``codestar-notifications``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``controlcatalog``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``datasync``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ds``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``dsql``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ec2``: [``botocore``] Documentation updates for Amazon EC2.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``es``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``events``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``evidently``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``finspace``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``finspace-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``gameliftstreams``: [``botocore``] Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons
* api-change:``geo-maps``: [``botocore``] Added support for optional style parameters in maps, including Terrain, ContourDensity, Traffic, and TravelModes.
* api-change:``imagebuilder``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iot-data``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotdeviceadvisor``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iotthingsgraph``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``iottwinmaker``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kendra-ranking``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kinesis-video-media``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lakeformation``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``license-manager``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``license-manager-user-subscriptions``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``marketplace-catalog``: [``botocore``] The ListEntities API now supports two new CAPI filters: DeliveryOptionTypes for SaaS products and CompatibleAWSServices for Container products.
* api-change:``mediaconnect``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``migration-hub-refactor-spaces``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``network-firewall``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``networkmanager``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``organizations``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pi``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``qapps``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``rolesanywhere``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``route53-recovery-readiness``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``sagemaker-geospatial``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``signer``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``swf``: [``botocore``] Releasing minor endpoint updates.
* api-change:``timestream-write``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``tnb``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``wellarchitected``: [``botocore``] Update endpoint ruleset parameters casing

1.40.54

=======

* api-change:``acm-pca``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``amplify``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``apigatewaymanagementapi``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``apprunner``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``apptest``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``autoscaling-plans``: [``botocore``] Updated FIPS endpoints for US GovCloud regions
* api-change:``batch``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``bcm-data-exports``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``billingconductor``: [``botocore``] New feature: service flat CLI and first AWS managed pricing plan (BasicPricingPlan)
* api-change:``customer-profiles``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``databrew``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``dataexchange``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``dlm``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``freetier``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``gamelift``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``geo-routes``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``globalaccelerator``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``grafana``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``identitystore``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ivs``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ivs-realtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kafka``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``keyspaces``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``kms``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lex-models``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lexv2-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``lookoutequipment``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``m2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``machinelearning``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``marketplace-entitlement``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``mediapackagev2``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``medical-imaging``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``memorydb``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``migrationhub-config``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``networkflowmonitor``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``osis``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``personalize``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``personalize-runtime``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pinpoint-sms-voice``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``polly``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``pricing``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``qldb``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``qldb-session``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``route53-recovery-control-config``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ssm``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ssm-contacts``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``ssm-guiconnect``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``timestream-query``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``voice-id``: [``botocore``] Update endpoint ruleset parameters casing
* api-change:``workspaces-web``: [``botocore``] Update endpoint ruleset parameters casing

1.40.53

=======

* api-change:``bedrock``: [``botocore``] Amazon Bedrock Automated Reasoning Policy now offers enhanced AWS KMS integration. The CreateAutomatedReasoningPolicy API includes a new kmsKeyId field, allowing customers to specify their preferred KMS key for encryption, improving control and compliance with AWS encryption mandates.
* api-change:``docdb``: [``botocore``] Add support for NetworkType field in CreateDbCluster, ModifyDbCluster, RestoreDbClusterFromSnapshot and RestoreDbClusterToPointInTime for DocumentDB.
* api-change:``ec2``: [``botocore``] Introducing EC2 Capacity Manager for monitoring and analyzing capacity usage across On-Demand Instances, Spot Instances, and Capacity Reservations.
* api-change:``elbv2``: [``botocore``] This release expands Listener Rule Conditions to support RegexValues and adds support for a new Transforms field in Listener Rules.
* api-change:``guardduty``: [``botocore``] Added default pagination value for ListMalwareProtectionPlans API and updated UpdateFindingsFeedback API
* api-change:``lightsail``: [``botocore``] Add support for manage Lightsail Bucket CORS configuration
* api-change:``timestream-influxdb``: [``botocore``] This release adds support for creating and managing InfluxDB 3 Core and Enterprise DbClusters.

1.40.52

=======

* api-change:``appstream``: [``botocore``] This release introduces support for Microsoft license included applications streaming.
* api-change:``backup``: [``botocore``] The AWS Backup job attribute extension enhancement helps customers better understand the plan that initiated each job, and the properties of the resource each job creates.
* api-change:``connect``: [``botocore``] SDK release for TaskTemplateInfo in Contact for DescribeContact response.
* api-change:``datazone``: [``botocore``] Support creating scoped and trustedIdentityPropagation enabled connections.
* api-change:``ec2``: [``botocore``] This release adds support for creating instant, point-in-time copies of EBS volumes within the same Availability Zone
* api-change:``transcribe``: [``botocore``] Move UntagResource API body member to query parameter
* api-change:``transfer``: [``botocore``] SFTP connectors now support routing connections via customers' VPC. This enables connections to remote servers that are only accessible in a customer's VPC environment, and to servers that are accessible over the internet but need connections coming from an IP address in a customer VPC's CIDR range.

1.40.51

=======

* api-change:``bedrock-agentcore``: [``botocore``] Updated InvokeAgentRuntime API to accept account id optionally and added CompleteResourceTokenAuth API.
* api-change:``bedrock-agentcore-control``: [``botocore``] Updated http status code in control plane apis of agentcore runtime, tools and identity. Additional included provider types for AgentCore Identity
* api-change:``ec2``: [``botocore``] Release Amazon EC2 c8i, c8i-flex, m8a, and r8gb
* api-change:``observabilityadmin``: [``botocore``] CloudWatch Observability Admin adds the ability to enable Resource tags for telemetry in a customer account. The release introduces new APIs to enable, disable and describe the status of Resource tags for telemetry feature. This new capability simplifies monitoring AWS resources using tags.

1.40.50

=======

* api-change:``bedrock-agentcore``: [``botocore``] Bedrock AgentCore release for Runtime, and Memory.
* api-change:``bedrock-agentcore-control``: [``botocore``] Bedrock AgentCore release for Gateway, and Memory including Self-Managed Strategies support for Memory.
* api-change:``cloudfront``: [``botocore``] Added new viewer security policy, TLSv1.2_2025, for CloudFront.
* api-change:``glue``: [``botocore``] Addition of AuditContext in GetTable/GetTables Request
* api-change:``lambda``: [``botocore``] Add InvokedViaFunctionUrl context key to limit invocations to only FURL invokes.
* api-change:``odb``: [``botocore``] This release adds APIs that allow you to specify CIDR ranges in your ODB peering connection.
* api-change:``rds``: [``botocore``] Updated the text in the Important section of the ModifyDBClusterParameterGroup page.

1.40.49

=======

* api-change:``quicksight``: [``botocore``] This release adds support for ActionConnector and Flow, which are new resources associated with Amazon Quick Suite. Additional updates include expanded Data Source options, further branding customization, and new capabilities that can be restricted by Admins.
* api-change:``wafv2``: [``botocore``] This release adds the ability to throw WafLimitsExceededException when the maximum number of Application Load Balancer (ALB) associations per AWS WAF v2 WebACL is exceeded.

1.40.48

=======

* api-change:``bedrock-agentcore-control``: [``botocore``] Adding support for authorizer type AWS_IAM to AgentCore Control Gateway.
* api-change:``license-manager-user-subscriptions``: [``botocore``] Released support for IPv6 and dual-stack active directories
* api-change:``outposts``: [``botocore``] This release adds the new StartOutpostDecommission API, which starts the decommission process to return Outposts racks or servers.
* api-change:``service-quotas``: [``botocore``] introduces Service Quotas Automatic Management. Users can opt-in to monitoring and managing service quotas, receive notifications when quota usage reaches thresholds, configure notification channels, subscribe to EventBridge events for automation, and view notifications in the AWS Health dashboard.

1.40.47

=======

* api-change:``proton``: [``botocore``] Deprecating APIs in AWS Proton namespace.

1.40.46

=======

* api-change:``backup``: [``botocore``] Adds optional MaxScheduledRunsPreview input to GetBackupPlan API to provide a preview of up to 10 next scheduled backup plan runs in the GetBackupPlan response.
* api-change:``bedrock-agentcore``: [``botocore``] Add support for batch memory management, agent card retrieval and session termination
* api-change:``bedrock-agentcore-control``: [``botocore``] Add support for VM lifecycle configuration parameters and A2A protocol
* api-change:``glue``: [``botocore``] Adds labeling for DataQualityRuleResult for GetDataQualityResult and PublishDataQualityResult APIs
* api-change:``mediaconnect``: [``botocore``] Enabling Tag-on-Create for AWS Elemental MediaConnect flow-based resource types
* api-change:``memorydb``: [``botocore``] Support for DescribeMultiRegionParameterGroups and DescribeMultiRegionParameters API.
* api-change:``quicksight``: [``botocore``] Documentation improvements for QuickSight API documentation to clarify that delete operation APIs are global.
* api-change:``rds``: [``botocore``] Documentation updates to the CreateDBClusterMessage$PubliclyAccessible and CreateDBInstanceMessage$PubliclyAccessible properties.
* api-change:``resource-explorer-2``: [``botocore``] Add new AWS Resource Explorer APIs

1.40.45

=======

* api-change:``cleanrooms``: [``botocore``] Added support for reading data sources across regions, and results delivery to allowedlisted regions.
* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive enables Mediapackage V2 users to configure ID3, KLV, Nielsen ID3, and Segment Length related parameters through the Mediapackage output group.
* api-change:``payment-cryptography-data``: [``botocore``] Added a new API - translateKeyMaterial; allows keys wrapped by ECDH derived keys to be rewrapped under a static AES keyblock without first importing the key into the service.
* api-change:``qconnect``: [``botocore``] Updated Amazon Q in Connect APIs to support Email Contact Recommendations.

1.40.44

=======

* api-change:``cloudformation``: [``botocore``] Add new warning type 'EXCLUDED_RESOURCES'
* api-change:``connectcases``: [``botocore``] New Search All Related Items API enables searching related items across cases
* api-change:``dynamodb``: [``botocore``] Add support for dual-stack account endpoint generation
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``guardduty``: [``botocore``] Updated descriptions for the Location parameter in CreateTrustedEntitySet and CreateThreatEntitySet.
* api-change:``synthetics``: [``botocore``] Adds support to configure canaries with pre-configured blueprint code on supported runtime versions.  This behavior can be controlled via the new BlueprintTypes property exposed in the CreateCanary and UpdateCanary APIs.

1.40.43

=======

* api-change:``chime-sdk-meetings``: [``botocore``] Add support to receive dual stack MediaPlacement URLs in Chime Meetings SDK
* api-change:``cleanrooms``: [``botocore``] This release introduces data access budgets to control how many times a table can be used for queries and jobs in a collaboration.
* api-change:``cleanroomsml``: [``botocore``] This release introduces data access budgets to view how many times an input channel can be used for ML jobs in a collaboration.
* api-change:``dms``: [``botocore``] This is a doc-only update, revising text for kms-key-arns.
* api-change:``ecs``: [``botocore``] This is a documentation only Amazon ECS release that adds additional information for health checks.
* api-change:``pcs``: [``botocore``] Added the UpdateCluster API action to modify cluster configurations, and Slurm custom settings for queues.

1.40.42

=======

* api-change:``application-signals``: [``botocore``] Amazon CloudWatch Application Signals is introducing the Application Map to give users a more comprehensive view of their service health. Users will now be able to group services, track their latest deployments, and view automated audit findings concerning service performance.
* api-change:``bedrock-agentcore-control``: [``botocore``] Tagging support for AgentCore Gateway
* api-change:``chime-sdk-voice``: [``botocore``] Added support for IPv4-only and dual-stack network configurations for VoiceConnector and CreateVoiceConnector API.
* api-change:``connectcases``: [``botocore``] This release adds support for two new related item types: ConnectCase for linking Amazon Connect cases and Custom for user-defined related items with configurable fields.
* api-change:``customer-profiles``: [``botocore``] This release introduces ListProfileHistoryRecords and GetProfileHistoryRecord APIs for comprehensive profile history tracking with complete audit trails of creation, updates, merges, deletions, and data ingestion events.
* api-change:``datasync``: [``botocore``] Added support for FIPS VPC endpoints in FIPS-enabled AWS Regions.
* api-change:``datazone``: [``botocore``] This release adds support for creation of EMR on EKS Connections in Amazon DataZone.
* api-change:``ds``: [``botocore``] AWS Directory service now supports IPv6-native and dual-stack configurations for AWS Managed Microsoft AD, AD Connector, and Simple AD (dual-stack only). Additionally, AWS Managed Microsoft AD Standard Edition directories can be upgraded to Enterprise Edition directories through a single API call.
* api-change:``ecs``: [``botocore``] This release adds support for Managed Instances on Amazon ECS.
* api-change:``fsx``: [``botocore``] Add Dual-Stack support for Amazon FSx for NetApp ONTAP and Windows File Server
* api-change:``mediatailor``: [``botocore``] Adding TPS Traffic Shaping to Prefetch Schedules
* api-change:``quicksight``: [``botocore``] added warnings to a few CLI pages
* api-change:``rds`

@pyup-bot
Copy link
Collaborator Author

Closing this in favor of #289

@pyup-bot pyup-bot closed this Nov 10, 2025
@Tommos0 Tommos0 deleted the pyup-scheduled-update-2025-11-03 branch November 10, 2025 15:33
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.

2 participants