Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
django 4.2.23 4.2.26
django-countries 7.6.1 8.2.0
stripe 4.2.0 14.0.1
google-auth 1.35.0 2.43.0
google-api-python-client 1.12.11 2.187.0
django-webpack5-loader 0.8.5 0.9.1
django-extensions 3.2.3 4.1
channels 4.3.1 4.3.2
whitenoise 6.9.0 6.11.0
lxml 6.0.0 6.0.2
pytz 2023.4 2025.2
black 24.10.0 25.11.0
pre-commit 2.21.0 4.5.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.38.0

Updates django from 4.2.23 to 4.2.26

Commits
  • 0dfd59e [4.2.x] Bumped version for 4.2.26 release.
  • 279f8b9 [4.2.x] Refs CVE-2025-64459 -- Avoided propagating invalid arguments to Q on ...
  • 59ae82e [4.2.x] Fixed CVE-2025-64459 -- Prevented SQL injections in Q/QuerySet via th...
  • 770eea3 [4.2.x] Fixed CVE-2025-64458 -- Mitigated potential DoS in HttpResponseRedire...
  • 80976bd [4.2.x] Skipped test_compressed_file_based_raster_creation() test on GDAL 3.5+.
  • 7838add [4.2.x] Fixed RelatedGeoModelTest.test_related_union_aggregate() crash on Pyt...
  • 1b50da7 [4.2.x] Added stub release notes and release date for 4.2.26.
  • cd3b21b [4.2.x] Made RemoteTestResultTest.test_pickle_errors_detection() compatible w...
  • 321af48 [4.2.x] Fixed RelatedGeoModelTest.test_related_union_aggregate() test on Orac...
  • 0f6ee3e [4.2.x] Rewrapped security archive at 79 chars.
  • Additional commits viewable in compare view

Updates django-countries from 7.6.1 to 8.2.0

Changelog

Sourced from django-countries's changelog.

8.2.0 (25 November 2025)

Features

  • Add django_countries.django_filters.CountryFilter for django-filters integration with support for custom empty_label. This filter automatically sets country choices and seamlessly integrates with django-filters FilterSets, making it easier to add country filtering to your views. (#307)

  • Enable CountryFieldMixin to accept name_only, country_dict, and output customization options via Meta.extra_kwargs. You can now configure country field serialization behavior without explicitly declaring serializer fields, making it easier to customize output for both single and multiple country fields. (#414)

  • CountryField(country_dict=...) now accepts either a boolean (existing behaviour) or an iterable/string of keys so you can control exactly which values appear in the serialized country dict (for example ("code", "name", "alpha3") or just "alpha3"). (#416)

  • Add COUNTRIES_FIRST_BY_LANGUAGE and COUNTRIES_FIRST_AUTO_DETECT settings for dynamic country ordering based on user language. Countries can now be automatically reordered based on the current language, with locale-based auto-detection (e.g., fr-CA users see Canada prepended to the French country group). (#418)

  • Add support for custom flag_url in COUNTRIES_OVERRIDE setting. You can now specify a custom flag URL for overridden countries:

    COUNTRIES_OVERRIDE = {
        "IND": {
            "names": ["Indonesia"],
            "ioc_code": "INA",
            "flag_url": "flags/id.gif",
        },
    }

    This is particularly useful when using custom country codes that need to reference existing flag images. (#449)

  • Add countries_context() context manager for temporary, thread-local override of country configuration options. Supports all country options (first, only, first_sort, first_repeat, first_break, first_by_language, first_auto_detect), enabling per-request customization based on user preferences, IP geolocation, or other dynamic factors. Each option independently overrides its corresponding setting with the highest priority.

Bugfixes

  • Fix CountryField serializer to respect current language when deserializing localized country names. The field now automatically uses Django's get_language() to detect the active language and falls back to English if the country name is not found in the current language. (#407)
  • Fixed CountryFilter to support filtering on CountryField through relations (e.g., list_filter = [("contact__country", CountryFilter)]). Previously this would fail with a FieldError. (#432)
  • Fixed CountryFilter admin filter to work correctly with CountryField(multiple=True). The filter now uses the __contains lookup instead of exact matching to properly find records where the selected country appears in the comma-separated country list. (#445)
  • Added support for empty_label parameter in CountryField.formfield() to customize the blank choice label in form fields. This allows using empty_label="" for an empty label or empty_label="Custom text" for custom text, resolving the issue where empty_label was previously ignored. (#466)
  • Fixed type annotation for CountryField.countries parameter in stub file to accept type[Countries] instead of Countries instance, resolving mypy errors when using custom Countries subclasses. Also removed unnecessary exclusion of tests from mypy checking. (#482)

Misc

  • Refactored deployment script from bash (244 lines) to Python using click for better maintainability and testability. The script is now in scripts/deploy.py with these improvements:

    • Interactive mode: Run just deploy without arguments to get an interactive prompt showing version options (e.g., "8.1.1 → 8.2.0")
    • Enhanced dry-run: DRY_RUN=1 now validates package builds, documentation builds, runs pre-commit checks, shows full changelog preview, checks PyPI for existing versions, displays translation status, and checks for uncommitted changes (same as real run)
    • Comprehensive summary: Shows a detailed list of completed steps at the end of each run
    • Allow dirty: --allow-dirty flag to bypass git status check when needed (not recommended for production)
    • Better error handling: Clear error messages with proper exception types
    • Colorful output: Uses click's styling for better readability

8.1.1 (18 November 2025)

Bugfixes

  • Fixed CountryField(multiple=True) not marking selected options in Django forms. (#480)

... (truncated)

Commits
  • e40f591 Preparing release 8.2.0
  • 6ee30f8 Update English translation source file
  • 2b43e3d Fix CountryFilter to support filtering through relations (issue #432)
  • 6917e2a Fix legacy test compatibility and achieve 100% test coverage
  • 3b47112 Add browser language detection tests for COUNTRIES_FIRST_AUTO_DETECT
  • 7bfef7e Fix test_dynamic_first tests to skip when i18n is disabled
  • 6a8389b Add .pre-commit-cache/ to .gitignore
  • 04def8c Add deploy_docs command and standardize version markers
  • a3eaa92 Add documentation guidance for version markers in CLAUDE.md
  • 7994bbe Update documentation for deployment script and reset version markers
  • Additional commits viewable in compare view

Updates stripe from 4.2.0 to 14.0.1

Release notes

Sourced from stripe's releases.

v14.0.1

  • #1684 Update generated code
    • stripe.error module is now accessible globally. Fixes #1682
  • #1681 Throw a specific error when accessing payment_intent property on Invoice object to ease debugging.

See the changelog for more details.

v14.0.0

This release changes the pinned API version to 2025-11-17.clover.

  • #1673 Update generated code
    • ⚠️ Remove support for gt, gte, lt, and lte on v2.core.EventListParams in favor of created.
  • #1669 Update v2 array parameter serialization to use indexed format
    • Retrieve and List calls for /v2 endpoints now use indexed format (e.g., ?include[0]=foo&include[1]=bar) instead of repeated parameter format (e.g., ?include=foo&include=bar) when communicating with the Stripe API. This may break any unit tests that expect the latter behavior when setting up a mock server. Instead, they should now expect the former.
  • #1667 Update generated code
    • Add support for new resources tax.Association and terminal.OnboardingLink
    • Add support for find method on resource tax.Association
    • Add support for create method on resource terminal.OnboardingLink
    • Add support for payment_method_configuration on BillingPortal.Configuration.Feature.PaymentMethodUpdate
    • Add support for transaction_id on Charge.PaymentMethodDetail.Ideal, PaymentAttemptRecord.PaymentMethodDetail.Ideal, and PaymentRecord.PaymentMethodDetail.Ideal
    • Add support for new value finom on enums Charge.PaymentMethodDetail.Ideal.bank, ConfirmationToken.PaymentMethodPreview.Ideal.bank, ConfirmationTokenCreateParamsPaymentMethodDatumIdeal.bank, PaymentAttemptRecord.PaymentMethodDetail.Ideal.bank, PaymentIntentConfirmParamsPaymentMethodDatumIdeal.bank, PaymentIntentCreateParamsPaymentMethodDatumIdeal.bank, PaymentIntentModifyParamsPaymentMethodDatumIdeal.bank, PaymentMethod.Ideal.bank, PaymentMethodCreateParamsIdeal.bank, PaymentRecord.PaymentMethodDetail.Ideal.bank, SetupAttempt.PaymentMethodDetail.Ideal.bank, SetupIntentConfirmParamsPaymentMethodDatumIdeal.bank, SetupIntentCreateParamsPaymentMethodDatumIdeal.bank, and SetupIntentModifyParamsPaymentMethodDatumIdeal.bank
    • Add support for new value FNOMNL22 on enums Charge.PaymentMethodDetail.Ideal.bic, ConfirmationToken.PaymentMethodPreview.Ideal.bic, PaymentAttemptRecord.PaymentMethodDetail.Ideal.bic, PaymentMethod.Ideal.bic, PaymentRecord.PaymentMethodDetail.Ideal.bic, and SetupAttempt.PaymentMethodDetail.Ideal.bic
    • Add support for new value tokenized_account_number_deactivated on enums ConfirmationToken.PaymentMethodPreview.UsBankAccount.StatusDetail.Blocked.reason and PaymentMethod.UsBankAccount.StatusDetail.Blocked.reason
    • Add support for created on CustomerListCustomerBalanceTransactionParams and InvoicePaymentListParams
    • Add support for new values financial_connections.account.account_numbers_updated and financial_connections.account.upcoming_account_number_expiry on enum Event.type
    • Add support for account_numbers on FinancialConnections.Account
    • Change type of FinancialConnections.Session.client_secret from string to nullable(string)
    • Add support for fraud_risk on issuing.AuthorizationCreateParamsRiskAssessment
    • Add support for latest_fraud_warning on Issuing.Card
    • Add support for hooks on PaymentIntentCaptureParams, PaymentIntentConfirmParams, PaymentIntentCreateParams, PaymentIntentIncrementAuthorizationParams, PaymentIntentModifyParams, and PaymentIntent
    • Add support for mb_way and twint on Refund.DestinationDetail
    • Add support for new values financial_connections.account.account_numbers_updated and financial_connections.account.upcoming_account_number_expiry on enums WebhookEndpointCreateParams.enabled_events and WebhookEndpointModifyParams.enabled_events
    • Add support for snapshot events financial_connections.account.account_numbers_updated and financial_connections.account.upcoming_account_number_expiry with resource financial_connections.Account

See the changelog for more details.

v13.3.0a2

This release changes the pinned API version to 2025-10-29.preview.

  • #1672 Update generated code for private-preview
    • Add support for new resource issuing.Program
    • Add support for create, list, modify, and retrieve methods on resource issuing.Program
    • Add support for schedule on Discount
    • Add support for applicable_fees on DelegatedCheckout.RequestedSession.TotalDetail
    • Add support for schedule_details on Invoice.Parent, InvoiceItem.Parent, InvoiceLineItem.Parent, and QuotePreviewInvoice.Parent
    • Add support for new value schedule_details on enum InvoiceItem.Parent.type
    • Add support for billing_schedules on InvoiceCreatePreviewParamsScheduleDetail, QuotePreviewSubscriptionSchedule, SubscriptionScheduleCreateParams, SubscriptionScheduleModifyParams, and SubscriptionSchedule
    • Add support for new value schedule_details on enums Invoice.Parent.type and QuotePreviewInvoice.Parent.type
    • Add support for new value schedule_details on enum InvoiceLineItem.Parent.type
    • Add support for latest_invoice on QuotePreviewSubscriptionSchedule and SubscriptionSchedule

... (truncated)

Changelog

Sourced from stripe's changelog.

14.0.1 - 2025-11-21

  • #1684 Update generated code
    • stripe.error module is now accessible globally. Fixes #1682
  • #1681 Throw a specific error when accessing payment_intent property on Invoice object to ease debugging.

14.0.0 - 2025-11-18

This release changes the pinned API version to 2025-11-17.clover.

  • #1673 Update generated code
    • ⚠️ Remove support for gt, gte, lt, and lte on v2.core.EventListParams in favor of created.
  • #1669 Update v2 array parameter serialization to use indexed format
    • Retrieve and List calls for /v2 endpoints now use indexed format (e.g., ?include[0]=foo&include[1]=bar) instead of repeated parameter format (e.g., ?include=foo&include=bar) when communicating with the Stripe API. This may break any unit tests that expect the latter behavior when setting up a mock server. Instead, they should now expect the former.
  • #1667 Update generated code
    • Add support for new resources tax.Association and terminal.OnboardingLink
    • Add support for find method on resource tax.Association
    • Add support for create method on resource terminal.OnboardingLink
    • Add support for payment_method_configuration on BillingPortal.Configuration.Feature.PaymentMethodUpdate
    • Add support for transaction_id on Charge.PaymentMethodDetail.Ideal, PaymentAttemptRecord.PaymentMethodDetail.Ideal, and PaymentRecord.PaymentMethodDetail.Ideal
    • Add support for new value finom on enums Charge.PaymentMethodDetail.Ideal.bank, ConfirmationToken.PaymentMethodPreview.Ideal.bank, ConfirmationTokenCreateParamsPaymentMethodDatumIdeal.bank, PaymentAttemptRecord.PaymentMethodDetail.Ideal.bank, PaymentIntentConfirmParamsPaymentMethodDatumIdeal.bank, PaymentIntentCreateParamsPaymentMethodDatumIdeal.bank, PaymentIntentModifyParamsPaymentMethodDatumIdeal.bank, PaymentMethod.Ideal.bank, PaymentMethodCreateParamsIdeal.bank, PaymentRecord.PaymentMethodDetail.Ideal.bank, SetupAttempt.PaymentMethodDetail.Ideal.bank, SetupIntentConfirmParamsPaymentMethodDatumIdeal.bank, SetupIntentCreateParamsPaymentMethodDatumIdeal.bank, and SetupIntentModifyParamsPaymentMethodDatumIdeal.bank
    • Add support for new value FNOMNL22 on enums Charge.PaymentMethodDetail.Ideal.bic, ConfirmationToken.PaymentMethodPreview.Ideal.bic, PaymentAttemptRecord.PaymentMethodDetail.Ideal.bic, PaymentMethod.Ideal.bic, PaymentRecord.PaymentMethodDetail.Ideal.bic, and SetupAttempt.PaymentMethodDetail.Ideal.bic
    • Add support for new value tokenized_account_number_deactivated on enums ConfirmationToken.PaymentMethodPreview.UsBankAccount.StatusDetail.Blocked.reason and PaymentMethod.UsBankAccount.StatusDetail.Blocked.reason
    • Add support for created on CustomerListCustomerBalanceTransactionParams and InvoicePaymentListParams
    • Add support for new values financial_connections.account.account_numbers_updated and financial_connections.account.upcoming_account_number_expiry on enum Event.type
    • Add support for account_numbers on FinancialConnections.Account
    • Change type of FinancialConnections.Session.client_secret from string to nullable(string)
    • Add support for fraud_risk on issuing.AuthorizationCreateParamsRiskAssessment
    • Add support for latest_fraud_warning on Issuing.Card
    • Add support for hooks on PaymentIntentCaptureParams, PaymentIntentConfirmParams, PaymentIntentCreateParams, PaymentIntentIncrementAuthorizationParams, PaymentIntentModifyParams, and PaymentIntent
    • Add support for mb_way and twint on Refund.DestinationDetail
    • Add support for new values financial_connections.account.account_numbers_updated and financial_connections.account.upcoming_account_number_expiry on enums WebhookEndpointCreateParams.enabled_events and WebhookEndpointModifyParams.enabled_events
    • Add support for snapshot events financial_connections.account.account_numbers_updated and financial_connections.account.upcoming_account_number_expiry with resource financial_connections.Account

13.2.0 - 2025-11-05

  • #1662 Update generated code
    • Add support for capture_method on PaymentIntent.PaymentMethodOption.CardPresent, PaymentIntentConfirmParamsPaymentMethodOptionCardPresent, PaymentIntentCreateParamsPaymentMethodOptionCardPresent, and PaymentIntentModifyParamsPaymentMethodOptionCardPresent

13.1.2 - 2025-11-04

  • #1661 Add support for value payment_record to enum InvoicePayment.payment.type

13.1.1 - 2025-10-31

  • #1660 Fix stripe-context header not being included in paged list requests

13.1.0 - 2025-10-29

This release changes the pinned API version to 2025-10-29.clover.

  • #1656 Update generated code
    • Improve docs for PaymentIntent related endpoints
  • #1650 Update generated code
    • Add support for new resources PaymentAttemptRecord, PaymentIntentAmountDetailsLineItem, and PaymentRecord

... (truncated)

Commits

Updates google-auth from 1.35.0 to 2.43.0

Release notes

Sourced from google-auth's releases.

google-auth 2.43.0

2.43.0 (2025-11-05)

Features

  • Add public wrapper for _mtls_helper.check_use_client_cert which enables mTLS if GOOGLE_API_USE_CLIENT_CERTIFICATE is not set, when the MWID/X.509 cert sources detected (#1859) (1535eccb)

  • Enable mTLS if GOOGLE_API_USE_CLIENT_CERTIFICATE is not set, if the MWID/X.509 cert sources detected (#1848) (395e405b)

  • onboard google-auth to librarian (#1838) (c503eaa5)

v2.42.1

2.42.1 (2025-10-30)

Bug Fixes

v2.42.0

2.42.0 (2025-10-24)

Features

  • Add trust boundary support for external accounts. (#1809) (36ecb1d)

Bug Fixes

  • Read scopes from ADC json for impersoanted cred (#1820) (62c0fc8)

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)

... (truncated)

Changelog

Sourced from google-auth's changelog.

2.43.0 (2025-11-05)

Features

  • Add public wrapper for _mtls_helper.check_use_client_cert which enables mTLS if GOOGLE_API_USE_CLIENT_CERTIFICATE is not set, when the MWID/X.509 cert sources detected (#1859) Add public wrapper for check_use_client_cert which enables mTLS if GOOGLE_API_USE_CLIENT_CERTIFICATE is not set, when the MWID/X.509 cert sources detected. Also, fix check_use_client_cert to return boolean value. Change #1848 added the check_use_client_cert method that helps know if client cert should be used for mTLS connection. However, that was in a private class, thus, created a public wrapper of the same function so that it can be used by python Client Libraries. Also, updated check_use_client_cert to return a boolean value instead of existing string value for better readability and future scope. --------- (1535eccbff0ad8f3fd6a9775316ac8b77dca66ba)
  • Enable mTLS if GOOGLE_API_USE_CLIENT_CERTIFICATE is not set, if the MWID/X.509 cert sources detected (#1848) The Python SDK will use a hybrid approach for mTLS enablement:
  • If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is set (either true or false), the SDK will respect that setting. This is necessary for test scenarios and users who need to explicitly control mTLS behavior.
  • If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is not set, the SDK will automatically enable mTLS only if it detects Managed Workload Identity (MWID) or X.509 Workforce Identity Federation (WIF) certificate sources. In other cases where the variable is not set, mTLS will remain disabled. ** This change also adds the helper method check_use_client_cert and it's unit test, which will be used for checking the criteria for setting the mTLS to true ** This change is only for Auth-Library, other changes will be created for Client-Library use-cases. --------- (395e405b64b56ddb82ee639958c2e8056ad2e82b)

2.42.1 (2025-10-30)

Bug Fixes

2.42.0 (2025-10-24)

Features

  • Add trust boundary support for external accounts. (#1809) (36ecb1d)

... (truncated)

Commits
  • 89a8838 chore: librarian release pull request: 20251105T230735Z (#1863)
  • 79564e2 chore: update prev version in state (#1862)
  • 1535ecc feat: Add public wrapper for _mtls_helper.check_use_client_cert which enables...
  • 54502a7 chore: update secret (#1860)
  • 395e405 feat: Enable mTLS if GOOGLE_API_USE_CLIENT_CERTIFICATE is not set, if the MW...
  • f2708b2 chore: secret upadte (#1857)
  • c503eaa feat: onboard google-auth to librarian (#1838)
  • 5d1b862 chore(main): release 2.42.1 (#1853)
  • b074cad fix: catch ValueError for json.loads() (#1842)
  • cb62f57 chore: secret update (#1851)
  • Additional commits viewable in compare view

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

Release notes

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

v2.187.0

2.187.0 (2025-11-04)

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

    Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `4.2.23` | `4.2.26` |
| [django-countries](https://github.com/SmileyChris/django-countries) | `7.6.1` | `8.2.0` |
| [stripe](https://github.com/stripe/stripe-python) | `4.2.0` | `14.0.1` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `1.35.0` | `2.43.0` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `1.12.11` | `2.187.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` |
| [channels](https://github.com/django/channels) | `4.3.1` | `4.3.2` |
| [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.11.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `2.21.0` | `4.5.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.38.0` |



Updates `django` from 4.2.23 to 4.2.26
- [Commits](django/django@4.2.23...4.2.26)

Updates `django-countries` from 7.6.1 to 8.2.0
- [Changelog](https://github.com/SmileyChris/django-countries/blob/main/CHANGES.md)
- [Commits](SmileyChris/django-countries@v7.6.1...v8.2.0)

Updates `stripe` from 4.2.0 to 14.0.1
- [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...v14.0.1)

Updates `google-auth` from 1.35.0 to 2.43.0
- [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.43.0)

Updates `google-api-python-client` from 1.12.11 to 2.187.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v1.12.11...v2.187.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 `channels` from 4.3.1 to 4.3.2
- [Changelog](https://github.com/django/channels/blob/main/CHANGELOG.txt)
- [Commits](django/channels@4.3.1...4.3.2)

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

Updates `pre-commit` from 2.21.0 to 4.5.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.5.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.38.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.38.0)

---
updated-dependencies:
- dependency-name: django
  dependency-version: 4.2.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: django-countries
  dependency-version: 8.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: stripe
  dependency-version: 14.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: google-auth
  dependency-version: 2.43.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: google-api-python-client
  dependency-version: 2.187.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: channels
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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.11.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: pre-commit
  dependency-version: 4.5.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.38.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 Dec 1, 2025
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