freelawproject / bigcases2

The sequel to Big Cases Bot
Other
18 stars 11 forks source link

build(deps): bump the django-extensions group with 8 updates #501

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 8 months ago

Bumps the django-extensions group with 8 updates:

Package From To
django-environ 0.10.0 0.11.2
django-csp 3.7 3.8
django-rq 2.8.1 2.10.2
django-storages 1.13.2 1.14.2
django-tailwind 3.6.0 3.8.0
django-htmx 1.16.0 1.17.3
django-permissions-policy 4.18.0 4.19.0
django-debug-toolbar 4.2.0 4.3.0

Updates django-environ from 0.10.0 to 0.11.2

Release notes

Sourced from django-environ's releases.

v0.11.2

Fixed

  • Revert "Add variable expansion" feature due to #490

v0.11.1

Fixed

  • Revert "Add interpolate argument to avoid resolving proxied values." feature due to #485

v0.11.0

Added

  • Added support for Django 4.2 #456.
  • Added support for secure Elasticsearch connections #463.
  • Added variable expansion #468.
  • Added capability to handle comments after #, after quoted values, like KEY= 'part1 # part2' # comment #475.
  • Added support for interpolate parameter #415.

Changed

  • Used mssql-django as engine for SQL Server #446.
  • Changed handling bool values, stripping whitespace around value #475.
  • Use importlib.util.find_spec to replace pkgutil.find_loader #482.

Removed

  • Removed support of Python 3.5.
Changelog

Sourced from django-environ's changelog.

v0.11.2_ - 1-September-2023

Fixed +++++

  • Revert "Add variable expansion." feature due to [#490](https://github.com/joke2k/django-environ/issues/490) <https://github.com/joke2k/django-environ/issues/490>_.

v0.11.1_ - 30-August-2023

Fixed +++++

  • Revert "Add interpolate argument to avoid resolving proxied values." feature due to [#485](https://github.com/joke2k/django-environ/issues/485) <https://github.com/joke2k/django-environ/issues/485>_.

v0.11.0_ - 30-August-2023

Added +++++

  • Added support for Django 4.2 [#456](https://github.com/joke2k/django-environ/issues/456) <https://github.com/joke2k/django-environ/pull/456>_.
  • Added support for secure Elasticsearch connections [#463](https://github.com/joke2k/django-environ/issues/463) <https://github.com/joke2k/django-environ/pull/463>_.
  • Added variable expansion [#468](https://github.com/joke2k/django-environ/issues/468) <https://github.com/joke2k/django-environ/pull/468>_.
  • Added capability to handle comments after #, after quoted values, like KEY= 'part1 # part2' # comment [#475](https://github.com/joke2k/django-environ/issues/475) <https://github.com/joke2k/django-environ/pull/475>_.
  • Added support for interpolate parameter [#415](https://github.com/joke2k/django-environ/issues/415) <https://github.com/joke2k/django-environ/pull/415>_.

Changed +++++++

  • Used mssql-django as engine for SQL Server [#446](https://github.com/joke2k/django-environ/issues/446) <https://github.com/joke2k/django-environ/pull/446>_.
  • Changed handling bool values, stripping whitespace around value [#475](https://github.com/joke2k/django-environ/issues/475) <https://github.com/joke2k/django-environ/pull/475>_.
  • Use importlib.util.find_spec to replace pkgutil.find_loader [#482](https://github.com/joke2k/django-environ/issues/482) <https://github.com/joke2k/django-environ/pull/482>_.

Removed +++++++

  • Removed support of Python 3.5.
Commits


Updates django-csp from 3.7 to 3.8

Release notes

Sourced from django-csp's releases.

3.8

Please note that 3.8 is Python-code-identical to 3.8rc1, and there were no regressions or problems noted or reported with 3.8rc0 nor 3.8rc1

django-csp lives!

It's been more than a year since the last release and the project needed some refreshing before we can move forward with it.

This release aims to be functionally equivalent to 3.7, but with formal support for more modern Django and Python versions, all the way up to Django 5 on Python 3.12

Please see https://github.com/mozilla/django-csp/blob/main/CHANGES for a short summary of changes.

Feedback and bug reports are very welcome. 🙇

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from django-csp's changelog.

3.8

Please note: this release folds in a number of fixups, upgrades and documentation tweaks, but is functionally the same as 3.7. New features will come with 3.9+

  • Update Python syntax for modern versions with pyupgrade
  • Drop support for EOL Python <3.8 and Django <2.2 version; add support up to Django 5 on Python 3.12
  • Switch to ruff instead of pep8 and flake8
  • Move from CircleCI to Github Actions for CI
  • Add support for using pre-commit with the project
  • Remove deprecation warning for child-src
  • Fix capturing brackets in script template tags
  • Update docs to clarify when nonce will not be added to headers
  • Move from setup.py and setup.cfg to pyproject.toml (#209)

Note: identical other than release packaging to 3.8rc1

3.8rc1

  • Move from setup.py and setup.cfg to pyproject.toml (#209)

3.8rc

Please note: this release folds in a number of fixups, upgrades and documentation tweaks, but is functionally the same as 3.7. New features will come with 3.9+

  • Update Python syntax for modern versions with pyupgrade
  • Drop support for EOL Python <3.8 and Django <2.2 version; add support up to Django 5 on Python 3.12
  • Switch to ruff instead of pep8 and flake8
  • Move from CircleCI to Github Actions for CI
  • Add support for using pre-commit with the project
  • Remove deprecation warning for child-src
  • Fix capturing brackets in script template tags
  • Update docs to clarify when nonce will not be added to headers
Commits
  • 4899179 Prepare for 3.8 final release
  • 684b12a Prepare for 3.8rc1 release - just one packaging change
  • b1dd37e Tomlify setup.py (#216)
  • 7200b16 Prepare for 3.8rc release (#215)
  • 4be512c Update GH actions helpers to use Node 20-based versions (#214)
  • 371da46 Bring codebase up to modern Python using pyupgrade (#213)
  • 9698258 MiddlewareMixin is always present in django>=3.2
  • 12116dc Update settings documentation to move deprecated-within-csp settings to their...
  • 61f3124 Update README.rst
  • 58113ef Fix sphinx theme installation (#208)
  • Additional commits viewable in compare view


Updates django-rq from 2.8.1 to 2.10.2

Release notes

Sourced from django-rq's releases.

v2.10.1

v2.9.0

Changelog

Sourced from django-rq's changelog.

Version 2.10.2 (2024-03-23)

Version 2.10.1 (2023-12-18)

  • Fixed packaging issues with 2.10.0.

Version 2.10.0 (2023-12-18)

Version 2.9.0 (2023-11-26)

Commits


Updates django-storages from 1.13.2 to 1.14.2

Changelog

Sourced from django-storages's changelog.

1.14.2 (2023-10-08)


S3

  • Fix re-opening of S3File ([#1321](https://github.com/jschneier/django-storages/issues/1321)_)
  • Revert raising ImproperlyConfigured when no bucket_name is set ([#1322](https://github.com/jschneier/django-storages/issues/1322)_)

.. _#1321: jschneier/django-storages#1321 .. _#1322: jschneier/django-storages#1322

1.14.1 (2023-09-29)


Azure

  • Do not require both AccountName and AccountKey in connection_string ([#1312](https://github.com/jschneier/django-storages/issues/1312)_)

S3

  • Work around boto3 closing the uploaded file ([#1303](https://github.com/jschneier/django-storages/issues/1303)_)
  • Fix crash when cleaning up during aborted connection of S3File.write ([#1304](https://github.com/jschneier/django-storages/issues/1304)_)
  • Raise FileNotFoundError when attempting to read the size of a non-existent file ([#1309](https://github.com/jschneier/django-storages/issues/1309)_)
  • Move auth & CloudFront signer validation to init ([#1302](https://github.com/jschneier/django-storages/issues/1302)_)
  • Raise ImproperlyConfigured if no bucket_name is set ([#1313](https://github.com/jschneier/django-storages/issues/1313)_)
  • Fix tracking of S3File.closed ([#1311](https://github.com/jschneier/django-storages/issues/1311)_)

.. _#1303: jschneier/django-storages#1303 .. _#1304: jschneier/django-storages#1304 .. _#1309: jschneier/django-storages#1309 .. _#1302: jschneier/django-storages#1302 .. _#1313: jschneier/django-storages#1313 .. _#1312: jschneier/django-storages#1312 .. _#1311: jschneier/django-storages#1311

1.14 (2023-09-04)


General

  • Breaking: Drop support for Django 4.0 ([#1235](https://github.com/jschneier/django-storages/issues/1235)_)
  • Breaking: The long deprecated & removed (from Django) (modified|created|accessed)_time methods have been removed from the various storages, please replace with the get_(modified|created|accessed)_time methods
  • Add support for saving pathlib.PurePath names ([#1278](https://github.com/jschneier/django-storages/issues/1278)_)
  • Add support for Django 4.2 ([#1236](https://github.com/jschneier/django-storages/issues/1236)_)

... (truncated)

Commits


Updates django-tailwind from 3.6.0 to 3.8.0

Changelog

Sourced from django-tailwind's changelog.

3.8.0

3.7.0

  • Upgrades Tailwind CSS dependencies;
  • Removes @tailwindcss/line-clamp dependency as it's now included in Tailwind by default;
  • Ensures Django 5.0 support;
  • Drops Python 3.8, 3.9 support;
  • Ensures Python 3.12 support;
  • Updates docs for Windows users;
  • Updates example Dockerfile;
Commits


Updates django-htmx from 1.16.0 to 1.17.3

Changelog

Sourced from django-htmx's changelog.

1.17.3 (2024-03-01)

  • Change reswap() type hint for method to str.

    Thanks to Dan Jacob for the report in Issue [#421](https://github.com/adamchainz/django-htmx/issues/421) <https://github.com/adamchainz/django-htmx/issues/421>__ and fix in PR [#422](https://github.com/adamchainz/django-htmx/issues/422) <https://github.com/adamchainz/django-htmx/pull/422>__.

1.17.2 (2023-11-16)

  • Fix asgiref dependency declaration.

1.17.1 (2023-11-14)

  • Fix ASGI compatibility on Python 3.12.

    Thanks to Grigory Vydrin for the report in Issue [#381](https://github.com/adamchainz/django-htmx/issues/381) <https://github.com/adamchainz/django-htmx/issues/381>__.

1.17.0 (2023-10-11)

  • Support Django 5.0.
Commits


Updates django-permissions-policy from 4.18.0 to 4.19.0

Changelog

Sourced from django-permissions-policy's changelog.

4.19.0 (2024-01-21)

  • Fix ASGI compatibility on Python 3.12.

    Thanks to Alexandre Spaeth in PR [#426](https://github.com/adamchainz/django-permissions-policy/issues/426) <https://github.com/adamchainz/django-permissions-policy/pull/426>__.

  • Updated to the latest set of features from Chrome 122 dev.

    New features:

    • publickey-credentials-create
    • usb-unrestricted
Commits


Updates django-debug-toolbar from 4.2.0 to 4.3.0

Release notes

Sourced from django-debug-toolbar's releases.

4.3

What's Changed

New Contributors

Full Changelog: https://github.com/jazzband/django-debug-toolbar/compare/4.2...4.3

Changelog

Sourced from django-debug-toolbar's changelog.

4.3.0 (2024-02-01)

  • Dropped support for Django 4.0.
  • Added Python 3.12 to test matrix.
  • Removed outdated third-party panels from the list.
  • Avoided the unnecessary work of recursively quoting SQL parameters.
  • Postponed context process in templates panel to include lazy evaluated content.
  • Fixed template panel to avoid evaluating LazyObject when not already evaluated.
  • Added support for Django 5.0.
  • Refactor the utils.get_name_from_obj to simulate the behavior of django.contrib.admindocs.utils.get_view_name.
  • Switched from black to the ruff formatter <https://astral.sh/blog/the-ruff-formatter>__.
  • Changed the default position of the toolbar from top to the upper top position.
  • Added the setting, UPDATE_ON_FETCH to control whether the toolbar automatically updates to the latest AJAX request or not. It defaults to False.
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 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions