Skip to content

Update dependency django-health-check to v4#1598

Merged
KOliver94 merged 6 commits into
mainfrom
renovate/django-health-check-4.x
Mar 8, 2026
Merged

Update dependency django-health-check to v4#1598
KOliver94 merged 6 commits into
mainfrom
renovate/django-health-check-4.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 14, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
django-health-check (changelog) ==3.20.8==4.1.2 age adoption passing confidence

Release Notes

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

v4.1.2

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.1.1...4.1.2

v4.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: codingjoe/django-health-check@4.1.0...4.1.1

v4.1.0

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.0.6...4.1.0

v4.0.6

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.0.5...4.0.6

v4.0.5

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.0.4...4.0.5

v4.0.4

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.0.3...4.0.4

v4.0.3

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.0.2...4.0.3

v4.0.2

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.0.1...4.0.2

v4.0.1

Compare Source

What's Changed

Full Changelog: codingjoe/django-health-check@4.0.0...4.0.1

v4.0.0

Compare Source

What's Changed

New Contributors

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

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


Configuration

📅 Schedule: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) in timezone Europe/Budapest, 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 Feb 14, 2026
@renovate renovate Bot force-pushed the renovate/django-health-check-4.x branch 4 times, most recently from c0e2874 to 69b7e21 Compare February 23, 2026 18:31
@renovate renovate Bot force-pushed the renovate/django-health-check-4.x branch 3 times, most recently from 15a7693 to e1c404b Compare March 4, 2026 22:10
@renovate renovate Bot force-pushed the renovate/django-health-check-4.x branch from e1c404b to fe8d565 Compare March 6, 2026 23:55
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Mar 7, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@codecov
Copy link
Copy Markdown

codecov Bot commented Mar 8, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 93.87%. Comparing base (552cc84) to head (fe638c9).
⚠️ Report is 9 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1598      +/-   ##
==========================================
+ Coverage   93.84%   93.87%   +0.03%     
==========================================
  Files          73       73              
  Lines        2338     2335       -3     
  Branches      179      178       -1     
==========================================
- Hits         2194     2192       -2     
  Misses        119      119              
+ Partials       25       24       -1     

☔ View full report in Codecov by Sentry.
📢 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.

@KOliver94 KOliver94 merged commit 9434e39 into main Mar 8, 2026
15 checks passed
@KOliver94 KOliver94 deleted the renovate/django-health-check-4.x branch March 8, 2026 22:04
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.

1 participant