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

Changelog

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

Changelog

4.2.0

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

4.1.0

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

4.0.2

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

4.0.1

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

4.0.0

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

3.6.4.0

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

Update boto3 from 1.12.26 to 1.38.32.

Changelog

1.38.32

=======

* api-change:``bedrock-agent-runtime``: [``botocore``] This release introduces the `PromptCreationConfigurations` input parameter, which includes fields to control prompt population for `InvokeAgent` or `InvokeInlineAgent` requests.
* api-change:``kms``: [``botocore``] Remove unpopulated KeyMaterialId from Encrypt Response
* api-change:``rds``: [``botocore``] Include Global Cluster Identifier in DBCluster if the DBCluster is a Global Cluster Member.
* api-change:``rekognition``: [``botocore``] Adds support for defining an ordered preference list of different Rekognition Face Liveness challenge types when calling CreateFaceLivenessSession.
* api-change:``route53``: [``botocore``] Amazon Route 53 now supports the Asia Pacific (Taipei) Region (ap-east-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
* api-change:``s3tables``: [``botocore``] S3 Tables now supports getting details about a table via its table ARN.

1.38.31

=======

* api-change:``bcm-pricing-calculator``: [``botocore``] Updating the minimum for List APIs to be 1 (instead of 0)
* api-change:``cloudformation``: [``botocore``] Add new warning type 'EXCLUDED_PROPERTIES'
* api-change:``kms``: [``botocore``] AWS KMS announces the support for on-demand rotation of symmetric-encryption KMS keys with imported key material (EXTERNAL origin).
* api-change:``wafv2``: [``botocore``] AWS WAF adds support for ASN-based traffic filtering and support for ASN-based rate limiting.

1.38.30

=======

* api-change:``amplify``: [``botocore``] Update documentation for cacheConfig in CreateApp API
* api-change:``evs``: [``botocore``] Amazon Elastic VMware Service (Amazon EVS) allows you to run VMware Cloud Foundation (VCF) directly within your Amazon VPC including simplified self-managed migration experience with guided workflow in AWS console or via AWS CLI, get full access to their VCF deployment and VCF license portability.
* api-change:``invoicing``: [``botocore``] Added new Invoicing ListInvoiceSummaries API Operation
* api-change:``mediaconnect``: [``botocore``] This release updates the DescribeFlow API to show peer IP addresses. You can now identify the peer IP addresses of devices connected to your sources and outputs. This helps you to verify and troubleshoot your flow's active connections.
* api-change:``mediaconvert``: [``botocore``] This release includes support for embedding and signing C2PA content credentials in MP4 outputs.
* api-change:``network-firewall``: [``botocore``] You can now monitor flow and alert log metrics from the Network Firewall console.
* api-change:``sagemaker``: [``botocore``] Added support for p6-b200 instance type in SageMaker Training Jobs and Training Plans.
* api-change:``transcribe``: [``botocore``] AWS Healthscribe now supports new templates for the clinical note summary: BIRP, SIRP, DAP, BEHAVIORAL_SOAP, and PHYSICAL_SOAP

1.38.29

=======

* api-change:``apigateway``: [``botocore``] Adds support to set the routing mode for a custom domain name.
* api-change:``apigatewayv2``: [``botocore``] Adds support to create routing rules and set the routing mode for a custom domain name.
* api-change:``emr-serverless``: [``botocore``] AWS EMR Serverless: Adds a new option in the CancelJobRun API in EMR 7.9.0+, to cancel a job with grace period. This feature is enabled by default with a 120-second grace period for streaming jobs and is not enabled by default for batch jobs.

1.38.28

=======

* api-change:``athena``: [``botocore``] Add support for the managed query result in the workgroup APIs. The managed query result configuration enables users to store query results to Athena owned storage.
* api-change:``backup``: [``botocore``] You can now subscribe to Amazon SNS notifications and Amazon EventBridge events for backup indexing. You can now receive notifications when a backup index is created, deleted, or fails to create, enhancing your ability to monitor and track your backup operations.
* api-change:``bedrock-agent``: [``botocore``] This release adds the Agent Lifecycle Paused State feature to Amazon Bedrock agents. By using an agent's alias, you can temporarily suspend agent operations during maintenance, updates, or other situations.
* api-change:``compute-optimizer``: [``botocore``] This release enables AWS Compute Optimizer to analyze Amazon Aurora database clusters and generate Aurora I/O-Optimized recommendations.
* api-change:``cost-optimization-hub``: [``botocore``] Support recommendations for Aurora instance and Aurora cluster storage.
* api-change:``ecs``: [``botocore``] Updates Amazon ECS documentation to include note for upcoming default log driver mode change.
* api-change:``eks``: [``botocore``] Add support for filtering ListInsights API calls on MISCONFIGURATION insight category
* api-change:``entityresolution``: [``botocore``] Add support for generating match IDs in near real-time.
* api-change:``pcs``: [``botocore``] Introduces SUSPENDING and SUSPENDED states for clusters, compute node groups, and queues.
* api-change:``synthetics``: [``botocore``] Support for Java runtime handler pattern.

1.38.27

=======

* api-change:``emr-serverless``: [``botocore``] This release adds the capability for users to specify an optional Execution IAM policy in the StartJobRun action. The resulting permissions assumed by the job run is the intersection of the permissions in the Execution Role and the specified Execution IAM Policy.
* api-change:``sagemaker``: [``botocore``] Release new parameter CapacityReservationConfig in ProductionVariant

1.38.26

=======

* api-change:``amplify``: [``botocore``] Add support for customizable build instance sizes. CreateApp and UpdateApp operations now accept a new JobConfig parameter composed of BuildComputeType.
* api-change:``autoscaling``: [``botocore``] Add support for "apple" CpuManufacturer in ABIS
* api-change:``bcm-pricing-calculator``: [``botocore``] Add AFTER_DISCOUNTS_AND_COMMITMENTS to Workload Estimate Rate Type. Set ListWorkLoadEstimateUsage maxResults range to minimum of 0 and maximum of 300.
* api-change:``cloudtrail``: [``botocore``] CloudTrail Feature Release: Support for Enriched Events with Configurable Context for Event Data Store
* api-change:``connect``: [``botocore``] Amazon Connect Service Feature: Email Recipient Limit Increase
* api-change:``dataexchange``: [``botocore``] This release adds Tag support for Event Action resource, through which customers can create event actions with Tags and retrieve event actions with Tags.
* api-change:``datasync``: [``botocore``] AgentArns field is made optional for Object Storage and Azure Blob location create requests. Location credentials are now managed via Secrets Manager, and may be encrypted with service managed or customer managed keys. Authentication is now optional for Azure Blob locations.
* api-change:``fsx``: [``botocore``] FSx API changes to support the public launch of new Intelligent Tiering storage class on Amazon FSx for Lustre
* api-change:``ivs-realtime``: [``botocore``] IVS Real-Time now offers customers the participant replication that allow customers to copy a participant from one stage to another.
* api-change:``mwaa``: [``botocore``] Amazon MWAA now lets you choose a worker replacement strategy when updating an environment. This release adds two worker replacement strategies: FORCED (default), which stops workers immediately, and GRACEFUL, which allows workers to finish current tasks before shutting down.
* api-change:``s3``: [``botocore``] Adding checksum support for S3 PutBucketOwnershipControls API.
* api-change:``sagemaker``: [``botocore``] Add maintenance status field to DescribeMlflowTrackingServer API response

1.38.25

=======

* api-change:``cost-optimization-hub``: [``botocore``] This release allows customers to modify their preferred commitment term and payment options.
* api-change:``ec2``: [``botocore``] Enable the option to automatically delete underlying Amazon EBS snapshots when deregistering Amazon Machine Images (AMIs)
* api-change:``events``: [``botocore``] Allow for more than 2 characters for location codes in EventBridge ARNs
* api-change:``network-firewall``: [``botocore``] You can now use VPC endpoint associations to create multiple firewall endpoints for a single firewall.
* api-change:``synthetics``: [``botocore``] Add support to change ephemeral storage. Add a new field "TestResult" under CanaryRunStatus.

1.38.24

=======

* api-change:``ce``: [``botocore``] This release introduces Cost Comparison feature (GetCostAndUsageComparisons, GetCostComparisonDrivers) allowing you find cost variations across multiple dimensions and identify key drivers of spending changes.
* api-change:``deadline``: [``botocore``] AWS Deadline Cloud service-managed fleets now support storage profiles. With storage profiles, you can map file paths between a workstation and the worker hosts running the job.
* api-change:``ec2``: [``botocore``] This release adds three features - option to store AWS Site-to-Site VPN pre-shared keys in AWS Secrets Manager, GetActiveVpnTunnelStatus API to check the in-use VPN algorithms, and SampleType option in GetVpnConnectionDeviceSampleConfiguration API to get recommended sample configs for VPN devices.

1.38.23

=======

* api-change:``ec2``: [``botocore``] This release adds support for the C7i-flex, M7i-flex, I7i, I7ie, I8g, P6-b200, Trn2, C8gd, M8gd and R8gd instances
* api-change:``security-ir``: [``botocore``] Update PrincipalId pattern documentation to reflect what user should receive back from the API call

1.38.22

=======

* api-change:``amp``: [``botocore``] Add QueryLoggingConfiguration APIs for Amazon Managed Prometheus
* api-change:``auditmanager``: [``botocore``] With this release, the AssessmentControl description field has been deprecated, as of May 19, 2025. Additionally, the UpdateAssessment API can now return a ServiceQuotaExceededException when applicable service quotas are exceeded.
* api-change:``dsql``: [``botocore``] Features: support for customer managed encryption keys
* api-change:``glue``: [``botocore``] This release supports additional ConversionSpec parameter as part of IntegrationPartition Structure in CreateIntegrationTableProperty API. This parameter is referred to apply appropriate column transformation for columns that are used for timestamp based partitioning

1.38.21

=======

* api-change:``application-autoscaling``: [``botocore``] Doc only update that addresses a customer reported issue.
* api-change:``bedrock-agent-runtime``: [``botocore``] Amazon Bedrock introduces asynchronous flows (in preview), which let you run flows for longer durations and yield control so that your application can perform other tasks and you don't have to actively monitor the flow's progress.
* api-change:``cloudwatch``: [``botocore``] Adds support for setting up Contributor Insight rules on logs transformed via Logs Transformation feature.
* api-change:``ec2``: [``botocore``] Release of Dualstack and Ipv6-only EC2 Public DNS hostnames
* api-change:``partnercentral-selling``: [``botocore``] Modified validation to allow expectedCustomerSpend array with zero elements in Partner Opportunity operations.

1.38.20

=======

* api-change:``datasync``: [``botocore``] Remove Discovery APIs from the DataSync service
* api-change:``ec2``: [``botocore``] This release expands the ModifyInstanceMaintenanceOptions API to enable or disable instance migration during customer-initiated reboots for EC2 Scheduled Reboot Events.
* api-change:``glue``: [``botocore``] Enhanced AWS Glue ListConnectionTypes API Model with additional metadata fields.
* api-change:``inspector2``: [``botocore``] This release adds GetClustersForImage API and filter updates as part of the mapping of container images to running containers feature.
* api-change:``oam``: [``botocore``] Add IncludeTags field to GetLink, GetSink and UpdateLink API
* api-change:``privatenetworks``: [``botocore``] The privatenetworks client has been removed following the deprecation of the service.
* api-change:``rds``: [``botocore``] This release introduces the new DescribeDBMajorEngineVersions API for describing the properties of specific major versions of database engines.

1.38.19

=======

* api-change:``dsql``: [``botocore``] CreateMultiRegionCluster and DeleteMultiRegionCluster APIs removed
* api-change:``ec2``: [``botocore``] This release includes new APIs for System Integrity Protection (SIP) configuration and automated root volume ownership delegation for EC2 Mac instances.
* api-change:``mediapackagev2``: [``botocore``] This release adds support for DVB-DASH, EBU-TT-D subtitle format, and non-compacted manifests for DASH in MediaPackage v2 Origin Endpoints.

1.38.18

=======

* api-change:``bedrock-data-automation``: [``botocore``] Add support for VIDEO modality to BlueprintType enum.
* api-change:``bedrock-data-automation-runtime``: [``botocore``] Add AssetProcessingConfiguration for video segment to InputConfiguration
* api-change:``codepipeline``: [``botocore``] CodePipeline now supports new API ListDeployActionExecutionTargets that lists the deployment target details for deploy action executions.
* api-change:``ecs``: [``botocore``] This is an Amazon ECs documentation only release to support the change of the container exit "reason" field from 255 characters to 1024 characters.
* api-change:``emr``: [``botocore``] Added APIs for managing Application UIs: Access Persistent (serverless) UIs via CreatePersistentAppUI DescribePersistentAppUI & GetPersistentAppUIPresignedURL, and Cluster-based UIs through GetOnClusterAppUIPresignedURL. Supports Yarn, Spark History, and TEZ interfaces.
* api-change:``glue``: [``botocore``] Changes include (1) Excel as S3 Source type and XML and Tableau's Hyper as S3 Sink types, (2) targeted number of partitions parameter in S3 sinks and (3) new compression types in CSV/JSON and Parquet S3 sinks.
* api-change:``neptune``: [``botocore``] This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster.
* api-change:``service-quotas``: [``botocore``] This release introduces CreateSupportCase operation to SDK.

1.38.17

=======

* api-change:``bedrock-agent``: [``botocore``] Amazon Bedrock Flows introduces DoWhile loops nodes, parallel node executions, and enhancements to knowledge base nodes.
* api-change:``codebuild``: [``botocore``] AWS CodeBuild now supports Docker Server capability
* api-change:``controltower``: [``botocore``] Updated the descriptions for the AWS Control Tower Baseline APIs to make them more intuitive.
* api-change:``dms``: [``botocore``] Introduces Data Resync feature to describe-table-statistics and IAM database authentication for MariaDB, MySQL, and PostgreSQL.
* api-change:``pcs``: [``botocore``] This release adds support for Slurm accounting. For more information, see the Slurm accounting topic in the AWS PCS User Guide. Slurm accounting is supported for Slurm 24.11 and later. This release also adds 24.11 as a valid value for the version parameter of the Scheduler data type.
* api-change:``workspaces``: [``botocore``] Added the new AlwaysOn running mode for WorkSpaces Pools. Customers can now choose between AlwaysOn (for instant access, with hourly usage billing regardless of connection status), or AutoStop (to optimize cost, with a brief startup delay) for their pools.

1.38.16

=======

* api-change:``cognito-idp``: [``botocore``] Add exceptions to WebAuthn operations.
* api-change:``firehose``: [``botocore``] This release adds catalogARN support for s3 tables multi-catalog catalogARNs.
* api-change:``logs``: [``botocore``] This release adds a new API "ListLogGroups" and an improvement in API "DescribeLogGroups"
* api-change:``mediaconvert``: [``botocore``] This update enables cropping for video overlays and adds a new STL to Teletext upconversion toggle to preserve styling.

1.38.15

=======

* api-change:``bedrock``: [``botocore``] Enable cross-Region inference for Amazon Bedrock Guardrails by using the crossRegionConfig parameter when calling the CreateGuardrail or UpdateGuardrail operation.
* api-change:``bedrock-agent-runtime``: [``botocore``] Changes for enhanced metadata in trace
* api-change:``controltower``: [``botocore``] AWS Control Tower now reports the inheritance drift status for EnabledBaselines through the GetEnabledBaseline and ListEnabledBaselines APIs. You can now filter EnabledBaselines by their enablement and drift status using the ListEnabledBaselines API to view accounts and OUs that require attention.
* api-change:``dsql``: [``botocore``] CreateMultiRegionClusters and DeleteMultiRegionClusters APIs marked as deprecated. Introduced new multi-Region clusters creation experience through multiRegionProperties parameter in CreateCluster API.
* api-change:``ecs``: [``botocore``] This release extends functionality for Amazon EBS volumes attached to Amazon ECS tasks by adding support for the new EBS volumeInitializationRate parameter in ECS RunTask/StartTask/CreateService/UpdateService APIs.
* api-change:``license-manager``: [``botocore``] Add Tagging feature to resources in the Managed Entitlements service. License and Grant resources can now be tagged.

1.38.14

=======

* api-change:``deadline``: [``botocore``] AWS Deadline Cloud service-managed fleets now support configuration scripts. Configuration scripts make it easy to install additional software, like plugins and packages, onto a worker.
* api-change:``ec2``: [``botocore``] EC2 - Adding support for AvailabilityZoneId
* api-change:``iam``: [``botocore``] Updating the endpoint list for the Identity and access management (IAM) service
* api-change:``medialive``: [``botocore``] Add support to the AV1 rate control mode
* api-change:``mediatailor``: [``botocore``] Documenting that EnabledLoggingStrategies is always present in responses of PlaybackConfiguration read operations.
* api-change:``s3control``: [``botocore``] Updates to support S3 Express zonal endpoints for directory buckets in AWS CLI
* api-change:``sagemaker``: [``botocore``] No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.
* api-change:``supplychain``: [``botocore``] Launch new AWS Supply Chain public APIs for DataIntegrationEvent, DataIntegrationFlowExecution and DatasetNamespace. Also add more capabilities to existing public APIs to support direct dataset event publish, data deduplication in DataIntegrationFlow, partition specification of custom datasets.

1.38.13

=======

* api-change:``athena``: [``botocore``] Minor API documentation updates
* api-change:``logs``: [``botocore``] We are pleased to announce limit increases to our grok processor logs transformation feature. Now you can define 20 Grok patterns in their configurations, with an expanded total pattern matching limit of 512 characters.
* api-change:``synthetics``: [``botocore``] Add support to retry a canary automatically after schedule run failures. Users can enable this feature by configuring the RetryConfig field when calling the CreateCanary or UpdateCanary API. Also includes changes in GetCanary and GetCanaryRuns to support retrieving retry configurations.
* api-change:``workspaces``: [``botocore``] Remove parameter EnableWorkDocs from WorkSpacesServiceModel due to end of support of Amazon WorkDocs service.

1.38.12

=======

* api-change:``cloudfront``: [``botocore``] Doc-only update for CloudFront. These changes include customer-reported issues.
* api-change:``codepipeline``: [``botocore``] Add support for Secrets Manager and Plaintext environment variable types in Commands action
* api-change:``ec2``: [``botocore``] Launching the feature to support ENA queues offering flexibility to support multiple queues per Enhanced Network Interface (ENI)
* api-change:``glue``: [``botocore``] This new release supports customizable RefreshInterval for all Saas ZETL integrations from 15 minutes to 6 days.
* api-change:``guardduty``: [``botocore``] Updated description of a data structure.
* api-change:``sso-admin``: [``botocore``] Update PutPermissionBoundaryToPermissionSet API's managedPolicyArn pattern to allow valid ARN only. Update ApplicationName to allow white spaces.

1.38.11

=======

* api-change:``ec2``: [``botocore``] This release adds API support for Path Component Exclusion (Filter Out ARN) for Reachability Analyzer
* api-change:``imagebuilder``: [``botocore``] Updated the CreateImageRecipeRequest ParentImage description to include all valid values as updated with the SSM Parameters project.
* api-change:``medialive``: [``botocore``] Enables Updating Anywhere Settings on a MediaLive Anywhere Channel.
* api-change:``sagemaker``: [``botocore``] SageMaker AI Studio users can now migrate to SageMaker Unified Studio, which offers a unified web-based development experience that integrates AWS data, analytics, artificial intelligence (AI), and machine learning (ML) services, as well as additional tools and resource
* api-change:``synthetics``: [``botocore``] Add support to test a canary update by invoking a dry run of a canary. This behavior can be used via the new StartCanaryDryRun API along with new fields in UpdateCanary to apply dry run changes. Also includes changes in GetCanary and GetCanaryRuns to support retrieving dry run configurations.

1.38.10

=======

* api-change:``ec2``: [``botocore``] This release adds support for Amazon EBS Provisioned Rate for Volume Initialization, which lets you specify a volume initialization rate to ensure that your EBS volumes are initialized in a predictable amount of time.
* api-change:``servicecatalog``: [``botocore``] ServiceCatalog's APIs (DeleteServiceAction, DisassociateServiceActionFromProvisioningArtifact, AssociateServiceActionWithProvisioningArtifact) now throw InvalidParametersException when IdempotencyToken is invalid.
* api-change:``timestream-query``: [``botocore``] Add dualstack endpoints support and correct us-gov-west-1 FIPS endpoint.
* api-change:``timestream-write``: [``botocore``] Add dualstack endpoints support.

1.38.9

======

* api-change:``datazone``: [``botocore``] This release adds a new authorization policy to control the usage of custom AssetType when creating an Asset. Customer can now add new grant(s) of policyType USE_ASSET_TYPE for custom AssetTypes to apply authorization policy to projects members and domain unit owners.
* api-change:``devicefarm``: [``botocore``] Add an optional parameter to the GetDevicePoolCompatibility API to pass in project information to check device pool compatibility.
* api-change:``ec2``: [``botocore``] This update introduces API operations to manage and create local gateway VIF and VIF groups. It also includes API operations to describe Outpost LAGs and service link VIFs.
* api-change:``ecs``: [``botocore``] Add support to roll back an In_Progress ECS Service Deployment
* api-change:``mediaconvert``: [``botocore``] This release adds an optional sidecar per-frame video quality metrics report and an ALL_PCM option for audio selectors. It also changes the data type for Probe API response fields related to video and audio bitrate from integer to double.

1.38.8

======

* api-change:``bedrock-data-automation``: [``botocore``] Added support for Custom output and blueprints for AUDIO data types.
* api-change:``ds``: [``botocore``] Doc only update - fixed typos.
* api-change:``kinesis``: [``botocore``] Marking ResourceARN as required for Amazon Kinesis Data Streams APIs TagResource, UntagResource, and ListTagsForResource.

1.38.7

======

* api-change:``appconfig``: [``botocore``] Adding waiter support for deployments and environments; documentation updates
* api-change:``connect``: [``botocore``] This release adds the following fields to DescribeContact: DisconnectReason, AgentInitiatedHoldDuration, AfterContactWorkStartTimestamp, AfterContactWorkEndTimestamp, AfterContactWorkDuration, StateTransitions, Recordings, ContactDetails, ContactEvaluations, Attributes
* api-change:``sagemaker``: [``botocore``] Feature - Adding support for Scheduled and Rolling Update Software in Sagemaker Hyperpod.
* api-change:``verifiedpermissions``: [``botocore``] Amazon Verified Permissions / Features : Adds support for tagging policy stores.

1.38.6

======

* api-change:``bedrock``: [``botocore``] You can now specify a cross region inference profile as a teacher model for the CreateModelCustomizationJob API. Additionally, the GetModelCustomizationJob API has been enhanced to return the sub-task statuses of a customization job within the StatusDetails response field.
* api-change:``bedrock-agent``: [``botocore``] Features:    Add inline code node to prompt flow
* api-change:``bedrock-agent-runtime``: [``botocore``] Support for Custom Orchestration within InlineAgents
* api-change:``cleanrooms``: [``botocore``] This release adds support for ProtectedQuery results to be delivered to more than one collaboration member via the new distribute output configuration in StartProtectedQuery.
* api-change:``deadline``: [``botocore``] Adds support for tag management on workers and tag inheritance from fleets to their associated workers.
* api-change:``ec2``: [``botocore``] Launch of cost distribution feature for IPAM owners to distribute costs to internal teams.
* api-change:``ecr``: [``botocore``] Adds dualstack support for Amazon Elastic Container Registry (Amazon ECR).
* api-change:``ecr-public``: [``botocore``] Adds dualstack support for Amazon Elastic Container Registry Public (Amazon ECR Public).
* api-change:``logs``: [``botocore``] CloudWatch Logs supports "DELIVERY" log class. This log class is used only for delivering AWS Lambda logs to Amazon S3 or Amazon Data Firehose.
* api-change:``mailmanager``: [``botocore``] Introducing new RuleSet rule PublishToSns action, which allows customers to publish email notifications to an Amazon SNS topic. New PublishToSns action enables customers to easily integrate their email workflows via Amazon SNS, allowing them to notify other systems about important email events.

1.38.5

======

* api-change:``connectcases``: [``botocore``] Introduces CustomEntity as part of the UserUnion data type. This field is used to indicate the entity who is performing the API action.
* api-change:``kinesis``: [``botocore``] Amazon KDS now supports tagging and attribute-based access control (ABAC) for enhanced fan-out consumers.
* api-change:``pinpoint-sms-voice-v2``: [``botocore``] AWS End User Messaging has added MONITOR and FILTER functionality to SMS Protect.
* api-change:``qbusiness``: [``botocore``] Add support for anonymous user access for Q Business applications
* api-change:``sagemaker``: [``botocore``] Introduced support for P5en instance types on SageMaker Studio for JupyterLab and CodeEditor applications.
* api-change:``sagemaker-metrics``: [``botocore``] SageMaker Metrics Service now supports FIPS endpoint in all US and Canada Commercial regions.
* api-change:``ssm``: [``botocore``] This release adds support for just-In-time node access in AWS Systems Manager. Just-in-time node access enables customers to move towards zero standing privileges by requiring operators to request access and obtain approval before remotely connecting to nodes managed by the SSM Agent.
* api-change:``ssm-guiconnect``: [``botocore``] This release adds API support for the connection recording GUI Connect feature of AWS Systems Manager

1.38.4

======

* api-change:``acm``: [``botocore``] Add support for file-based HTTP domain control validation, available through Amazon CloudFront.
* api-change:``bedrock-runtime``: [``botocore``] This release adds native h2 support for the bedrock runtime API, the support is only limited to SDKs that support h2 requests natively.
* api-change:``cloudfront``: [``botocore``] Add distribution tenant, connection group, and multi-tenant distribution APIs to the CloudFront SDK.
* api-change:``dynamodb``: [``botocore``] Doc only update for GSI descriptions.
* api-change:``imagebuilder``: [``botocore``] Add integration with SSM Parameter Store to Image Builder.

1.38.3

======

* api-change:``bedrock-runtime``: [``botocore``] You can now reference images and documents stored in Amazon S3 when using InvokeModel and Converse APIs with Amazon Nova Lite and Nova Pro. This enables direct integration of S3-stored multimedia assets in your model requests without manual downloading or base64 encoding.
* api-change:``ecs``: [``botocore``] Documentation only release for Amazon ECS.
* api-change:``marketplace-deployment``: [``botocore``] Doc only update for the AWS Marketplace Deployment Service that fixes several customer-reported issues.

1.38.2

======

* api-change:``apprunner``: [``botocore``] AWS App Runner adds Node.js 22 runtime.
* api-change:``appsync``: [``botocore``] Add data source support to Event APIs
* api-change:``bedrock-data-automation``: [``botocore``] Added support for modality routing and modality enablement on CreateDataAutomationProject and UpdateDataAutomationProject APIs
* api-change:``codebuild``: [``botocore``] Remove redundant validation check.
* api-change:``dynamodb``: [``botocore``] Add support for ARN-sourced account endpoint generation for TransactWriteItems. This will generate account endpoints for DynamoDB TransactWriteItems requests using ARN-sourced account ID when available.
* api-change:``ecs``: [``botocore``] Documentation only release for Amazon ECS
* api-change:``pcs``: [``botocore``] Documentation-only update: added valid values for the version property of the Scheduler and SchedulerRequest data types.
* api-change:``rds``: [``botocore``] This Amazon RDS release adds support for managed master user passwords for Oracle CDBs.

1.38.1

======

* api-change:``codebuild``: [``botocore``] Add support for custom instance type for reserved capacity fleets
* api-change:``ecs``: [``botocore``] Add support to roll back an In_Progress ECS Service Deployment
* api-change:``imagebuilder``: [``botocore``] Add all ``imagebuilder`` modeled paginators that are currently supported by botocore.
* api-change:``resource-explorer-2``: [``botocore``] Documentation-only update for CreateView option correction

1.38.0

======

* api-change:``account``: [``botocore``] AWS Account Management now supports account name update via IAM principals.
* api-change:``cognito-idp``: [``botocore``] This release adds refresh token rotation.
* api-change:``ec2``: [``botocore``] Added support for  ClientRouteEnforcementOptions flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
* api-change:``entityresolution``: [``botocore``] To expand support for matching records using digital identifiers with TransUnion
* api-change:``mq``: [``botocore``] You can now delete Amazon MQ broker configurations using the DeleteConfiguration API. For more information, see Configurations in the Amazon MQ API Reference.
* api-change:``redshift-serverless``: [``botocore``] Provides new and updated API members to support the Redshift Serverless reservations feature.
* api-change:``s3control``: [``botocore``] Fix endpoint resolution test cases
* feature:Python: [``botocore``] End of support for Python 3.8
* feature:Python: End of support for Python 3.8

1.37.38

=======

* api-change:``arc-zonal-shift``: [``botocore``] Updates to documentation and exception types for Zonal Autoshift
* api-change:``budgets``: [``botocore``] Releasing the new Budget FilterExpression and Metrics fields to support more granular filtering options. These new fields are intended to replace CostFilters and CostTypes, which are deprecated as of 2025/18/04.
* api-change:``firehose``: [``botocore``] Documentation update regarding the number of streams you can create using the CreateDeliveryStream API.
* api-change:``mediatailor``: [``botocore``] Added support for Recurring Prefetch and Traffic Shaping on both Single and Recurring Prefetch. ListPrefetchSchedules now return single prefetchs by default and can be provided scheduleType of SINGLE, RECURRING, AND ALL.
* api-change:``qbusiness``: [``botocore``] The CheckDocumentAccess API for Amazon Q Business is a self-service debugging API that allows administrators to verify document access permissions and review Access Control List (ACL) configurations.

1.37.37

=======

* api-change:``qconnect``: [``botocore``] This release adds support for the following capabilities: Chunking generative answer replies from Amazon Q in Connect. Integration support for the use of additional LLM models with Amazon Q in Connect.
* api-change:``sagemaker``: [``botocore``] This release adds a new Neuron driver option in InferenceAmiVersion parameter for ProductionVariant. Additionally, it adds support for fetching model lifecycle status in the ListModelPackages API. Users can now use this API to view the lifecycle stage of models that have been shared with them.
* api-change:``service-quotas``: [``botocore``] Add new optional SupportCaseAllowed query parameter to the RequestServiceQuotaIncrease API

1.37.36

=======

* api-change:``accessanalyzer``: [``botocore``] Added new resource types to evaluate for public access in resource policies and added support for S3 directory bucket access points.
* api-change:``amp``: [``botocore``] Add Workspace Configuration APIs for Amazon Prometheus
* api-change:``autoscaling``: [``botocore``] Doc only update for EC2 Auto Scaling.
* api-change:``bedrock``: [``botocore``] With this release, Bedrock Evaluation will now support custom metrics for evaluation.
* api-change:``connect``: [``botocore``] This release adds following capabilities to Contact Lens Rules APIs 1/ 'ASSIGN_SLA' action and  '$.Case.TemplateId' comparison value for 'OnCaseCreate' and 'OnCaseUpdate' event sources 2/ 'OnSlaBreach' Cases event source which supports '$.RelatedItem.SlaConfiguration.Name' comparison value
* api-change:``ecs``: [``botocore``] Adds a new AccountSetting - defaultLogDriverMode for ECS.
* api-change:``iotfleetwise``: [``botocore``] We've added stricter parameter validations to AWS IoT FleetWise signal catalog, model manifest, and decoder manifest APIs.
* api-change:``memorydb``: [``botocore``] Added support for IPv6 and dual stack for Valkey and Redis clusters. Customers can now launch new Valkey and Redis clusters with IPv6 and dual stack networking support.
* api-change:``omics``: [``botocore``] Add versioning for HealthOmics workflows

1.37.35

=======

* api-change:``connectcases``: [``botocore``] This feature provides capabilities to help track and meet service level agreements (SLAs) on cases programmatically. It allows configuring a new related item of type `Sla` on a case using CreateRelatedItem API and provides the ability to search for this new related item using SearchRelatedItems API.
* api-change:``dsql``: [``botocore``] Added GetClusterEndpointService API. The new API allows retrieving endpoint service name specific to a cluster.
* api-change:``eks``: [``botocore``] Added support for new AL2023 ARM64 NVIDIA AMIs to the supported AMITypes.
* api-change:``events``: [``botocore``] Adding support for KmsKeyIdentifer in CreateConnection, UpdateConnection and DescribeConnection APIs
* api-change:``resource-groups``: [``botocore``] Resource Groups: TagSyncTasks can be created with ResourceQuery
* api-change:``s3tables``: [``botocore``] S3 Tables now supports setting encryption configurations on table buckets and tables. Encryption configurations can use server side encryption using AES256 or KMS customer-managed keys.
* api-change:``servicecatalog``: [``botocore``] Updated default value for the access-level-filter in SearchProvisionedProducts API to Account. For access to userLevel or roleLevel, the user must provide access-level-filter parameter.

1.37.34

=======

* api-change:``entityresolution``: [``botocore``] This is to add new metrics to our GetIdMappingJob API and also update uniqueId naming for batchDeleteUniqueIds API to be more accurate
* api-change:``taxsettings``: [``botocore``] Indonesia SOR Tax Registration Launch

1.37.33

=======

* api-change:``connect-contact-lens``: [``botocore``] Making sentiment optional for ListRealtimeContactAnalysisSegments Response depending on conversational analytics configuration
* api-change:``datazone``: [``botocore``] Raise hard limit of authorized principals per SubscriptionTarget from 10 to 20.
* api-change:``detective``: [``botocore``] Add support for Detective DualStack endpoints
* api-change:``dynamodb``: [``botocore``] Doc only update for API descriptions.
* api-change:``marketplace-entitlement``: [``botocore``] Add support for Marketplace Entitlement Service dual-stack endpoints for CN and GOV regions
* api-change:``meteringmarketplace``: [``botocore``] Add support for Marketplace Metering Service dual-stack endpoints for CN regions
* api-change:``pcs``: [``botocore``] Changed the minimum length of clusterIdentifier, computeNodeGroupIdentifier, and queueIdentifier to 3.
* api-change:``verifiedpermissions``: [``botocore``] Adds deletion protection support to policy stores. Deletion protection is disabled by default, can be enabled via the CreatePolicyStore or UpdatePolicyStore APIs, and is visible in GetPolicyStore.
* bugfix:``download_fileobj``: Fileobj provided in append mode will no longer allow concurrent writes to preserve data integrity.

1.37.32

=======

* api-change:``application-autoscaling``: [``botocore``] Application Auto Scaling now supports horizontal scaling for Elasticache Memcached self-designed clusters using target tracking scaling policies and scheduled scaling.
* api-change:``elasticache``: [``botocore``] AWS ElastiCache SDK now supports using MemcachedUpgradeConfig parameter with ModifyCacheCluster API to enable updating Memcached cache node types. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage and implementation.
* api-change:``m2``: [``botocore``] Introduce three new APIs: CreateDataSetExportTask, GetDataSetExportTask and ListDataSetExportHistory. Add support for batch restart for Blu Age applications.
* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive / Features : Add support for CMAF Ingest CaptionLanguageMappings, TimedMetadataId3 settings, and Link InputResolution.
* api-change:``qbusiness``: [``botocore``] Adds functionality to enable/disable a new Q Business Hallucination Reduction feature. If enabled, Q Business will detect and attempt to remove Hallucinations from certain Chat requests.
* api-change:``quicksight``: [``botocore``] Add support to analysis and sheet level highlighting in QuickSight.

1.37.31

=======

* api-change:``controlcatalog``: [``botocore``] The GetControl API now surfaces a control's Severity, CreateTime, and Identifier for a control's Implementation. The ListControls API now surfaces a control's Behavior, Severity, CreateTime, and Identifier for a control's Implementation.
* api-change:``dynamodb``: [``botocore``] Documentation update for secondary indexes and Create_Table.
* api-change:``glue``: [``botocore``] The TableOptimizer APIs in AWS Glue now return the DpuHours field in each TableOptimizerRun, providing clients visibility to the DPU-hours used for billing in managed Apache Iceberg table compaction optimization.
* api-change:``groundstation``: [``botocore``] Support tagging Agents and adjust input field validations
* api-change:``transfer``: [``botocore``] This launch includes 2 enhancements to SFTP connectors user-experience: 1) Customers can self-serve concurrent connections setting for their connectors, and 2) Customers can discover the public host key of remote servers using their SFTP connectors.

1.37.30

=======

* api-change:``bedrock-runtime``: [``botocore``] This release introduces our latest bedrock runtime API, InvokeModelWithBidirectionalStream. The API supports both input and output streams and is supported by only HTTP2.0.
* api-change:``ce``: [``botocore``] This release supports Pagination traits on Cost Anomaly Detection APIs.
* api-change:``cost-optimization-hub``: [``botocore``] This release adds resource type "MemoryDbReservedInstances" and resource type "DynamoDbReservedCapacity" to the GetRecommendation, ListRecommendations, and ListRecommendationSummaries APIs to support new MemoryDB and DynamoDB RI recommendations.
* api-change:``iotfleetwise``: [``botocore``] This release adds the option to update the strategy of state templates already associated to a vehicle, without the need to remove and re-add them.
* api-change:``securityhub``: [``botocore``] Documentation updates for AWS Security Hub.
* api-change:``storagegateway``: [``botocore``] Added new ActiveDirectoryStatus value, ListCacheReports paginator, and support for longer pagination tokens.
* api-change:``taxsettings``: [``botocore``] Uzbekistan Launch on TaxSettings Page

1.37.29

=======

* api-change:``bedrock``: [``botocore``] New options for how to handle harmful content detected by Amazon Bedrock Guardrails.
* api-change:``bedrock-runtime``: [``botocore``] New options for how to handle harmful content detected by Amazon Bedrock Guardrails.
* api-change:``codebuild``: [``botocore``] AWS CodeBuild now offers an enhanced debugging experience.
* api-change:``glue``: [``botocore``] Add input validations for multiple Glue APIs
* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive now supports SDI inputs to MediaLive Anywhere Channels in workflows that use AWS SDKs.
* api-change:``personalize``: [``botocore``] Add support for eventsConfig for CreateSolution, UpdateSolution, DescribeSolution, DescribeSolutionVersion. Add support for GetSolutionMetrics to return weighted NDCG metrics when eventsConfig is enabled for the solution.
* api-change:``transfer``: [``botocore``] This launch enables customers to manage contents of their remote directories, by deleting old files or moving files to archive folders in remote servers once they have been retrieved. Customers will be able to automate the process using event-driven architecture.

1.37.28

=======

* api-change:``ds-data``: [``botocore``] Doc only update - fixed broken links.
* api-change:``ec2``: [``botocore``] Doc-only updates for Amazon EC2
* api-change:``events``: [``botocore``] Amazon EventBridge adds support for customer-managed keys on Archives and validations for two fields: eventSourceArn and kmsKeyIdentifier.
* api-change:``s3control``: [``botocore``] Updated max size of Prefixes parameter of Scope data type.

1.37.27

=======

* api-change:``bedrock-agent``: [``botocore``] Added optional "customMetadataField" for Amazon Aurora knowledge bases, allowing single-column metadata. Also added optional "textIndexName" for MongoDB Atlas knowledge bases, enabling hybrid search support.
* api-change:``chime-sdk-voice``: [``botocore``] Added FOC date as an attribute of PhoneNumberOrder, added AccessDeniedException as a possible return type of ValidateE911Address
* api-change:``mailmanager``: [``botocore``] Add support for Dual_Stack and PrivateLink types of IngressPoint. For configuration requests, SES Mail Manager will now accept both IPv4/IPv6 dual-stack endpoints and AWS PrivateLink VPC endpoints for email receiving.
* api-change:``opensearch``: [``botocore``] Improve descriptions for various API commands and data types.
* api-change:``route53``: [``botocore``] Added us-gov-east-1 and us-gov-west-1 as valid Latency Based Routing regions for change-resource-record-sets.
* api-change:``sagemaker``: [``botocore``] Adds support for i3en, m7i, r7i instance types for SageMaker Hyperpod
* api-change:``sesv2``: [``botocore``] This release enables customers to provide attachments in the SESv2 SendEmail and SendBulkEmail APIs.
* api-change:``transcribe``: [``botocore``] This Feature Adds Support for the "zh-HK" Locale for Batch Operations
* enhancement:Eventstream: [``botocore``] The event streams maximum payload size is now required to be 24Mb or less.

1.37.26

=======

* api-change:``application-signals``: [``botocore``] Application Signals now supports creating Service Level Objectives on service dependencies. Users can now create or update SLOs on discovered service dependencies to monitor their standard application metrics.
* api-change:``codebuild``: [``botocore``] This release adds support for environment type WINDOWS_SERVER_2022_CONTAINER in ProjectEnvironment
* api-change:``ecr``: [``botocore``] Fix for customer issues related to AWS account ID and size limitation for token.
* api-change:``ecs``: [``botocore``] This is an Amazon ECS documentation only update to address various tickets.
* api-change:``lexv2-models``: [``botocore``] Release feature of errorlogging for lex bot, customer can config this feature in bot version to generate log for error exception which helps debug
* api-change:``medialive``: [``botocore``] Added support for SMPTE 2110 inputs when running a channel in a MediaLive Anywhere cluster. This feature enables ingestion of SMPTE 2110-compliant video, audio, and ancillary streams by reading SDP files that AWS Elemental MediaLive can retrieve from a network source.

1.37.25

=======

* api-change:``cleanrooms``: [``botocore``] This release adds support for updating the analytics engine of a collaboration.
* api-change:``sagemaker``: [``botocore``] Added tagging support for SageMaker notebook instance lifecycle configurations

1.37.24

=======

* api-change:``bedrock-runtime``: [``botocore``] Add Prompt Caching support to Converse and ConverseStream APIs
* api-change:``deadline``: [``botocore``] With this release you can use a new field to specify the search term match type. Search term match types currently support fuzzy and contains matching.
* api-change:``ec2``: [``botocore``] Release VPC Route Server, a new feature allowing dynamic routing in VPCs.
* api-change:``eks``: [``botocore``] Add support for updating RemoteNetworkConfig for hybrid nodes on EKS UpdateClusterConfig API
* api-change:``marketplace-entitlement``: [``botocore``] Add support for Marketplace Entitlement Service dual-stack endpoints.
* api-change:``outposts``: [``botocore``] Enabling Asset Level Capacity Management feature, which allows customers to create a Capacity Task for a single Asset on their active Outpost.
* api-change:``s3``: [``botocore``] Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones
* api-change:``s3control``: [``botocore``] Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones
* api-change:``sesv2``: [``botocore``] Add dual-stack support to global endpoints.
* api-change:``transfer``: [``botocore``] Add WebAppEndpointPolicy support for WebApps

1.37.23

=======

* api-change:``apigateway``: [``botocore``] Adds support for setting the IP address type to allow dual-stack or IPv4 address types to invoke your APIs or domain names.
* api-change:``apigatewayv2``: [``botocore``] Adds support for setting the IP address type to allow dual-stack or IPv4 address types to invoke your APIs or domain names.
* api-change:``bedrock-runtime``: [``botocore``] Launching Multi-modality Content Filter for Amazon Bedrock Guardrails.
* api-change:``codebuild``: [``botocore``] This release adds support for cacheNamespace in ProjectCache
* api-change:``ecs``: [``botocore``] This is an Amazon ECS documentation only release that addresses tickets.
* api-change:``meteringmarketplace``: [``botocore``] Add support for Marketplace Metering Service dual-stack endpoints.
* api-change:``networkmanager``: [``botocore``] Add support for NetworkManager Dualstack endpoints.
* api-change:``payment-cryptography``: [``botocore``] The service adds support for transferring AES-256 and other keys between the service and other service providers and HSMs. This feature uses ECDH to derive a one-time key transport key to enable these secure key exchanges.
* api-change:``quicksight``: [``botocore``] RLS permission dataset with userAs: RLS_RULES flag, Q in QuickSight/Threshold Alerts/Schedules/Snapshots in QS embedding, toggle dataset refresh email alerts via API, transposed table with options: column width, type and index, toggle Q&A on dashboards, Oracle Service Name when creating data source.
* api-change:``sagemaker``: [``botocore``] TransformAmiVersion for Batch Transform and SageMaker Search Service Aggregate Search API Extension

1.37.22

=======

* api-change:``batch``: [``botocore``] This release will enable two features: Firelens log driver, and Execute Command on Batch jobs on ECS. Both features will be passed through to ECS.
* api-change:``bcm-pricing-calculator``: [``botocore``] Added standaloneAccountRateTypeSelections for GetPreferences and UpdatePreferences APIs. Added STALE enum value to status attribute in GetBillScenario and UpdateBillScenario APIs.
* api-change:``bedrock-agent-runtime``: [``botocore``] bedrock flow now support node action trace.
* api-change:``cloudformation``: [``botocore``] Adding support for the new parameter "ScanFilters" in the CloudFormation StartResourceScan API. When this parameter is included, the StartResourceScan API will initiate a scan limited to the resource types specified by the parameter.
* api-change:``datazone``: [``botocore``] This release adds new action type of Create Listing Changeset for the Metadata Enforcement Rule feature.
* api-change:``eks``: [``botocore``] Added support for BOTTLEROCKET FIPS AMIs to AMI types in US regions.
* api-change:``gamelift``: [``botocore``] Amazon GameLift Servers add support for additional instance types.
* api-change:``iam``: [``botocore``] Update IAM dual-stack endpoints for BJS, IAD and PDT partitions
* api-change:``sagemaker``: [``botocore``] add: recovery mode for SageMaker Studio apps
* api-change:``sso-oidc``: [``botocore``] This release adds AwsAdditionalDetails in the CreateTokenWithIAM API response.

1.37.21

=======

* api-change:``arc-zonal-shift``: [``botocore``] Add new shiftType field for ARC zonal shifts.
* api-change:``directconnect``: [``botocore``] With this release, AWS Direct Connect allows you to tag your Direct Connect gateways. Tags are metadata that you can create and use to manage your Direct Connect gateways. For more information about tagging, see AWS Tagging Strategies.
* api-change:``mediaconvert``: [``botocore``] This release adds a configurable Quality Level setting for the top rendition of Auto ABR jobs
* api-change:``mediatailor``: [``botocore``] Add support for log filtering which allow customers to filter out selected event types from logs.
* api-change:``polly``: [``botocore``] Added support for the new voice - Jihye (ko-KR). Jihye is available as a Neural voice only.
* api-change:``rds``: [``botocore``] Add note about the Availability Zone where RDS restores the DB cluster for the RestoreDBClusterToPointInTime operation.
* api-change:``wafv2``: [``botocore``] This release adds the ability to associate an AWS WAF v2 web ACL with an AWS Amplify App.

1.37.20

=======

* api-change:``bedrock-agent``: [``botocore``] Adding support for Amazon OpenSearch Managed clusters as a vector database in Knowledge Bases for Amazon Bedrock
* api-change:``eks``: [``botocore``] Added support to override upgrade-blocking readiness checks via force flag when updating a cluster.
* api-change:``gameliftstreams``: [``botocore``] Minor updates to improve developer experience.
* api-change:``keyspaces``: [``botocore``] Removing replication region limitation for Amazon Keyspaces Multi-Region Replication APIs.
* api-change:``marketplace-entitlement``: [``botocore``] This release enhances the GetEntitlements API to support new filter CUSTOMER_AWS_ACCOUNT_ID in request and CustomerAWSAccountId field in response.
* api-change:``meteringmarketplace``: [``botocore``] This release enhances the BatchMeterUsage API to support new field CustomerAWSAccountId in request and response and making CustomerIdentifier optional. CustomerAWSAccountId or CustomerIdentifier must be provided in request but not both.
* api-change:``sagemaker``: [``botocore``] This release adds support for customer-managed KMS keys in Amazon SageMaker Partner AI Apps
* api-change:``workspaces-thin-client``: [``botocore``] Deprecate tags field in Get API responses

1.37.19

=======

* api-change:``iotwireless``: [``botocore``] Mark EutranCid under LteNmr optional.
* api-change:``pcs``: [``botocore``] ClusterName/ClusterIdentifier, ComputeNodeGroupName/ComputeNodeGroupIdentifier, and QueueName/QueueIdentifier can now have 10 characters, and a minimum of 3 characters. The TagResource API action can now return ServiceQuotaExceededException.
* api-change:``qconnect``: [``botocore``] Provides the correct value for supported model ID.
* api-change:``ssm``: [``botocore``] This release adds the AvailableSecurityUpdatesComplianceStatus field to patch baseline operations, as well as the AvailableSecurityUpdateCount and InstancesWithAvailableSecurityUpdates to patch state operations. Applies to Windows Server managed nodes only.

1.37.18

=======

* api-change:``bedrock``: [``botocore``] A CustomModelUnit(CMU) is an abstract view of the hardware utilization that Bedrock needs to host a a single copy of your custom imported model. Bedrock determines the number of CMUs that a model copy needs when you import the custom model. You can use CMUs to estimate the cost of Inference's.
* api-change:``datazone``: [``botocore``] Add support for overriding selection of default AWS IAM Identity Center instance as part of Amazon DataZone domain APIs.
* api-change:``route53-recovery-control-config``: [``botocore``] Adds dual-stack (IPv4 and IPv6) endpoint support for route53-recovery-control-co

@pyup-bot
Copy link
Collaborator Author

Closing this in favor of #280

@pyup-bot pyup-bot closed this Jul 28, 2025
@Tommos0 Tommos0 deleted the pyup-scheduled-update-2025-06-10 branch July 28, 2025 15:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants