Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps the pip group with 15 updates in the / directory:

Package From To
django 4.2.23 4.2.24
stripe 4.2.0 13.0.0
google-auth 1.35.0 2.41.1
google-api-python-client 1.12.11 2.183.0
django-webpack5-loader 0.8.5 0.9.1
django-extensions 3.2.3 4.1
whitenoise 6.9.0 6.11.0
lxml 6.0.0 6.0.2
pytz 2023.4 2025.2
black 24.10.0 25.9.0
pre-commit 2.21.0 4.3.0
seleniumbase 4.40.8 4.41.1
websockets 10.3 15.0.1
poetry 2.1.4 2.2.1
uvicorn 0.18.3 0.37.0

Updates django from 4.2.23 to 4.2.24

Commits
  • 5e23d89 [4.2.x] Bumped version for 4.2.24 release.
  • 31334e6 [4.2.x] Fixed CVE-2025-57833 -- Protected FilteredRelation against SQL inject...
  • d5860d5 [4.2.x] Added stub release notes and release date for 4.2.24.
  • c3f9871 [4.2.x] Fixed #36499 -- Adjusted utils_tests.test_html.TestUtilsHtml.test_str...
  • 2a79837 [4.2.x] Fixed test_utils.tests.HTMLEqualTests.test_parsing_errors following P...
  • 7335a1a [4.2.x] Refs #36535 -- Doc'd that docutils < 0.22 is required.
  • 591b23a [4.2.x] Fixed GitHub Action that checks commit prefixes to fetch PR head corr...
  • 0c9ab35 [4.2.x] Added GitHub Action to enforce stable branch commit message prefix.
  • 8293b0f [4.2.x] Added follow-up to CVE-2025-48432 to security archive.
  • bc4d96c [4.2.x] Post-release version bump.
  • See full diff in compare view

Updates stripe from 4.2.0 to 13.0.0

Release notes

Sourced from stripe's releases.

v13.0.0

This release changes the pinned API version to 2025-09-30.clover and contains breaking changes (prefixed with ⚠️ below)

  • #1604 Fixed InvoiceLineItem method definition
    • ⚠️ InvoiceLineItem.modify and InvoiceLineItem.modify_async now require invoice and line_item_id as method parameters.
      • Removed InvoiceLineItem.ModifyParam class. Use a typing.dict to type hint instead.
  • #1538 ⚠️ Add strongly typed EventNotifications We've overhauled how V2 Events are handled in the SDK! This approach should provide a lot more information at authoring and compile time, leading to more robust integrations. As part of this process, there are a number of changes to be aware of.
    • Added matching EventNotification classes to every v2 Event. For example, there's now a V1BillingMeterErrorReportTriggeredEventNotification to match the existing V1BillingMeterErrorReportTriggeredEvent. Each notification class defines a fetch_event() method to retrieve its corresponding event. For events with related objects, there's a fetch_related_object() method that performs the API call and casts the response to the correct type.
    • ⚠️ Rename function StripeClient.parse_thin_event to StripeClient.parse_event_notification and remove the Stripe.ThinEvent class.
      • This function now returns a stripe.v2.core.EventNotification (which is the shared base class that all of the more specific stripe.events.*EventNotification classes share) instead of Stripe.ThinEvent. When applicable, these event notifications will have the related_object property and a fetch_related_object() function. They also have a fetch_() method to retrieve their corresponding stripe.events.*Event instance.
      • If you parse an event the SDK doesn't have types for (e.g. it's newer than the SDK you're using), you'll get an instance of Stripe.Events.UnknownEventNotification instead of a more specific type. It has both the relatedObject property and the FetchRelatedObject() function (but they may be/return null)
  • #1602 Move V2.Event API resources to V2.Core.Events
    • ⚠️ Move stripe.v2._event and stripe.v2._event_destination to stripe.v2.core._event and stripe.v2.core._event_destination respectively. They now correctly match their API path
  • #1589 Add StripeContext object
    • Add the StripeContext class. Previously, one could only pass a string for stripe_context. You can now use the new class as well.
    • ⚠️ Change EventNotification (formerly known as ThinEvent)'s context property from string to StripeContext
  • #1565 ⚠️ Build SDK w/ V2 OpenAPI spec
    • ⚠️ The delete methods for v2 APIs (the ones in the StripeClient.v2 namespace) now return a V2DeletedObject which has the id of the object that has been deleted and a string representing the type of the object that has been deleted.
    • ⚠️ Deeply nested param hashes with no properties no longer have classes generated for them. Instead, they're typed as Dict[str, Any]. Because there were no params, it's unlikely you were using these classes.
  • #1569 Renamed Urllib2Client to UrllibClient
    • ⚠️ Rename http_client.Urllib2Client to http_client.UrllibClient as Python urllib2 was renamed to urllib in Python 3.
  • #1606 ⚠️ drop support for Python 3.6 & clarify version policy
    • Read our new language version support policy
      • ⚠️ In this release, we drop support for Python 3.6
      • Support for Python 3.7 is deprecated and will be removed in the next scheduled major release (March 2026)
  • #1596 ⚠️ Unify resource and service method parameters into one class
    • ⚠️ Resource and service request parameter types have been moved to the top-level and are shared, prepended with their related resource/service
      • For example, _stripe._account.Account.CreateParams and _stripe._account_service.CreateParams have moved to _stripe.params._account_create_params.AccountCreateParams
      • This change only affects users who explicitly refer to params types. No migration is necessary for users otherwise
  • #1572 migrate from setup.py to pyproject.toml
    • ⚠️ The package has swapped from setup.py to pyproject.toml. As a result, we're dropping support for pip < 10.0.0 (released April 2018).
    • Additionally, we're no longer shipping tests or examples in our sdist now, which should offer a small size reduction for the package if installed without the wheel (approx. 2.5MB unzipped)
  • #1570 Don't use mutable default arguments
    • Service methods now correctly set None as the default function argument instead of {}
  • ⚠️ Deprecated the V1 service accessors living directly under StripeClient(e.g. customers, products) as they were copied under the new V1 service in our last release. Service accessors living directly under StripeClient(e.g. customers, products) will be removed from StripeClient in a future release. E.g.
    client = StripeClient("sk_test...")
    Accessing V1 Stripe services on a StripeClient should be through the V1 namespace
    
    client.customers.list()
    
    
    client.v1.customers.list()
    Refer to the migration guide for help upgrading.
  • #1603 ⚠️ Remove deprecated compatibility exports
    • ⚠️ Removed deprecated module shims. They've long been available in the stripe module directly; now that's the only place to import them. Specifically, we removed:
      • stripe.stripe_response
      • stripe.stripe_object
      • stripe.error_object
      • stripe.error
  • ... (truncated)

    Changelog

    Sourced from stripe's changelog.

    13.0.0 - 2025-09-30

    This release changes the pinned API version to 2025-09-30.clover and contains breaking changes (prefixed with ⚠️ below)

    • #1604 Fixed InvoiceLineItem method definition
      • ⚠️ InvoiceLineItem.modify and InvoiceLineItem.modify_async now require invoice and line_item_id as method parameters.
        • Removed InvoiceLineItem.ModifyParam class. Use a typing.dict to type hint instead.
    • #1538 ⚠️ Add strongly typed EventNotifications We've overhauled how V2 Events are handled in the SDK! This approach should provide a lot more information at authoring and compile time, leading to more robust integrations. As part of this process, there are a number of changes to be aware of.
      • Added matching EventNotification classes to every v2 Event. For example, there's now a V1BillingMeterErrorReportTriggeredEventNotification to match the existing V1BillingMeterErrorReportTriggeredEvent. Each notification class defines a fetch_event() method to retrieve its corresponding event. For events with related objects, there's a fetch_related_object() method that performs the API call and casts the response to the correct type.
      • ⚠️ Rename function StripeClient.parse_thin_event to StripeClient.parse_event_notification and remove the Stripe.ThinEvent class.
        • This function now returns a stripe.v2.core.EventNotification (which is the shared base class that all of the more specific stripe.events.*EventNotification classes share) instead of Stripe.ThinEvent. When applicable, these event notifications will have the related_object property and a fetch_related_object() function. They also have a fetch_() method to retrieve their corresponding stripe.events.*Event instance.
        • If you parse an event the SDK doesn't have types for (e.g. it's newer than the SDK you're using), you'll get an instance of Stripe.Events.UnknownEventNotification instead of a more specific type. It has both the relatedObject property and the FetchRelatedObject() function (but they may be/return null)
    • #1602 Move V2.Event API resources to V2.Core.Events
      • ⚠️ Move stripe.v2._event and stripe.v2._event_destination to stripe.v2.core._event and stripe.v2.core._event_destination respectively. They now correctly match their API path
    • #1589 Add StripeContext object
      • Add the StripeContext class. Previously, one could only pass a string for stripe_context. You can now use the new class as well.
      • ⚠️ Change EventNotification (formerly known as ThinEvent)'s context property from string to StripeContext
    • #1565 ⚠️ Build SDK w/ V2 OpenAPI spec
      • ⚠️ The delete methods for v2 APIs (the ones in the StripeClient.v2 namespace) now return a V2DeletedObject which has the id of the object that has been deleted and a string representing the type of the object that has been deleted.
      • ⚠️ Deeply nested param hashes with no properties no longer have classes generated for them. Instead, they're typed as Dict[str, Any]. Because there were no params, it's unlikely you were using these classes.
    • #1569 Renamed Urllib2Client to UrllibClient
      • ⚠️ Rename http_client.Urllib2Client to http_client.UrllibClient as Python urllib2 was renamed to urllib in Python 3.
    • #1606 ⚠️ drop support for Python 3.6 & clarify version policy
      • Read our new language version support policy
        • ⚠️ In this release, we drop support for Python 3.6
        • Support for Python 3.7 is deprecated and will be removed in the next scheduled major release (March 2026)
    • #1596 ⚠️ Unify resource and service method parameters into one class
      • ⚠️ Resource and service request parameter types have been moved to the top-level and are shared, prepended with their related resource/service
        • For example, _stripe._account.Account.CreateParams and _stripe._account_service.CreateParams have moved to _stripe.params._account_create_params.AccountCreateParams
        • This change only affects users who explicitly refer to params types. No migration is necessary for users otherwise
    • #1572 migrate from setup.py to pyproject.toml
      • ⚠️ The package has swapped from setup.py to pyproject.toml. As a result, we're dropping support for pip < 10.0.0 (released April 2018).
      • Additionally, we're no longer shipping tests or examples in our sdist now, which should offer a small size reduction for the package if installed without the wheel (approx. 2.5MB unzipped)
    • #1570 Don't use mutable default arguments
      • Service methods now correctly set None as the default function argument instead of {}
    • ⚠️ Deprecated the V1 service accessors living directly under StripeClient(e.g. customers, products) as they were copied under the new V1 service in our last release. Service accessors living directly under StripeClient(e.g. customers, products) will be removed from StripeClient in a future release. E.g.
      client = StripeClient("sk_test...")
      Accessing V1 Stripe services on a StripeClient should be through the V1 namespace
      
      client.customers.list()
      
      
      client.v1.customers.list()
      Refer to the migration guide for help upgrading.
  • #1603 ⚠️ Remove deprecated compatibility exports
    • ⚠️ Removed deprecated module shims. They've long been available in the stripe module directly; now that's the only place to import them. Specifically, we removed:
      • stripe.stripe_response
      • stripe.stripe_object
      • stripe.error_object
      • stripe.error
  • ... (truncated)

    Commits

    Updates google-auth from 1.35.0 to 2.41.1

    Release notes

    Sourced from google-auth's releases.

    v2.41.1

    2.41.1 (2025-09-30)

    Bug Fixes

    v2.41.0

    2.41.0 (2025-09-29)

    Features

    • Add support for cachetools 6.0 (#1773) (af18060)
    • Add trust boundary support for service accounts and impersonation. (#1778) (99be2ce)

    Bug Fixes

    Documentation

    • Update user guide to include x509 feature. (#1802) (2d89ab4)

    v2.40.3

    2.40.3 (2025-06-04)

    Bug Fixes

    v2.40.2

    2.40.2 (2025-05-21)

    Bug Fixes

    • Remove sync response logs in AuthorizedSession (97ed1c8)
    • Update test to consider new error message from cryptography (#1765) (44e38b6)

    v2.40.1

    2.40.1 (2025-05-06)

    ... (truncated)

    Changelog

    Sourced from google-auth's changelog.

    2.41.1 (2025-09-30)

    Bug Fixes

    2.41.0 (2025-09-29)

    Features

    • Add support for cachetools 6.0 (#1773) (af18060)
    • Add trust boundary support for service accounts and impersonation. (#1778) (99be2ce)

    Bug Fixes

    Documentation

    • Update user guide to include x509 feature. (#1802) (2d89ab4)

    2.40.3 (2025-06-04)

    Bug Fixes

    2.40.2 (2025-05-21)

    Bug Fixes

    • Remove sync response logs in AuthorizedSession (97ed1c8)
    • Update test to consider new error message from cryptography (#1765) (44e38b6)

    2.40.1 (2025-05-06)

    Bug Fixes

    • Disable logging response body for async logs (#1756) (2f0ddfe)

    ... (truncated)

    Commits

    Updates google-api-python-client from 1.12.11 to 2.183.0

    Release notes

    Sourced from google-api-python-client's releases.

    v2.183.0

    2.183.0 (2025-09-23)

    Features

    v2.182.0

    2.182.0 (2025-09-16)

    Features

    ... (truncated)

    Commits

    Updates django-webpack5-loader from 0.8.5 to 0.9.1

    Commits

    Updates django-extensions from 3.2.3 to 4.1

    Release notes

    Sourced from django-extensions's releases.

    4.1

    What's Changed

    • Add: show_permissions command (#1920)
    • Improvement: graph_models, style per app (#1848)
    • Fix: JSONField, bulk_update's (#1924)

    New Contributors

    Full Changelog: django-extensions/django-extensions@4.0...4.1

    4.0

    What's Changed

    • Improvement: Support for Python 3.12 and 3.13
    • Improvement: Support for Django 5.x
    • Improvement: Switch from setup.{cfg,py} to pyproject.toml
    • Improvement: graph_models, Add option to display field choices in graph_models (#1854)
    • Improvement: graph_models, Add webp support (#1857)
    • Improvement: graph_models, Support for ordering edges on pydot/dot/graphviz (#1914)
    • Improvement: mail_debug, Update mail_debug command to use aiosmtpd (#1880)
    • Improvement: shell_plus, Improve error message for missing import (#1898)
    • Improvement: reset_db, Add reset_db support for django_tenants (#1855)
    • Improvement: docs, various improvements (#1852, #1888, #1882, #1901, #1912, #1913)
    • Improvement: jobs, Handle non-package modules when looking for job definitions (#1887)
    • Improvement: Add django-prometheus DB backends support (#1800)
    • Improvement: Call post_command when the command raises an unhandled exception (#1837)
    • Fix: sqldiff, do not consider ('serial', 'integer') nor ('bigserial', 'bigint') as a field-type-differ (#1867)
    • Fix: shell_plus, Fix start up order and add history (#1869)
    • Remove pipchecker and associated tests (#1906)
    • Following Django's release numbering style more closely (see https://docs.djangoproject.com/en/5.2/internals/release-process/ )

    New Contributors

    Full Changelog: django-extensions/django-extensions@3.2.3...4.0

    3.2.4b1

    ... (truncated)

    Changelog

    Sourced from django-extensions's changelog.

    4.1

    Changes:

    • Add: show_permissions command (#1920)
    • Improvement: graph_models, style per app (#1848)
    • Fix: JSONField, bulk_update's (#1924)

    4.0

    Changes:

    • Improvement: Support for Python 3.12 and 3.13
    • Improvement: Support for Django 5.x
    • Improvement: Switch from setup.{cfg,py} to pyproject.toml
    • Improvement: graph_models, Add option to display field choices in graph_models (#1854)
    • Improvement: graph_models, Add webp support (#1857)
    • Improvement: graph_models, Support for ordering edges on pydot/dot/graphviz (#1914)
    • Improvement: mail_debug, Update mail_debug command to use aiosmtpd (#1880)
    • Improvement: shell_plus, Improve error message for missing import (#1898)
    • Improvement: reset_db, Add reset_db support for django_tenants (#1855)
    • Improvement: docs, various improvements (#1852, #1888, #1882, #1901, #1912, #1913)
    • Improvement: jobs, Handle non-package modules when looking for job definitions (#1887)
    • Improvement: Add django-prometheus DB backends support (#1800)
    • Improvement: Call post_command when the command raises an unhandled exception (#1837)
    • Fix: sqldiff, do not consider ('serial', 'integer') nor ('bigserial', 'bigint') as a field-type-differ (#1867)
    • Fix: shell_plus, Fix start up order and add history (#1869)
    • Remove pipchecker and associated tests (#1906)
    • Following Django's release numbering style more closely (see https://docs.djangoproject.com/en/5.2/internals/release-process/ )
    Commits

    Bumps the pip group with 15 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [django](https://github.com/django/django) | `4.2.23` | `4.2.24` |
    | [stripe](https://github.com/stripe/stripe-python) | `4.2.0` | `13.0.0` |
    | [google-auth](https://github.com/googleapis/google-auth-library-python) | `1.35.0` | `2.41.1` |
    | [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `1.12.11` | `2.183.0` |
    | [django-webpack5-loader](https://github.com/MrP01/django-webpack-loader) | `0.8.5` | `0.9.1` |
    | [django-extensions](https://github.com/django-extensions/django-extensions) | `3.2.3` | `4.1` |
    | [whitenoise](https://github.com/evansd/whitenoise) | `6.9.0` | `6.11.0` |
    | [lxml](https://github.com/lxml/lxml) | `6.0.0` | `6.0.2` |
    | [pytz](https://github.com/stub42/pytz) | `2023.4` | `2025.2` |
    | [black](https://github.com/psf/black) | `24.10.0` | `25.9.0` |
    | [pre-commit](https://github.com/pre-commit/pre-commit) | `2.21.0` | `4.3.0` |
    | [seleniumbase](https://github.com/seleniumbase/SeleniumBase) | `4.40.8` | `4.41.1` |
    | [websockets](https://github.com/python-websockets/websockets) | `10.3` | `15.0.1` |
    | [poetry](https://github.com/python-poetry/poetry) | `2.1.4` | `2.2.1` |
    | [uvicorn](https://github.com/Kludex/uvicorn) | `0.18.3` | `0.37.0` |
    
    
    
    Updates `django` from 4.2.23 to 4.2.24
    - [Commits](django/django@4.2.23...4.2.24)
    
    Updates `stripe` from 4.2.0 to 13.0.0
    - [Release notes](https://github.com/stripe/stripe-python/releases)
    - [Changelog](https://github.com/stripe/stripe-python/blob/master/CHANGELOG.md)
    - [Commits](stripe/stripe-python@v4.2.0...v13.0.0)
    
    Updates `google-auth` from 1.35.0 to 2.41.1
    - [Release notes](https://github.com/googleapis/google-auth-library-python/releases)
    - [Changelog](https://github.com/googleapis/google-auth-library-python/blob/main/CHANGELOG.md)
    - [Commits](googleapis/google-auth-library-python@v1.35.0...v2.41.1)
    
    Updates `google-api-python-client` from 1.12.11 to 2.183.0
    - [Release notes](https://github.com/googleapis/google-api-python-client/releases)
    - [Commits](googleapis/google-api-python-client@v1.12.11...v2.183.0)
    
    Updates `django-webpack5-loader` from 0.8.5 to 0.9.1
    - [Changelog](https://github.com/MrP01/django-webpack-loader/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/MrP01/django-webpack-loader/commits)
    
    Updates `django-extensions` from 3.2.3 to 4.1
    - [Release notes](https://github.com/django-extensions/django-extensions/releases)
    - [Changelog](https://github.com/django-extensions/django-extensions/blob/main/CHANGELOG.md)
    - [Commits](django-extensions/django-extensions@3.2.3...4.1)
    
    Updates `whitenoise` from 6.9.0 to 6.11.0
    - [Changelog](https://github.com/evansd/whitenoise/blob/main/docs/changelog.rst)
    - [Commits](evansd/whitenoise@6.9.0...6.11.0)
    
    Updates `lxml` from 6.0.0 to 6.0.2
    - [Release notes](https://github.com/lxml/lxml/releases)
    - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt)
    - [Commits](lxml/lxml@lxml-6.0.0...lxml-6.0.2)
    
    Updates `pytz` from 2023.4 to 2025.2
    - [Release notes](https://github.com/stub42/pytz/releases)
    - [Commits](stub42/pytz@release_2023.4...release_2025.2)
    
    Updates `black` from 24.10.0 to 25.9.0
    - [Release notes](https://github.com/psf/black/releases)
    - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
    - [Commits](psf/black@24.10.0...25.9.0)
    
    Updates `pre-commit` from 2.21.0 to 4.3.0
    - [Release notes](https://github.com/pre-commit/pre-commit/releases)
    - [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
    - [Commits](pre-commit/pre-commit@v2.21.0...v4.3.0)
    
    Updates `seleniumbase` from 4.40.8 to 4.41.1
    - [Release notes](https://github.com/seleniumbase/SeleniumBase/releases)
    - [Changelog](https://github.com/seleniumbase/SeleniumBase/blob/master/CHANGELOG.md)
    - [Commits](seleniumbase/SeleniumBase@v4.40.8...v4.41.1)
    
    Updates `websockets` from 10.3 to 15.0.1
    - [Release notes](https://github.com/python-websockets/websockets/releases)
    - [Commits](python-websockets/websockets@10.3...15.0.1)
    
    Updates `poetry` from 2.1.4 to 2.2.1
    - [Release notes](https://github.com/python-poetry/poetry/releases)
    - [Changelog](https://github.com/python-poetry/poetry/blob/main/CHANGELOG.md)
    - [Commits](python-poetry/poetry@2.1.4...2.2.1)
    
    Updates `uvicorn` from 0.18.3 to 0.37.0
    - [Release notes](https://github.com/Kludex/uvicorn/releases)
    - [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md)
    - [Commits](Kludex/uvicorn@0.18.3...0.37.0)
    
    ---
    updated-dependencies:
    - dependency-name: django
      dependency-version: 4.2.24
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: pip
    - dependency-name: stripe
      dependency-version: 13.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: pip
    - dependency-name: google-auth
      dependency-version: 2.41.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: pip
    - dependency-name: google-api-python-client
      dependency-version: 2.183.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: pip
    - dependency-name: django-webpack5-loader
      dependency-version: 0.9.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: pip
    - dependency-name: django-extensions
      dependency-version: '4.1'
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: pip
    - dependency-name: whitenoise
      dependency-version: 6.11.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: pip
    - dependency-name: lxml
      dependency-version: 6.0.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: pip
    - dependency-name: pytz
      dependency-version: '2025.2'
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: pip
    - dependency-name: black
      dependency-version: 25.9.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: pip
    - dependency-name: pre-commit
      dependency-version: 4.3.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: pip
    - dependency-name: seleniumbase
      dependency-version: 4.41.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: pip
    - dependency-name: websockets
      dependency-version: 15.0.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: pip
    - dependency-name: poetry
      dependency-version: 2.2.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: pip
    - dependency-name: uvicorn
      dependency-version: 0.37.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: pip
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 1, 2025
    @dependabot @github
    Copy link
    Contributor Author

    dependabot bot commented on behalf of github Dec 1, 2025

    Looks like these dependencies are updatable in another way, so this is no longer needed.

    @dependabot dependabot bot closed this Dec 1, 2025
    @dependabot dependabot bot deleted the dependabot/pip/pip-0ff39a3751 branch December 1, 2025 16:07
    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 python Pull requests that update Python code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    1 participant