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

Changelog

3.11.0

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

* ``sync_to_async`` gains a ``context`` parameter, similar to those for
``asyncio.create_task``, ``TaskGroup`` &co, that can be used on Python 3.11+ to
control the context used by the underlying task.

The parent context is already propagated by default but the additional
control is useful if multiple ``sync_to_async`` calls need to share the same
context, e.g. when used with ``asyncio.gather()``.

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

Changelog

4.2.4

--------------------
- Eliminate usage of 'return' in 'finally' blocks (438)
- Prepare for release: v4.2.4 (439)

4.2.3

--------------------
- Ensure that task results are delivered during pool shutdown (435)
- Prepare for release: v4.2.3 (436)

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

Changelog

1.42.34

=======

* api-change:``connect``: [``botocore``] Amazon Connect now offers public APIs to programmatically configure and run automated tests for contact center experiences. Integrate testing into CICD pipelines, run multiple tests at scale, and retrieve results via API to automate validation of voice interactions and workflows.
* api-change:``datazone``: [``botocore``] Added api for deleting data export configuration for a domain
* api-change:``qconnect``: [``botocore``] Fixes incorrect types in the UpdateAssistantAIAgent API request, adds MESSAGE to TargetType enum, and other minor changes.

1.42.33

=======

* api-change:``autoscaling``: [``botocore``] This release adds support for Amazon EC2 Auto Scaling group deletion protection
* api-change:``budgets``: [``botocore``] Add Budget FilterExpression and Metrics fields to DescribeBudgetPerformanceHistory to support more granular filtering options.
* api-change:``dynamodb``: [``botocore``] Adds additional waiters to Amazon DynamoDB.
* api-change:``ec2``: [``botocore``] Add better support for fractional GPU instances in DescribeInstanceTypes API. The new fields, logicalGpuCount, gpuPartitionSize, and workload array enable better GPU resource selection and filtering for both full and fractional GPU instance types.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``gamelift``: [``botocore``] Amazon GameLift Servers Realtime now supports Node.js 24.x runtime on the Amazon Linux 2023 operating system.
* api-change:``guardduty``: [``botocore``] Adding new enum value for ScanStatusReason
* api-change:``health``: [``botocore``] Updates the lower range for the maxResults request property for DescribeAffectedEntities, DescribeAffectedEntitiesForOrganization, DescribeEvents, and DescribeEventsForOrganization API request properties.
* api-change:``meteringmarketplace``: [``botocore``] Customer Identifier parameter deprecation date has been removed. For new implementations, we recommend using the CustomerAWSAccountID. Your current integration will continue to work. When updating your implementation, consider migrating to CustomerAWSAccountID for improved integration.
* api-change:``verifiedpermissions``: [``botocore``] Adding documentation to user guide and API documentation for how customers can create new encrypted policy stores by passing in their customer managed key during policy store creation.

1.42.32

=======

* api-change:``bedrock-agentcore``: [``botocore``] Supports custom browser extensions for AgentCore Browser and increased message payloads up to 100KB per message in an Event for AgentCore Memory
* api-change:``config``: [``botocore``] AWS Config Conformance Packs now support tag-on-create through PutConformancePack API.
* api-change:``ec2``: [``botocore``] Added support of multiple EBS cards. New EbsCardIndex parameter enables attaching volumes to specific EBS cards on supported instance types for improved storage performance.
* api-change:``quicksight``: [``botocore``] Added documentation and model for sheet layout groups - allows sheet elements to be grouped, Added documentation and the feature enables admins to have granular control over connectors under actions, Updated API documentation for PDF Export in Snapshot Export APIs

1.42.31

=======

* api-change:``autoscaling``: [``botocore``] This release adds support for three new filters when describing scaling activities, StartTimeLowerBound, StartTimeUpperBound, and Status.
* api-change:``bedrock-runtime``: [``botocore``] Added support for extended prompt caching with one hour TTL.
* api-change:``keyspaces``: [``botocore``] Adds support for managing table pre-warming in Amazon Keyspaces (for Apache Cassandra)
* api-change:``odb``: [``botocore``] Adds support for associating and disassociating IAM roles with Autonomous VM cluster resources through the AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs. The GetCloudAutonomousVmCluster and ListCloudAutonomousVmClusters API responses now include the iamRoles field.
* api-change:``verifiedpermissions``: [``botocore``] Amazon Verified Permissions now supports encryption of resources by a customer managed KMS key. Customers can now create new encrypted policy stores by passing in their customer managed key during policy store creation.
* api-change:``workspaces-instances``: [``botocore``] Added billing configuration support for WorkSpaces Instances with monthly and hourly billing modes, including new filtering capabilities for instance type searches.

1.42.30

=======

* api-change:``connect``: [``botocore``] Adds support to allow customers to create form with Dispute configuration
* api-change:``datazone``: [``botocore``] This release adds support for numeric filtering and complex free-text searches cases for the Search and SearchListings APIs.
* api-change:``glacier``: [``botocore``] Documentation updates for Amazon Glacier's maintenance mode
* api-change:``launch-wizard``: [``botocore``] Added UpdateDeployment, ListDeploymentPatternVersions and GetDeploymentPatternVersion APIs for Launch Wizard
* api-change:``resource-explorer-2``: [``botocore``] Added ViewName to View-related responses and ServiceViewName to GetServiceView response.
* api-change:``sagemaker``: [``botocore``] Adding security consideration comments for lcc accessing execution role under root access

1.42.29

=======

* api-change:``cleanrooms``: [``botocore``] This release adds support for parameters in PySpark analysis templates.
* api-change:``deadline``: [``botocore``] AWS Deadline Cloud now supports tagging Budget resources with ABAC for permissions management and selecting up to 16 filter values in the monitor and Search API.
* api-change:``ec2``: [``botocore``] This release includes documentation updates to support up to four Elastic Volume modifications per Amazon EBS volume within a rolling 24-hour period.
* api-change:``ecs``: [``botocore``] Adds support for configuring FIPS in AWS GovCloud (US) Regions via a new ECS Capacity Provider field fipsEnabled. When enabled, instances launched by the capacity provider will use a FIPS-140 enabled AMI. Instances will use FIPS-140 compliant cryptographic modules and AWS FIPS endpoints.
* api-change:``evs``: [``botocore``] A new GetVersions API has been added to retrieve VCF, ESX versions, and EC2 instances provided by Amazon EVS. The CreateEnvironment API now allows you to select a VCF version and the CreateEnvironmentHost API introduces a optional esxVersion parameter.
* api-change:``lakeformation``: [``botocore``] API Changes for GTCForLocation feature. Includes a new API, GetTemporaryDataLocationCredentials and updates to the APIs RegisterResource and UpdateResource
* api-change:``opensearchserverless``: [``botocore``] Collection groups in Amazon OpenSearch Serverless enables to organize multiple collections and enable compute resource sharing across collections with different KMS keys. This shared compute model reduces costs by eliminating the need for separate OpenSearch Compute Units (OCUs) for each KMS key.
* api-change:``qconnect``: [``botocore``] Fix inference configuration shapes for the CreateAIPrompt and UpdateAIPrompt APIs, Modify Text Length Limit for SendMessage API
* enhancement:config: [``botocore``] Add support for TCP Keep-Alive configuration via BOTOCORE_TCP_KEEPALIVE environment variable

1.42.28

=======

* api-change:``ce``: [``botocore``] Cost Categories added support to BillingView data filter expressions through the new costCategories parameter, enabling users to filter billing views by AWS Cost Categories for more granular cost management and allocation.
* api-change:``connect``: [``botocore``] Amazon Connect makes it easier to manage contact center operating hours by enabling automated scheduling for recurring events like holidays and maintenance windows. Set up recurring patterns (weekly, monthly, etc.) or link to another hours of operation to inherit overrides.
* api-change:``eks``: [``botocore``] Added support for BOTTLEROCKET NVIDIA FIPS AMIs to AMI types in US regions.
* api-change:``rds``: [``botocore``] no feature changes. model migrated to Smithy
* api-change:``redshift``: [``botocore``] Adds support for enabling extra compute resources for automatic optimization during create and modify operations in Amazon Redshift clusters.
* api-change:``redshift-serverless``: [``botocore``] Adds support for enabling extra compute resources for automatic optimization during create and update operations in Amazon Redshift Serverless workgroups.
* api-change:``socialmessaging``: [``botocore``] This release clarifies WhatsApp template operations as a resource-authenticated operation via the parent WhatsApp Business Account. It also introduces new parameters for parameter format, CTA URL link tracking, and template body examples, and increases the phone number ID length.

1.42.27

=======

* api-change:``bedrock``: [``botocore``] This change will increase TestCase guardContent input size from 1024 to 2028 characters and PolicyBuildDocumentDescription from 2000 to 4000 characters
* api-change:``datazone``: [``botocore``] Adds support for IAM role subscriptions to Glue table listings via CreateSubscriptionRequest API. Also adds owningIamPrincipalArn filter to List APIs and subscriptionGrantCreationMode parameter to subscription target APIs for controlling grant creation behavior.

1.42.26

=======

* api-change:``billing``: [``botocore``] Cost Categories filtering support to BillingView data filter expressions through the new costCategories parameter, enabling users to filter billing views by AWS Cost Categories for more granular cost management and allocation.
* api-change:``iot-managed-integrations``: [``botocore``] This release introduces WiFi Simple Setup (WSS) enabling device provisioning via barcode scanning with automated network discovery, authentication, and credential provisioning. Additionally, it introduces 2P Device Capability Rediscovery for updating hub-managed device capabilities post-onboarding.
* api-change:``sagemaker``: [``botocore``] Added ultraServerType to the UltraServerInfo structure to support server type identification for SageMaker HyperPod

1.42.25

=======

* api-change:``bedrock-agentcore-control``: [``botocore``] Adds optional field "view" to GetMemory API input to give customers control over whether CMK encrypted data such as strategy decryption or override prompts is returned or not.
* api-change:``cloudfront``: [``botocore``] Added EntityLimitExceeded exception handling to the following API operations AssociateDistributionWebACL, AssociateDistributionTenantWebACL, UpdateDistributionWithStagingConfig
* api-change:``glue``: [``botocore``] Adding MaterializedViews task run APIs
* api-change:``medialive``: [``botocore``] MediaPackage v2 output groups in MediaLive can now accept one additional destination for single pipeline channels and up to two additional destinations for standard channels. MediaPackage v2 destinations now support sending to cross region MediaPackage channels.
* api-change:``transcribe``: [``botocore``] Adds waiters to Amazon Transcribe.

1.42.24

=======

* api-change:``workspaces``: [``botocore``] Add StateMessage and ProgressPercentage fields to DescribeCustomWorkspaceImageImport API response.

1.42.23

=======

* api-change:``ce``: [``botocore``] This release updates existing reservation recommendations API to support deployment model.
* api-change:``emr-serverless``: [``botocore``] Added support for enabling disk encryption using customer managed AWS KMS keys to CreateApplication, UpdateApplication and StartJobRun APIs.

1.42.22

=======

* api-change:``cleanroomsml``: [``botocore``] AWS Clean Rooms ML now supports advanced Spark configurations to optimize SQL performance when creating an MLInputChannel or an audience generation job.

1.42.21

=======

* bugfix:``s3``: [``botocore``] Clarify ``payload_signing_enabled`` documentation to cover interaction with ``request_checksum_calculation``

1.42.20

=======

* api-change:``cleanrooms``: [``botocore``] Added support for publishing detailed metrics to CloudWatch for operational monitoring of collaborations, including query performance and resource utilization.
* api-change:``identitystore``: [``botocore``] This change introduces "Roles" attribute for User entities supported by AWS Identity Store SDK.

1.42.19

=======

* api-change:``connect``: [``botocore``] Adds support for searching global contacts using the ActiveRegions filter, and pagination support for ListSecurityProfileFlowModules and ListEntitySecurityProfiles.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``kafkaconnect``: [``botocore``] This change sets the KafkaConnect GovCloud FIPS and FIPS DualStack endpoints to use kafkaconnect instead of kafkaconnect-fips as the service name. This is done to match the Kafka endpoints.

1.42.18

=======

* api-change:``connect``: [``botocore``] Changes for Contact for Global Search
* api-change:``elastictranscoder``: [``botocore``] The elastictranscoder client has been removed following the deprecation of the service.
* api-change:``quicksight``: [``botocore``] This release adds support for quick users to be able to perform role upgrades on their own. Additionally it allows admins to make this feature admin or auto approval along with new self upgrade capability that can be restricted by Admins.

1.42.17

=======

* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive now supports Pipeline Locking using Video Alignment as well as linked single pipeline channels to enable cross-channel and cross-region Pipeline Locking workflows.

1.42.16

=======

* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``geo-places``: [``botocore``] Adds support for InferredSecondaryAddress place type, Designator in SecondaryAddressComponent and Heading in ReverseGeocode.
* api-change:``pinpoint-sms-voice-v2``: [``botocore``] This release adds support for the Registration Reviewer feature, which provides generative AI feedback on a phone number or sender ID registration to ensure completeness before sending to downstream (carrier) review.
* api-change:``s3``: [``botocore``] Add additional validation to Outpost bucket names.

1.42.15

=======

* api-change:``config``: [``botocore``] Added supported resourceTypes for Config from July to November 2025
* api-change:``ec2``: [``botocore``] Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use.
* api-change:``guardduty``: [``botocore``] Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior.
* api-change:``pcs``: [``botocore``] Change API Reference Documentation for default Mode in Accounting and SlurmRest

1.42.14

=======

* api-change:``arc-region-switch``: [``botocore``] Automatic Plan Execution Reports allow customers to maintain a concise record of their Region switch Plan executions.  This enables customer SREs and leadership to have a clear view of their recovery posture based on the generated reports for their Plan executions.
* api-change:``connect``: [``botocore``] Adding support for Custom Metrics and Pre-Defined Attributes to GetCurrentMetricData API.
* api-change:``emr-serverless``: [``botocore``] Added JobLevelCostAllocationConfiguration field to enable cost allocation reporting at the job level, providing more granular visibility into EMR Serverless charges
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``iot``: [``botocore``] This release adds event-based logging feature that enables granular event logging controls for AWS IoT logs.
* api-change:``qbusiness``: [``botocore``] It is a internal bug fix for region expansion
* api-change:``wickr``: [``botocore``] AWS Wickr now provides a suite of admin APIs to allow you to programmatically manage secure communication for Wickr networks at scale. These APIs enable you to automate administrative workflows including user lifecycle management, network configuration, and security group administration.
* api-change:``workspaces-web``: [``botocore``] Add support for WebAuthn under user settings.

1.42.13

=======

* api-change:``appstream``: [``botocore``] Added support for new operating systems (1) Ubuntu 24.04 Pro LTS on Elastic fleets, and (2) Microsoft Server 2025 on Always-On and On-Demand fleets
* api-change:``arc-region-switch``: [``botocore``] New API to list Route 53 health checks created by ARC region switch for a plan in a specific AWS Region using the Region switch Regional data plane.
* api-change:``artifact``: [``botocore``] Add support for ListReportVersions API  for the calling AWS account.
* api-change:``bedrock-agentcore-control``: [``botocore``] Feature to support header exchanges between Bedrock AgentCore Gateway Targets and client, along with propagating query parameter to the configured targets.
* api-change:``bedrock-data-automation``: [``botocore``] Blueprint Optimization (BPO) is a new Amazon Bedrock Data Automation (BDA) capability that improves blueprint inference accuracy using example content assets and ground truth data. BPO works by generating better instructions for fields in the Blueprint using provided data.
* api-change:``cleanrooms``: [``botocore``] Adding support for collaboration change requests requiring an approval workflow. Adding support for change requests that grant or revoke results receiver ability and modifying auto approved change types in an existing collaboration.
* api-change:``ec2``: [``botocore``] This release adds AvailabilityZoneId support for CreateFleet, ModifyFleet, DescribeFleets, RequestSpotFleet, ModifySpotFleetRequests and DescribeSpotFleetRequests APIs.
* api-change:``ecr``: [``botocore``] Adds support for ECR Create On Push
* api-change:``ecs``: [``botocore``] Adding support for Event Windows via a new ECS account setting "fargateEventWindows". When enabled, ECS Fargate will use the configured event window for patching tasks. Introducing "CapacityOptionType" for CreateCapacityProvider API, allowing support for Spot capacity for ECS Managed Instances.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``iot``: [``botocore``] This release adds message batching for the IoT Rules Engine HTTP action.
* api-change:``opensearch``: [``botocore``] Amazon OpenSearch Service adds support for warm nodes, enabling new multi-tier architecture.
* api-change:``sesv2``: [``botocore``] Amazon SES introduces Email Validation feature which checks email addresses for syntax errors, domain validity, and risky addresses to help maintain deliverability and protect sender reputation. SES also adds resource tagging and ABAC support for EmailTemplates and CustomVerificationEmailTemplates.
* api-change:``ssm-sap``: [``botocore``] Added "Stopping" for the HANA Database Status.

1.42.12

=======

* api-change:``gameliftstreams``: [``botocore``] Added new stream group operation parameters for scale-on-demand capacity with automatic prewarming. Added new Gen6 stream classes based on the EC2 G6 instance family. Added new StartStreamSession parameter for exposure of real-time performance stats to clients.
* api-change:``guardduty``: [``botocore``] Add support for dbiResourceId in finding.
* api-change:``inspector-scan``: [``botocore``] Adds an additional OutputFormat
* api-change:``kafkaconnect``: [``botocore``] Support dual-stack network connectivity for connectors via NetworkType field.
* api-change:``mediaconvert``: [``botocore``] Adds support for tile encoding in HEVC and audio for video overlays.
* api-change:``mediapackagev2``: [``botocore``] This release adds support for SPEKE V2 content key encryption in MediaPackage v2 Origin Endpoints.
* api-change:``payment-cryptography``: [``botocore``] Support for AS2805 standard.  Modifications to import-key and export-key to support AS2805 variants.
* api-change:``payment-cryptography-data``: [``botocore``] Support for AS2805 standard.  New API GenerateAs2805KekValidation and changes to translate pin, GenerateMac and VerifyMac to support AS2805 key variants.
* api-change:``sagemaker``: [``botocore``] Adding the newly launched p6-b300.48xlarge ec2  instance support in Sagemaker(Hyperpod,Training and Sceptor)

1.42.11

=======

* api-change:``iot``: [``botocore``] Add support for dynamic payloads in IoT Device Management Commands
* api-change:``timestream-influxdb``: [``botocore``] This release adds support for rebooting InfluxDB DbInstances and DbClusters

1.42.10

=======

* api-change:``bedrock-agentcore-control``: [``botocore``] This release updates broken links for AgentCore Policy APIs in the AWS CLI and SDK resources.
* api-change:``connect``: [``botocore``] Amazon Connect now supports outbound WhatsApp contacts via the Send message block or StartOutboundChatContact API. Send proactive messages for surveys, reminders, and updates. Offer customers the option to switch to WhatsApp while in queue, eliminating hold time.
* api-change:``ec2``: [``botocore``] EC2 Capacity Manager now supports SpotTotalCount, SpotTotalInterruptions and SpotInterruptionRate metrics for both vCPU and instance units.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``entityresolution``: [``botocore``] Support Customer Profiles Integration for AWS Entity Resolution
* api-change:``glacier``: [``botocore``] Documentation updates for Amazon Glacier's maintenance mode
* api-change:``health``: [``botocore``] Updating Health API endpoint generation for dualstack only regions
* api-change:``logs``: [``botocore``] This release allows you to import your historical CloudTrail Lake data into CloudWatch with a few steps, enabling you to easily consolidate operational, security, and compliance data in one place.
* api-change:``mediatailor``: [``botocore``] Added support for Ad Decision Server Configuration enabling HTTP POST requests with custom bodies, headers, GZIP compression, and dynamic variables. No changes required for existing GET request configurations.
* api-change:``route53resolver``: [``botocore``] Adds support for enabling detailed metrics on Route 53 Resolver endpoints using RniEnhancedMetricsEnabled and TargetNameServerMetricsEnabled in the CreateResolverEndpoint and UpdateResolverEndpoint APIs, providing enhanced visibility into Resolver endpoint and target name server performance.
* api-change:``s3``: [``botocore``] This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations.
* api-change:``service-quotas``: [``botocore``] Add support for SQ Dashboard Api

1.42.9

======

* api-change:``bcm-recommended-actions``: [``botocore``] Added new freetier action types to RecommendedAction.type.
* api-change:``connect``: [``botocore``] Amazon Connect now offers automated post-chat surveys triggered when customers end conversations. This captures timely feedback while experience is fresh, using either a no-code form builder or Amazon Lex-powered interactive surveys.
* api-change:``datasync``: [``botocore``] Adds Enhanced mode support for NFS and SMB locations. SMB credentials are now managed via Secrets Manager, and may be encrypted with service or customer managed keys. Increases AgentArns maximum count to 8 (max 4 per TaskMode). Adds folder counters to DescribeTaskExecution for Enhanced mode tasks.
* api-change:``workspaces-web``: [``botocore``] Adds support for portal branding customization, enabling administrators to personalize end-user portals with custom assets.

1.42.8

======

* api-change:``lambda``: [``botocore``] Add Dotnet 10 (dotnet10) support to AWS Lambda.
* api-change:``organizations``: [``botocore``] Add support for policy operations on the NETWORK SECURITY DIRECTOR POLICY policy type.
* api-change:``quicksight``: [``botocore``] This release adds new GetIdentityContext API, Dashboard customization options for tables and pivot tables, Visual styling options- borders and decals, map GeocodingPreferences, KeyPairCredentials for DataSourceCredentials. Snapshot APIs now support registered users. Parameters limit increased to 400
* api-change:``secretsmanager``: [``botocore``] Add SortBy parameter to ListSecrets
* api-change:``sesv2``: [``botocore``] Update GetEmailIdentity and CreateEmailIdentity response to include SigningHostedZone in DkimAttributes. Updated PutEmailIdentityDkimSigningAttributes Response to include SigningHostedZone.

1.42.7

======

* api-change:``bedrock``: [``botocore``] Automated Reasoning checks in Amazon Bedrock Guardrails is capable of generating policy scenarios to validate policies. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API now adds POLICY SCENARIO asset type, allowing customers to retrieve scenarios generated by the build workflow.
* api-change:``billingconductor``: [``botocore``] Launch itemized custom line item and service line item filter
* api-change:``cloudwatch``: [``botocore``] This release introduces two additional protocols AWS JSON 1.1 and Smithy RPC v2 CBOR, replacing the currently utilized one, AWSQuery. AWS SDKs will prioritize the protocol that is the most performant for each language.
* api-change:``odb``: [``botocore``] The following APIs now return CloudExadataInfrastructureArn and OdbNetworkArn fields for improved resource identification and AWS service integration - GetCloudVmCluster, ListCloudVmClusters, GetCloudAutonomousVmCluster, and ListCloudAutonomousVmClusters.
* api-change:``opensearch``: [``botocore``] The CreateApplication API now supports an optional kms key arn parameter to allow customers to specify a CMK for application encryption.
* api-change:``partnercentral-selling``: [``botocore``] Adds support for the new Project.AwsPartition field on Opportunity and AWS Opportunity Summary. Use this field to specify the AWS partition where the opportunity will be deployed.
* api-change:``signer``: [``botocore``] Adds support for Signer GetRevocationStatus with updated endpoints

1.42.6

======

* api-change:``account``: [``botocore``] This release adds a new API (GetGovCloudAccountInformation) used to retrieve information about a linked GovCloud account from the standard AWS partition.
* api-change:``appsync``: [``botocore``] Update Event API to require EventConfig parameter in creation and update requests.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``guardduty``: [``botocore``] Adding support for Ec2LaunchTemplate Version field
* api-change:``ivs-realtime``: [``botocore``] Token Exchange introduces seamless token exchange capabilities for IVS RTX, enabling customers to upgrade or downgrade token capabilities and update token attributes within the IVS client SDK without forcing clients to disconnect and reconnect.
* api-change:``mgn``: [``botocore``] Added parameters encryption, IPv4/IPv6 protocol configuration, and enhanced tagging support for replication operations.
* api-change:``route53``: [``botocore``] Amazon Route 53 now supports the EU (Germany) Region (eusc-de-east-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region

1.42.5

======

* api-change:``ce``: [``botocore``] Add support for Cost Category resource associations including filtering by resource type on ListCostCategoryDefinitions and new ListCostCategoryResourceAssociations API.
* api-change:``ec2``: [``botocore``] Amazon EC2 P6-B300 instances provide 8x NVIDIA Blackwell Ultra GPUs with 2.1 TB high bandwidth GPU memory, 6.4 Tbps EFA networking, 300 Gbps dedicated ENA throughput, and 4 TB of system memory. Amazon EC2 C8a instances are powered by 5th Gen AMD EPYC processors with a maximum frequency of 4.5 GHz.
* api-change:``identitystore``: [``botocore``] Updating AWS Identity Store APIs to support Attribute Extensions capability, with the first release adding Enterprise Attributes. This launch aligns Identity Store APIs with SCIM for enterprise attributes, reducing cases when customers are forced to use SCIM due to lack of SigV4 API support.
* api-change:``partnercentral-selling``: [``botocore``] Deal Sizing Service for AI-based deal size estimation with AWS service-level breakdown, supporting Expansion and Migration deals across Technology, and Reseller partner cohorts, including Pricing Calculator AddOn for MAP deals and funding incentives.
* api-change:``rds``: [``botocore``] Adding support for tagging RDS Instance/Cluster Automated Backups
* api-change:``redshift-serverless``: [``botocore``] Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages.
* api-change:``rolesanywhere``: [``botocore``] Increases certificate string length for trust anchor source data to support ML-DSA certificates.
* api-change:``sesv2``: [``botocore``] Update Mail Manager Archive ARN validation
* enhancement:ContainerProvider: [``botocore``] The ContainerProvider now works with arbitray HTTPS URLs for `AWS_CONTAINER_CREDENTIALS_FULL_URI`.

1.42.4

======

* api-change:``ecs``: [``botocore``] Updating stop-task API to encapsulate containers with custom stop signal
* api-change:``iam``: [``botocore``] Adding the ExpirationTime attribute to the delegation request resource.
* api-change:``inspector2``: [``botocore``] This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts.
* api-change:``partnercentral-account``: [``botocore``] Adding Verification API's to Partner Central Account SDK.
* api-change:``sesv2``: [``botocore``] Updating the desired url for `PutEmailIdentityDkimSigningAttributes` from v1 to v2
* enhancement:AWSCRT: [``botocore``] Update awscrt version to 0.29.2

1.42.3

======

* api-change:``lambda``: [``botocore``] Add DisallowedByVpcEncryptionControl to the LastUpdateStatusReasonCode and StateReasonCode enums to represent failures caused by VPC Encryption Controls.

1.42.2

======

* api-change:``bedrock``: [``botocore``] Adding support in Amazon Bedrock to customize models with reinforcement fine-tuning (RFT) and support for updating the existing Custom Model Deployments.
* api-change:``sagemaker``: [``botocore``] Introduces Serverless training: A fully managed compute infrastructure that abstracts away all infrastructure complexity, allowing you to focus purely on model development.

Added AI model customization assets used to train, refine, and evaluate custom models during the model customization process.

1.42.1

======

* api-change:``bedrock``: [``botocore``] Adds the audioDataDeliveryEnabled boolean field to the Model Invocation Logging Configuration.
* api-change:``bedrock-agentcore``: [``botocore``] Support for AgentCore Evaluations and Episodic memory strategy for AgentCore Memory.
* api-change:``bedrock-agentcore-control``: [``botocore``] Supports AgentCore Evaluations, Policy, Episodic Memory Strategy, Resource Based Policy for Runtime and Gateway APIs, API Gateway Rest API Targets and enhances JWT authorizer.
* api-change:``bedrock-runtime``: [``botocore``] Adds support for Audio Blocks and Streaming Image Output plus new Stop Reasons of malformed_model_output and malformed_tool_use.
* api-change:``ce``: [``botocore``] This release updates existing Savings Plans Purchase Analyzer and Recommendations APIs to support Database Savings Plans.
* api-change:``datazone``: [``botocore``] Amazon DataZone now supports exporting Catalog datasets as Amazon S3 tables, and provides automatic business glossary term suggestions for data assets.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``fsx``: [``botocore``] S3 Access Points support for FSx for NetApp ONTAP
* api-change:``guardduty``: [``botocore``] Adding support for extended threat detection for Amazon EC2 and Amazon ECS. Adding support for wild card suppression rules.
* api-change:``lambda``: [``botocore``] Launching Lambda durable functions - a new feature to build reliable multi-step applications and AI workflows natively within the Lambda developer experience.
* api-change:``logs``: [``botocore``] CloudWatch Logs adds managed S3 Tables integration to access logs using other analytical tools, as well as facets and field indexing to simplify log analytics in CloudWatch Logs Insights.
* api-change:``nova-act``: [``botocore``] Initial release of Nova Act SDK. The Nova Act service enables customers to build and manage fleets of agents for automating production UI workflows with high reliability, fastest time-to-value, and ease of implementation at scale.
* api-change:``observabilityadmin``: [``botocore``] CloudWatch Observability Admin adds pipelines configuration for third party log ingestion and transformation of all logs ingested, integration of CloudWatch logs with S3 Tables, and AWS account or organization level enablement for 7 AWS services.
* api-change:``opensearch``: [``botocore``] GPU-acceleration helps you build large-scale vector databases faster and more efficiently. You can enable this feature on new OpenSearch domains and OpenSearch Serverless collections. This feature uses GPU-acceleration to reduce the time needed to index data into vector indexes.
* api-change:``opensearchserverless``: [``botocore``] GPU-acceleration helps you build large-scale vector databases faster and more efficiently. You can enable this feature on new OpenSearch domains and OpenSearch Serverless collections. This feature uses GPU-acceleration to reduce the time needed to index data into vector indexes.
* api-change:``rds``: [``botocore``] RDS Oracle and SQL Server: Add support for adding, modifying, and removing additional storage volumes, offering up to 256TiB storage; RDS SQL Server: Support Developer Edition via custom engine versions for development and testing purposes; M7i/R7i instances with Optimize CPU for cost savings.
* api-change:``s3``: [``botocore``] New S3 Storage Class FSX_ONTAP
* api-change:``s3control``: [``botocore``] Add support for S3 Storage Lens Advanced Performance Metrics, Expanded Prefixes metrics report, and export to S3 Tables.
* api-change:``s3tables``: [``botocore``] Add storage class, replication, and table record expiration features to S3 Tables.
* api-change:``s3vectors``: [``botocore``] Amazon S3 Vectors provides cost-effective, elastic, and durable vector storage for queries based on semantic meaning and similarity.
* api-change:``sagemaker``: [``botocore``] Added support for serverless MLflow Apps.

Added support for new HubContentTypes (DataSet and JsonDoc) in Private Hub for AI model customization assets, enabling tracking and management of training datasets and evaluators (reward functions/prompts) throughout the ML lifecycle.
* api-change:``savingsplans``: [``botocore``] Added support for Amazon Database Savings Plans
* api-change:``securityhub``: [``botocore``] ITSM enhancements: DRYRUN mode for testing ticket creation, ServiceNow now uses AWS Secrets Manager for credentials, ConnectorRegistrationsV2 renamed to RegisterConnectorV2, added ServiceQuotaExceededException error, and ConnectorStatus visibility in CreateConnectorV2.

1.42.0

======

* api-change:``appintegrations``: [``botocore``] This release adds support for MCP servers via the ApplicationType field, allowing customers to register their Bedrock AgentCore gateways as third party applications.
* api-change:``bedrock-agent``: [``botocore``] Support audio and video ingestion on Bedrock Knowledge Bases.
* api-change:``bedrock-agent-runtime``: [``botocore``] Support audio and video content retrieval on Bedrock Knowledge Bases.
* api-change:``cleanrooms``: [``botocore``] AWS Clean Rooms now supports privacy-enhancing synthetic dataset generation for custom ML training.
* api-change:``cleanroomsml``: [``botocore``] AWS Clean Rooms ML now supports privacy-enhancing synthetic dataset generation for custom ML training.
* api-change:``connect``: [``botocore``] This is a combined re:Invent release for Amazon Connect.
* api-change:``connectcampaignsv2``: [``botocore``] This release added support for new WhatsApp channel and Journey type outbound campaign
* api-change:``connectparticipant``: [``botocore``] Amazon Connect now supports message processing that intercepts and processes chat messages before they reach any participant.
* api-change:``customer-profiles``: [``botocore``] This release introduces, CRUD APIs for the DomainObjectType and Recommender resources, APIs to offer statistical insights on Object Type Attributes, Changes to SegmentDefinition APIs to support SQL queries to create Segments, and Changes to Domain APIs to support Data Store.
* api-change:``eks``: [``botocore``] This release adds support for EKS Capabilities
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``glue``: [``botocore``] feature: Glue: Add support for Iceberg materialized view in Glue Data Catalog, including updated CreateTable API to support materialized views and new APIs for managing data refresh for materialized views.
feature: Glue: Add support for Iceberg table encryption keys and struct field defaults.
* api-change:``lambda``: [``botocore``] Launching Lambda Managed Instances - a new feature to run Lambda on EC2.
* api-change:``lexv2-models``: [``botocore``] Adds support for speech-to-speech models for human-like, adaptive, and expressive voice interactions. Also adds support for speech model preference, allowing customers to select which speech model they want to use for speech-to-text requests.
* api-change:``marketplace-agreement``: [``botocore``] This release supports 1/multi-product transactions via offer sets. DescribeAgreement and SearchAgreements APIs now return offer set IDs. SearchAgreements also supports filtering by offer set ID and 2/variable payment pricing terms will be returned through GetAgreementTerms.
* api-change:``marketplace-catalog``: [``botocore``] This release introduces offer set entity in AWS Marketplace Catalog API to enable multi-product transaction. Offer set enables sellers to group multiple private offers into a single-click purchase experience, simplifying procurement for customers purchasing multi-product solutions.
* api-change:``partnercentral-account``: [``botocore``] Initial GA launch of Partner Central Account
* api-change:``partnercentral-benefits``: [``botocore``] Initial GA launch of Partner Central Benefits
* api-change:``partnercentral-selling``: [``botocore``] New Features:
Lead Management APIs for capturing and nurturing leads
Lead invitation support for partner collaboration
Lead-to-opportunity conversion operations
AWS Marketplace OfferSets support for opportunities
* api-change:``personalize``: [``botocore``] This release adds support for includedDatasetColumns and performIncrementalUpdate in solution APIs, and rankingInfluence in campaign and batch inference APIs.
* api-change:``qconnect``: [``botocore``] New AIAgent types: Orchestration for ModelContextProtocol tool integration, CaseSummary for Amazon Connect Case summaries, NoteTaker for Agent Assistance notes. Added ListSpans and Retrieve APIs. Enhanced Q in Connect AssistantAssociationType to support Bring Your Own Bedrock Knowledge Bases.
* api-change:``route53globalresolver``: [``botocore``] Add SDK for Amazon Route 53 Global Resolver, a fully managed DNS resolver service that offers broad DNS-filtering security controls.
* enhancement:AWSCRT: [``botocore``] Update awscrt version to 0.29.1
* enhancement:``s3``: Adds partial ``TransferConfig`` support for CRT transfer managers.
* feature:``s3``: Added ``crt`` mode to ``preferred_transfer_client`` parameter in ``TransferConfig`` to enable CRT transfer client in all environments.

1.41.5

======

* api-change:``bedrock-runtime``: [``botocore``] Bedrock Runtime Reserved Service Support
* api-change:``compute-optimizer``: [``botocore``] Compute Optimizer now identifies idle NAT Gateway resources for cost optimization based on traffic patterns and backup configuration analysis. Access recommendations via the GetIdleRecommendations API.
* api-change:``cost-optimization-hub``: [``botocore``] This release enables AWS Cost Optimization Hub to show cost optimization recommendations for NAT Gateway.

1.41.4

======

* api-change:``ec2``: [``botocore``] This release adds support to view Network firewall proxy appliances attached to an existing NAT Gateway via DescribeNatGateways API NatGatewayAttachedAppliance structure.
* api-change:``network-firewall``: [``botocore``] Network Firewall release of the Proxy feature.
* api-change:``organizations``: [``botocore``] Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type.
* api-change:``route53``: [``botocore``] Adds support for new route53 feature: accelerated recovery.

1.41.3

======

* api-change:``cloudfront``: [``botocore``] Add TrustStore, ConnectionFunction APIs to CloudFront SDK
* api-change:``logs``: [``botocore``] New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion.
* enhancement:awscrt: [``botocore``] Update awscrt version to 0.29.0

1.41.2

======

* api-change:``apigateway``: [``botocore``] API Gateway supports VPC link V2 for REST APIs.
* api-change:``athena``: [``botocore``] Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs.
* api-change:``bedrock``: [``botocore``] Add support to automatically enforce safeguards across accounts within an AWS Organization.
* api-change:``bedrock-agentcore-control``: [``botocore``] Support for agentcore gateway interceptor configurations and NONE authorizer type
* api-change:``bedrock-data-automation-runtime``: [``botocore``] Adding new fields to GetDataAutomationStatus: jobSubmissionTime, jobCompletionTime, and jobDurationInSeconds
* api-change:``bedrock-runtime``: [``botocore``] Add support to automatically enforce safeguards across accounts within an AWS Organization.
* api-change:``cloudformation``: [``botocore``] Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets
* api-change:``compute-optimizer-automation``: [``botocore``] Initial release of AWS Compute Optimizer Automation. Create automation rules to implement recommended actions on a recurring schedule based on your specified criteria. Supported actions include: snapshot and delete unattached EBS volumes and upgrade volume types to the latest generation.
* api-change:``connect``: [``botocore``] New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks.
* api-change:``controltower``: [``botocore``] The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0
* api-change:``ec2``: [``botocore``] This release adds a new capability to create and manage interruptible EC2 Capacity Reservations.
* api-change:``ecr``: [``botocore``] Add support for ECR managed signing
* api-change:``eks``: [``botocore``] Adds support for controlPlaneScalingConfig on EKS Clusters.
* api-change:``elbv2``: [``botocore``] This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``invoicing``: [``botocore``] Added the CreateProcurementPortalPreference, GetProcurementPortalPreference, PutProcurementPortalPreference, UpdateProcurementPortalPreferenceStatus, ListProcurementPortalPreferences and DeleteProcurementPortalPreference APIs for procurement portal preference management.
* api-change:``kinesisvideo``: [``botocore``] This release adds support for Tiered Storage
* api-change:``kms``: [``botocore``] Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material
* api-change:``lambda``: [``botocore``] Launching Enhanced Error Handling and ESM Grouping capabilities for Kafka ESMs
* api-change:``lexv2-models``: [``botocore``] Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments.
* api-change:``mailmanager``: [``botocore``] Add support for resources in the aws-eusc partition.
* api-change:``marketplace-entitlement``: [``botocore``] Endpoint update for new region
* api-change:``mediapackagev2``: [``botocore``] Adds support for excluding session key tags from HLS multivariant playlists
* api-change:``meteringmarketplace``: [``botocore``] Endpoint update for new region
* api-change:``odb``: [``botocore``] Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API.
* api-change:``organizations``: [``botocore``] Add support for policy operations on the UPGRADE_ROLLOUT_POLICY policy type.
* api-change:``qconnect``: [``botocore``] This release introduces two new messaging channel subtypes: Push, WhatsApp, under MessageTemplate which is a resource in Amazon Q in Connect.
* api-change:``quicksight``: [``botocore``] Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications.
* api-change:``rds``: [``botocore``] Add support for Upgrade Rollout Order
* api-change:``redshift``: [``botocore``] Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation.
* api-change:``redshift-serverless``: [``botocore``] Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces.
* api-change:``sagemaker``: [``botocore``] Enhanced SageMaker HyperPod instance groups with support for MinInstanceCount, CapacityRequirements (Spot/On-Demand), and KubernetesConfig (labels and taints). Also Added speculative decoding and MaxInstanceCount for model optimization jobs.
* api-change:``security-ir``: [``botocore``] Add ListInvestigations and SendFeedback APIs to support SecurityIR AI agents
* api-change:``sesv2``: [``botocore``] Added support for new SES regions - Asia Pacific (Malaysia) and Canada (Calgary)
* api-change:``transfer``: [``botocore``] Adds support for creating Webapps accessible from a VPC.

1.41.1

======

* api-change:``application-signals``: [``botocore``] Amazon CloudWatch Application Signals now supports un-instrumented services discovery, cross-account views, and change history, helping SRE and DevOps teams monitor and troubleshoot their large-scale distributed applications.
* api-change:``autoscaling``: [``botocore``] This release adds support for three new features: 1) Image ID overrides in mixed instances policy, 2) Replace Root Volume - a new strategy for Instance Refresh, and 3) Instance Lifecycle Policy for enhanced instance lifecycle management.
* api-change:``bedrock-agentcore``: [``botocore``] Bedrock AgentCore Memory release for redriving memory extraction jobs (StartMemoryExtractionJob and ListMemoryExtractionJob)
* api-change:``bedrock-data-automation``: [``botocore``] Added support for Synchronous project type and PII Detection and Redaction
* api-change:``bedrock-data-automation-runtime``: [``botocore``] Bedrock Data Automation Runtime Sync API
* api-change:``braket``: [``botocore``] Add support for Braket spending limits.
* api-change:``budgets``: [``botocore``] Add BillingViewHealthStatusException to DescribeBudgetPerformanceHistory and ServiceQuotaExceededException to UpdateBudget for improved error handling with Billing Views.
* api-change:``cloudfront``: [``botocore``] This release adds support for bring your own IP (BYOIP) to CloudFront's CreateAnycastIpList API through an optional IpamCidrConfigs field.
* api-change:``cloudtrail``: [``botocore``] AWS launches CloudTrail aggregated events to simplify monitoring of data events at scale. This feature delivers both granular and summarized data events for resources like S3/Lambda, helping security teams identify patterns without custom aggregation logic.
* api-change:``connect``: [``botocore``] Add optional ability to exclude users from send notification actions for Contact Lens Rules.
* api-change:``datasync``: [``botocore``] The partition value "aws-eusc" is now permitted for ARN (Amazon Resource Name) fields.
* api-change:``devicefarm``: [``botocore``] Add support for environment variables and an IAM execution role.
* api-change:``dms``: [``botocore``] Added support for customer-managed KMS key (CMK) for encryption for import private key certificate. Additionally added Amazon SageMaker Lakehouse endpoint used for zero-ETL integrations with data warehouses.
* api-change:``dsql``: [``botocore``] Added clusterVpcEndpoint field to GetVpcEndpointServiceName API response, returning the VPC connection endpoint for the cluster
* api-change:``ec2``: [``botocore``] This release adds support for multiple features including: VPC Encryption Control for the status of traffic flow; S2S VPN BGP Logging; TGW Flexible Costs; IPAM allocation of static IPs from IPAM pools to CF Anycast IP lists used on CloudFront distribution; and EBS Volume Integration with Recycle Bin
* api-change:``ecs``: [``botocore``] Launching Amazon ECS Express Mode - a new feature that enables developers to quickly launch highly available, scalable containerized applications with a single command.
* api-change:``elbv2``: [``botocore``] This release adds the target optimizer feature in ALB, enabling strict concurrency enforcement on targets.
* api-change:``emr``: [``botocore``] Add support for configuring S3 destination for step logs on a per-step basis.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``glue``: [``botocore``] Added FunctionType parameter to Glue GetuserDefinedFunctions.
* api-change:``imagebuilder``: [``botocore``] EC2 Image Builder now enables the distribution of existing AMIs, retry distribution, and define distribution workflows. It also supports automatic versioning for recipes and components, allowing automatic version increments and dynamic referencing in pipelines.
* api-change:``kinesis``: [``botocore``] Kinesis Data Streams now supports up to 50 Enhance Fan-out consumers for On-demand Advantage Streams. On-demand Standard and Provisioned streams will continue with the existing limit of 20 consumers for Enhanced Fan-out.
* api-change:``lakeformation``: [``botocore``] Added ServiceIntegrations as a request parameter for CreateLakeFormationIdentityCenterConfigurationRequest and UpdateLakeFormationIdentityCenterConfigurationRequest and response parameter for DescribeLakeFormationIdentityCenterConfigurationResponse
* api-change:``license-manager``: [``botocore``] Added cross-account resource aggregation via license asset groups and expiry tracking for Self-Managed Licenses. Extended Org-Wide View to Self-Managed Licenses, added reporting for license asset groups, and removed Athena/Glue dependencies for cr

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