Skip to content

Update all non-major backend dependencies - #1749

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch-backend
Open

Update all non-major backend dependencies#1749
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch-backend

Conversation

@renovate

@renovate renovate Bot commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
django (changelog) ==6.0.7==6.1 age adoption passing confidence
django-debug-toolbar (changelog) 7.0.07.1.0 age adoption passing confidence
django-health-check (changelog) ==4.4.4==4.5.0 age adoption passing confidence
djangorestframework (changelog) ==3.17.1==3.18.0 age adoption passing confidence
google-auth-httplib2 (source) ==0.4.0==0.4.1 age adoption passing confidence
pre-commit 4.6.14.6.2 age adoption passing confidence
pytest-django (changelog) 4.12.04.14.0 age adoption passing confidence
sentry-sdk (changelog) ==2.66.1==2.68.0 age adoption passing confidence
time-machine (changelog) 3.2.03.4.0 age adoption passing confidence

Release Notes

django/django (django)

v6.1

Compare Source

v6.0.8

Compare Source

django-commons/django-debug-toolbar (django-debug-toolbar)

v7.1.0

Compare Source

Changelog

  • Added a Tasks panel that shows tasks queued during the request via Django’s built-in tasks framework (django.tasks, Django 6.0+). On older versions of Django, the panel explains that upgrading is required.
  • Fixed the Django version check in the SQL panel test suite for Django’s boolean parameter handling.
  • Fixed show_toolbar_with_docker on Docker runtimes such as OrbStack that can resolve host.docker.internal to an address outside the container network.
  • Restored the select and explain buttons for queries that run without parameters.
  • Fixed the error shown when panel content fails to load, which could not find the toolbar window inside the shadow root.
  • Stopped the history panel buttons from submitting their form when clicked before the panel script has loaded, which navigated away from the page.
  • Added support for Django 6.1.

What's Changed

New Contributors

Full Changelog: django-commons/django-debug-toolbar@7.0.0...7.1.0

codingjoe/django-health-check (django-health-check)

v4.5.0

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.4.4...4.5.0

encode/django-rest-framework (djangorestframework)

v3.18.0

Compare Source

What's Changed

Breaking changes
Features
Bug fixes
Other changes

New Contributors

Full Changelog: encode/django-rest-framework@3.17.1...3.18.0

v3.17.2

Compare Source

What's Changed

Bug fixes

Full Changelog: encode/django-rest-framework@3.17.1...3.17.2

googleapis/google-cloud-python (google-auth-httplib2)

v0.4.1: google-auth-httplib2: v0.4.1

Compare Source

Bug Fixes
pre-commit/pre-commit (pre-commit)

v4.6.2

Compare Source

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

Fixes
pytest-dev/pytest-django (pytest-django)

v4.14.0

Compare Source

https://pytest-django.readthedocs.io/en/stable/changelog.html#v4-14-0-2026-08-10

v4.13.0

Compare Source

https://pytest-django.readthedocs.io/en/latest/changelog.html#v4-13-0-2026-08-06

getsentry/sentry-python (sentry-sdk)

v2.68.0

Compare Source

Important
  • We're making enable_logs and enable_metrics no-op with this release (#​7177), and they'll be dropped in the next major.

    Previously, enable_logs also controlled automatic logs collection from the logging and Loguru integrations. These integrations now get an integration-level capture_sentry_logs boolean option to allow for more control over the auto-collection. These options are False by default, i.e., nothing is auto-collected without your explicit opt-in.

Action Needed

If you had enable_logs set to True:

  • If you were using the sentry_sdk.logger.X API, no action necessary, the API will just work.
  • If you were auto-collecting logs from either LoggingIntegration or LoguruIntegration, the auto-collection will be turned off in this release. You can switch auto-collection on explicitly with:
import sentry_sdk
from sentry_sdk.integrations.logging import LoggingIntegration
from sentry_sdk.integrations.loguru import LoguruIntegration

sentry_sdk.init(
    integrations=[
        LoggingIntegration(capture_sentry_logs=True),
        LoguruIntegration(capture_sentry_logs=True),
    ],
)

If you had enable_logs set to False:

  • If you were using it to gate usages of the sentry_sdk.logger.X API, you'll need to remove the calls entirely or define a before_send_log callback to filter out unwanted logs.

If you has enable_metrics set to False:

  • Any metrics emitted using the metrics API will be emitted. You'll need to drop them in a before_send_metric or remove the calls to the API.
Why We're Doing This

We recognize this is a disruptive change for some folks and want to make it clear this is a one-off. We're removing the options because they were an unnecessary hurdle that one had to jump through to be able to use logs and metrics, and it was confusing why the logging API would not just work on its own. On the other hand, we wanted to give you more fine-grained control over automatic collection.

New Features ✨
Other
Bug Fixes 🐛
Internal Changes 🔧
HTTPX, HTTPX2
Other

v2.67.1

Compare Source

Bug Fixes 🐛

v2.67.0

Compare Source

New Features ✨
Batcher
Integrations
Langchain
Openai
Streaming
Other
Bug Fixes 🐛
Openai Agents
Tests
Other
Documentation 📚
Internal Changes 🔧
Fastmcp
Mcp
Openai Agents
Other
adamchainz/time-machine (time-machine)

v3.4.0

Compare Source

v3.3.1

Compare Source

v3.3.0

Compare Source


Configuration

📅 Schedule: (in timezone Europe/Budapest)

  • Branch creation
    • Only on Sunday and Saturday (* * * * 0,6)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

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


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

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

@renovate renovate Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 8, 2026
@renovate
renovate Bot requested a review from KOliver94 as a code owner August 8, 2026 01:03
@codecov

codecov Bot commented Aug 8, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 93.42%. Comparing base (25a7cce) to head (f1ed18d).
⚠️ Report is 4 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1749   +/-   ##
=======================================
  Coverage   93.42%   93.42%           
=======================================
  Files          76       76           
  Lines        2418     2418           
  Branches      190      190           
=======================================
  Hits         2259     2259           
  Misses        132      132           
  Partials       27       27           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate
renovate Bot force-pushed the renovate/all-minor-patch-backend branch 2 times, most recently from f1ed18d to c26abaf Compare August 8, 2026 21:11
@renovate

renovate Bot commented Aug 8, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: backend/poetry.lock
Updating dependencies
Resolving dependencies...

Creating virtualenv request-manager-backend-GuaVYdMi-py3.14 in /home/ubuntu/.cache/pypoetry/virtualenvs

Because django-celery-beat (2.9.0) depends on Django (>=2.2,<6.1)
 and request-manager-backend depends on django (6.1), django-celery-beat is forbidden.
So, because request-manager-backend depends on django-celery-beat (2.9.0), version solving failed.

@renovate
renovate Bot force-pushed the renovate/all-minor-patch-backend branch 6 times, most recently from 9b87bc7 to 7b07e85 Compare August 13, 2026 23:16
@renovate
renovate Bot force-pushed the renovate/all-minor-patch-backend branch from 7b07e85 to 871bec6 Compare August 16, 2026 14:07
@renovate
renovate Bot force-pushed the renovate/all-minor-patch-backend branch from 871bec6 to 712a74a Compare August 17, 2026 15:26
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