Skip to content

Conversation

@pyup-bot
Copy link
Collaborator

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.50.

Changelog

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``: [``botocore``] Enhanced RDS error handling: Added DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault, KMSKeyNotAccessibleFault for snapshots/restores/backups, NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and granular state validation faults. Changed DBInstanceNotReadyFault to HTTP 400.
* api-change:``transfer``: [``botocore``] Add support for updating server identity provider type

1.40.41

=======

* api-change:``bedrock``: [``botocore``] Release for fixing GetFoundationModel API behavior. Imported and custom models have their own exclusive API and GetFM should not accept those ARNS as input
* api-change:``bedrock-runtime``: [``botocore``] New stop reason for Converse and ConverseStream
* api-change:``imagebuilder``: [``botocore``] This release introduces several new features and improvements to enhance pipeline management, logging, and resource configuration.
* api-change:``vpc-lattice``: [``botocore``] Adds support for specifying the number of IPv4 addresses in each ENI for the resource gateway for VPC Lattice.

1.40.40

=======

* api-change:``bedrock-agent-runtime``: [``botocore``] This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces.
* api-change:``bedrock-data-automation``: [``botocore``] Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality.
* api-change:``billing``: [``botocore``] Add ability to combine custom billing views to create new consolidated views.
* api-change:``ce``: [``botocore``] Support for payer account dimension and billing view health status.
* api-change:``connect``: [``botocore``] Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs.
* api-change:``dynamodbstreams``: [``botocore``] Added support for IPv6 compatible endpoints for DynamoDB Streams.
* api-change:``ec2``: [``botocore``] This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``redshift``: [``botocore``] Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications

1.40.39

=======

* api-change:``glue``: [``botocore``] Update GetConnection(s) API to return KmsKeyArn & Add 63 missing connection types
* api-change:``lightsail``: [``botocore``] Attribute HTTP binding update for Get/Delete operations
* api-change:``network-firewall``: [``botocore``] Network Firewall now introduces Reject and Alert action support for stateful domain list rule groups, providing customers with more granular control over their network traffic.

1.40.38

=======

* api-change:``appstream``: [``botocore``] G6f instance support for AppStream 2.0
* api-change:``cloudwatch``: [``botocore``] Fix default dualstack FIPS endpoints in AWS GovCloud(US) regions
* api-change:``dax``: [``botocore``] This release adds support for IPv6-only, DUAL_STACK DAX instances
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``kms``: [``botocore``] Documentation only updates for KMS.
* api-change:``neptune``: [``botocore``] Doc-only update to address customer use.

1.40.37

=======

* api-change:``cleanrooms``: [``botocore``] Added support for running incremental ID mapping for rule-based workflows.
* api-change:``ec2``: [``botocore``] Add Amazon EC2 R8gn instance types
* api-change:``entityresolution``: [``botocore``] Support incremental id mapping workflow for AWS Entity Resolution
* api-change:``ssm``: [``botocore``] Added Dualstack support to GetDeployablePatchSnapshotForInstance
* api-change:``sso-admin``: [``botocore``] Add support for encryption at rest with Customer Managed KMS Key in AWS IAM Identity Center
* api-change:``sso-oidc``: [``botocore``] This release includes exception definition and documentation updates.

1.40.36

=======

* api-change:``batch``: [``botocore``] Starting in JAN 2026, AWS Batch will change the default AMI for new Amazon ECS compute environments from Amazon Linux 2 to Amazon Linux 2023. We recommend migrating AWS Batch Amazon ECS compute environments to Amazon Linux 2023 to maintain optimal performance and security.
* api-change:``eks``: [``botocore``] Adds support for RepairConfig overrides and configurations in EKS Managed Node Groups.
* api-change:``imagebuilder``: [``botocore``] Version ARNs are no longer required for the EC2 Image Builder list-image-build-version, list-component-build-version, and list-workflow-build-version APIs. Calling these APIs without the ARN returns all build versions for the given resource type in the requesting account.

1.40.35

=======

* api-change:``bedrock-agentcore-control``: [``botocore``] Add tagging and VPC support to AgentCore Runtime, Code Interpreter, and Browser resources. Add support for configuring request headers in Runtime. Fix AgentCore Runtime shape names.
* api-change:``config``: [``botocore``] Add UNKNOWN state to RemediationExecutionState and add IN_PROGRESS/EXITED/UNKNOWN states to RemediationExecutionStepState.
* api-change:``connect``: [``botocore``] This release adds a persistent connection field to UserPhoneConfig that maintains agent's softphone media connection for faster call connections.
* api-change:``kendra-ranking``: [``botocore``] Model whitespace change - no client difference
* api-change:``license-manager-user-subscriptions``: [``botocore``] Added support for cross-account Active Directories.
* api-change:``medialive``: [``botocore``] Add MinBitrate for QVBR mode under H264/H265/AV1 output codec. Add GopBReference, GopNumBFrames, SubGopLength fields under H265 output codec.
* api-change:``sms-voice``: [``botocore``] Updated the ``sms-voice`` client to the latest version. Note: this client is maintained only for backwards compatibility and should not be used for new development. We recommend using the ``pinpoint-sms-voice`` client for full support and ongoing updates.
* api-change:``sqs``: [``botocore``] Update invalid character handling documentation for SQS SendMessage API

1.40.34

=======

* api-change:``bedrock``: [``botocore``] Release includes an increase to the maximum policy build document size, an update to DeleteAutomatedReasoningPolicyBuildWorkflow to add ResourceInUseException, and corrections to UpdateAutomatedReasoningPolicyTestCaseRequest.
* api-change:``budgets``: [``botocore``] Added BillingViewHealthStatus Exception which is thrown when a Budget is created or updated with a Billing View that is not in the HEALTHY status
* api-change:``chime-sdk-messaging``: [``botocore``] Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6.
* api-change:``ec2``: [``botocore``] Allowed AMIs adds support for four new parameters - marketplaceProductCodes, deprecationTimeCondition, creationDateCondition and imageNames

1.40.33

=======

* api-change:``ec2``: [``botocore``] Add mac-m4.metal and mac-m4pro.metal instance types.
* api-change:``network-firewall``: [``botocore``] Network Firewall now prevents TLS handshakes with the target server until after the Server Name Indication (SNI) has been seen and verified. The monitoring dashboard now provides deeper insights into PrivateLink endpoint candidates and offers filters based on IP addresses and protocol.
* api-change:``pcs``: [``botocore``] Add support for Amazon EC2 Capacity Blocks for ML

1.40.32

=======

* api-change:``budgets``: [``botocore``] Add support for custom time periods in budget configuration
* api-change:``ivs-realtime``: [``botocore``] IVS now offers customers the ability to control the positioning of participants in both grid and PiP layouts based on custom attribute values in participant tokens.
* api-change:``logs``: [``botocore``] Cloudwatch Logs added support for 2 new API parameters in metric and subscription filter APIs to filter log events based on system field values and emit system field values as dimensions and send them to customer destination as additional metadata.
* api-change:``osis``: [``botocore``] Adds support for cross-account ingestion for push-based sources. This includes resource policies for sharing pipelines across accounts and features for managing pipeline endpoints which enable accessing pipelines across different VPCs, including VPCs in other accounts.

1.40.31

=======

* api-change:``ce``: [``botocore``] Added endpoint support for eusc-de-east-1 region.
* api-change:``medical-imaging``: [``botocore``] Added support for OpenID Connect (OIDC) custom authorizer
* api-change:``observabilityadmin``: [``botocore``] CloudWatch Observability Admin adds the ability to enable telemetry centralization in customers' Organizations. The release introduces new APIs to manage centralization rules, which define settings to replicate telemetry data to a central destination in the customers' Organization.
* api-change:``s3control``: [``botocore``] Introduce three new encryption filters: EncryptionType (SSE-S3, SSE-KMS, DSSE-KMS, SSE-C, NOT-SSE), KmsKeyArn (for SSE-KMS and DSSE-KMS), and BucketKeyEnabled (for SSE-KMS).
* api-change:``sms``: [``botocore``] The sms client has been removed following the deprecation of the service.

1.40.30

=======

* api-change:``payment-cryptography``: [``botocore``] Add support for certificates to be signed by 3rd party certificate authorities.  New API GetCertificateSigningRequest API and support for providing certificates at run-time for tr-34 import/export

1.40.29

=======

* api-change:``amp``: [``botocore``] Add Vended Logs APIs for Amazon Prometheus Managed Collector
* api-change:``datazone``: [``botocore``] adding IAM principal id to IAM user profile details
* api-change:``ecs``: [``botocore``] This release supports hook details for Amazon ECS lifecycle hooks.
* api-change:``emr-containers``: [``botocore``] Added nodeLabel support in container provider to aid hardware isolation support for virtual cluster and security configuration.
* api-change:``evs``: [``botocore``] CreateEnvironment API now supports parameters (isHcxPublic & hcxNetworkAclId) for HCX migration via public internet, adding flexibility for migration scenarios. New APIs have been added for associating (AssociateEipToVlan) & disassociating (DisassociateEipFromVlan) Elastic IP (EIP) addresses.
* api-change:``guardduty``: [``botocore``] Updated Java SDK implementation of entity set status in GuardDuty API.
* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive adds a new feature in MediaPackage output group that enables MediaPackage V2 users to control HLS-related parameters directly in MediaLive. These parameter settings are then reflected in MediaPackage outputs, providing more streamlined control over HLS configurations.
* api-change:``quicksight``: [``botocore``] This release adds support for Account level custom permissions, additional Dashboard Options, and Null support for Q&A.
* api-change:``rds``: [``botocore``] Adds support for end-to-end IAM authentication in RDS Proxy for MySQL, MariaDB, and PostgreSQL engines.

1.40.28

=======

* api-change:``networkflowmonitor``: [``botocore``] Added new enum value (AWS::Region) for type field under MonitorLocalResource and MonitorRemoteResource. Workload Insights and Monitor top contributors queries now support a new DestinationCategory (INTER_REGION).
* api-change:``payment-cryptography``: [``botocore``] AWS Payment Cryptography Service now supports Multi-Region key replication. Customers can choose to automatically distribute keys across AWS Regions.

1.40.27

=======

* api-change:``autoscaling``: [``botocore``] Added WaitForTransitioningInstances parameter to the CancelInstanceRefresh API, allowing the caller to cancel an instance refresh without waiting for on-going launches and terminations.
* api-change:``cloudwatch``: [``botocore``] Added a new API - DescribeAlarmContributors API, to retrieve alarm contributors in ALARM state. Added support in DescribeAlarmHistory API to query alarm contributor history
* api-change:``connect``: [``botocore``] SDK release for user defined predefined attributes.
* api-change:``datazone``: [``botocore``] Adds support for custom blueprints
* api-change:``mediapackagev2``: [``botocore``] Added CUE tag SCTE output to MediaPackageV2 HLS and LL-HLS manifests.
* api-change:``organizations``: [``botocore``] Documentation updates for AWS Organizations APIs.
* api-change:``sagemaker``: [``botocore``] Released IPv6 support with dual-stack domain options on SageMaker Studio and introduced support for p6-b200.48xlarge instance type on SageMaker Studio for JupyterLab and CodeEditor applications.

1.40.26

=======

* api-change:``iotsitewise``: [``botocore``] Add ComputationModelVersion support in IoT SiteWise APIs
* api-change:``s3``: [``botocore``] This release includes backward compatibility work on the "Expires" parameter.
* api-change:``securityhub``: [``botocore``] This release adds the RESOURCE_NOT_FOUND error code as a possible value in responses to the following operations: BatchGetStandardsControlAssociations, BatchUpdateStandardsControlAssociations, and BatchGetSecurityControls.

1.40.25

=======

* api-change:``ecs``: [``botocore``] This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing.
* api-change:``pcs``: [``botocore``] Documentation-only update to add AccountingStorageEnforce to SlurmCustomSetting.
* api-change:``sagemaker``: [``botocore``] Release IPv6 support with dualstack in SageMaker Notebooks, Tiered Storage Checkpointing Support in SageMaker HyperPod and P5.4xlarge instance type for SageMaker Hosting.

1.40.24

=======

* api-change:``cleanrooms``: [``botocore``] Add support for configurable compute sizes for PySpark jobs.
* api-change:``cloudformation``: [``botocore``] ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN.
* api-change:``ec2``: [``botocore``] Add m8i, m8i-flex and i8ge instance types.
* api-change:``opensearchserverless``: [``botocore``] Add support for Federal Information Processing Standards (FIPS) and Federal Risk and Authorization Management Program (FedRAMP) compliance
* api-change:``rds``: [``botocore``] Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6
* api-change:``verifiedpermissions``: [``botocore``] Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values.

1.40.23

=======

* api-change:``cleanrooms``: [``botocore``] Added support for adding new data provider members to an existing collaboration.
* api-change:``cleanroomsml``: [``botocore``] AWS Clean Rooms ML adds log sanitization for privacy-enhanced error summaries, supports new instance types for custom models providing better performance and lower costs, and deprecates P3-series instances.
* api-change:``cloudfront``: [``botocore``] Adding an optional field IpAddressType in CustomOriginConfig
* api-change:``mq``: [``botocore``] Add CONFIG_MANAGED as a supported AuthenticationStrategy for Amazon MQ for RabbitMQ brokers. Make username and password optional on broker creation for CONFIG_MANAGED brokers.
* api-change:``rds``: [``botocore``] This release adds support for MasterUserAuthenticationType parameter on CreateDBInstance, ModifyDBInstance, CreateDBCluster, and ModifyDBCluster operations.
* api-change:``route53``: [``botocore``] Amazon Route 53 now supports the Asia Pacific (New Zealand) Region (ap-southeast-6) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
* api-change:``route53domains``: [``botocore``] Added new ExtraParams AU_ELIGIBILITY_TYPE, AU_POLICY_REASON, and AU_REGISTRANT_NAME

1.40.22

=======

* api-change:``ec2``: [``botocore``] MaximumEbsAttachments and AttachmentLimitType fields added to DescribeInstanceTypesResponse. G6f, Gr6f, R8i, R8i-flex and p5.4xlarge instance types added to InstanceTypes enum.
* api-change:``neptune``: [``botocore``] Removed the deprecated marker from publiclyAccessible parameter from DbInstance, CreateDbInstance and ModifyDbInstance and added relevant usage information for the parameter.
* api-change:``notifications``: [``botocore``] Added Org support for notifications:  - `ListMemberAccounts` gets member accounts list, `AssociateOrganizationalUnit` links OU to notification configuration, `DisassociateOrganizationalUnit` removes OU from notification configuration, `ListOrganizationalUnits` shows OUs configured for notifications.
* api-change:``workmail``: [``botocore``] Make RoleArn an optional parameter for the PutEmailMonitoringConfiguration API, and add UnsupportedOperationException to RegisterToWorkMail.

1.40.21

=======

* api-change:``bedrock-runtime``: [``botocore``] Fixed stop sequence limit for converse API.
* api-change:``ec2``: [``botocore``] Release shows new route types such as filtered and advertisement.
* api-change:``xray``: [``botocore``] AWS X-Ray Features: Support Sampling Rate Boost On Anomaly

1.40.20

=======

* api-change:``applicationcostprofiler``: [``botocore``] Remove incorrect endpoint tests
* api-change:``apprunner``: [``botocore``] Doc only updates for APIs and and datatypes related to IPAddressType and Subnets for IPv6 dualstack support.
* api-change:``autoscaling-plans``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cloud9``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cloudhsmv2``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cloudsearchdomain``: [``botocore``] Remove incorrect endpoint tests
* api-change:``codedeploy``: [``botocore``] Remove incorrect endpoint tests
* api-change:``codeguru-reviewer``: [``botocore``] Remove incorrect endpoint tests
* api-change:``connect``: [``botocore``] AgentStatusDrillDown feature in GetCurrentMetricData API. Adding AGENT_STATUS as filter and grouping in GetCurrentMetricData API
* api-change:``databrew``: [``botocore``] Remove incorrect endpoint tests
* api-change:``dynamodb``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ec2``: [``botocore``] This release adds support for copying Amazon EBS snapshot and AMIs to and from Local Zones.
* api-change:``ec2-instance-connect``: [``botocore``] Remove incorrect endpoint tests
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``fis``: [``botocore``] Remove incorrect endpoint tests
* api-change:``fms``: [``botocore``] Remove incorrect endpoint tests
* api-change:``geo-maps``: [``botocore``] Remove incorrect endpoint tests
* api-change:``glue``: [``botocore``] Adding support to fetch TargetDatabase field during GetDatabases with AttributesToGet
* api-change:``healthlake``: [``botocore``] Add ValidationLevel parameter to StartFHIRImportJob API, allowing users to specify a FHIR validation level for their asynchronous import jobs.
* api-change:``machinelearning``: [``botocore``] Remove incorrect endpoint tests
* api-change:``mediastore-data``: [``botocore``] Remove incorrect endpoint tests
* api-change:``mturk``: [``botocore``] Remove incorrect endpoint tests
* api-change:``omics``: [``botocore``] Adds Amazon ECR pull through cache support to AWS HealthOmics, so you can more easily use container images from external sources.
* api-change:``osis``: [``botocore``] Remove incorrect endpoint tests
* api-change:``pinpoint-sms-voice``: [``botocore``] Remove incorrect endpoint tests
* api-change:``rds``: [``botocore``] Added RDS HTTP Endpoint feature support flag to DescribeOrderableDBInstanceOptions API
* api-change:``route53domains``: [``botocore``] Remove incorrect endpoint tests
* api-change:``savingsplans``: [``botocore``] Remove incorrect endpoint tests
* api-change:``scheduler``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ses``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ssm-sap``: [``botocore``] Added support for Configuration Checks on SAP HANA Applications.
* api-change:``sso``: [``botocore``] Remove incorrect endpoint tests
* api-change:``timestream-query``: [``botocore``] Remove incorrect endpoint tests
* api-change:``waf``: [``botocore``] Remove incorrect endpoint tests
* api-change:``workmailmessageflow``: [``botocore``] Remove incorrect endpoint tests
* api-change:``xray``: [``botocore``] Remove incorrect endpoint tests

1.40.19

=======

* api-change:``amplifybackend``: [``botocore``] Remove incorrect endpoint tests
* api-change:``application-insights``: [``botocore``] Remove incorrect endpoint tests
* api-change:``batch``: [``botocore``] Added ECS_AL2023_NVIDIA as an option for Ec2Configuration.imageType.
* api-change:``chime``: [``botocore``] Remove incorrect endpoint tests
* api-change:``chime-sdk-identity``: [``botocore``] Remove incorrect endpoint tests
* api-change:``chime-sdk-meetings``: [``botocore``] Remove incorrect endpoint tests
* api-change:``chime-sdk-voice``: [``botocore``] Remove incorrect endpoint tests
* api-change:``codeguruprofiler``: [``botocore``] Remove incorrect endpoint tests
* api-change:``datapipeline``: [``botocore``] Remove incorrect endpoint tests
* api-change:``discovery``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ds``: [``botocore``] Add APIs for CA AutoEnrollment support: DescribeCAEnrollmentPolicy, EnableCAEnrollmentPolicy and DisableCAEnrollmentPolicy.
* api-change:``eks``: [``botocore``] Add support for on-demand refresh of EKS cluster insights
* api-change:``elasticache``: [``botocore``] Remove incorrect endpoint tests
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``evidently``: [``botocore``] Remove incorrect endpoint tests
* api-change:``frauddetector``: [``botocore``] Remove incorrect endpoint tests
* api-change:``inspector``: [``botocore``] Remove incorrect endpoint tests
* api-change:``kinesisvideo``: [``botocore``] Remove incorrect endpoint tests
* api-change:``kinesis-video-media``: [``botocore``] Remove incorrect endpoint tests
* api-change:``lakeformation``: [``botocore``] Remove incorrect endpoint tests
* api-change:``lex-models``: [``botocore``] Remove incorrect endpoint tests
* api-change:``migrationhub-config``: [``botocore``] Remove incorrect endpoint tests
* api-change:``neptune-graph``: [``botocore``] Add StartGraph and StopGraph operations to Neptune Analytics
* api-change:``opsworks``: [``botocore``] The opsworks client has been removed following the deprecation of the service.
* api-change:``opsworkscm``: [``botocore``] The opsworkscm client has been removed following the deprecation of the service.
* api-change:``personalize``: [``botocore``] Remove incorrect endpoint tests
* api-change:``pi``: [``botocore``] Remove incorrect endpoint tests
* api-change:``qldb-session``: [``botocore``] Remove incorrect endpoint tests
* api-change:``redshift``: [``botocore``] Remove incorrect endpoint tests
* api-change:``robomaker``: [``botocore``] Remove incorrect endpoint tests
* api-change:``sagemaker``: [``botocore``] This release adds support for AutoScaling on SageMaker HyperPod.
* api-change:``schemas``: [``botocore``] Remove incorrect endpoint tests
* api-change:``snow-device-management``: [``botocore``] Remove incorrect endpoint tests
* api-change:``timestream-write``: [``botocore``] Remove incorrect endpoint tests
* api-change:``voice-id``: [``botocore``] Remove incorrect endpoint tests
* api-change:``workdocs``: [``botocore``] Remove incorrect endpoint tests
* api-change:``workmail``: [``botocore``] Remove incorrect endpoint tests

1.40.18

=======

* api-change:``apprunner``: [``botocore``] Remove incorrect endpoint tests
* api-change:``arc-zonal-shift``: [``botocore``] This release adds new API options to enable allowed windows and multiple alarms for practice runs.
* api-change:``codecommit``: [``botocore``] Remove incorrect endpoint tests
* api-change:``codestar-connections``: [``botocore``] Remove incorrect endpoint tests
* api-change:``comprehendmedical``: [``botocore``] Remove incorrect endpoint tests
* api-change:``connectparticipant``: [``botocore``] Amazon Connect Participant Service: Remove unused fields from WebRTCConnection
* api-change:``dlm``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ec2``: [``botocore``] Add new APIs for viewing how your shared AMIs are used by other accounts, and identify resources in your account that are dependent on particular AMIs
* api-change:``elastictranscoder``: [``botocore``] Remove incorrect endpoint tests
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``finspace``: [``botocore``] Remove incorrect endpoint tests
* api-change:``geo-routes``: [``botocore``] Added RouteFerryNotice PotentialViolatedVehicleRestrictionUsage value for CalculateRoutes. This value indicates when the Route is potentially forbidden for the given vehicle profile.
* api-change:``glacier``: [``botocore``] Remove incorrect endpoint tests
* api-change:``globalaccelerator``: [``botocore``] Remove incorrect endpoint tests
* api-change:``greengrass``: [``botocore``] Remove incorrect endpoint tests
* api-change:``identitystore``: [``botocore``] Remove incorrect endpoint tests
* api-change:``imagebuilder``: [``botocore``] Remove incorrect endpoint tests
* api-change:``iotsecuretunneling``: [``botocore``] Remove incorrect endpoint tests
* api-change:``kafka``: [``botocore``] Remove incorrect endpoint tests
* api-change:``lookoutvision``: [``botocore``] Remove incorrect endpoint tests
* api-change:``mgh``: [``botocore``] Remove incorrect endpoint tests
* api-change:``migration-hub-refactor-spaces``: [``botocore``] Remove incorrect endpoint tests
* api-change:``mq``: [``botocore``] Remove incorrect endpoint tests
* api-change:``personalize-events``: [``botocore``] Remove incorrect endpoint tests
* api-change:``pinpoint``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ram``: [``botocore``] Remove incorrect endpoint tests
* api-change:``rbin``: [``botocore``] Remove incorrect endpoint tests
* api-change:``route53-recovery-cluster``: [``botocore``] Remove incorrect endpoint tests
* api-change:``sagemaker-geospatial``: [``botocore``] Remove incorrect endpoint tests
* api-change:``servicecatalog-appregistry``: [``botocore``] Remove incorrect endpoint tests
* api-change:``signer``: [``botocore``] Remove incorrect endpoint tests
* api-change:``waf-regional``: [``botocore``] Remove incorrect endpoint tests

1.40.17

=======

* api-change:``appflow``: [``botocore``] Remove incorrect endpoint tests
* api-change:``b2bi``: [``botocore``] Updated APIs to support custom validation rules.
* api-change:``chime-sdk-media-pipelines``: [``botocore``] Remove incorrect endpoint tests
* api-change:``chime-sdk-messaging``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cloudsearch``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cloudtrail-data``: [``botocore``] Remove incorrect endpoint tests
* api-change:``codeartifact``: [``botocore``] Remove incorrect endpoint tests
* api-change:``codeguru-security``: [``botocore``] Documentation update to notify users of the discontinuation of Amazon CodeGuru Security.
* api-change:``codestar-notifications``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cur``: [``botocore``] Remove incorrect endpoint tests
* api-change:``datazone``: [``botocore``] Releasing the following features - Asset classification that lets users use restricted terms for classifying assets if they have the right permissions. Also adding a new enum value "Moving" to project status.
* api-change:``dax``: [``botocore``] Remove incorrect endpoint tests
* api-change:``devops-guru``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ec2``: [``botocore``] Added IPv6 support for AWS Client VPN.
* api-change:``emr-containers``: [``botocore``] Remove incorrect endpoint tests
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``finspace-data``: [``botocore``] Remove incorrect endpoint tests
* api-change:``forecast``: [``botocore``] Remove incorrect endpoint tests
* api-change:``iotfleethub``: [``botocore``] Remove incorrect endpoint tests
* api-change:``kendra``: [``botocore``] Remove incorrect endpoint tests
* api-change:``kinesisanalytics``: [``botocore``] Remove incorrect endpoint tests
* api-change:``kinesis-video-archived-media``: [``botocore``] Remove incorrect endpoint tests
* api-change:``lex-runtime``: [``botocore``] Remove incorrect endpoint tests
* api-change:``lookoutequipment``: [``botocore``] Remove incorrect endpoint tests
* api-change:``mediaconvert``: [``botocore``] This release adds support for input rendition selection for HLS input, adds new Share API to enable sharing jobs with AWS Support for support investigations, and adds INCLUDE_AS_TS to iFrameOnlyManifest setting for HLS outputs.
* api-change:``mediapackage-vod``: [``botocore``] Remove incorrect endpoint tests
* api-change:``mediastore``: [``botocore``] Remove incorrect endpoint tests
* api-change:``personalize-runtime``: [``botocore``] Remove incorrect endpoint tests
* api-change:``qbusiness``: [``botocore``] The Amazon Q Business GetDocumentContent operation now supports retrieval of the extracted text content in JSON format.
* api-change:``resourcegroupstaggingapi``: [``botocore``] Remove incorrect endpoint tests
* api-change:``sagemaker-edge``: [``botocore``] Remove incorrect endpoint tests
* api-change:``sagemaker-featurestore-runtime``: [``botocore``] Remove incorrect endpoint tests
* api-change:``sagemaker-runtime``: [``botocore``] Remove incorrect endpoint tests
* api-change:``serverlessrepo``: [``botocore``] Remove incorrect endpoint tests
* api-change:``shield``: [``botocore``] Remove incorrect endpoint tests
* api-change:``snowball``: [``botocore``] Remove incorrect endpoint tests
* api-change:``sqs``: [``botocore``] Documentation update for Amazon SQS Supports Large Payload Message feature
* api-change:``support``: [``botocore``] Remove incorrect endpoint tests
* api-change:``support-app``: [``botocore``] Remove incorrect endpoint tests
* api-change:``timestream-influxdb``: [``botocore``] Add MAINTENANCE status for DbInstance and DbCluster
* api-change:``translate``: [``botocore``] Remove incorrect endpoint tests
* api-change:``wellarchitected``: [``botocore``] Remove incorrect endpoint tests

1.40.16

=======

* api-change:``clouddirectory``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cognito-sync``: [``botocore``] Remove incorrect endpoint tests
* api-change:``docdb``: [``botocore``] Remove incorrect endpoint tests
* api-change:``elb``: [``botocore``] Remove incorrect endpoint tests
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``healthlake``: [``botocore``] Remove incorrect endpoint tests
* api-change:``iotanalytics``: [``botocore``] Remove incorrect endpoint tests
* api-change:``macie2``: [``botocore``] Remove incorrect endpoint tests
* api-change:``marketplacecommerceanalytics``: [``botocore``] Remove incorrect endpoint tests
* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive now has a field called "SubtitleRows" for controlling subtitle row count for DVB-Sub and Burn-In captions outputs
* api-change:``memorydb``: [``botocore``] Remove incorrect endpoint tests
* api-change:``proton``: [``botocore``] Remove incorrect endpoint tests
* api-change:``qconnect``: [``botocore``] Releasing model ID support for UpdateAIPrompt
* api-change:``qldb``: [``botocore``] Remove incorrect endpoint tests
* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for Db2 read-only replicas.
* api-change:``route53-recovery-readiness``: [``botocore``] Remove incorrect endpoint tests
* api-change:``sagemaker``: [``botocore``] Launch SageMaker Notebook Instances support for AL2023 along with P6-B200 instance type and Rootless Docker support for SageMaker Studio.
* api-change:``sagemaker-a2i-runtime``: [``botocore``] Remove incorrect endpoint tests
* api-change:``simspaceweaver``: [``botocore``] Remove incorrect endpoint tests
* api-change:``synthetics``: [``botocore``] Added multi browser support for synthetics canaries, Increased ephemeral storage limit from 5GB to 10GB
* api-change:``wafv2``: [``botocore``] test and verified, safe to release

1.40.15

=======

* api-change:``apigatewaymanagementapi``: [``botocore``] Remove incorrect endpoint tests
* api-change:``appfabric``: [``botocore``] Remove incorrect endpoint tests
* api-change:``backup-gateway``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cloudhsm``: [``botocore``] Remove incorrect endpoint tests
* api-change:``cognito-identity``: [``botocore``] Remove incorrect endpoint tests
* api-change:``comprehend``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ebs``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ecr-public``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ecs``: [``botocore``] This is a documentation only release that adds additional information for the update-service request parameters.
* api-change:``elasticbeanstalk``: [``botocore``] Remove incorrect endpoint tests
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``es``: [``botocore``] Remove incorrect endpoint tests
* api-change:``forecastquery``: [``botocore``] Remove incorrect endpoint tests
* api-change:``gameliftstreams``: [``botocore``] The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier.
* api-change:``glue``: [``botocore``] Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure.
* api-change:``greengrassv2``: [``botocore``] Remove incorrect endpoint tests
* api-change:``guardduty``: [``botocore``] Remove Pattern trait from email field
* api-change:``iotdeviceadvisor``: [``botocore``] Remove incorrect endpoint tests
* api-change:``iotevents``: [``botocore``] Remove incorrect endpoint tests
* api-change:``iotevents-data``: [``botocore``] Remove incorrect endpoint tests
* api-change:``iotthingsgraph``: [``botocore``] Remove incorrect endpoint tests
* api-change:``kinesis-video-signaling``: [``botocore``] Remove incorrect endpoint tests
* api-change:``lexv2-runtime``: [``botocore``] Remove incorrect endpoint tests
* api-change:``lookoutmetrics``: [``botocore``] Remove incorrect endpoint tests
* api-change:``managedblockchain``: [``botocore``] Remove incorrect endpoint tests
* api-change:``mediapackage``: [``botocore``] Remove incorrect endpoint tests
* api-change:``panorama``: [``botocore``] Remove incorrect endpoint tests
* api-change:``pinpoint-email``: [``botocore``] Remove incorrect endpoint tests
* api-change:``resource-groups``: [``botocore``] Remove incorrect endpoint tests
* api-change:``s3outposts``: [``botocore``] Remove incorrect endpoint tests
* api-change:``ssm-contacts``: [``botocore``] Doc-only updates for Incident Manager Contacts August 2025

1.40.14

=======

* api-change:``bedrock-runtime``: [``botocore``] Launch CountTokens API to allow token counting
* api-change:``billing``: [``botocore``] Clarify IPv4 and IPv6 endpoints
* api-change:``cognito-idp``: [``botocore``] This release adds support for the new Terms APIs which allow displaying Terms of Use and Privacy Policy on the Managed Login user-registration page.
* api-change:``datazone``: [``botocore``] This release supports policy grant identifier for cloud formation integration
* api-change:``detective``: [``botocore``] Remove incorrect endpoint tests
* api-change:``dynamodb``: [``botocore``] Remove incorrect endpoint tests
* api-change:``eks``: [``botocore``] EKS Add-ons Custom Namespace Support
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``kinesisanalyticsv2``: [``botocore``] Adds Key Management Service (KMS) support allowing customer-managed key (CMK) encryption for Flink application data.
* api-change:``pinpoint-sms-voice-v2``: [``botocore``] This change added InternationalSendingEnbaled as part of describe/Update/Request phone number API response, and as part of update/Request phone number API request
* api-change:``route53-recovery-control-config``: [``botocore``] Remove incorrect endpoint tests
* api-change:``sagemaker``: [``botocore``] This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig.

1.40.13

=======

* api-change:``cleanrooms``: [``botocore``] Support error message configuration for analysis templates
* api-change:``ec2``: [``botocore``] Add support for "warning" volume status.
* api-change:``polly``: [``botocore``] Added support for new output format - Opus.

1.40.12

=======

* api-change:``batch``: [``botocore``] Added default_x86_64 and default_arm64 as values to the instanceTypes field.
* api-change:``bcm-dashboards``: [``botocore``] Billing and Cost Management Dashboards enables users to create dashboards that combine multiple visualizations of cost and usage data. Users can create, manage, and share dashboards. Tags are also available for dashboards.
* api-change:``connect``: [``botocore``] Amazon Connect Service Feature: Add support to enable multi-user in-app, web, and video calling.
* api-change:``connectparticipant``: [``botocore``] Amazon Connect Service Feature: Add support to enable multi-user in-app, web, and video calling.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``s3control``: [``botocore``] Adds support for Compute checksum functionality in Amazon S3 Batch Operations. You can now calculate checksums for a list of objects using supported algorithms in Amazon S3, without requiring a restore or download
* api-change:``sagemaker``: [``botocore``] Customer managed keys now available for volume encryption of SageMaker HyperPod clusters.
* enhancement:AWSCRT: [``botocore``] Update awscrt version to 0.27.6

1.40.11

=======

* api-change:``amp``: [``botocore``] Add Resource-based Policy APIs for Amazon Prometheus
* api-change:``bedrock-agent``: [``botocore``] This release adds support for saving Bedrock Flows while node configuration is still in progress, even if the Flow is not yet able to be invoked
* api-change:``glue``: [``botocore``] AWS Glue Zero ETL now supports On-demand snapshot load

1.40.10

=======

* api-change:``arc-region-switch``: [``botocore``] Endpoint rule test and documentation update.
* api-change:``bcm-recommended-actions``: [``botocore``] Initial SDK release for AWS Billing and Cost Management Recommended Actions.
* api-change:``directconnect``: [``botocore``] Added pagination support for DescribeHostedConnections, DescribeVirtualInterfaces, DescribeConnections, DescribeInterconnects, DescribeLags. Added asnLong support for BGP peer operations which supports a large range.
* api-change:``dynamodb``: [``botocore``] This release 1/ Adds support for throttled keys mode for CloudWatch Contributor Insights, 2/ Adds throttling reasons to exceptions across dataplane APIs. 3/ Explicitly models ThrottlingException as a class in statically typed languages. Refer to the launch day blog post for more details.
* api-change:``ec2``: [``botocore``] This release adds ModifyInstanceConnectEndpoint API to update configurations on existing EC2 Instance Connect Endpoints and improves IPv6 support through dualstack DNS names for EC2 Instance Connect Endpoints.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``fsx``: [``botocore``] Amazon FSx for NetApp ONTAP 2nd generation file systems now support decreasing SSD storage capacity.
* api-change:``glue``: [``botocore``] AWS Glue now supports Trusted Identity Propagation.
* api-change:``guardduty``: [``botocore``] Added support for entity lists.
* api-change:``medialive``: [``botocore``] CMAF Ingest output groups in MediaLive can now accept one additional destination url for single pipeline channels and up to two additional destination urls for standard channels.
* api-change:``pcs``: [``botocore``] Updated the regex pattern and description of iamInstanceProfileArn in the CreateComputeNodeGroup and UpdateComputeNodeGroup API actions. Name and path requirements apply to the ARN of the IAM role associated with the instance profile and not the ARN of the instance profile.
* api-change:``qapps``: [``botocore``] Documentation update for Amazon Q Apps API Reference
* api-change:``servicediscovery``: [``botocore``] Added support for cross account through Id parameter overloading with ARN and allow owner account for some APIs instead of ARN
* api-change:``workspaces``: [``botocore``] New APIs introduced to import WorkSpaces BYOL image using a new process that leveraged EC2 Image Builder. WorkSpaces tests and fixes your image's compatibility issues and supports customized VM images.

1.40.9

======

* api-change:``braket``: [``botocore``] Add support for Braket program sets.
* api-change:``datazone``: [``botocore``] Adds support for account pools and project profile account decoupling
* api-change:``fsx``: [``botocore``] Add Dual-Stack support for Amazon FSx for OpenZFS file systems
* api-change:``partnercentral-selling``: [``botocore``] Add Tagging Support for Opportunity resources
* api-change:``sagemaker``: [``botocore``] This release introduces compute quota for GPU, Trainium accelerators, vCPU, and vCPU memory utilization across teams in HyperPod clusters
* api-change:``security-ir``: [``botocore``] Added support for Organizational Unit-level Membership configuration and the ability to resume a cancelled membership.

1.40.8

======

* api-change:``backupsearch``: [``botocore``] Using recommended smithy trait to generate regional endpoints for Backup Search
* api-change:``codebuild``: [``botocore``] AWS CodeBuild now supports PullRequestBuildPolicy in webhook object.
* api-change:``ec2``: [``botocore``] Release to allow route table association with a PublicIpv4Pool.
* api-change:``organizations``: [``botocore``] This release introduces 2 new APIs in Organizations: 1. ListAccountsWithInvalidEffectivePolicy 2. ListEffectivePolicyValidationErrors
* api-change:``sagemaker``: [``botocore``] IAM Identity Center trusted identity propagation is now supported in SageMaker Studio.
* api-change:``transcribe``: [``botocore``] AWS HealthScribe now supports specifying preferred patient pronouns through the MedicalScribeContext parameter for use in the generated clinical notes.

1.40.7

======

* api-change:``bedrock``: [``botocore``] This release includes model updates and enhanced SDK documentation for union fields in automated reasoning policy components. Added docs cover policy definitions, mutations (add/update for rules/types/variables), build assets, workflow sources, test results, and tag exception handling.
* api-change:``cognito-idp``: [``botocore``] Remove SigV4 auth requirement for GetTokensFromRefreshToken
* api-change:``connect``: [``botocore``] Updating SearchUserHierarchyGroups API
* api-change:``deadline``: [``botocore``] Adds support for Wait and Save feature in service-managed fleets
* api-change:``ec2``: [``botocore``] This release adds AvailabilityZoneId support for CreateVolume, DescribeVolume, LaunchTemplates, RunInstances, DescribeInstances, CreateDefaultSubnet, SpotInstances, and CreateDefaultSubnet APIs.
* api-change:``evs``: [``botocore``] Update for general availability of Amazon Elastic VMware Service (EVS).
* api-change:``lambda``: [``botocore``] Doc-only update for Lambda that updates the maximum payload size for response streaming invocations to 200 MB.
* api-change:``quicksight``: [``botocore``] Add RowAxisDisplayOptions and ColumnAxisDisplayOptions to HeatMapConfiguration, add Actions to PluginVisual, increase limit for CalculatedFields list
* api-change:``sso-admin``: [``botocore``] Added support for managing user background session for applications

1.40.6

======

* api-change:``connect``: [``botocore``] This release adds a new API GetContactMetrics for Amazon Connect.
* api-change:``inspector2``: [``botocore``] Add CVSSV4 to Vulnerability Search API and update enable/disable account id list length to 5
* api-change:``iot-data``: [``botocore``] Add

@pyup-bot
Copy link
Collaborator Author

Closing this in favor of #287

@pyup-bot pyup-bot closed this Oct 27, 2025
@Tommos0 Tommos0 deleted the pyup-scheduled-update-2025-10-13 branch October 27, 2025 03:04
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