Skip to content

Bump django-health-check from 3.18.3 to 3.21.0 in /src#68

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/src/django-health-check-3.21.0
Closed

Bump django-health-check from 3.18.3 to 3.21.0 in /src#68
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/src/django-health-check-3.21.0

Conversation

@dependabot
Copy link
Contributor

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

Bumps django-health-check from 3.18.3 to 3.21.0.

Release notes

Sourced from django-health-check's releases.

3.21.0

Version 3.21

Changes

  • Resolve settings inconsistency (by removing them).
  • Simplify implementation to improve maintainability.
  • Deprecate and remove duplicate or outdated checks.

Motivation

Settings inconsistency has long been an issue of this package. Some use package dictionaries; some use single-value settings.

Over time this package has also accumulated a host of checks, some of which are outdated or similar or superior to others.

Migration Guide

  1. Remove these health_check.* sub‑apps from INSTALLED_APPS but keep health_check!

  2. Remove all HEALTH_CHECK_* settings from your settings file.

  3. Replace the URL include with the view and explicit checks list. Before:

    # urls.py
    path("ht/", include("health_check.urls"))

    After (example):

    # urls.py
    from health_check.views import HealthCheckView
    path(
    "ht/",
    HealthCheckView.as_view(
    checks=[
    "health_check.Cache",
    "health_check.Database",
    "health_check.Disk",
    "health_check.Mail",
    "health_check.Memory",
    "health_check.Storage",
    # 3rd party checks
    "health_check.contrib.celery.Ping",
    "health_check.contrib.rabbitmq.RabbitMQ",
    "health_check.contrib.redis.Redis",
    ]

... (truncated)

Commits
  • ae94a27 Move configuration to views to remove settings (#551)
  • 9902414 [pre-commit.ci] pre-commit autoupdate
  • fcd2761 [pre-commit.ci] pre-commit autoupdate
  • 768b027 [pre-commit.ci] pre-commit autoupdate
  • ea25843 [pre-commit.ci] pre-commit autoupdate
  • 9d69500 Add missing subset documentation
  • b499162 Add conainerization documentation (#541)
  • 1c04d5a Switch from Sphinx to MkDocs (#539)
  • af92801 Limit coverage reporting to the package source
  • e2e794e Convert all tests from Django TestCase to pytest (#537)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Feb 2, 2026
Bumps [django-health-check](https://github.com/codingjoe/django-health-check) from 3.18.3 to 3.21.0.
- [Release notes](https://github.com/codingjoe/django-health-check/releases)
- [Commits](codingjoe/django-health-check@3.18.3...3.21.0)

---
updated-dependencies:
- dependency-name: django-health-check
  dependency-version: 3.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/src/django-health-check-3.21.0 branch from f5ac2d9 to 401c8ab Compare February 20, 2026 20:35
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 23, 2026

Superseded by #74.

@dependabot dependabot bot closed this Feb 23, 2026
@dependabot dependabot bot deleted the dependabot/pip/src/django-health-check-3.21.0 branch February 23, 2026 08:14
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