Skip to content

Scheduled weekly dependency update for week 17#312

Closed
pyup-bot wants to merge 67 commits into
masterfrom
pyup-scheduled-update-2026-04-27
Closed

Scheduled weekly dependency update for week 17#312
pyup-bot wants to merge 67 commits into
masterfrom
pyup-scheduled-update-2026-04-27

Conversation

@pyup-bot
Copy link
Copy Markdown
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.1.

Changelog

3.11.1

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

* SECURITY FIX CVE-2025-14550: There was a potential DoS vector for users of
the ``asgiref.wsgi.WsgiToAsgi`` adapter. Malicious requests, including an unreasonably
large number of values for the same header, could lead to resource exhaustion
when building the WSGI environment.

To mitigate this, the algorithm is changed to be more efficient, and
``WsgiToAsgi`` gains a new optional ``duplicate_header_limit`` parameter,
which defaults to 100. This specifies the number of times a single header may
be repeated before the request is rejected as malformed.

You may override ``duplicate_header_limit`` when configuring your application::

   application = WsgiToAsgi(wsgi_app, duplicate_header_limit=200)

Set ``duplicate_header_limit=None`` if you wish to disable this check.

* Fixed a regression in 3.11.0 in ``sync_to_async`` when wrapping a callable
with an attribute named ``context``. (537)

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

Changelog

1.42.96

=======

* api-change:``bedrock-agentcore-control``: [``botocore``] Added support for configuring identity providers and inbound authorizers within a private VPC for AWS Bedrock AgentCore, enabling secure network connection without public internet access
* api-change:``connect``: [``botocore``] Amazon Connect is expanding attachment capabilities to give customers greater flexibility and control. Currently limited to predefined file types, the new feature will allow contact center administrators to customize which file extensions and sizes are supported across chat, email, tasks, and cases.
* api-change:``connecthealth``: [``botocore``] Corrected CreateWebAppConfiguration documentation. Adding slash as an allowed character for the Ambient documentation agent to allow pronoun specifications.
* api-change:``evs``: [``botocore``] EVS now supports i7i.metal-24xl EC2 bare metal instance type, delivering high random IOPS performance with real-time latency, ideal for IO intensive and latency-sensitive workloads such as transactional databases, real-time analytics, and AI ML pre-processing.
* api-change:``logs``: [``botocore``] Adding nextToken and maxItems to the GetQueryResults API.
* api-change:``transfer``: [``botocore``] AWS Transfer Family now support configurable IP address types for Web Apps of type VPC, enabling customers to select IPv4-only or dual-stack (IPv4 and IPv6) configurations based on their network requirements.

1.42.95

=======

* api-change:``datazone``: [``botocore``] Releasing For LakehouseProperties attributes in the Connections API's
* api-change:``iot-managed-integrations``: [``botocore``] Adds "Status" field to provisioning profile operation response types, giving users visibility into the readiness of a provisioning profile to be used for device provisioning.
* api-change:``opensearch``: [``botocore``] Amazon OpenSearch UI applications now support cross-Region domain association, enabling you to connect OpenSearch Dashboards in one AWS Region to OpenSearch domains in other Regions within the same partition for centralized data visualization.
* api-change:``pcs``: [``botocore``] This release adds support for Slurm 25.11 with expedited requeue enabled by default for jobs failing due to node issues, configurable requeue delay, health checks at node startup only, and unauthenticated HTTP endpoints disabled by default for improved security.
* bugfix:``cloudwatch``: [``botocore``] Alias ``get_o_tel_enrichment``, ``start_o_tel_enrichment``, and ``stop_o_tel_enrichment`` botocore methods to use ``otel`` instead of ``o_tel``.

1.42.94

=======

* api-change:``batch``: [``botocore``] Support of S3Files volume type, container start and stop timeouts.
* api-change:``bedrock-agentcore``: [``botocore``] Adds support for Amazon Bedrock AgentCore Harness data plane APIs, enabling customers to invoke managed agent loops and execute commands on live agent sessions with streaming responses.
* api-change:``bedrock-agentcore-control``: [``botocore``] Adds support for Amazon Bedrock AgentCore Harness control plane APIs, enabling customers to create, manage, and configure managed agent loops with customizable models, tools, memory, and isolated execution environments.
* api-change:``ec2``: [``botocore``] Managed resource visibility settings control whether resources that AWS services provision on your behalf within your AWS account appear in your Amazon console views and API list operations.
* api-change:``ecs``: [``botocore``] GPU health monitoring and auto-repair for ECS Managed Instances
* api-change:``emr-serverless``: [``botocore``] This release adds support for Spark connect sessions starting with release label emr-7.13.0.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``iotwireless``: [``botocore``] Enable customers to optionally specify a desired confidence level for Cellular and WiFi position estimates. Customers can use this to trade off confidence level and radius of uncertainty based on their needs.
* api-change:``ivs``: [``botocore``] Adds support for Amazon IVS server-side ad insertion
* api-change:``lambda``: [``botocore``] Add Ruby 4.0 (ruby4.0) support to AWS Lambda.
* api-change:``opensearch``: [``botocore``] Adds support for RollbackServiceSoftwareUpdate API
* api-change:``osis``: [``botocore``] Update the pipeline configuration body character limit for the CreatePipeline API call.
* api-change:``s3``: [``botocore``] This release adds five additional checksum algorithms for S3 data integrity (MD5, SHA-512, XXHash3, XXHash64, XXHash128) and support for S3 Inventory on directory buckets (S3 Express One Zone).
* api-change:``s3control``: [``botocore``] This release adds support for five additional checksum algorithms for data integrity checking in Amazon S3 - MD5, SHA-512, XXHash3, XXHash64, and XXHash128.

1.42.93

=======

* api-change:``cognito-idp``: [``botocore``] Adding dutch language support for Cognito Managed Login and Terms on Console
* api-change:``comprehendmedical``: [``botocore``] This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.1. The SDK will prioritize its most performant protocol.
* api-change:``compute-optimizer``: [``botocore``] This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.0. The SDK will prioritize its most performant protocol.
* api-change:``compute-optimizer-automation``: [``botocore``] This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.0. The SDK will prioritize its most performant protocol.
* api-change:``gamelift``: [``botocore``] This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.1. The SDK will prioritize its most performant protocol.
* api-change:``marketplace-entitlement``: [``botocore``] This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.1. The SDK will prioritize its most performant protocol.
* api-change:``network-firewall``: [``botocore``] Support for new types of partner managed rulegroups for Network Firewall Service
* api-change:``sagemaker``: [``botocore``] SageMaker AI now supports generative AI inference recommendations. Provide your model and workload, and SageMaker AI optimizes configurations, benchmarks them on real GPUs, and returns deployment-ready recommendations with validated metrics, accelerating the path to production from weeks to hours.
* api-change:``snowball``: [``botocore``] This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.1. The SDK will prioritize its most performant protocol.

1.42.92

=======

* api-change:``application-signals``: [``botocore``] Releasing Second phase of SLO Recommendations where you can create recommended SLOs out-of-the box using CreateSLO API
* api-change:``bedrock-agentcore-control``: [``botocore``] Supporting listingMode for AgentCore Gateway MCP server targets
* api-change:``ec2``: [``botocore``] Added Transit Gateway Integration into AWS Client VPN.
* api-change:``evs``: [``botocore``] Amazon EVS now allows you to create connectors to your vCenter appliances and create Windows Server entitlements for virtual machines running in your EVS environments
* api-change:``guardduty``: [``botocore``] Expanded support for new suppression rule fields.
* api-change:``kafka``: [``botocore``] Amazon MSK Replicator now supports data migration from external Apache Kafka clusters to Amazon MSK Express brokers. This release adds SaslScram authentication with TLS encryption, enhanced consumer offset synchronization, and customer log forwarding for troubleshooting.
* api-change:``location``: [``botocore``] This release adds support for new Job APIs for bulk workloads. The initial job type supported is Address Validation. The new APIs added are StartJob, CancelJob, ListJobs, and GetJob.
* api-change:``observabilityadmin``: [``botocore``] Enablement for Security Hub v2 via Observability Admin Telemetry Rule for account and organization level.

1.42.91

=======

* api-change:``cleanrooms``: [``botocore``] This release adds support for configurable spark properties for Cleanrooms PySpark workloads.
* api-change:``connect``: [``botocore``] Fixes in SDK for customers using TestCase APIs
* api-change:``connectcampaignsv2``: [``botocore``] This release adds support for campaign entry limits configuration and hourly refresh frequency in Amazon Connect Outbound Campaigns.
* api-change:``groundstation``: [``botocore``] Adds support for updating contacts, listing antennas, and listing ground station reservations. New API operations - UpdateContact, ListContactVersions, DescribeContactVersion, ListAntennas, and ListGroundStationReservations.
* api-change:``imagebuilder``: [``botocore``] ImportDiskImage API adds registerImageOptions for Secure Boot control and custom UEFI data. It adds windowsConfiguration for selecting a specific edition from multi-image .wim files during ISO import.
* api-change:``neptune``: [``botocore``] Improving Documentation for Neptune
* api-change:``quicksight``: [``botocore``] Public release of dashboard customization summary, S3 Tables data source type, Athena cross-account connector, custom sorting for controls, and AI-powered analysis generation.
* api-change:``sagemaker``: [``botocore``] Adds support for providing NetworkInterface for efa enabled instances and Simplified cluster creation for Slurm-orchestrated clusters with optional Lifecycle Script (LCS) configuration.
* api-change:``sts``: [``botocore``] The STS client now supports configuring SigV4a through the auth scheme preference setting. SigV4a uses asymmetric cryptography, enabling customers using long-term IAM credentials to continue making STS API calls even when a region is isolated from the partition leader.

1.42.90

=======

* api-change:``appstream``: [``botocore``] Add content redirection to Update Stack
* api-change:``autoscaling``: [``botocore``] This release adds support for specifying Availability Zone IDs as an alternative to Availability Zone names when creating or updating Auto Scaling groups.
* api-change:``bedrock-agentcore``: [``botocore``] Introducing NamespacePath in AgentCore Memory to support hierarchical prefix based memory record retrieval.
* api-change:``cloudwatch``: [``botocore``] Update documentation of alarm mute rules start and end date fields
* api-change:``cognito-idp``: [``botocore``] Adds support for passkey-based multi-factor authentication in Cognito User Pools. Users can authenticate securely using FIDO2-compliant passkeys with user verification, enabling passwordless MFA flows while maintaining backward compatibility with password-based authentication
* api-change:``connect``: [``botocore``] This release updates the Amazon Connect Rules CRUD APIs to support a new EventSourceName - OnEmailAnalysisAvailable. Use this event source to trigger rules when conversational analytics results are available for email contacts.
* api-change:``connectcases``: [``botocore``] Added error handling for service quota limits
* api-change:``customer-profiles``: [``botocore``] Amazon Connect Customer Profiles adds RecommenderSchema CRUD APIs for custom ML training columns. CreateRecommender and CreateRecommenderFilter now accept optional RecommenderSchemaName.
* api-change:``datazone``: [``botocore``] Launching SMUS IAM domain SDK support
* api-change:``devops-agent``: [``botocore``] Deprecate the userId from the Chat operations. This update also removes  support of AllowVendedLogDeliveryForResource API from AWS SDKs.
* api-change:``drs``: [``botocore``] Updating regex for identification of AWS Regions.
* api-change:``logs``: [``botocore``] Endpoint update for CloudWatch Logs Streaming APIs.
* api-change:``mediaconvert``: [``botocore``] Adds support for Elemental Inference powered smart crop feature, enabling video verticalization
* api-change:``rds``: [``botocore``] Adds a new DescribeServerlessV2PlatformVersions API to describe platform version properties for Aurora Serverless v2. Also introduces a new valid maintenance action value for serverless platform version updates.
* bugfix:signing: [``botocore``] Fix bug so that configured auth scheme preference is used when auth scheme is resolved from endpoints rulesets, or from operation-level auth trait. Auth scheme preference can be configured using the existing ``auth_scheme_preference`` client config option, the ``auth_scheme_preference`` shared config setting, or the existing ``AWS_AUTH_SCHEME_PREFERENCE`` environment variable.

1.42.89

=======

* api-change:``customer-profiles``: [``botocore``] This release introduces changes to SegmentDefinition APIs to support sorting by attributes.
* api-change:``deadline``: [``botocore``] Adds GetMonitorSettings and UpdateMonitorSettings APIs to Deadline Cloud. Enables reading and writing monitor settings as key-value pairs (up to 64 keys per monitor). UpdateMonitorSettings supports upsert and delete (via empty value) semantics and is idempotent.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``glue``: [``botocore``] AWS Glue now defaults to Glue version 5.1 for newly created jobs if the Glue version is not specified in the request, and UpdateJob now preserves the existing Glue version of a job when the Glue version is not specified in the update request.
* api-change:``interconnect``: [``botocore``] Initial release of AWS Interconnect -- a managed private connectivity service that enables you to create high-speed network connections between your AWS Virtual Private Clouds (VPCs) and your VPCs on other public clouds or your on-premise networks.
* api-change:``macie2``: [``botocore``] This release adds an optional expectedBucketOwner field to the Macie S3 export configuration, allowing customers to verify bucket ownership before Macie writes results to the destination bucket.
* api-change:``securityhub``: [``botocore``] Provide organizational unit scoping capability for GetFindingsV2, GetFindingStatisticsV2, GetResourcesV2, GetResourcesStatisticsV2 APIs.

1.42.88

=======

* api-change:``connect``: [``botocore``] Conversational Analytics for Email
* api-change:``devops-agent``: [``botocore``] Devops Agent now supports associate Splunk, Datadog and custom MCP server to an Agent Space.
* api-change:``ecs``: [``botocore``] Minor updates to exceptions for completeness
* api-change:``imagebuilder``: [``botocore``] Image pipelines can now automatically apply tags to images they create. Set the imageTags property when creating or updating your pipelines to get started.
* api-change:``mediaconvert``: [``botocore``] Adds support for MV-HEVC video output and clear lead for AV1 DRM output.
* api-change:``observabilityadmin``: [``botocore``] CloudWatch Observability Admin adds support for multi-region telemetry evaluation and telemetry enablement rules.
* api-change:``rtbfabric``: [``botocore``] Adds optional health check configuration for Responder Gateways with ASG Managed Endpoints. When provided, RTB Fabric continuously probes customers' instance IPs and routes traffic only to healthy ones, reducing errors during deployments, scaling events, and instance failures.
* api-change:``sagemaker``: [``botocore``] Support new SageMaker StartClusterHealthCheck API for on-demand DHC on Hyperpod EKS cluster. Support updated CreateCluster, UpdateCluster, DescribeCluster, BatchAddClusterNodes APIs for flexible instance group on HyperPod cluster

1.42.87

=======

* api-change:``bcm-dashboards``: [``botocore``] Scheduled email reports of Billing and Cost Management Dashboards
* api-change:``bedrock-agentcore``: [``botocore``] Introducing support for SearchRegistryRecords API on AgentCoreRegistry
* api-change:``bedrock-agentcore-control``: [``botocore``] Initial release for CRUDL in AgentCore Registry Service
* api-change:``mediaconnect``: [``botocore``] Adds support for MediaLive Channel-type Router Inputs.
* api-change:``redshift-data``: [``botocore``] The BatchExecuteStatement API now supports named SQL parameters, enabling secure batch queries with parameterized values. This enhancement helps prevent SQL injection vulnerabilities and improves query reusability.
* api-change:``sagemaker``: [``botocore``] Release support for g7e instance types for SageMaker HyperPod

1.42.86

=======

* api-change:``backup``: [``botocore``] Adding EKS specific backup vault notification types for AWS Backup.
* api-change:``drs``: [``botocore``] This changes adds support for modifying the replication configuration to support data replication using IPv6.
* api-change:``ecr``: [``botocore``] Add UnableToListUpstreamImageReferrersException in ListImageReferrers
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``ivs-realtime``: [``botocore``] Adds support for Amazon IVS real-time streaming redundant ingest.
* api-change:``marketplace-discovery``: [``botocore``] AWS Marketplace Discovery API provides an interface that enables programmatic access to the AWS Marketplace catalog, including searching and browsing listings, retrieving product details and fulfillment options, and accessing public and private offer pricing and terms.
* api-change:``medialive``: [``botocore``] MediaLive is adding support for MediaConnect Router by supporting a new output type called MEDIACONNECT ROUTER. This new output type will provide seamless encrypted transport between your MediaLive channel and MediaConnect Router.
* api-change:``outposts``: [``botocore``] Add AWS Outposts APIs to view renewal pricing options and submit renewal requests for Outpost contracts

1.42.85

=======

* api-change:``accessanalyzer``: [``botocore``] Revert previous additions of API changes.
* api-change:``bedrock-agentcore``: [``botocore``] This release includes support for 1) InvokeBrowser API, enabling OS-level control of AgentCore Browser Tool sessions through mouse actions, keyboard input, and screenshots. 2) Added documentation noting that empty sessions are automatically deleted after one day in the ListSessions API.
* api-change:``braket``: [``botocore``] Added support for t3, g6, and g6e instance types for Hybrid Jobs.
* api-change:``connect``: [``botocore``] The voice enhancement mode used by the agent can now be viewed on the contact record via the DescribeContact api.
* api-change:``datasync``: [``botocore``] Allow IAM role ARNs with IAM Paths for "SecretAccessRoleArn" field in "CustomSecretConfig"
* api-change:``datazone``: [``botocore``] Update Configurations and registerS3AccessGrantLocation as public attributes for cfn
* api-change:``ec2``: [``botocore``] EC2 Capacity Manager adds new dimensions for grouping and filtering capacity metrics, including tag-based dimensions and Account Name.
* api-change:``ecs``: [``botocore``] This release provides the functionality of mounting Amazon S3 Files to Amazon ECS tasks by adding support for the new S3FilesVolumeConfiguration parameter in ECS RegisterTaskDefinition API.
* api-change:``eks``: [``botocore``] EKS MNG WarmPool feature to support ASG WarmPool feature.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``lambda``: [``botocore``] Launching Lambda integration with S3 Files as a new file system configuration.
* api-change:``outposts``: [``botocore``] This change allows listAssets to surface pending and non-compute asset information. Adds the INSTALLING asset state enum and the STORAGE, POWERSHELF, SWITCH, and NETWORKING AssetTypes.
* api-change:``rtbfabric``: [``botocore``] AWS RTB Fabric External Responder gateways now support HTTP in addition to HTTPS for inbound external links. Gateways can accept bid requests on port 80 or serve both protocols simultaneously via listener configuration, giving customers flexible transport options for their bidding infrastructure
* api-change:``s3``: [``botocore``] Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.
* api-change:``s3files``: [``botocore``] Support for S3 Files, a new shared file system that connects any AWS compute directly with your data in Amazon S3. It provides fast, direct access to all of your S3 data as files with full file system semantics and low-latency performance, without your data ever leaving S3.
* bugfix:auth: [``botocore``] Fix ``sigv4a_signing_region_set`` config being ignored when SigV4a is selected via ``auth_scheme_preference``. The configured region set is now correctly applied to the signing context regardless of how SigV4a is resolved.

1.42.84

=======

* api-change:``accessanalyzer``: [``botocore``] Brookie helps customers preview the impact of SCPs before deployment using historical access activity. It evaluates attached policies and proposed policy updates using collected access activity through CloudTrail authorization events and reports where currently allowed access will be denied.
* api-change:``deadline``: [``botocore``] Added 8 batch APIs (BatchGetJob, BatchGetStep, BatchGetTask, BatchGetSession, BatchGetSessionAction, BatchGetWorker, BatchUpdateJob, BatchUpdateTask) for bulk operations. Monitors can now use an Identity Center instance in a different region via the identityCenterRegion parameter.
* api-change:``dlm``: [``botocore``] This release adds support for Fast Snapshot Restore AvailabilityZone Ids in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies.
* api-change:``geo-maps``: [``botocore``] This release updates API reference documentation for Amazon Location Service Maps APIs to reflect regional restrictions for Grab Maps users
* api-change:``guardduty``: [``botocore``] Migrated to Smithy. No functional changes
* api-change:``lightsail``: [``botocore``] This release adds support for the Asia Pacific (Malaysia) (ap-southeast-5) Region.
* api-change:``mediatailor``: [``botocore``] This change adds support for Tagging the resource types Programs and Prefetch Schedules
* api-change:``qconnect``: [``botocore``] Added optional originRequestId parameter to SendMessageRequest and ListSpans response in Amazon Q in Connect to support request tracing across service boundaries.
* api-change:``transfer``: [``botocore``] AWS Transfer Family Connectors now support IPv6 connectivity, enabling outbound connections to remote SFTP or AS2 servers using IPv4-only or dual-stack (IPv4 and IPv6) configurations based on network requirements.

1.42.83

=======

* api-change:``bedrock``: [``botocore``] Amazon Bedrock Guardrails enforcement configuration APIs now support selective guarding controls for system prompts as well as user and assistant messages, along with SDK support for Amazon Bedrock resource policy APIs.
* api-change:``bedrock-agent``: [``botocore``] Added strict parameter to ToolSpecification to allow users to enforce strict JSON schema adherence for tool input schemas.
* api-change:``bedrock-agentcore-control``: [``botocore``] Documentation Update for Adds support for three-legged (Authorization Code grant type) OAuth along with predefined MCP tool schema configuration for Amazon Bedrock AgentCore gateway MCP server targets.
* api-change:``imagebuilder``: [``botocore``] Updated pagination token validation for ListContainerRecipes API to support maximum size of 65K characters
* api-change:``lightsail``: [``botocore``] Add support for tagging of Alarm resource type
* api-change:``logs``: [``botocore``] Added queryDuration, bytesScanned, and userIdentity fields to the QueryInfo response object returned by DescribeQueries. Customers can now view detailed query cost information including who ran the query, how long it took, and the volume of data scanned.
* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive released a new features that allows customers to use HLG 2020 as a color space for AV1 video codec.
* api-change:``organizations``: [``botocore``] Updates close Account quota for member accounts in an Organization.
* api-change:``payment-cryptography``: [``botocore``] Adds optional support to retrieve previously generated import and export tokens to simplify import and export functions

1.42.82

=======

* api-change:``appstream``: [``botocore``] Amazon WorkSpaces Applications now supports drain mode for instances in multi-session fleets. This capability allows administrators to instruct individual fleet instances to stop accepting new user sessions while allowing existing sessions to continue uninterrupted.
* api-change:``bedrock-agentcore-control``: [``botocore``] Adds support for three-legged (Authorization Code grant type) OAuth along with predefined MCP tool schema configuration for Amazon Bedrock AgentCore gateway MCP server targets.
* api-change:``bedrock-data-automation``: [``botocore``] Data Automation Library is a BDA capability that lets you create reusable entity resources to improve extraction accuracy. Libraries support Custom Vocabulary entities that enhance speech recognition for audio and video content with domain-specific terminology shared across projects
* api-change:``bedrock-runtime``: [``botocore``] Relax ToolUseId pattern to allow dots and colons
* api-change:``cloudwatch``: [``botocore``] CloudWatch now supports OTel enrichment to make vended metrics for supported AWS resources queryable via PromQL with resource ARN and tag labels, and PromQL alarms for metrics ingested via the OTLP endpoint with multi-contributor evaluation.
* api-change:``connect``: [``botocore``] Include CUSTOMER to evaluation target and participant role. Support Korean, Japanese and Simplified Chinese in evaluation forms.
* api-change:``deadline``: [``botocore``] AWS Deadline Cloud now supports configurable scheduling on each queue. The scheduling configuration controls how workers are distributed across jobs.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``gamelift``: [``botocore``] Amazon GameLift Servers now includes a ComputeName field in game session API responses, making it easier to identify which compute is hosting a game session without cross-referencing IP addresses.
* api-change:``geo-places``: [``botocore``] This release updates API reference documentation for Amazon Location Service Places APIs to reflect regional restrictions for Grab Maps users in ReverseGeocode, Suggest, SearchText, and GetPlace operations
* api-change:``logs``: [``botocore``] We are pleased to announce that our logs transformation csv processor now has a destination field, allowing you to specify under which parent node parsed columns be placed under.
* api-change:``pricing``: [``botocore``] This release increases the MaxResults parameter of the GetAttributeValues API from 100 to 10000.

1.42.81

=======

* api-change:``bedrock``: [``botocore``] Adds support for Bedrock Batch Inference Job Progress Monitoring
* api-change:``bedrock-agentcore``: [``botocore``] Added the ability to filter out empty sessions when listing sessions. Customers can now retrieve only sessions that still contain events, eliminating the need to check each session individually. No changes required for existing integrations.
* api-change:``bedrock-agentcore-control``: [``botocore``] Adds support for VPC egress private endpoints for Amazon Bedrock AgentCore gateway targets, enabling private connectivity through managed VPC Lattice resources. Also adds IAM credential provider for gateway targets, enabling IAM-based authentication to target endpoints
* api-change:``ecs``: [``botocore``] Amazon ECS now supports Managed Daemons with dedicated APIs for registering daemon task definitions, creating daemons, and managing daemon deployments.
* api-change:``elasticache``: [``botocore``] Updated SnapshotRetentionLimit documentation for ServerlessCache to correctly describe the parameter as number of days (max 35) instead of number of snapshots.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``es``: [``botocore``] Adding Policy-Min-TLS-1-2-RFC9151-FIPS-2024-08 as TLS Policy in Supported Regions
* api-change:``geo-routes``: [``botocore``] This release makes RoutingBoundary optional in CalculateRouteMatrix, set StopDuration with a maximum value of 49999 for CalculateRoutes, set TrailerCount with a maximum value of 4, and introduces region restrictions for Grab Maps users.
* api-change:``medical-imaging``: [``botocore``] Added new boolean flag to persist metadata updates to all primary image sets in the same study as the requested image set.
* api-change:``opensearch``: [``botocore``] Adding Policy-Min-TLS-1-2-RFC9151-FIPS-2024-08 as TLS Policy in Supported Regions

1.42.80

=======

* api-change:``acm``: [``botocore``] Adds support for searching for ACM certificates using the new SearchCertificates API.
* api-change:``cloudfront``: [``botocore``] This release adds bring your own IP (BYOIP) IPv6 support to CloudFront's CreateAnycastIpList and UpdateAnycastIpList API through the IpamCidrConfigs field.
* api-change:``dataexchange``: [``botocore``] Support Tags for AWS Data Exchange resource Assets
* api-change:``datazone``: [``botocore``] Adds environmentConfigurationName field to CreateEnvironmentInput and UpdateEnvironmentInput, so that Domain Owners can now recover orphaned environments by recreating deleted configurations with the same name, and will auto-recover orphaned environments
* api-change:``devops-agent``: [``botocore``] AWS DevOps Agent service General Availability release.
* api-change:``dms``: [``botocore``] To successfully connect to the IBM DB2 LUW database server, you may need to specify additional security parameters that are passed to the JDBC driver. These parameters are EncryptionAlgorithm and SecurityMechanism. Both parameters accept integer values.
* api-change:``ec2``: [``botocore``] This release updates the examples in the documentation for DescribeRegions and DescribeAvailabilityZones.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``geo-maps``: [``botocore``] This release expands map customization options with adjustable contour line density, dark mode support for Hybrid and Satellite views, enhanced traffic information across multiple map styles, and transit and truck travel modes for Monochrome and Hybrid map styles.
* api-change:``kinesisanalyticsv2``: [``botocore``] Support for Flink 2.2 in Managed Service for Apache Flink
* api-change:``mailmanager``: [``botocore``] Amazon SES Mail Manager now supports optional TLS policy for accepting unencrypted connections and mTLS authentication for ingress endpoints with configurable trust stores. Two new rule actions are available, Bounce for sending non-delivery reports and Lambda invocation for custom email processing.
* api-change:``marketplace-agreement``: [``botocore``] This release adds 8 new APIs for AWS Marketplace sellers. 4 APIs for Cancellations (Send, List, Get, Cancel action on AgreementCancellationRequest), 3 APIs for Billing Adjustments (BatchCreate, List, Get action on BillingAdjustmentRequest), and 1 API to List Invoices (ListAgreementInvoiceLineItems)
* api-change:``observabilityadmin``: [``botocore``] This release adds the Bedrock and Security Hub resource types for Omnia Enablement launch for March 31.
* api-change:``odb``: [``botocore``] Adds support for EC2 Placement Group integration with ODB Network. The GetOdbNetwork and ListOdbNetworks API responses now include the ec2PlacementGroupIds field.
* api-change:``opensearch``: [``botocore``] Support RegisterCapability, GetCapability, DeregisterCapability API for AI Assistant feature management for OpenSearch UI Applications
* api-change:``organizations``: [``botocore``] Added Path field to Account and OrganizationalUnit objects in AWS Organizations API responses.
* api-change:``partnercentral-selling``: [``botocore``] Adding EURO Currency for MRR Amount
* api-change:``pinpoint-sms-voice-v2``: [``botocore``] This release adds RCS for Business messaging and Notify support. RCS lets you create and manage agents, send and receive messages in the US and Canada via SendTextMessage API, and configure SMS fallback. Notify lets you send templated OTP messages globally in minutes with no phone number required.
* api-change:``quicksight``: [``botocore``] Adds StartAutomationJob and DescribeAutomationJob APIs for automation jobs. Adds three custom permission capabilities that allow admins to control whether users can manage Spaces and chat agents. Adds an OAuthClientCredentials structure to provide OAuth 2.0 client credentials inline to data sources.
* api-change:``s3``: [``botocore``] Add Bucket Metrics configuration support to directory buckets
* api-change:``s3control``: [``botocore``] Adding an optional auditContext parameter to S3 Access Grants credential vending API GetDataAccess to enable job-level audit correlation in S3 CloudTrail logs
* api-change:``s3tables``: [``botocore``] S3 Tables now supports nested types when creating tables. Users can define complex column schemas using struct, list, and map types. These types can be composed together to model complex, hierarchical data structures within table schemas.
* api-change:``securityagent``: [``botocore``] AWS Security Agent is a service that proactively secures applications throughout the development lifecycle with automated security reviews and on-demand penetration testing.
* api-change:``sustainability``: [``botocore``] This is the first release of the AWS Sustainability SDK, which enables customers to access their sustainability impact data via API.

1.42.79

=======

* api-change:``appstream``: [``botocore``] Add support for URL Redirection
* api-change:``autoscaling``: [``botocore``] Adds support for new instance lifecycle states introduced by the instance lifecycle policy and replace root volume features.
* api-change:``bedrock-agentcore``: [``botocore``] Adds Ground Truth support for AgentCore Evaluations (Evaluate)
* api-change:``deadline``: [``botocore``] AWS Deadline Cloud now supports three new fleet auto scaling settings. With scale out rate, you can configure how quickly workers launch. With worker idle duration, you can set how long workers wait before shutting down. With standby worker count, you can keep idle workers ready for fast job start.
* api-change:``devops-agent``: [``botocore``] AWS DevOps Agent General Availability.
* api-change:``ecs``: [``botocore``] Adding Local Storage support for ECS Managed Instances by introducing a new field "localStorageConfiguration" for CreateCapacityProvider and UpdateCapacityProvider APIs.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``gamelift``: [``botocore``] Update CreateScript API documentation.
* api-change:``lakeformation``: [``botocore``] Add setSourceIdentity to DataLakeSettings Parameters
* api-change:``logs``: [``botocore``] Adds Lookup Tables to CloudWatch Logs for log enrichment using CSV key-value data with KMS encryption support.
* api-change:``opensearch``: [``botocore``] Added Cluster Insights API's In OpenSearch Service SDK.
* api-change:``partnercentral-account``: [``botocore``] KYB Supplemental Form enables partners who fail business verification to submit additional details and supporting documentation through a self-service form, triggering an automated re-verification without requiring manual intervention from support teams.
* api-change:``sagemaker``: [``botocore``] Added support for placement strategy and consolidation for SageMaker inference component endpoints. Customers can now configure how inference component copies are distributed across instances and availability zones (AZs), and enable automatic consolidation to optimizes resource utilization.
* enhancement:``s3``: [``botocore``] Added support for opting out of Amazon S3 Express session authentication via the new ``disable_s3_express_session_auth`` S3 client configuration setting, or the new ``AWS_S3_DISABLE_EXPRESS_SESSION_AUTH`` environment variable, or the ``s3_disable_express_session_auth`` shared configuration setting.

1.42.78

=======

* api-change:``bedrock-agentcore``: [``botocore``] Adding AgentCore Code Interpreter Node.js Runtime Support with an optional runtime field
* api-change:``bedrock-agentcore-control``: [``botocore``] Adds support for custom code-based evaluators using customer-managed Lambda functions.
* api-change:``neptunedata``: [``botocore``] Minor formatting changes to remove unnecessary symbols.
* api-change:``omics``: [``botocore``] AWS HealthOmics now supports VPC networking, allowing users to connect runs to external resources with NAT gateway, AWS VPC resources, and more. New Configuration APIs support configuring VPC settings. StartRun API now accepts networkingMode and configurationName parameters to enable VPC networking.

1.42.77

=======

* api-change:``bcm-data-exports``: [``botocore``] With this release we are providing an option to accounts to have their export delivered to an S3 bucket that is not owned by the account.
* api-change:``emr``: [``botocore``] Add StepExecutionRoleArn to RunJobFlow API
* api-change:``logs``: [``botocore``] This release adds parameter support to saved queries in CloudWatch Logs Insights. Define reusable query templates with named placeholders, invoke them using start query. Available in Console, CLI and SDK
* api-change:``sagemaker``: [``botocore``] Release support for ml.r5d.16xlarge instance types for SageMaker HyperPod
* api-change:``timestream-influxdb``: [``botocore``] Timestream for InfluxDB adds support for customer defined maintenance windows. This allows customers to define maintenance schedule during resource creation and updates

1.42.76

=======

* api-change:``apigatewayv2``: [``botocore``] Added DISABLE IN PROGRESS and DISABLE FAILED Portal statuses.
* api-change:``application-signals``: [``botocore``] This release adds support for creating SLOs on RUM appMonitors, Synthetics canaries and services.
* api-change:``batch``: [``botocore``] Documentation-only update for AWS Batch.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``marketplace-agreement``: [``botocore``] The Variable Payments APIs enable AWS Marketplace Sellers to perform manage their payment requests (send, get, list, cancel).
* api-change:``polly``: [``botocore``] Add support for Mu-law and A-law codecs for output format
* api-change:``uxc``: [``botocore``] GA release of AccountCustomizations, used to manage account color, visible services, and visible regions settings in the AWS Management Console.

1.42.75

=======

* api-change:``bedrock-agentcore-control``: [``botocore``] Adds SDK support for 1) Persist session state in AgentCore Runtime via filesystemConfigurations in CreateAgentRuntime, UpdateAgentRuntime, and GetAgentRuntime APIs, 2) Optional name-based filtering on AgentCore ListBrowserProfiles API.
* api-change:``gamelift``: [``botocore``] Amazon GameLift Servers launches UDP ping beacons in the Beijing and Ningxia (China) Regions to help measure real-time network latency for multiplayer games. The ListLocations API is now available in these regions to provide endpoint domain and port information as part of the locations list.
* api-change:``mediapackagev2``: [``botocore``] Reduces the minimum allowed value for startOverWindowSeconds from 60 to 0, allowing customers to effectively disable the start-over window.
* api-change:``opensearchserverless``: [``botocore``] Adds support for updating the vector options field for existing collections.
* api-change:``pcs``: [``botocore``] This release adds support for custom slurmdbd and cgroup configuration in AWS PCS. Customers can now specify slurmdbd and cgroup settings to configure database accounting and reporting for their HPC workloads, and control resource allocation and limits for compute jobs.
* api-change:``rds``: [``botocore``] Adds support in Aurora PostgreSQL serverless databases for express configuration based creation through WithExpressConfiguration in CreateDbCluster API, and for restoring clusters using RestoreDBClusterToPointInTime and RestoreDBClusterFromSnapshot APIs.

1.42.74

=======

* api-change:``batch``: [``botocore``] AWS Batch AMI Visibility feature support. Adds read-only batchImageStatus to Ec2Configuration to provide visibility on the status of Batch-vended AMIs used by Compute Environments.
* api-change:``connectcases``: [``botocore``] You can now use the UpdateRelatedItem API to update the content of comments and custom related items associated with a case.
* api-change:``lightsail``: [``botocore``] Add support for tagging of ContactMethod resource type
* api-change:``omics``: [``botocore``] Adds support for batch workflow runs in Amazon Omics, enabling users to submit, manage, and monitor multiple runs as a single batch. Includes APIs to create, cancel, and delete batches, track submission statuses and counts, list runs within a batch, and configure default settings.

1.42.73

=======

* api-change:``backup``: [``botocore``] Fix Typo for S3Backup Options ( S3BackupACLs to BackupACLs)
* api-change:``dynamodb``: [``botocore``] Adding ReplicaArn to ReplicaDescription of a global table replica
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``opensearch``: [``botocore``] Added support for Amazon Managed Service for Prometheus (AMP) as a connected data source in OpenSearch UI. Now users can analyze Prometheus metrics in OpenSearch UI without data copy.
* api-change:``verifiedpermissions``: [``botocore``] Adds support for Policy Store Aliases, Policy Names, and Policy Template Names. These are customizable identifiers that can be used in place of Policy Store ids, Policy ids, and Policy Template ids respectively in Amazon Verified Permissions APIs.
* bugfix:s3: [``botocore``] Fix aws-chunked requests with non-seekable streams sending both ``Content-Length`` and ``Transfer-Encoding: chunked``, which violated HTTP/1.1 (RFC 7230) and caused ``SignatureDoesNotMatch`` errors.

1.42.72

=======

* api-change:``batch``: [``botocore``] AWS Batch now supports quota management, enabling administrators to allocate shared compute resources across teams and projects through quota shares with capacity limits, resource-sharing strategies, and priority-based preemption - currently available for SageMaker Training job queues.
* api-change:``bedrock-agentcore``: [``botocore``] This release includes SDK support for the following new features on AgentCore Built In Tools.  1. Enterprise Policies for AgentCore Browser Tool. 2. Root CA Configuration Support for AgentCore Browser Tool and Code Interpreter. 3. API changes to AgentCore Browser Profile APIs
* api-change:``bedrock-agentcore-control``: [``botocore``] Adds support for the following new features. 1. Enterprise Policies support for AgentCore Browser Tool. 2. Root CA Configuration support for AgentCore Browser Tool and Code Interpreter.
* api-change:``ec2``: [``botocore``] Amazon EC2 Fleet instant mode now supports launching instances into Interruptible Capacity Reservations, enabling customers to use spare capacity shared by Capacity Reservation owners within their AWS Organization.
* api-change:``observabilityadmin``: [``botocore``] Adding a new field in the CreateCentralizationRuleForOrganization, UpdateCentralizationRuleForOrganization API and updating the GetCentralizationRuleForOrganization API response to include the new field
* api-change:``polly``: [``botocore``] Added bi-directional streaming functionality through a new API, StartSpeechSynthesisStream. This API allows streaming input text through inbound events and receiving audio as part of an output stream simultaneously.

1.42.71

=======

* api-change:``ec2``: [``botocore``] The DescribeInstanceTypes API now returns default connection tracking timeout values for TCP, UDP, and UDP stream via the new connectionTrackingConfiguration field on NetworkInfo.
* api-change:``mediaconvert``: [``botocore``] This update adds additional bitrate options for Dolby AC-4 audio outputs.

1.42.70

=======

* api-change:``bedrock-agentcore-control``: [``botocore``] Deprecating namespaces field and adding namespaceTemplates.
* api-change:``emr``: [``botocore``] Add S3LoggingConfiguration to Control LogUploads
* api-change:``glue``: [``botocore``] Provide approval to overwrite existing Lake Formation permissions on all child resources with the default permissions specified in 'CreateTableDefaultPermissions' and 'CreateDatabaseDefaultPermissions' when updating catalog. Allowed values are ["Accept","Deny"] .

1.42.69

=======

* api-change:``bedrock``: [``botocore``] You can now generate policy scenarios on demand using the new GENERATE POLICY SCENARIOS build workflow type. Scenarios will no longer be automatically generated during INGEST CONTENT, REFINE POLICY, and IMPORT POLICY workflows, resulting in faster completion times for these operations.
* api-change:``bedrock-agentcore``: [``botocore``] Provide support to perform deterministic operations on agent runtime through shell command executions via the new InvokeAgentRuntimeCommand API
* api-change:``bedrock-agentcore-control``: [``botocore``] Supporting hosting of public ECR Container Images in AgentCore Runtime
* api-change:``ecs``: [``botocore``] Amazon ECS now supports configuring whether tags are propagated to the EC2 Instance Metadata Service (IMDS) for instances launched by the Managed Instances capacity provider. This gives customers control over tag visibility in IMDS when using ECS Managed Instances.

1.42.68

=======

* api-change:``apigateway``: [``botocore``] API Gateway now supports an additional security policy "SecurityPolicy-TLS13-1-2-FIPS-PFS-PQ-2025-09" for REST APIs and custom domain names. The new policy is compliant with TLS 1.3, Federal Information Processing Standards (FIPS), Perfect Forward Secrecy (PFS), and post-quantum (PQ) cryptography
* api-change:``config``: [``botocore``] Fix pagination support for DescribeConformancePackCompliance, and update OrganizationConfigRule InputParameters max length to match ConfigRule.
* api-change:``connect``: [``botocore``] Deprecating PredefinedNotificationID field
* api-change:``gameliftstreams``: [``botocore``] Feature launch that enables customers to connect streaming sessions to their own VPCs running in AWS.
* api-change:``glue``: [``botocore``] Add QuerySessionContext to BatchGetPartitionRequest
* api-change:``ivs-realtime``: [``botocore``] Updates maximum reconnect window seconds from 60 to 300 for participant replication
* api-change:``mediaconvert``: [``botocore``] This update adds support for Dolby AC-4 audio output, frame rate conversion between non-Dolby Vision inputs to Dolby Vision outputs, and clear lead CMAF HLS output.
* api-change:``medialive``: [``botocore``] Documents the VideoDescription.ScalingBehavior.SMART(underscore)CROP enum value.
* api-change:``mgn``: [``botocore``] Network Migration APIs are now publicly available for direct programmatic access. Customers can now call Network Migration APIs directly without going through AWS Transform (ATX), enabling automation, integration with existing tools, and self-service migration workflows.
* api-change:``quicksight``: [``botocore``] The change adds a new capability named ManageSharedFolders in Custom Permissions

1.42.67

=======

* api-change:``datasync``: [``botocore``] DataSync's 3 location types, Hadoop Distributed File System (HDFS), FSx for Windows File Server (FSx Windows), and FSx for NetApp ONTAP (FSx ONTAP) now have credentials managed via Secrets Manager, which may be encrypted with service keys or be configured to use customer-managed keys or secret.
* api-change:``ecr``: [``botocore``] Add Chainguard to PTC upstreamRegistry enum
* api-change:``s3``: [``botocore``] Adds support for account regional namespaces for general purpose buckets. The account regional namespace is a reserved subdivision of the global bucket namespace where only your account can create general purpose buckets.
* enhancement:``sso-oidc``: [``botocore``] Fixed missing error messages in SSO OIDC error responses by mapping OAuth2 error_description field to the standard Message field.  Issue was raised in `2216 <https://github.com/boto/botocore/issues/2216>`__.

1.42.66

=======

* api-change:``customer-profiles``: [``botocore``] Today, Amazon Connect is announcing the ability to filter (include or exclude) recommendations based on properties of items and interactions.
* api-change:``eks``: [``botocore``] Adds support for a new tier in controlPlaneScalingConfig on EKS Clusters.
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``polly``: [``botocore``] Added support for the new voices - Ambre (fr-FR), Beatrice (it-IT), Florian (fr-FR), Lennart (de-DE), Lorenzo (it-IT) and Tiffany (en-US). They are available as a Generative voices only.
* api-change:``sagemaker``: [``botocore``] SageMaker training plans allow you to extend your existing training plans to avoid workload interruptions without workload reconfiguration. When a training plan is approaching expiration, you can extend it directly through the SageMaker AI console or programmatically using the API or AWS CLI.
* api-change:``simpledbv2``: [``botocore``] Introduced Amazon SimpleDB export functionality enabling domain data export to S3 in JSON format. Added three new APIs StartDomainExport, GetExport, and ListExports via SimpleDBv2 service. Supports cross-region exports and KMS encryption.
* api-change:``workspaces``: [``botocore``] Added WINDOWS SERVER 2025 OperatingSystemName.

1.42.65

=======

* api-change:``bedrock-agentcore-control``: [``botocore``] Adding first class support for AG-UI protocol in AgentCore Runtime.
* api-change:``connectcases``: [``botocore``] Added functionality for the Required and Hidden case rule types to be conditionally evaluated on up to 5 conditions.
* api-change:``dms``: [``botocore``] Not need to include to any release notes. The only change is to correct LoadTimeout unit from milliseconds to seconds in RedshiftSettings
* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version
* api-change:``kafka``: [``botocore``] Add dual stack endpoint to SDK
* api-change:``lexv2-models``: [``botocore``] This release introduces a new generative AI feature called Lex Bot Analyzer. This feature leverage AI to analyze the bot configuration against AWS Lex best practices to identify configuration issues and provides recommendations.

1.42.64

=======

* api-change:``iam``: [``botocore``] Added support for CloudWatch Logs long-term API keys, currently available in Preview
* api-change:``mgn``: [``botocore``] Adds support for new storeSnapshotOnLocalZone field in ReplicationConfiguration and updateReplicationConfiguration
* api-change:``opensearch``: [``botocore``] This change enables cross-account and cross-region access for DataSources. Customers can now define access policies on their datasources to allow other AWS accounts to access and query their data.
* api-change:``route53globalresolver``: [``botocore``] Adds support for dual stack Global Resolvers and Dictionary-based Domain Generation Firewall Advanced Protection.

1.42.63

=======

* api-change:``appin

@pyup-bot
Copy link
Copy Markdown
Collaborator Author

Closing this in favor of #313

@pyup-bot pyup-bot closed this May 11, 2026
@Tommos0 Tommos0 deleted the pyup-scheduled-update-2026-04-27 branch May 11, 2026 15:34
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.

1 participant