django-backblaze-b2
django-backblaze-b2 copied to clipboard
A storage backend for Django that uses Backblaze's B2 APIs
Bumps [mypy](https://github.com/python/mypy) from 1.9.0 to 1.10.0. Changelog Sourced from mypy's changelog. Mypy Release Notes Next release Mypy 1.10 We’ve just uploaded mypy 1.10 to the Python Package Index (PyPI). Mypy...
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.3.7 to 0.4.2. Release notes Sourced from ruff's releases. v0.4.2 Changes Rule changes [flake8-pyi] Allow for overloaded __exit__ and __aexit__ definitions (PYI036) (#11057) [pyupgrade] Catch usages of...
Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.1.1 to 8.2.0. Release notes Sourced from pytest's releases. 8.2.0 pytest 8.2.0 (2024-04-27) Deprecations #12069: A deprecation warning is now raised when implementations of one of the...
Bumps [b2sdk](https://github.com/Backblaze/b2-sdk-python) from 2.0.0 to 2.1.0. Release notes Sourced from b2sdk's releases. 2.1.0 Changed Use ParallelDownloader for small files instead of SimpleDownloader to avoid blocking on I/O. Fixed Fix decode_content=True...
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.5.1 to 0.5.5. Release notes Sourced from ruff's releases. 0.5.5 Release Notes Preview features [fastapi] Implement fastapi-redundant-response-model (FAST001) and fastapi-non-annotated-dependency(FAST002) (#11579) [pydoclint] Implement docstring-missing-exception (DOC501) and docstring-extraneous-exception...
Bumps [django-stubs](https://github.com/typeddjango/django-stubs) from 5.0.2 to 5.0.4. Commits d60e31e Prepare for a release 5.0.4 (#2285) f48e722 Check correct model on other side of many to many reverse filtering (#2283) 8eeed9b convert...
Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.2.2 to 8.3.2. Release notes Sourced from pytest's releases. 8.3.2 pytest 8.3.2 (2024-07-24) Bug fixes #12652: Resolve regression [conda]{.title-ref} environments where no longer being automatically detected. --...
Bumps [mypy](https://github.com/python/mypy) from 1.10.1 to 1.11.0. Changelog Sourced from mypy's changelog. Mypy Release Notes Next release Mypy 1.11 We’ve just uploaded mypy 1.11 to the Python Package Index (PyPI). Mypy...
Bumps [django](https://github.com/django/django) from 4.2.13 to 4.2.14. Commits 98cf264 [4.2.x] Bumped version for 4.2.14 release. 17358fb [4.2.x] Fixed CVE-2024-39614 -- Mitigated potential DoS in get_supported_lang... 2b00edc [4.2.x] Fixed CVE-2024-39330 -- Added...
I'm using a subclass `django-backblaze-b2`, with the following configuration: ```py BACKBLAZE_CONFIG = { "account_info": {"type": "django-cache", "cache": "django-backblaze-b2"}, "application_key_id": os.getenv("BACKBLAZE_KEY_ID", None), "application_key": os.getenv("BACKBLAZE_KEY", None), "bucket": "", } CACHES = {...