Skip to content

Update dependency django-health-check to v3.24.0#189

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/django-health-check-3.x
Open

Update dependency django-health-check to v3.24.0#189
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/django-health-check-3.x

Conversation

@renovate

@renovate renovate Bot commented Jun 4, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
django-health-check (changelog) ==3.18.3==3.24.0 age confidence

Release Notes

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

v3.24.0

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.23.5...3.24.0

v3.23.5

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.23.4...3.23.5

v3.23.4

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.23.3...3.23.4

v3.23.3

Compare Source

Full Changelog: codingjoe/django-health-check@3.23.2...3.23.3

v3.23.2

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.23.1...3.23.2

v3.23.1

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.23.0...3.23.1

v3.23.0

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.22.0...3.23.0

v3.22.0

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.21.1...3.22.0

v3.21.1

Compare Source

Full Changelog: codingjoe/django-health-check@3.21.0...3.21.1

v3.21.0

Compare Source

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",
            ]
        ),
    )
Removals and Replacements
  • StorageHealthCheck, DefaultFileStorageHealthCheck, S3BotoStorageHealthCheck, S3Boto3StorageHealthCheck have been replaced with Storage.
  • CeleryHealthCheck has been replaced with Ping.
  • MigrationsHealthCheck has been removed; its functionality is covered by Django's check framework.
  • DatabaseHealthCheck has been replaced with Database which doesn't require a table and supports multiple database aliases.

Full Changelog: codingjoe/django-health-check@3.20.8...3.21.0

v3.20.8

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.20.7...3.20.8

v3.20.7

Compare Source

What's Changed

New Contributors

Full Changelog: codingjoe/django-health-check@3.20.6...3.20.7

v3.20.6

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.20.5...3.20.6

v3.20.5

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.20.4...3.20.5

v3.20.4

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.20.3...3.20.4

v3.20.3

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.20.2...3.20.3

v3.20.2

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.20.1...3.20.2

v3.20.1

Compare Source

What's Changed

New Contributors

Full Changelog: codingjoe/django-health-check@3.20.0...3.20.1

v3.20.0

Compare Source

What's Changed

New Contributors

Full Changelog: codingjoe/django-health-check@3.19.2...3.20.0

v3.19.2

Compare Source

What's Changed

New Contributors

Full Changelog: codingjoe/django-health-check@3.19.1...3.19.2

v3.19.1

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@3.19.0...3.19.1

v3.19.0

Compare Source

What's Changed

New Contributors

Full Changelog: codingjoe/django-health-check@3.18.3...3.19.0


Configuration

📅 Schedule: (in timezone Europe/London)

  • Branch creation
    • "after 7am and before 11am every weekday"
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 the dependencies Pull requests that update a dependency file label Jun 4, 2025
@renovate renovate Bot requested a review from a team as a code owner June 4, 2025 07:49
@renovate renovate Bot requested review from manohar-hmcts, nchang90 and reespozzi and removed request for a team June 4, 2025 07:49
@renovate renovate Bot changed the title Update dependency django-health-check to v3.19.0 Update dependency django-health-check to v3.19.1 Jun 9, 2025
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch from 0e3e3d8 to c741a97 Compare June 9, 2025 20:45
@renovate renovate Bot changed the title Update dependency django-health-check to v3.19.1 Update dependency django-health-check to v3.19.2 Jun 11, 2025
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch from c741a97 to 7c9957a Compare June 11, 2025 04:56
@renovate renovate Bot changed the title Update dependency django-health-check to v3.19.2 Update dependency django-health-check to v3.20.0 Jun 16, 2025
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch from 7c9957a to 863ab79 Compare June 16, 2025 09:50
@renovate renovate Bot changed the title Update dependency django-health-check to v3.20.0 Update dependency django-health-check to v3.20.3 Dec 19, 2025
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch from 863ab79 to 6157fef Compare December 19, 2025 17:31
@renovate renovate Bot changed the title Update dependency django-health-check to v3.20.3 Update dependency django-health-check to v3.20.4 Dec 19, 2025
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch 2 times, most recently from e0aa138 to 3bb4e40 Compare December 20, 2025 23:45
@renovate renovate Bot changed the title Update dependency django-health-check to v3.20.4 Update dependency django-health-check to v3.20.6 Dec 20, 2025
@renovate renovate Bot changed the title Update dependency django-health-check to v3.20.6 Update dependency django-health-check to v3.20.7 Dec 21, 2025
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch 2 times, most recently from aece96b to 3a9932d Compare December 23, 2025 02:57
@renovate renovate Bot changed the title Update dependency django-health-check to v3.20.7 Update dependency django-health-check to v3.20.8 Dec 23, 2025
@renovate renovate Bot changed the title Update dependency django-health-check to v3.20.8 Update dependency django-health-check to v3.21.0 Jan 30, 2026
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch 2 times, most recently from a8e9275 to 8c50706 Compare February 2, 2026 17:54
@renovate renovate Bot changed the title Update dependency django-health-check to v3.21.0 Update dependency django-health-check to v3.22.0 Feb 2, 2026
@renovate renovate Bot changed the title Update dependency django-health-check to v3.22.0 Update dependency django-health-check to v3.23.0 Feb 3, 2026
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch from 8c50706 to 6385eeb Compare February 3, 2026 14:01
@renovate renovate Bot changed the title Update dependency django-health-check to v3.23.0 Update dependency django-health-check to v3.23.1 Feb 3, 2026
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch from 6385eeb to a0bf940 Compare February 3, 2026 19:48
@renovate renovate Bot changed the title Update dependency django-health-check to v3.23.1 Update dependency django-health-check to v3.23.3 Feb 3, 2026
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch 2 times, most recently from e303c80 to 5ec8d41 Compare February 6, 2026 15:26
@renovate renovate Bot changed the title Update dependency django-health-check to v3.23.3 Update dependency django-health-check to v3.23.5 Feb 6, 2026
@renovate renovate Bot force-pushed the renovate/django-health-check-3.x branch from 5ec8d41 to 21b7425 Compare February 12, 2026 16:57
@renovate renovate Bot changed the title Update dependency django-health-check to v3.23.5 Update dependency django-health-check to v3.24.0 Feb 12, 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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants