Skip to content

build(medcat-model-distributor): bump the pip-deps group in /medcat-model-distributor/webapp with 3 updates#492

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/medcat-model-distributor/webapp/pip-deps-41d54b9eed
Closed

build(medcat-model-distributor): bump the pip-deps group in /medcat-model-distributor/webapp with 3 updates#492
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/medcat-model-distributor/webapp/pip-deps-41d54b9eed

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 14, 2026

Bumps the pip-deps group in /medcat-model-distributor/webapp with 3 updates: django-dbbackup, django-storages and django-cron.

Updates django-dbbackup from 4.0.0b0 to 4.3.0

Release notes

Sourced from django-dbbackup's releases.

4.3.0

  • Add generic --pg-options to pass custom options to postgres.
  • Add option --if-exists for pg_dump command
  • Empty string as HOST for postgres unix domain socket connection is now supported.
  • Support Python 3.13 and Django 5.2

4.2.1

  • Add --no-drop option to dbrestore command to prevent dropping tables before restoring data.
  • Fix bug where sqlite dbrestore would fail if field data contains the line break character.

4.2.0

  • Default HOST to localhost for postgres databases.
  • Add PostgreSQL Schema support
  • Fix restore of database from S3 storage by reintroducing inputfile.seek(0) to utils.uncompress_file
  • Add warning for filenames with slashes in them
  • Fix bug where dbbackup management command would not respect settings.py:DBBACKUP_DATABASES
  • Remove usage of deprecated 'get_storage_class' function in newer Django versions
  • Add support for new STORAGES (Django 4.2+) setting under the 'dbbackup' alias

4.1.0

What's Changed

New Contributors

Full Changelog: Archmonger/django-dbbackup@4.0.2...4.1.0

4.0.2

What's Changed

4.0.1

What's Changed

... (truncated)

Changelog

Sourced from django-dbbackup's changelog.

[4.3.0] - 2025-05-09

Added

  • Add generic --pg-options to pass custom options to postgres.
  • Add option --if-exists for pg_dump command.
  • Support Python 3.13 and Django 5.2.

Fixed

  • Empty string as HOST for postgres unix domain socket connection is now supported.

[4.2.1] - 2024-08-23

Added

  • Add --no-drop option to dbrestore command to prevent dropping tables before restoring data.

Fixed

  • Fix bug where sqlite dbrestore would fail if field data contains the line break character.

[4.2.0] - 2024-08-22

Added

  • Add PostgreSQL Schema support.
  • Add support for new STORAGES (Django 4.2+) setting under the 'dbbackup' alias.

Changed

  • Set postgres default database HOST to "localhost".
  • Add warning for filenames with slashes in them.

Removed

  • Remove usage of deprecated get_storage_class function in newer Django versions.

Fixed

  • Fix restore of database from S3 storage by reintroducing inputfile.seek(0) to utils.uncompress_file.
  • Fix bug where dbbackup management commands would not respect settings.py:DBBACKUP_DATABASES.

[4.1.0] - 2024-01-14

Added

  • Support Python 3.11 and 3.12.
  • Support Django 4.1, 4.2, and 5.0.

... (truncated)

Commits

Updates django-storages from 1.12.3 to 1.14.6

Changelog

Sourced from django-storages's changelog.

1.14.6 (2025-04-01)


Google Cloud

  • Add option to sign URLs via IAM Blob API ([#1427](https://github.com/jschneier/django-storages/issues/1427)_)

S3

  • Fix exists calls when using SSE-C ([#1451](https://github.com/jschneier/django-storages/issues/1451)_)
  • Default url_protocol to https: if set to None ([#1483](https://github.com/jschneier/django-storages/issues/1483)_)

.. _#1427: jschneier/django-storages#1427 .. _#1451: jschneier/django-storages#1451 .. _#1483: jschneier/django-storages#1483

1.14.5 (2025-02-15)


General

  • Revert exists() behavior to pre-1.14.4 semantics with additional hardening for Django versions < 4.2 to fix CVE-2024-39330. This change matches the eventual behavior Django itself shipped with. ([#1484](https://github.com/jschneier/django-storages/issues/1484), [#1486](https://github.com/jschneier/django-storages/issues/1486))
  • Add support for Django 5.1 ([#1444](https://github.com/jschneier/django-storages/issues/1444)_)

Azure

  • Deprecated: The setting AZURE_API_VERSION/api_version setting is deprecated in favor of the new AZURE_CLIENT_OPTIONS setting. A future version will remove support for this setting.
  • Add AZURE_CLIENT_OPTIONS settings to enable customization of all BlobServiceClient parameters such as api_version and all retry* options. ([#1432](https://github.com/jschneier/django-storages/issues/1432)_)

Dropbox

  • As part of the above hardening fix a bug was uncovered whereby a root_path setting would be applied multiple times during save() ([#1484](https://github.com/jschneier/django-storages/issues/1484)_)
  • Fix setting OAuth2 access token via env var ([#1452](https://github.com/jschneier/django-storages/issues/1452)_)

FTP

  • Fix incorrect exists() results due to an errant appended slash ([#1438](https://github.com/jschneier/django-storages/issues/1438)_)

Google Cloud

... (truncated)

Commits

Updates django-cron from 0.5.1 to 0.6.0

Release notes

Sourced from django-cron's releases.

version 0.6.0

  • Removed message length limit to reflect database
  • Simplifies the file-based lock mechanism and fixes the race condition
  • Add cron feedback and dry-run functionality
  • New features: Run cron on specific days and output errors to a specified log
  • Django 4.0 fixes
  • Command for making cron jobs running in loop or running several times with the sleep time between
  • Run CronJobs on days in month/ monthly
  • Name locks by module_name.class_name for higher distinction
  • Locking backend with database
  • Update requirements to Django 3.2.0 (long-term support)
Changelog

Sourced from django-cron's changelog.

0.6.0

- Update requirements to Django 3.2.0 (long-term support)
  • Django 4.0 fixes

  • Removed message length limit to reflect database

  • Locking backend with database

  • Name locks by module_name.class_name for higher distinction

  • Run CronJobs on days in month/ monthly

  • Command for making cron jobs running in loop or running several times with the sleep time between

  • New features: Run cron on specific days and output errors to a specified log

  • Add cron feedback and dry-run functionality

Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pip-deps group in /medcat-model-distributor/webapp with 3 updates: [django-dbbackup](https://github.com/Archmonger/django-dbbackup), [django-storages](https://github.com/jschneier/django-storages) and [django-cron](https://github.com/tivix/django-cron).


Updates `django-dbbackup` from 4.0.0b0 to 4.3.0
- [Release notes](https://github.com/Archmonger/django-dbbackup/releases)
- [Changelog](https://github.com/Archmonger/django-dbbackup/blob/master/CHANGELOG.md)
- [Commits](Archmonger/django-dbbackup@4.0.0b0...4.3.0)

Updates `django-storages` from 1.12.3 to 1.14.6
- [Changelog](https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst)
- [Commits](jschneier/django-storages@1.12.3...1.14.6)

Updates `django-cron` from 0.5.1 to 0.6.0
- [Release notes](https://github.com/tivix/django-cron/releases)
- [Changelog](https://github.com/Tivix/django-cron/blob/master/docs/changelog.rst)
- [Commits](Tivix/django-cron@v0.5.1...v0.6.0)

---
updated-dependencies:
- dependency-name: django-dbbackup
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-deps
- dependency-name: django-storages
  dependency-version: 1.14.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-deps
- dependency-name: django-cron
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels May 14, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 14, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot Bot deleted the dependabot/pip/medcat-model-distributor/webapp/pip-deps-41d54b9eed branch May 14, 2026 13:25
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