Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 10, 2025

Bumps the dependencies group with 16 updates in the / directory:

Package From To
django 5.2.7 5.2.8
django-structlog[celery] 9.1.1 10.0.0
boto3 1.40.52 1.40.69
sentry-sdk 2.42.0 2.43.0
google-api-python-client 2.184.0 2.187.0
google-auth 2.41.1 2.43.0
google-auth-httplib2 0.2.0 0.2.1
google-auth-oauthlib 1.2.2 1.2.3
pytest 8.4.2 9.0.0
faker 37.11.0 37.12.0
ipython 9.6.0 9.7.0
django-debug-toolbar 6.0.0 6.1.0
djangorestframework-stubs 3.16.4 3.16.5
boto3-stubs 1.40.52 1.40.69
ruff 0.14.0 0.14.4
pre-commit 4.3.0 4.4.0

Updates django from 5.2.7 to 5.2.8

Commits
  • 47fe39a [5.2.x] Bumped version for 5.2.8 release.
  • ac9fcf6 [5.2.x] Refs CVE-2025-64459 -- Avoided propagating invalid arguments to Q on ...
  • 6703f36 [5.2.x] Fixed CVE-2025-64459 -- Prevented SQL injections in Q/QuerySet via th...
  • 4f5d904 [5.2.x] Fixed CVE-2025-64458 -- Mitigated potential DoS in HttpResponseRedire...
  • cbdf128 [5.2.x] Fixed #36704 -- Fixed system check error for proxy model with a compo...
  • 6775888 [5.2.x] Fixed #36696 -- Fixed NameError when inspecting functions with deferr...
  • d5dfffa [5.2.x] Added stub release notes and release date for 5.2.8, 5.1.14, and 4.2.26.
  • 368f955 [5.2.x] Fixed #36681 -- Removed English pluralization bias from example in do...
  • 71267c9 [5.2.x] Fixed #35095 -- Clarified Swiss number formatting in docs/topics/i18n...
  • 9b37bd5 [5.2.x] Made RemoteTestResultTest.test_pickle_errors_detection() compatible w...
  • Additional commits viewable in compare view

Updates django-structlog[celery] from 9.1.1 to 10.0.0

Changelog

Sourced from django-structlog[celery]'s changelog.

10.0.0 (October 22, 2025)

New: - Add 5xx and cancelled request log level config. See [#935](https://github.com/jrobichaud/django-structlog/issues/935) <https://github.com/jrobichaud/django-structlog/pull/935>. Special thanks to @fcortes <https://github.com/fcortes>. - Add python 3.14 support. See [#937](https://github.com/jrobichaud/django-structlog/issues/937) <https://github.com/jrobichaud/django-structlog/pull/937>_.

Changes: - Drop python 3.9 support.

Commits
  • 6c2feb5 Merge pull request #938 from jrobichaud/fix-readme
  • efcd704 fix error in readme (gotta add a checker)
  • fa277f6 Merge pull request #937 from jrobichaud/python-3.14
  • 238d813 Fix mypy regression when dropping 3.9
  • ee56156 Add python 3.14 support
  • f46461e Merge pull request #936 from jrobichaud/update-changelog
  • c76d11f update changelog
  • fbc9dea Merge pull request #935 from fcortes/add-access-log-level-config
  • a86d073 feat(env): add REQUEST_CANCELLED_LOG_LEVEL config
  • 9268401 feat(env): add STATUX_5XX_LOG_LEVEL config
  • Additional commits viewable in compare view

Updates boto3 from 1.40.52 to 1.40.69

Commits
  • aecb2bb Merge branch 'release-1.40.69'
  • ac7646e Bumping version to 1.40.69
  • f16254e Add changelog entries from botocore
  • 17eb004 Merge branch 'release-1.40.68'
  • 6a34b30 Merge branch 'release-1.40.68' into develop
  • 3dc1e85 Bumping version to 1.40.68
  • 014e41e Add changelog entries from botocore
  • 6a72deb Merge branch 'release-1.40.67'
  • f9c8320 Merge branch 'release-1.40.67' into develop
  • 4a88e50 Bumping version to 1.40.67
  • Additional commits viewable in compare view

Updates sentry-sdk from 2.42.0 to 2.43.0

Release notes

Sourced from sentry-sdk's releases.

2.43.0

Various fixes & improvements

  • Pydantic AI integration (#4906) by @​constantinius

    Enable the new Pydantic AI integration with the code snippet below, and you can use the Sentry AI dashboards to observe your AI calls:

    import sentry_sdk
    from sentry_sdk.integrations.pydantic_ai import PydanticAIIntegration
    sentry_sdk.init(
        dsn="<your-dsn>",
        # Set traces_sample_rate to 1.0 to capture 100%
        # of transactions for tracing.
        traces_sample_rate=1.0,
        # Add data like inputs and responses;
        # see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info
        send_default_pii=True,
        integrations=[
            PydanticAIIntegration(),
        ],
    )
  • MCP Python SDK (#4964) by @​constantinius

    Enable the new Python MCP integration with the code snippet below:

    import sentry_sdk
    from sentry_sdk.integrations.mcp import MCPIntegration
    sentry_sdk.init(
        dsn="<your-dsn>",
        # Set traces_sample_rate to 1.0 to capture 100%
        # of transactions for tracing.
        traces_sample_rate=1.0,
        # Add data like inputs and responses;
        # see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info
        send_default_pii=True,
        integrations=[
            MCPIntegration(),
        ],
    )
  • fix(strawberry): Remove autodetection, always use sync extension (#4984) by @​sentrivana

    Previously, StrawberryIntegration would try to guess whether it should install the sync or async version of itself. This auto-detection was very brittle and could lead to us auto-enabling async code in a sync context. With this change, StrawberryIntegration remains an auto-enabling integration, but it'll enable the sync version by default. If you want to enable the async version, pass the option explicitly:

    sentry_sdk.init(
        # ...

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

2.43.0

Various fixes & improvements

  • Pydantic AI integration (#4906) by @​constantinius

    Enable the new Pydantic AI integration with the code snippet below, and you can use the Sentry AI dashboards to observe your AI calls:

    import sentry_sdk
    from sentry_sdk.integrations.pydantic_ai import PydanticAIIntegration
    sentry_sdk.init(
        dsn="<your-dsn>",
        # Set traces_sample_rate to 1.0 to capture 100%
        # of transactions for tracing.
        traces_sample_rate=1.0,
        # Add data like inputs and responses;
        # see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info
        send_default_pii=True,
        integrations=[
            PydanticAIIntegration(),
        ],
    )
  • MCP Python SDK (#4964) by @​constantinius

    Enable the new Python MCP integration with the code snippet below:

    import sentry_sdk
    from sentry_sdk.integrations.mcp import MCPIntegration
    sentry_sdk.init(
        dsn="<your-dsn>",
        # Set traces_sample_rate to 1.0 to capture 100%
        # of transactions for tracing.
        traces_sample_rate=1.0,
        # Add data like inputs and responses;
        # see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info
        send_default_pii=True,
        integrations=[
            MCPIntegration(),
        ],
    )
  • fix(strawberry): Remove autodetection, always use sync extension (#4984) by @​sentrivana

    Previously, StrawberryIntegration would try to guess whether it should install the sync or async version of itself. This auto-detection was very brittle and could lead to us auto-enabling async code in a sync context. With this change, StrawberryIntegration remains an auto-enabling integration, but it'll enable the sync version by default. If you want to enable the async version, pass the option explicitly:

    sentry_sdk.init(

... (truncated)

Commits
  • b069aa2 Update CHANGELOG.md
  • a7a3fb1 release: 2.43.0
  • 76cc416 fix(google-genai): Set agent name (#5038)
  • b3b2eb6 fix(integrations): hooking into error tracing function to find out if an exec...
  • d7ccf06 fix(django): Improve logic for classifying cache hits and misses (#5029)
  • 64c145f chore(metrics): Rename _metrics to metrics (#5035)
  • fe31660 fix(tracemetrics): Bump metric buffer size to 1k (#5031)
  • 6e06a07 fix startlette deprecation warning (#5034)
  • e636619 fix(strawberry): Remove autodetection, always use sync extension (#4984)
  • 8ab8f3b ci: 🤖 Update test matrix with new releases (10/27) (#5033)
  • Additional commits viewable in compare view

Updates google-api-python-client from 2.184.0 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 google-auth from 2.41.1 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)
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-auth-httplib2 from 0.2.0 to 0.2.1

Release notes

Sourced from google-auth-httplib2's releases.

v0.2.1

0.2.1 (2025-10-30)

Bug Fixes

  • deps: Require google-auth >= 1.32.0,<3.0.0 (a69b725)
  • deps: Require httplib2 >= 0.19.0,<1.0.0 (a69b725)
  • Drop python 3.6; require python 3.7+ (a69b725)
  • Remove setup.cfg configuration for creating universal wheels (#191) (c2be0ae)
Changelog

Sourced from google-auth-httplib2's changelog.

0.2.1 (2025-10-30)

Bug Fixes

  • deps: Require google-auth >= 1.32.0,<3.0.0 (a69b725)
  • deps: Require httplib2 >= 0.19.0,<1.0.0 (a69b725)
  • Drop python 3.6; require python 3.7+ (a69b725)
  • Remove setup.cfg configuration for creating universal wheels (#191) (c2be0ae)
Commits
  • f20b634 chore(main): release 0.2.1 (#189)
  • 20ea1aa chore: remove config for older py versions (#198)
  • 22f9dfc chore: link to package documentation in README (#190)
  • c2be0ae fix: remove setup.cfg configuration for creating universal wheels (#191)
  • a69b725 fix: drop python 3.6 (#188)
  • 89bfffa chore: remove unused files (#186)
  • 7f3a229 chore(python): conditionally load credentials in .kokoro/build.sh (#182)
  • 2123e58 chore: update readme of httplib2 to indicate library is deprecated (#176)
  • d8b54a2 chore(python): Update the python version in docs presubmit to use 3.10 (#172)
  • 89482df chore(python): update dependencies in .kokoro/docker/docs (#166)
  • Additional commits viewable in compare view

Updates google-auth-oauthlib from 1.2.2 to 1.2.3

Release notes

Sourced from google-auth-oauthlib's releases.

v1.2.3

1.2.3 (2025-10-30)

Bug Fixes

  • Add upper-bound to google-auth dependency (#423) (d7921f9)
  • Drop support for Python 3.6 (4b1a5f3)
  • Explicitly declare Python 3.13 support (4b1a5f3)
Changelog

Sourced from google-auth-oauthlib's changelog.

1.2.3 (2025-10-30)

Bug Fixes

  • Add upper-bound to google-auth dependency (#423) (d7921f9)
  • Drop support for Python 3.6 (4b1a5f3)
  • Explicitly declare Python 3.13 support (4b1a5f3)
Commits

Updates pytest from 8.4.2 to 9.0.0

Release notes

Sourced from pytest's releases.

9.0.0

pytest 9.0.0 (2025-11-05)

New features

  • #1367: Support for subtests has been added.

    subtests <subtests> are an alternative to parametrization, useful in situations where the parametrization values are not all known at collection time.

    Example:

    def contains_docstring(p: Path) -> bool:
        """Return True if the given Python file contains a top-level docstring."""
        ...
    def test_py_files_contain_docstring(subtests: pytest.Subtests) -> None:
    for path in Path.cwd().glob("*.py"):
    with subtests.test(path=str(path)):
    assert contains_docstring(path)

    Each assert failure or error is caught by the context manager and reported individually, giving a clear picture of all files that are missing a docstring.

    In addition, unittest.TestCase.subTest is now also supported.

    This feature was originally implemented as a separate plugin in pytest-subtests, but since then has been merged into the core.

    [!NOTE] This feature is experimental and will likely evolve in future releases. By that we mean that we might change how subtests are reported on failure, but the functionality and how to use it are stable.

  • #13743: Added support for native TOML configuration files.

    While pytest, since version 6, supports configuration in pyproject.toml files under [tool.pytest.ini_options], it does so in an "INI compatibility mode", where all configuration values are treated as strings or list of strings. Now, pytest supports the native TOML data model.

    In pyproject.toml, the native TOML configuration is under the [tool.pytest] table.

    # pyproject.toml
    [tool.pytest]
    minversion = "9.0"
    addopts = ["-ra", "-q"]
    testpaths = [
        "tests",
        "integration",
    ]

... (truncated)

Commits
  • f4b0fd2 Prepare release version 9.0.0
  • 52d8e68 Merge pull request #13889 from bluetech/regendoc-restore
  • d6d3e4a doc: fixes for regendoc
  • 7cb3974 doc: restore missing "# content of pytest.toml" regendoc commands
  • 5ae9e47 build(deps): Bump django in /testing/plugins_integration (#13881)
  • adb3658 Merge pull request #13864 from bluetech/config-cleanups-2
  • a28c08e Merge pull request #13875 from bluetech/ci-tweaks
  • a250954 ci: split publish-to-pypi and push-tag jobs
  • ebc152f ci: update setup python's from 3.11 or 3.* to 3.13
  • dfd796f ci: move running update-plugin-list script to tox
  • Additional commits viewable in compare view

Updates faker from 37.11.0 to 37.12.0

Release notes

Sourced from faker's releases.

Release v37.12.0

See CHANGELOG.md.

Changelog

Sourced from faker's changelog.

v37.12.0 - 2025-10-07

Commits

Bumps the dependencies group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `5.2.7` | `5.2.8` |
| [django-structlog[celery]](https://github.com/jrobichaud/django-structlog) | `9.1.1` | `10.0.0` |
| [boto3](https://github.com/boto/boto3) | `1.40.52` | `1.40.69` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.42.0` | `2.43.0` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.184.0` | `2.187.0` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `2.41.1` | `2.43.0` |
| [google-auth-httplib2](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2) | `0.2.0` | `0.2.1` |
| [google-auth-oauthlib](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib) | `1.2.2` | `1.2.3` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.4.2` | `9.0.0` |
| [faker](https://github.com/joke2k/faker) | `37.11.0` | `37.12.0` |
| [ipython](https://github.com/ipython/ipython) | `9.6.0` | `9.7.0` |
| [django-debug-toolbar](https://github.com/django-commons/django-debug-toolbar) | `6.0.0` | `6.1.0` |
| [djangorestframework-stubs](https://github.com/sponsors/typeddjango) | `3.16.4` | `3.16.5` |
| [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) | `1.40.52` | `1.40.69` |
| [ruff](https://github.com/astral-sh/ruff) | `0.14.0` | `0.14.4` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.3.0` | `4.4.0` |



Updates `django` from 5.2.7 to 5.2.8
- [Commits](django/django@5.2.7...5.2.8)

Updates `django-structlog[celery]` from 9.1.1 to 10.0.0
- [Changelog](https://github.com/jrobichaud/django-structlog/blob/main/docs/changelog.rst)
- [Commits](jrobichaud/django-structlog@9.1.1...10.0.0)

Updates `boto3` from 1.40.52 to 1.40.69
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.40.52...1.40.69)

Updates `sentry-sdk` from 2.42.0 to 2.43.0
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.42.0...2.43.0)

Updates `google-api-python-client` from 2.184.0 to 2.187.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.184.0...v2.187.0)

Updates `google-auth` from 2.41.1 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@v2.41.1...v2.43.0)

Updates `google-auth-httplib2` from 0.2.0 to 0.2.1
- [Release notes](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python-httplib2/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-python-httplib2@v0.2.0...v0.2.1)

Updates `google-auth-oauthlib` from 1.2.2 to 1.2.3
- [Release notes](https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python-oauthlib/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-python-oauthlib@v1.2.2...v1.2.3)

Updates `pytest` from 8.4.2 to 9.0.0
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.4.2...9.0.0)

Updates `faker` from 37.11.0 to 37.12.0
- [Release notes](https://github.com/joke2k/faker/releases)
- [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md)
- [Commits](joke2k/faker@v37.11.0...v37.12.0)

Updates `ipython` from 9.6.0 to 9.7.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@9.6.0...9.7.0)

Updates `django-debug-toolbar` from 6.0.0 to 6.1.0
- [Release notes](https://github.com/django-commons/django-debug-toolbar/releases)
- [Changelog](https://github.com/django-commons/django-debug-toolbar/blob/main/docs/changes.rst)
- [Commits](django-commons/django-debug-toolbar@6.0.0...6.1.0)

Updates `djangorestframework-stubs` from 3.16.4 to 3.16.5
- [Commits](https://github.com/sponsors/typeddjango/commits)

Updates `boto3-stubs` from 1.40.52 to 1.40.69
- [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
- [Commits](https://github.com/youtype/mypy_boto3_builder/commits)

Updates `ruff` from 0.14.0 to 0.14.4
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.14.0...0.14.4)

Updates `pre-commit` from 4.3.0 to 4.4.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@v4.3.0...v4.4.0)

---
updated-dependencies:
- dependency-name: django
  dependency-version: 5.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: django-structlog[celery]
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: boto3
  dependency-version: 1.40.69
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sentry-sdk
  dependency-version: 2.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: google-api-python-client
  dependency-version: 2.187.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: google-auth
  dependency-version: 2.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: google-auth-httplib2
  dependency-version: 0.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google-auth-oauthlib
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: faker
  dependency-version: 37.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ipython
  dependency-version: 9.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: django-debug-toolbar
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: djangorestframework-stubs
  dependency-version: 3.16.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: boto3-stubs
  dependency-version: 1.40.69
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ruff
  dependency-version: 0.14.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pre-commit
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

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 Nov 10, 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