Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the django-related group with 12 updates #8

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Aug 6, 2024

Bumps the django-related group with 12 updates:

Package From To
django 4.2.11 4.2.15
djangorestframework 3.14.0 3.15.2
django-model-utils 4.3.1 4.5.1
django-filter 22.1 24.3
django-simple-history 3.4.0 3.7.0
django-cors-headers 4.3.0 4.4.0
django-rest-knox 4.2.0 5.0.1
django-cachalot 2.6.1 2.6.2
django-hijack 3.4.2 3.6.0
django-json-widget 1.1.1 2.0.1
django-silk 5.0.4 5.1.0
django-debug-toolbar 4.2.0 4.4.6

Updates django from 4.2.11 to 4.2.15

Commits

Updates djangorestframework from 3.14.0 to 3.15.2

Release notes

Sourced from djangorestframework's releases.

Version 3.15.1

What's Changed

New Contributors

Full Changelog: encode/django-rest-framework@3.15.0...3.15.1

Commits
  • c7a7eae Version 3.15.2 (#9439)
  • 3b41f01 Fix potential XSS vulnerability in break_long_headers template filter (#9435)
  • fe92f0d Add __hash__ method for permissions.OperandHolder class (#9417)
  • fbdab09 docs: Correct some evaluation results and a httpie option in Tutorial1 (#9421)
  • 36d5c0e tests: Check urlpatterns after cleanups (#9400)
  • 9d4ed05 Don't use Windows line endings
  • b34bde4 Fix typo in setup.cfg setting
  • ab681f2 Update requirements in docs
  • 2237724 bump pygments (security hygiene)
  • d58b8da Update deprecation hints
  • Additional commits viewable in compare view

Updates django-model-utils from 4.3.1 to 4.5.1

Release notes

Sourced from django-model-utils's releases.

4.5.1

What's Changed

Full Changelog: jazzband/django-model-utils@4.5.0...4.5.1

v4.5.0

What's Changed

New Contributors

Full Changelog: jazzband/django-model-utils@4.4.0...4.5.0

4.4.0 (2024-02-10)

What's Changed

... (truncated)

Changelog

Sourced from django-model-utils's changelog.

4.5.1 (2024-05-02)

4.5.0 (2024-04-01)

4.4.0 (2024-02-10)

  • Add support for Python 3.11 (GH-#545)
  • Add support for Python 3.12 (GH-#545)
  • Drop support for Python 3.7 (GH-#545)
  • Add support for Django 4.2
  • Add support for Django 5.0
  • Remove SaveSignalHandlingModel. This model used a modified copy of the internal Django method Model.save_base() and had not been updated for upstream bug fixes changes since its addition.
  • Add Swedish translation
  • Use proper column name instead of attname (GH-#573)
  • Fix ValueError when calling prefetch_related for tracked ForeignKey fields
Commits
  • 53cebc5 Updated changelog to include 4.5.1 & 4.5.0
  • c8cb822 Remove JoinQueryset.get_quoted_query()
  • 9e71a46 Merge pull request #608 from jazzband/translations
  • c6d686e Translation files
  • 994d6c1 Merge pull request #600 from foarsitter/issue-manager
  • ab7996d Merge pull request #602 from jazzband/pre-commit-ci-update-config
  • 8bef73c Merge pull request #563 from foarsitter/docker_postgresql
  • c7f61f6 [pre-commit.ci] pre-commit autoupdate
  • c380b3b Add issue-manager.yml
  • 87a9466 Merge pull request #598 from ProtixIT/remove-obsolete-test-models
  • Additional commits viewable in compare view

Updates django-filter from 22.1 to 24.3

Changelog

Sourced from django-filter's changelog.

Version 24.3 (2024-08-02)

  • Adds official support for Django 5.1.

  • Allow using dictionaries for grouped choices on Django 5.0+.

    Thanks to Sævar Öfjörð Magnússon.

  • Adds unknown_field_behavior FilterSet option to allowing warning and ignore behaviours for unknown field types during FilterSet generation.

    Thanks to Loes.

Version 24.2 (2024-03-27)

  • Fixed a regression in v23.4 where callable choices were incorrectly evaluated at filter instantiation, on Django versions prior to 5.0.

    Thanks to Craig de Stigter for the report and reproduce.

Version 24.1 (2024-03-08)

  • Updated supported Python and Django versions, and resolved upcoming Django deprecations.

    Required versions are now at least Python 3.8 and Django 4.2.

    Thanks to Michael Manganiello.

  • Allowed passing a FilterSet class to the filterset_factory().

    Thanks to Birger Schacht.

  • Set empty default value of filterset data to MultiValueDict.

    Thanks to Shlomo Gordon.

  • Preserve list values passed to the data dict in CSV widgets.

    Thanks to Bryan Brancotte.

  • Updates French and Ukrainian localisations.

    Thanks to Weblate.

Version 23.5 (2023-12-05)

... (truncated)

Commits

Updates django-simple-history from 3.4.0 to 3.7.0

Release notes

Sourced from django-simple-history's releases.

Release 3.7.0

What's Changed

Documented changes

Merged PRs

New Contributors

Full Changelog: jazzband/django-simple-history@3.6.0...3.7.0

Release 3.6.0

What's Changed

Documented changes

Merged PRs

New Contributors

Full Changelog: jazzband/django-simple-history@3.5.0...3.6.0

Release 3.5.0

What's Changed

Documented changes

Merged PRs

... (truncated)

Changelog

Sourced from django-simple-history's changelog.

3.7.0 (2024-05-29)

  • Dropped support for Django 3.2, which reached end-of-life on 2024-04-01 (gh-1344)
  • Removed the temporary requirement on asgiref>=3.6 added in 3.5.0, now that the minimum required Django version is 4.2 (gh-1344)
  • Migrated package building from using the deprecated setup.py to using pyproject.toml (with Hatchling as build backend); setup.py has consequently been removed (gh-1348)
  • Added django>=4.2 as an installation dependency, to mirror the minimum version tested in our CI (gh-1349)

3.6.0 (2024-05-26)

  • Support custom History Manager and QuerySet classes (gh-1280)
  • Renamed the (previously internal) admin template simple_history/_object_history_list.html to simple_history/object_history_list.html, and added the field SimpleHistoryAdmin.object_history_list_template for overriding it (gh-1128)
  • Deprecated the undocumented template tag simple_history_admin_list.display_list(); it will be removed in version 3.8 (gh-1128)
  • Added SimpleHistoryAdmin.get_history_queryset() for overriding which QuerySet is used to list the historical records (gh-1128)
  • Added SimpleHistoryAdmin.get_history_list_display() which returns history_list_display by default, and made the latter into an actual field (gh-1128)
  • ModelDelta and ModelChange (in simple_history.models) are now immutable dataclasses; their signatures remain unchanged (gh-1128)
  • ModelDelta's changes and changed_fields are now sorted alphabetically by field name. Also, if ModelChange is for an M2M field, its old and new lists are sorted by the related object. This should help prevent flaky tests. (gh-1128)
  • diff_against() has a new keyword argument, foreign_keys_are_objs; see usage in the docs under "History Diffing" (gh-1128)
  • Added a "Changes" column to SimpleHistoryAdmin's object history table, listing the changes between each historical record of the object; see the docs under "Customizing the History Admin Templates" for overriding its template context (gh-1128)
  • Fixed the setting SIMPLE_HISTORY_ENABLED = False not preventing M2M historical records from being created (gh-1328)
  • For history-tracked M2M fields, adding M2M objects (using add() or set()) used to cause a number of database queries that scaled linearly with the number of objects; this has been fixed to now be a constant number of queries (gh-1333)

3.5.0 (2024-02-19)

  • Fixed FieldError when creating historical records for many-to-many fields with to="self" (gh-1218)
  • Allow HistoricalRecords.m2m_fields as str (gh-1243)
  • Fixed HistoryRequestMiddleware deleting non-existent HistoricalRecords.context.request in very specific circumstances (gh-1256)

... (truncated)

Commits
  • 2a2bec9 Merge pull request #1350 from jazzband/release-3.7.0
  • 1fe70ab Replaced PyPI comments in CHANGES.rst with a regex
  • 695b17f Prepare for release 3.7.0
  • a4e4783 Added Django as installation dependency (#1349)
  • 6a8918e Merge pull request #1348 from ofek/modernize-metadata
  • 19722e2 Merge branch 'ddabble/update-package-metadata' into modernize-metadata
  • fef00f6 Migrated setup.py -> pyproject.toml with Hatchling
  • cf6848c Tweaked layout of README badges
  • 87a08b7 Changed docs link to stable version
  • 560f298 Dropped support for Django 3.2 (#1344)
  • Additional commits viewable in compare view

Updates django-cors-headers from 4.3.0 to 4.4.0

Changelog

Sourced from django-cors-headers's changelog.

4.4.0 (2024-06-19)

  • Support Django 5.1.

4.3.1 (2023-11-14)

  • Fixed ASGI compatibility on Python 3.12.

    Thanks to Adrian Capitanu for the report in Issue [#908](https://github.com/adamchainz/django-cors-headers/issues/908) <https://github.com/adamchainz/django-cors-headers/issues/908>__ and Rooyal in PR [#911](https://github.com/adamchainz/django-cors-headers/issues/911) <https://github.com/adamchainz/django-cors-headers/pull/911>__.

Commits

Updates django-rest-knox from 4.2.0 to 5.0.1

Release notes

Sourced from django-rest-knox's releases.

Fix issue with migration

  • Fix migration when not overriding AuthToken model

First Jazzband release! Fixes and improvements.

This is the first Jazzband release of django-rest-knox, and it comes with an extensive list of fixes and improvements from the last version. Thanks to everyone in the community that contributed to help get this through! 🚀

Warnings ⚠️

  • Tokens created prior to this release will no longer work

Changelist

  • Fix migration reverse flow, enable migrate 0
  • Various documentation fixes and improvements
  • Drop cryptography in favor of hashlib
  • Make custom AuthModel work
  • Token prefix can be set in the setttings
  • Drop support for Django 4.0
  • Add support for Dango 4.2, 5.0 and Python 3.11 and 3.12
  • Cleanup legacy Python 2.0 code
  • Fix isort, flake8 usage for Python 3.10 in the test suite
  • Update Github actions version
  • Upgrade markdown dependency
  • Get rid of the six library
  • Add custom login / logout response support
  • Join the jazzband organization
  • Add pre-commit hooks
  • Add tracking of tests code coverage
  • Fix migrations when used in condition with a custom DB
  • Improve typing
  • Use self.authenticate_header() in authenticate() method to get auth header prefix
Changelog

Sourced from django-rest-knox's changelog.

5.0.1

  • Fix migration: retrieve TOKEN_MODEL from knox_settings instead of Django settings.

5.0.0

  • Tokens created prior to this release will no longer work
  • Fix migration reverse flow, enable migrate 0
  • Various documentation fixes and improvements
  • Drop cryptography in favor of hashlib
  • Make custom AuthModel work
  • Token prefix can be set in the setttings
  • Drop support for Django 4.0
  • Add support for Dango 4.2, 5.0 and Python 3.11 and 3.12
  • Cleanup legacy Python 2.0 code
  • Fix isort, flake8 usage for Python 3.10 in the test suite
  • Update Github actions version
  • Upgrade markdown dependency
  • Get rid of the six library
  • Add custom login / logout response support
  • Join the jazzband organization
  • Add pre-commit hooks
  • Add tracking of tests code coverage
  • Fix migrations when used in condition with a custom DB
  • Improve typing
  • Use self.authenticate_header() in authenticate() method to get auth header prefix
Commits
  • 48dd83f Merge pull request #360 from jazzband/giovanni/fix-settings-dict
  • 4f4cde2 fix: Fix migration when retrieving from settings
  • cbecef3 Merge pull request #352 from jazzband/pre-commit-ci-update-config
  • d0a6d5e Version bump
  • 95a8fb3 Merge pull request #358 from max-wittig/patch-1
  • eeed217 docs(changelog): bump to 5.0.0, add token warning
  • 94727e9 Merge pull request #355 from jazzband/johnraz-add-changelog-for-release
  • 35382ea Merge remote-tracking branch 'origin/master' into johnraz-add-changelog-for-r...
  • a2edb24 Add changelog entries for release 4.3.0
  • 0113d42 Merge pull request #287 from brukberhane/develop
  • Additional commits viewable in compare view

Updates django-cachalot from 2.6.1 to 2.6.2

Release notes

Sourced from django-cachalot's releases.

v2.6.2

What's Changed

New Contributors

Full Changelog: noripyt/django-cachalot@v2.6.1...v2.6.2

Changelog

Sourced from django-cachalot's changelog.

2.6.2

  • Support for Python 3.12 and Django 5.0
Commits

Updates django-hijack from 3.4.2 to 3.6.0

Release notes

Sourced from django-hijack's releases.

3.6.0

What's Changed

Full Changelog: django-hijack/django-hijack@3.5.4...3.6.0

3.5.4

Fix django-hijack/django-hijack#706 -- Rename file extension from mjs to js Older versions of tools like whitenoise don't correctly guess the mjs mime type and return a generic mime type. Modern browsers will prevent those files to be executed as JavaScript modules.

Full Changelog: django-hijack/django-hijack@3.5.3...3.5.4

3.5.3

What's Changed

Full Changelog: django-hijack/django-hijack@3.5.2...3.5.3

3.5.2

What's Changed

New Contributors

Full Changelog: django-hijack/django-hijack@3.5.1...3.5.2

3.5.1

What's Changed

Full Changelog: django-hijack/django-hijack@3.5.0...3.5.1

3.5.0 -- Baseline 2023

Baseline 2023 is a set of features that are new natively supported by the majority of all browsers currently in usage. It provides a good target for frontend code. It also enables us to drop plenty legacy code and bundling tools, see also: https://web.dev/baseline/2023

What's Changed

... (truncated)

Commits
  • 659b161 Move tests out of the python package
  • b07056d Enable more ruff rules (#709)
  • e267815 Bump stylelint-config-standard-scss from 11.1.0 to 13.1.0
  • 7462021 Bump ruff from 0.4.10 to 0.5.0 (#705)
  • decd559 Fix #706 -- Rename file extension from mjs to js
  • 806fafb Adapt wording and translations (#681)
  • 966bf26 Execute apt with sudo priviliges
  • f31b7f4 Add missing gettext dependency to auto-build process
  • 7e79321 Publishto PyPI via a Trusted Publisher
  • 01e1ec9 Change documentation URL to HTTPS
  • Additional commits viewable in compare view

Updates django-json-widget from 1.1.1 to 2.0.1

Changelog

Sourced from django-json-widget's changelog.

2.0.1 (2024-03-2)

  • Fixec Version 2.0.0 causes issues with Django 4.x due to missing sourcemaps issue #83

2.0.0 (2024-03-24)

  • Fix default paths for static files #53
  • Stop declaring support for Django versions before 3.2 #65
  • Avoid HTML injection via unsafe JSON injection #64
  • Remove source map reference from JS bundle #70
  • Add dark mode CSS support #82
  • Updated documentation
Commits
  • 9aab645 Bump version: 2.0.0 → 2.0.1
  • c41e2af Merge pull request #84 from amarsahinovic/remove-sourcemap-reference
  • 89e84b2 Remove sourceMappingURL from jsone...

    Description has been truncated

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 6, 2024
@dependabot dependabot bot force-pushed the dependabot/pip/django-related-e9d92d1183 branch 2 times, most recently from ae8490e to ea0e11a Compare August 6, 2024 17:10
Bumps the django-related group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `4.2.11` | `4.2.15` |
| [djangorestframework](https://github.com/encode/django-rest-framework) | `3.14.0` | `3.15.2` |
| [django-model-utils](https://github.com/jazzband/django-model-utils) | `4.3.1` | `4.5.1` |
| [django-filter](https://github.com/carltongibson/django-filter) | `22.1` | `24.3` |
| [django-simple-history](https://github.com/jazzband/django-simple-history) | `3.4.0` | `3.7.0` |
| [django-cors-headers](https://github.com/adamchainz/django-cors-headers) | `4.3.0` | `4.4.0` |
| [django-rest-knox](https://github.com/jazzband/django-rest-knox) | `4.2.0` | `5.0.1` |
| [django-cachalot](https://github.com/noripyt/django-cachalot) | `2.6.1` | `2.6.2` |
| [django-hijack](https://github.com/django-hijack/django-hijack) | `3.4.2` | `3.6.0` |
| [django-json-widget](https://github.com/jmrivas86/django-json-widget) | `1.1.1` | `2.0.1` |
| [django-silk](https://github.com/jazzband/django-silk) | `5.0.4` | `5.1.0` |
| [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar) | `4.2.0` | `4.4.6` |


Updates `django` from 4.2.11 to 4.2.15
- [Commits](django/django@4.2.11...4.2.15)

Updates `djangorestframework` from 3.14.0 to 3.15.2
- [Release notes](https://github.com/encode/django-rest-framework/releases)
- [Commits](encode/django-rest-framework@3.14.0...3.15.2)

Updates `django-model-utils` from 4.3.1 to 4.5.1
- [Release notes](https://github.com/jazzband/django-model-utils/releases)
- [Changelog](https://github.com/jazzband/django-model-utils/blob/master/CHANGES.rst)
- [Commits](jazzband/django-model-utils@4.3.1...4.5.1)

Updates `django-filter` from 22.1 to 24.3
- [Release notes](https://github.com/carltongibson/django-filter/releases)
- [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst)
- [Commits](carltongibson/django-filter@22.1...24.3)

Updates `django-simple-history` from 3.4.0 to 3.7.0
- [Release notes](https://github.com/jazzband/django-simple-history/releases)
- [Changelog](https://github.com/jazzband/django-simple-history/blob/master/CHANGES.rst)
- [Commits](jazzband/django-simple-history@3.4.0...3.7.0)

Updates `django-cors-headers` from 4.3.0 to 4.4.0
- [Changelog](https://github.com/adamchainz/django-cors-headers/blob/main/CHANGELOG.rst)
- [Commits](adamchainz/django-cors-headers@4.3.0...4.4.0)

Updates `django-rest-knox` from 4.2.0 to 5.0.1
- [Release notes](https://github.com/jazzband/django-rest-knox/releases)
- [Changelog](https://github.com/jazzband/django-rest-knox/blob/develop/CHANGELOG.md)
- [Commits](jazzband/django-rest-knox@4.2.0...5.0.1)

Updates `django-cachalot` from 2.6.1 to 2.6.2
- [Release notes](https://github.com/noripyt/django-cachalot/releases)
- [Changelog](https://github.com/noripyt/django-cachalot/blob/master/CHANGELOG.rst)
- [Commits](noripyt/django-cachalot@v2.6.1...v2.6.2)

Updates `django-hijack` from 3.4.2 to 3.6.0
- [Release notes](https://github.com/django-hijack/django-hijack/releases)
- [Changelog](https://github.com/django-hijack/django-hijack/blob/master/docs/release-button.png)
- [Commits](django-hijack/django-hijack@3.4.2...3.6.0)

Updates `django-json-widget` from 1.1.1 to 2.0.1
- [Changelog](https://github.com/jmrivas86/django-json-widget/blob/master/CHANGELOG.rst)
- [Commits](jmrivas86/django-json-widget@v1.1.1...v2.0.1)

Updates `django-silk` from 5.0.4 to 5.1.0
- [Release notes](https://github.com/jazzband/django-silk/releases)
- [Changelog](https://github.com/jazzband/django-silk/blob/master/CHANGELOG.md)
- [Commits](jazzband/django-silk@5.0.4...5.1.0)

Updates `django-debug-toolbar` from 4.2.0 to 4.4.6
- [Release notes](https://github.com/jazzband/django-debug-toolbar/releases)
- [Changelog](https://github.com/jazzband/django-debug-toolbar/blob/main/docs/changes.rst)
- [Commits](django-commons/django-debug-toolbar@4.2...4.4.6)

---
updated-dependencies:
- dependency-name: django
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: django-related
- dependency-name: djangorestframework
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: django-related
- dependency-name: django-model-utils
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: django-related
- dependency-name: django-filter
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: django-related
- dependency-name: django-simple-history
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: django-related
- dependency-name: django-cors-headers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: django-related
- dependency-name: django-rest-knox
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: django-related
- dependency-name: django-cachalot
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: django-related
- dependency-name: django-hijack
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: django-related
- dependency-name: django-json-widget
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: django-related
- dependency-name: django-silk
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: django-related
- dependency-name: django-debug-toolbar
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: django-related
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/django-related-e9d92d1183 branch from ea0e11a to 08bd778 Compare August 6, 2024 17:15
Copy link
Author

dependabot bot commented on behalf of github Aug 6, 2024

The group that created this PR has been removed from your configuration.

@dependabot dependabot bot closed this Aug 6, 2024
@dependabot dependabot bot deleted the dependabot/pip/django-related-e9d92d1183 branch August 6, 2024 17:20
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.

0 participants