freelawproject / bigcases2

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

build(deps): bump the django-extensions group with 7 updates #484

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 9 months ago

Bumps the django-extensions group with 7 updates:

Package From To
django-environ 0.10.0 0.11.2
django-rq 2.8.1 2.10.1
django-storages 1.13.2 1.14.2
django-tailwind 3.6.0 3.8.0
django-htmx 1.16.0 1.17.2
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-rq from 2.8.1 to 2.10.1

Release notes

Sourced from django-rq's releases.

v2.10.1

v2.9.0

  • Added an option to delete all failed jobs. Thanks @​chromium7!
  • You can now specify SERIALIZER option while declaring queues in settings.py Thanks @​sophcass!
  • Updated templates to match newer versions of Django admin's styling. Thanks @​nikhilweee!
  • Don't show Empty Queue button on registry pages. Thanks @​selwin!
Changelog

Sourced from django-rq's changelog.

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)

  • Added an option to delete all failed jobs. Thanks @​chromium7!
  • You can now specify SERIALIZER option while declaring queues in settings.py Thanks @​sophcass!
  • Updated templates to match newer versions of Django admin's styling. Thanks @​nikhilweee!
  • Don't show Empty Queue button on registry pages. Thanks @​selwin!
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.2

Changelog

Sourced from django-htmx's changelog.

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


You can trigger a rebase of this PR 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

Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

mlissner commented 8 months ago

@dependabot rebase

dependabot[bot] commented 8 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.