Skip to content

⬆️(dependencies) update python dependencies #553

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 19, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
aiohttp ==3.11.14 -> ==3.12.2 age adoption passing confidence
boto3 ==1.37.24 -> ==1.38.24 age adoption passing confidence
celery (source, changelog) ==5.4.0 -> ==5.5.2 age adoption passing confidence
django (changelog) ==5.1.9 -> ==5.2.1 age adoption passing confidence
django-extensions (changelog) ==3.2.3 -> ==4.1 age adoption passing confidence
django-lasuite ==0.0.7 -> ==0.0.9 age adoption passing confidence
django-storages (changelog) ==1.14.5 -> ==1.14.6 age adoption passing confidence
djangorestframework (source, changelog) ==3.15.2 -> ==3.16.0 age adoption passing confidence
drf-spectacular-sidecar ==2025.3.1 -> ==2025.5.1 age adoption passing confidence
freezegun (changelog) ==1.5.1 -> ==1.5.2 age adoption passing confidence
ipython ==9.0.2 -> ==9.2.0 age adoption passing confidence
jsonschema (changelog) ==4.23.0 -> ==4.24.0 age adoption passing confidence
markdown (changelog) ==3.7 -> ==3.8 age adoption passing confidence
openai ==1.68.2 -> ==1.82.0 age adoption passing confidence
psycopg (source, changelog) ==3.2.6 -> ==3.2.9 age adoption passing confidence
pylint (changelog) ==3.3.6 -> ==3.3.7 age adoption passing confidence
pytest-cov (changelog) ==6.0.0 -> ==6.1.1 age adoption passing confidence
pytest-django (changelog) ==4.10.0 -> ==4.11.1 age adoption passing confidence
pytest-xdist (changelog) ==3.6.1 -> ==3.7.0 age adoption passing confidence
redis (changelog) ==5.2.1 -> ==6.2.0 age adoption passing confidence
ruff (source, changelog) ==0.11.2 -> ==0.11.11 age adoption passing confidence
sentry-sdk (changelog) ==2.24.1 -> ==2.29.1 age adoption passing confidence
types-requests (changelog) ==2.32.0.20250306 -> ==2.32.0.20250515 age adoption passing confidence

Release Notes

aio-libs/aiohttp (aiohttp)

v3.12.2

Compare Source

===================

Bug fixes

  • Fixed Content-Length header not being set to 0 for non-GET requests with None body -- by :user:bdraco.

    Non-GET requests (POST, PUT, PATCH, DELETE) with None as the body now correctly set the Content-Length header to 0, matching the behavior of requests with empty bytes (b""). This regression was introduced in aiohttp 3.12.1.

    Related issues and pull requests on GitHub:
    :issue:11035.


v3.12.1: 3.12.1

Compare Source

Features

  • Added support for reusable request bodies to enable retries, redirects, and digest authentication -- by :user:bdraco and :user:GLGDLY.

    Most payloads can now be safely reused multiple times, fixing long-standing issues where POST requests with form data or file uploads would fail on redirects with errors like "Form data has been processed already" or "I/O operation on closed file". This also enables digest authentication to work with request bodies and allows retry mechanisms to resend requests without consuming the payload. Note that payloads derived from async iterables may still not be reusable in some cases.

    Related issues and pull requests on GitHub:
    #​5530, #​5577, #​9201, #​11017.


v3.12.0

Compare Source

===================

Bug fixes

  • Fixed :py:attr:~aiohttp.web.WebSocketResponse.prepared property to correctly reflect the prepared state, especially during timeout scenarios -- by :user:bdraco

    Related issues and pull requests on GitHub:
    :issue:6009, :issue:10988.

  • Response is now always True, instead of using MutableMapping behaviour (False when map is empty)

    Related issues and pull requests on GitHub:
    :issue:10119.

  • Fixed connection reuse for file-like data payloads by ensuring buffer
    truncation respects content-length boundaries and preventing premature
    connection closure race -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10325, :issue:10915, :issue:10941, :issue:10943.

  • Fixed pytest plugin to not use deprecated :py:mod:asyncio policy APIs.

    Related issues and pull requests on GitHub:
    :issue:10851.

  • Fixed :py:class:~aiohttp.resolver.AsyncResolver not using the loop argument in versions 3.x where it should still be supported -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10951.

Features

  • Added a comprehensive HTTP Digest Authentication client middleware (DigestAuthMiddleware)
    that implements RFC 7616. The middleware supports all standard hash algorithms
    (MD5, SHA, SHA-256, SHA-512) with session variants, handles both 'auth' and
    'auth-int' quality of protection options, and automatically manages the
    authentication flow by intercepting 401 responses and retrying with proper
    credentials -- by :user:feus4177, :user:TimMenninger, and :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:2213, :issue:10725.

  • Added client middleware support -- by :user:bdraco and :user:Dreamsorcerer.

    This change allows users to add middleware to the client session and requests, enabling features like
    authentication, logging, and request/response modification without modifying the core
    request logic. Additionally, the session attribute was added to ClientRequest,
    allowing middleware to access the session for making additional requests.

    Related issues and pull requests on GitHub:
    :issue:9732, :issue:10902, :issue:10945, :issue:10952, :issue:10959, :issue:10968.

  • Allow user setting zlib compression backend -- by :user:TimMenninger

    This change allows the user to call :func:aiohttp.set_zlib_backend() with the
    zlib compression module of their choice. Default behavior continues to use
    the builtin zlib library.

    Related issues and pull requests on GitHub:
    :issue:9798.

  • Added support for overriding the base URL with an absolute one in client sessions
    -- by :user:vivodi.

    Related issues and pull requests on GitHub:
    :issue:10074.

  • Added host parameter to aiohttp_server fixture -- by :user:christianwbrock.

    Related issues and pull requests on GitHub:
    :issue:10120.

  • Detect blocking calls in coroutines using BlockBuster -- by :user:cbornet.

    Related issues and pull requests on GitHub:
    :issue:10433.

  • Added socket_factory to :py:class:aiohttp.TCPConnector to allow specifying custom socket options
    -- by :user:TimMenninger.

    Related issues and pull requests on GitHub:
    :issue:10474, :issue:10520, :issue:10961, :issue:10962.

  • Started building armv7l manylinux wheels -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10797.

  • Implemented shared DNS resolver management to fix excessive resolver object creation
    when using multiple client sessions. The new _DNSResolverManager singleton ensures
    only one DNSResolver object is created for default configurations, significantly
    reducing resource usage and improving performance for applications using multiple
    client sessions simultaneously -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10847, :issue:10923, :issue:10946.

  • Upgraded to LLHTTP 9.3.0 -- by :user:Dreamsorcerer.

    Related issues and pull requests on GitHub:
    :issue:10972.

  • Optimized small HTTP requests/responses by coalescing headers and body into a single TCP packet -- by :user:bdraco.

    This change enhances network efficiency by reducing the number of packets sent for small HTTP payloads, improving latency and reducing overhead. Most importantly, this fixes compatibility with memory-constrained IoT devices that can only perform a single read operation and expect HTTP requests in one packet. The optimization uses zero-copy writelines when coalescing data and works with both regular and chunked transfer encoding.

    When aiohttp uses client middleware to communicate with an aiohttp server, connection reuse is more likely to occur since complete responses arrive in a single packet for small payloads.

    This aligns aiohttp with other popular HTTP clients that already coalesce small requests.

    Related issues and pull requests on GitHub:
    :issue:10991.

Improved documentation

  • Improved documentation for middleware by adding warnings and examples about
    request body stream consumption. The documentation now clearly explains that
    request body streams can only be read once and provides best practices for
    sharing parsed request data between middleware and handlers -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:2914.

Packaging updates and notes for downstreams

  • Removed non SPDX-license description from setup.cfg -- by :user:devanshu-ziphq.

    Related issues and pull requests on GitHub:
    :issue:10662.

  • Added support for building against system llhttp library -- by :user:mgorny.

    This change adds support for :envvar:AIOHTTP_USE_SYSTEM_DEPS environment variable that
    can be used to build aiohttp against the system install of the llhttp library rather
    than the vendored one.

    Related issues and pull requests on GitHub:
    :issue:10759.

  • aiodns is now installed on Windows with speedups extra -- by :user:bdraco.

    As of aiodns 3.3.0, SelectorEventLoop is no longer required when using pycares 4.7.0 or later.

    Related issues and pull requests on GitHub:
    :issue:10823.

  • Fixed compatibility issue with Cython 3.1.1 -- by :user:bdraco

    Related issues and pull requests on GitHub:
    :issue:10877.

Contributor-facing changes

  • Sped up tests by disabling blockbuster fixture for test_static_file_huge and test_static_file_huge_cancel tests -- by :user:dikos1337.

    Related issues and pull requests on GitHub:
    :issue:9705, :issue:10761.

  • Updated tests to avoid using deprecated :py:mod:asyncio policy APIs and
    make it compatible with Python 3.14.

    Related issues and pull requests on GitHub:
    :issue:10851.

  • Added Winloop to test suite to support in the future -- by :user:Vizonex.

    Related issues and pull requests on GitHub:
    :issue:10922.

Miscellaneous internal changes

  • Added support for the partitioned attribute in the set_cookie method.

    Related issues and pull requests on GitHub:
    :issue:9870.

  • Setting :attr:aiohttp.web.StreamResponse.last_modified to an unsupported type will now raise :exc:TypeError instead of silently failing -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10146.


v3.11.18

Compare Source

====================

Bug fixes

  • Disabled TLS in TLS warning (when using HTTPS proxies) for uvloop and newer Python versions -- by :user:lezgomatt.

    Related issues and pull requests on GitHub:
    :issue:7686.

  • Fixed reading fragmented WebSocket messages when the payload was masked -- by :user:bdraco.

    The problem first appeared in 3.11.17

    Related issues and pull requests on GitHub:
    :issue:10764.


v3.11.17

Compare Source

====================

Miscellaneous internal changes

  • Optimized web server performance when access logging is disabled by reducing time syscalls -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10713.

  • Improved web server performance when connection can be reused -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10714.

  • Improved performance of the WebSocket reader -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10740.

  • Improved performance of the WebSocket reader with large messages -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10744.


v3.11.16

Compare Source

====================

Bug fixes

  • Replaced deprecated asyncio.iscoroutinefunction with its counterpart from inspect
    -- by :user:layday.

    Related issues and pull requests on GitHub:
    :issue:10634.

  • Fixed :class:multidict.CIMultiDict being mutated when passed to :class:aiohttp.web.Response -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10672.


v3.11.15

Compare Source

====================

Bug fixes

  • Reverted explicitly closing sockets if an exception is raised during create_connection -- by :user:bdraco.

    This change originally appeared in aiohttp 3.11.13

    Related issues and pull requests on GitHub:
    :issue:10464, :issue:10617, :issue:10656.

Miscellaneous internal changes

  • Improved performance of WebSocket buffer handling -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10601.

  • Improved performance of serializing headers -- by :user:bdraco.

    Related issues and pull requests on GitHub:
    :issue:10625.


boto/boto3 (boto3)

v1.38.24

Compare Source

=======

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

v1.38.23

Compare Source

=======

  • 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

v1.38.22

Compare Source

=======

  • 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

v1.38.21

Compare Source

=======

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

v1.38.20

Compare Source

=======

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

v1.38.19

Compare Source

=======

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

v1.38.18

Compare Source

=======

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

v1.38.17

Compare Source

=======

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

v1.38.16

Compare Source

=======

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

v1.38.15

Compare Source

=======

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

v1.38.14

Compare Source

=======

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

v1.38.13

Compare Source

=======

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

v1.38.12

Compare Source

=======

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

v1.38.11

Compare Source

=======

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

v1.38.10

Compare Source

=======

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

v1.38.9

Compare Source

======

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

v1.38.8

Compare Source

======

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

v1.38.7

Compare Source

======

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

v1.38.6

Compare Source

======

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

v1.38.5

Compare Source

======

  • 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

v1.38.4

Compare Source

======

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

v1.38.3

Compare Source

======

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

v1.38.2

Compare Source

======

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

v1.38.1

Compare Source

=======

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

v1.38.0

Compare Source

======

  • 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

v1.37.38

Compare Source

=======

  • 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 CreateDeliv

Configuration

📅 Schedule: Branch creation - "before 7am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added dependencies Pull requests that update a dependency file noChangelog labels May 19, 2025
@renovate renovate bot force-pushed the renovate/python-dependencies branch 18 times, most recently from b802580 to d978955 Compare May 25, 2025 02:22
@renovate renovate bot force-pushed the renovate/python-dependencies branch 8 times, most recently from 22aca7f to 82d8280 Compare May 27, 2025 17:14
@lebaudantoine lebaudantoine force-pushed the main branch 2 times, most recently from 97f102d to b692314 Compare May 27, 2025 19:27
@renovate renovate bot force-pushed the renovate/python-dependencies branch 3 times, most recently from 2cfee19 to 6da065f Compare May 27, 2025 23:00
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 6da065f to bbee8be Compare May 28, 2025 06:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file noChangelog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants