Skip to content

build(deps): bump the pip group across 1 directory with 19 updates#200

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/pip-f318e69f6f
Open

build(deps): bump the pip group across 1 directory with 19 updates#200
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/pip-f318e69f6f

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

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

Package From To
django 4.2.23 4.2.27
django-countries 7.6.1 8.2.0
stripe 4.2.0 14.3.0
google-auth 1.35.0 2.48.0
google-api-python-client 1.12.11 2.188.0
tqdm 4.67.1 4.67.2
django-webpack5-loader 0.8.5 0.9.1
django-extensions 3.2.3 4.1
django-money 3.5.4 3.6.0
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 26.1.0
pre-commit 2.21.0 4.5.1
seleniumbase 4.40.8 4.41.1
websockets 10.3 16.0
poetry 2.1.4 2.3.1
uvicorn 0.18.3 0.40.0

Updates django from 4.2.23 to 4.2.27

Commits
  • 5948e66 [4.2.x] Bumped version for 4.2.27 release.
  • 4d2b880 [4.2.x] Fixed CVE-2025-64460 -- Corrected quadratic inner text accumulation i...
  • f997037 [4.2.x] Fixed CVE-2025-13372 -- Protected FilteredRelation against SQL inject...
  • 4b5dcc9 [4.2.x] Added script to archive EOL stable branches.
  • 0e85bdb [4.2.x] Refs #36743 -- Added missing release notes for 5.1.15 and 4.2.27.
  • e697349 [4.2.x] Fixed #36743 -- Increased URL max length enforced in HttpResponseRedi...
  • 7d7f27b [4.2.x] Added timeout-minutes directive to all GitHub Actions workflows.
  • b40c057 [4.2.x] Added stub release notes and release date for 4.2.27.
  • b794e74 [4.2.x] Configured dangerous-triggers zizmor rule.
  • 6a80390 [4.2.x] Addressed unpinned-uses zizmor finding.
  • 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.3.0

Release notes

Sourced from stripe's releases.

v14.3.0

This release changes the pinned API version to 2026-01-28.clover.

  • #1725 Update generated code
    • Add support for new resource radar.PaymentEvaluation
    • Add support for create method on resource radar.PaymentEvaluation
    • Add support for adjustable_quantity on LineItem
    • Add support for new value risk_reserved on enum BalanceTransaction.balance_type
    • Add support for new values reserve_hold and reserve_release on enum BalanceTransaction.type
    • Add support for new values 2.3.0 and 2.3.1 on enums Charge.PaymentMethodDetail.Card.ThreeDSecure.version, PaymentIntentConfirmParamsPaymentMethodOptionCardThreeDSecure.version, PaymentIntentCreateParamsPaymentMethodOptionCardThreeDSecure.version, PaymentIntentModifyParamsPaymentMethodOptionCardThreeDSecure.version, SetupAttempt.PaymentMethodDetail.Card.ThreeDSecure.version, SetupIntentConfirmParamsPaymentMethodOptionCardThreeDSecure.version, SetupIntentCreateParamsPaymentMethodOptionCardThreeDSecure.version, and SetupIntentModifyParamsPaymentMethodOptionCardThreeDSecure.version
    • Add support for new value adyen 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 ADYBNL2A 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 pl_nip on enums Checkout.Session.CustomerDetail.TaxId.type, Invoice.CustomerTaxId.type, Tax.Calculation.CustomerDetail.TaxId.type, Tax.Transaction.CustomerDetail.TaxId.type, and TaxId.type
    • Add support for new value pl_nip on enums CustomerCreateParamsTaxIdDatum.type, CustomerCreateTaxIdParams.type, InvoiceCreatePreviewParamsCustomerDetailTaxId.type, TaxIdCreateParams.type, and tax.CalculationCreateParamsCustomerDetailTaxId.type
    • Change Invoice.PaymentSetting.PaymentMethodOption.payto and Subscription.PaymentSetting.PaymentMethodOption.payto to be required
    • Add support for enforce_arithmetic_validation on PaymentIntentCaptureParamsAmountDetail, PaymentIntentConfirmParamsAmountDetail, PaymentIntentCreateParamsAmountDetail, PaymentIntentIncrementAuthorizationParamsAmountDetail, and PaymentIntentModifyParamsAmountDetail
    • Add support for error on PaymentIntent.AmountDetail
    • Remove support for bgn on Terminal.Configuration.Tipping, terminal.ConfigurationCreateParamsTipping, and terminal.ConfigurationModifyParamsTipping
    • Add support for topup on Treasury.ReceivedDebit.LinkedFlow
    • Add support for contact_phone on V2.Core.Account, v2.core.AccountCreateParams, v2.core.AccountModifyParams, and v2.core.AccountTokenCreateParams
    • Add support for registration_date on V2.Core.Account.Identity.BusinessDetail, v2.core.AccountCreateParamsIdentityBusinessDetail, v2.core.AccountModifyParamsIdentityBusinessDetail, and v2.core.AccountTokenCreateParamsIdentityBusinessDetail
    • Add support for new value gb_vat on enums V2.Core.Account.Identity.BusinessDetail.IdNumber.type, v2.core.AccountCreateParamsIdentityBusinessDetailIdNumber.type, v2.core.AccountModifyParamsIdentityBusinessDetailIdNumber.type, and v2.core.AccountTokenCreateParamsIdentityBusinessDetailIdNumber.type
    • Add support for error code request_blocked on Invoice.LastFinalizationError, PaymentIntent.LastPaymentError, SetupAttempt.SetupError, SetupIntent.LastSetupError, and StripeError
  • #1722 Add documentation for undocumented API parameters

See the changelog for more details.

v14.3.0a1

  • #1723 Update generated code for private-preview
    • Remove support for pause method on resource Subscription
    • Change type of Quote.SubscriptionDataOverride.phase_effective_at and Quote.SubscriptionDatum.phase_effective_at from enum('billing_period_start'|'phase_start') to nullable(enum('billing_period_start'|'phase_start'))

See the changelog for more details.

v14.2.0

  • #1720 Update generated code
    • Add support for event notifications V2CoreAccountClosedEvent, V2CoreAccountCreatedEvent, V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent, V2CoreAccountIncludingConfigurationCustomerUpdatedEvent, V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent, V2CoreAccountIncludingConfigurationMerchantUpdatedEvent, V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent, V2CoreAccountIncludingConfigurationRecipientUpdatedEvent, V2CoreAccountIncludingDefaultsUpdatedEvent, V2CoreAccountIncludingFutureRequirementsUpdatedEvent, V2CoreAccountIncludingIdentityUpdatedEvent, V2CoreAccountIncludingRequirementsUpdatedEvent, and V2CoreAccountUpdatedEvent with related object v2.core.Account
    • Add support for event notification V2CoreAccountLinkReturnedEvent
    • Add support for event notifications V2CoreAccountPersonCreatedEvent, V2CoreAccountPersonDeletedEvent, and V2CoreAccountPersonUpdatedEvent with related object v2.core.AccountPerson
  • #1687 Fix DeprecationWarning when encoding StripeObject metadata (fixes #1651)
  • #1703 Update ci to run on Python 3.14 as well

See the changelog for more details.

v14.2.0b1

This release changes the pinned API version to 2025-12-15.preview.

  • #1653 Add EventNotificationHandler
  • #1680 Update generated code for beta
    • Add support for new resources reserve.Hold, reserve.Plan, and reserve.Release

... (truncated)

Changelog

Sourced from stripe's changelog.

14.3.0 - 2026-01-28

This release changes the pinned API version to 2026-01-28.clover.

  • #1725 Update generated code
    • Add support for new resource radar.PaymentEvaluation
    • Add support for create method on resource radar.PaymentEvaluation
    • Add support for adjustable_quantity on LineItem
    • Add support for new value risk_reserved on enum BalanceTransaction.balance_type
    • Add support for new values reserve_hold and reserve_release on enum BalanceTransaction.type
    • Add support for new values 2.3.0 and 2.3.1 on enums Charge.PaymentMethodDetail.Card.ThreeDSecure.version, PaymentIntentConfirmParamsPaymentMethodOptionCardThreeDSecure.version, PaymentIntentCreateParamsPaymentMethodOptionCardThreeDSecure.version, PaymentIntentModifyParamsPaymentMethodOptionCardThreeDSecure.version, SetupAttempt.PaymentMethodDetail.Card.ThreeDSecure.version, SetupIntentConfirmParamsPaymentMethodOptionCardThreeDSecure.version, SetupIntentCreateParamsPaymentMethodOptionCardThreeDSecure.version, and SetupIntentModifyParamsPaymentMethodOptionCardThreeDSecure.version
    • Add support for new value adyen 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 ADYBNL2A 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 pl_nip on enums Checkout.Session.CustomerDetail.TaxId.type, Invoice.CustomerTaxId.type, Tax.Calculation.CustomerDetail.TaxId.type, Tax.Transaction.CustomerDetail.TaxId.type, and TaxId.type
    • Add support for new value pl_nip on enums CustomerCreateParamsTaxIdDatum.type, CustomerCreateTaxIdParams.type, InvoiceCreatePreviewParamsCustomerDetailTaxId.type, TaxIdCreateParams.type, and tax.CalculationCreateParamsCustomerDetailTaxId.type
    • Change Invoice.PaymentSetting.PaymentMethodOption.payto and Subscription.PaymentSetting.PaymentMethodOption.payto to be required
    • Add support for enforce_arithmetic_validation on PaymentIntentCaptureParamsAmountDetail, PaymentIntentConfirmParamsAmountDetail, PaymentIntentCreateParamsAmountDetail, PaymentIntentIncrementAuthorizationParamsAmountDetail, and PaymentIntentModifyParamsAmountDetail
    • Add support for error on PaymentIntent.AmountDetail
    • Remove support for bgn on Terminal.Configuration.Tipping, terminal.ConfigurationCreateParamsTipping, and terminal.ConfigurationModifyParamsTipping
    • Add support for topup on Treasury.ReceivedDebit.LinkedFlow
    • Add support for contact_phone on V2.Core.Account, v2.core.AccountCreateParams, v2.core.AccountModifyParams, and v2.core.AccountTokenCreateParams
    • Add support for registration_date on V2.Core.Account.Identity.BusinessDetail, v2.core.AccountCreateParamsIdentityBusinessDetail, v2.core.AccountModifyParamsIdentityBusinessDetail, and v2.core.AccountTokenCreateParamsIdentityBusinessDetail
    • Add support for new value gb_vat on enums V2.Core.Account.Identity.BusinessDetail.IdNumber.type, v2.core.AccountCreateParamsIdentityBusinessDetailIdNumber.type, v2.core.AccountModifyParamsIdentityBusinessDetailIdNumber.type, and v2.core.AccountTokenCreateParamsIdentityBusinessDetailIdNumber.type
    • Add support for error code request_blocked on Invoice.LastFinalizationError, PaymentIntent.LastPaymentError, SetupAttempt.SetupError, SetupIntent.LastSetupError, and StripeError
  • #1722 Add documentation for undocumented API parameters
Commits

Updates google-auth from 1.35.0 to 2.48.0

Release notes

Sourced from google-auth's releases.

google-auth 2.48.0

2.48.0 (2026-01-21)

Features

Bug Fixes

v2.48.0rc0

2.48.0rc0 (2026-01-20)

Features

  • honor NO_GCE_CHECK environment variable (#1610) (383c98)
  • add configurable GCE Metadata Server retries (#1488) (454b44)
  • support mTLS IAM domain for Certificate based Access (#1938) (8dcf91)
  • add cryptography as required dependency (#1929) (52558a)

Bug Fixes

  • Use user_verification=preferred for ReAuth WebAuthn challenge (#1798) (3f88a2)
  • replace deprecated utcfromtimestamp (#1799) (e431f2)
  • detect correct auth when ADC env var is set by empty (#1374) (bfc07e)
  • removed content-header from AWS IMDS (#1934) (97bfea)
  • resolve circular imports (#1942) (25c1b0)

google-auth 2.47.0

2.47.0 (2026-01-06)

Features

... (truncated)

Changelog

Sourced from google-auth's changelog.

2.48.0 (2026-01-22)

Features

Bug Fixes

2.47.0 (2026-01-06)

Features

Bug Fixes

2.46.0 (2026-01-05)

Documentation

Features

Bug Fixes

... (truncated)

Commits
  • 6a982be chore: librarian release pull request: 20260121T162706Z (#1946)
  • 526d6c6 chore(tests): add cryptography to constraints file (#1944)
  • 52558ae feat: add cryptography as required dependency (#1929)
  • 8dcf91a feat(iam): Support the mTLS IAM domain for Certificate based Access (#1938)
  • db17a64 chore(tests): add sleep mocks (#1943)
  • 25c1b06 fix: resolve circular imports (#1942)
  • e5a28b5 tests: system tests for expired User Credentials (#1937)
  • 4292ab0 chore(deps): update dependency google-cloud-compute to v1.42.0 (#1939)
  • 4848ac4 chore: extracts unit tests to individual github actions (#1941)
  • 71e6e8e chore: dedent deprecation warning message (#1932)
  • Additional commits viewable in compare view

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

Release notes

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

v2.188.0

2.188.0 (2026-01-13)

Features

Bug Fixes

v2.187.0

2.187.0 (2025-11-04)

Features

... (truncated)

Commits

Updates tqdm from 4.67.1 to 4.67.2

Release notes

Sourced from tqdm's releases.

tqdm v4.67.2 stable

  • support pandas>=3 (#1703 <- #1701, #1650, #1700)
  • fix format_interval for negative numbers (#1703)
  • misc linting
  • framework updates (#1704)
    • bump CI workflow & pre-commit dependencies
    • add pyupgrade
    • add py3.13 support
    • fix py3.7 tests
    • update setuptools-scm usage
    • support auto-dedented docstring when building docs in py3.13
  • tests: relax flaky benchmarks
Commits
  • 09a863b bump version, merge pull request #1704 from tqdm/devel
  • 33d24cd update pyproject syntax
  • 70b9124 add py3.13 support
  • a74d8f8 drop _dist_ver
  • 14d72e2 Merge pull request #1703 from wingding12/fix-pandas-3.0-and-negative-interval
  • a69dac8 fix dedented docstrings
  • a986d22 tests: fix pandas deprecation warnings
  • bb7aa4d tests: fix pandas deprecated applymap

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

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `4.2.23` | `4.2.27` |
| [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.3.0` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `1.35.0` | `2.48.0` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `1.12.11` | `2.188.0` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.67.1` | `4.67.2` |
| [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` |
| [django-money](https://github.com/django-money/django-money) | `3.5.4` | `3.6.0` |
| [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` | `26.1.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `2.21.0` | `4.5.1` |
| [seleniumbase](https://github.com/seleniumbase/SeleniumBase) | `4.40.8` | `4.41.1` |
| [websockets](https://github.com/python-websockets/websockets) | `10.3` | `16.0` |
| [poetry](https://github.com/python-poetry/poetry) | `2.1.4` | `2.3.1` |
| [uvicorn](https://github.com/Kludex/uvicorn) | `0.18.3` | `0.40.0` |



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

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.3.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...v14.3.0)

Updates `google-auth` from 1.35.0 to 2.48.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.48.0)

Updates `google-api-python-client` from 1.12.11 to 2.188.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v1.12.11...v2.188.0)

Updates `tqdm` from 4.67.1 to 4.67.2
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.67.1...v4.67.2)

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 `django-money` from 3.5.4 to 3.6.0
- [Release notes](https://github.com/django-money/django-money/releases)
- [Changelog](https://github.com/django-money/django-money/blob/main/docs/changes.rst)
- [Commits](django-money/django-money@3.5.4...3.6.0)

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 26.1.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...26.1.0)

Updates `pre-commit` from 2.21.0 to 4.5.1
- [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.1)

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 16.0
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@10.3...16.0)

Updates `poetry` from 2.1.4 to 2.3.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.3.1)

Updates `uvicorn` from 0.18.3 to 0.40.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.40.0)

---
updated-dependencies:
- dependency-name: django
  dependency-version: 4.2.27
  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.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: google-auth
  dependency-version: 2.48.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: google-api-python-client
  dependency-version: 2.188.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: tqdm
  dependency-version: 4.67.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: django-money
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: 26.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: pre-commit
  dependency-version: 4.5.1
  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: '16.0'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: poetry
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: uvicorn
  dependency-version: 0.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 1, 2026
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.

0 participants