StockazIO icon indicating copy to clipboard operation
StockazIO copied to clipboard

Update django

Open renovate[bot] opened this issue 1 year ago • 0 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Django (source, changelog) ==4.1.2 -> ==4.2.13 age adoption passing confidence
django-appconf (source) ==1.0.5 -> ==1.0.6 age adoption passing confidence
django-cors-headers (changelog) ==3.13.0 -> ==3.14.0 age adoption passing confidence
django-debug-toolbar (changelog) ==3.7.0 -> ==3.8.1 age adoption passing confidence
django-environ (source, changelog) ==0.9.0 -> ==0.11.2 age adoption passing confidence
django-extensions (changelog) ==3.2.1 -> ==3.2.3 age adoption passing confidence
django-mptt ==0.14.0 -> ==0.16.0 age adoption passing confidence
django-oauth-toolkit ==2.2.0 -> ==2.3.0 age adoption passing confidence
django-silk ==5.0.1 -> ==5.1.0 age adoption passing confidence
django-tree-queries ==0.11.0 -> ==0.19.0 age adoption passing confidence

Release Notes

django/django (Django)

v4.2.13

Compare Source

v4.2.12

Compare Source

v4.2.11

Compare Source

v4.2.10

Compare Source

v4.2.9

Compare Source

v4.2.8

Compare Source

v4.2.7

Compare Source

v4.2.6

Compare Source

v4.2.5

Compare Source

v4.2.4

Compare Source

v4.2.3

Compare Source

v4.2.2

Compare Source

v4.2.1

Compare Source

v4.2

Compare Source

v4.1.13

Compare Source

v4.1.12

Compare Source

v4.1.11

Compare Source

v4.1.10

Compare Source

v4.1.9

Compare Source

v4.1.8

Compare Source

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

v4.1.4

Compare Source

v4.1.3

Compare Source

django-compressor/django-appconf (django-appconf)

v1.0.6

Compare Source

adamchainz/django-cors-headers (django-cors-headers)

v3.14.0

Compare Source

  • Support Django 4.2.

  • Switch from urlparse() to urlsplit() for URL parsing, reducing the middleware runtime up to 5%. This changes the type passed to origin_found_in_white_lists(), so if you have subclassed the middleware to override this method, you should check it is compatible (it most likely is).

    Thanks to Thibaut Decombe in PR #&#8203;793 <https://github.com/adamchainz/django-cors-headers/pull/793>__.

jazzband/django-debug-toolbar (django-debug-toolbar)

v3.8.1

Compare Source

Note: 3.8.0 was not released, use 3.8.1

What's Changed

New Contributors

Full Changelog: https://github.com/jazzband/django-debug-toolbar/compare/3.7...3.8.1

joke2k/django-environ (django-environ)

v0.11.2

Compare Source

Fixed +++++

  • Revert "Add variable expansion." feature due to #&#8203;490 <https://github.com/joke2k/django-environ/issues/490>_.

v0.11.1

Compare Source

Fixed +++++

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

v0.11.0

Compare Source

Added +++++

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

Changed +++++++

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

Removed +++++++

  • Removed support of Python 3.5.

v0.10.0

Compare Source

Added +++++

  • Use the core redis library by default if running Django >= 4.0 #&#8203;356 <https://github.com/joke2k/django-environ/issues/356>_.
  • Value of dict can now contain an equal sign #&#8203;241 <https://github.com/joke2k/django-environ/pull/241>_.
  • Added support for Python 3.11.
  • Added CONN_HEALTH_CHECKS to database base options #&#8203;413 <https://github.com/joke2k/django-environ/issues/413>_.
  • Added encoding parameter to read_env with default value 'utf8' #&#8203;442 <https://github.com/joke2k/django-environ/pull/442>_.
  • Added support for Django 4.1 #&#8203;416 <https://github.com/joke2k/django-environ/issues/416>_.

Deprecated ++++++++++

  • Support of Python < 3.6 is deprecated and will be removed in next major version.

Changed +++++++

  • Used UTF-8 as a encoding when open .env file.
  • Provided access to DB_SCHEMES through cls rather than Env in db_url_config #&#8203;414 <https://github.com/joke2k/django-environ/pull/414>_.
  • Correct CI workflow to use supported Python versions/OS matrix #&#8203;441 <https://github.com/joke2k/django-environ/pull/441>_.
  • Reworked trigger CI workflows strategy #&#8203;440 <https://github.com/joke2k/django-environ/pull/440>_.

Fixed +++++

  • Fixed logic of Env.get_value() to skip parsing only when default=None, not for all default values that coerce to False #&#8203;404 <https://github.com/joke2k/django-environ/issues/404>_.
  • Deleted duplicated include in docs/quickstart.rst #&#8203;439 <https://github.com/joke2k/django-environ/pull/439>_.

Removed +++++++

  • Removed deprecated Env.unicode().
  • Removed environ.register_schemes calls and do not modify global urllib.parse.urlparse's uses_* variables as this no longer needed #&#8203;246 <https://github.com/joke2k/django-environ/pull/246>_.
django-extensions/django-extensions (django-extensions)

v3.2.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/django-extensions/django-extensions/compare/3.2.1...3.2.3

jazzband/django-oauth-toolkit (django-oauth-toolkit)

v2.3.0

Compare Source

WARNING

Issues caused by Release 2.0.0 breaking changes continue to be logged. Please make sure to carefully read these release notes before performing a MAJOR upgrade to 2.x.

These issues both result in {"error": "invalid_client"}:

  1. The application client secret is now hashed upon save. You must copy it before it is saved. Using the hashed value will fail.

  2. PKCE_REQUIRED is now True by default. You should use PKCE with your client or set PKCE_REQUIRED=False if you are unable to fix the client.

Added
Changed
jazzband/django-silk (django-silk)

v5.1.0

Compare Source

:release-by: Albert Wang (@​albertyw) Full Changelog

Upgrading:

This release includes Fix deprecation warning for get_storage_class #​669 which deprecates SILKY_STORAGE_CLASS. Users should instead use the Django STORAGES configuration. See README and Django documentation for more information.

Also, for python 3.12, the cProfile stdlib library cannot be enabled multiple times concurrently. Silk will therefore skip profiling if another profile is already enabled.

Features/Enhancements:

Fixes:

Maintenance and Cleanup:

Dependencies:

v5.0.4

Compare Source

:release-by: Albert Wang (@​albertyw) Full Changelog

Features/Enhancements:

Maintenance and Cleanup:

Dependencies:

v5.0.3

Compare Source

:release-by: Albert Wang (@​albertyw) Full Changelog

Fixes:

Features/Enhancements:

Dependencies:

  • #​625 Drop dependency to jinja2

v5.0.2

Compare Source

:release-by: Albert Wang (@​albertyw) Full Changelog

Fixes:

  • Multipart forms and RawPostDataException (#​592)
  • Decrease unnecessary database hits (#​587) (#​588)

Features/Enhancements:

  • Remove unneeded pytz package (#​603)
  • Use contextlib in test_profile_parser (#​590)
  • Add support for storages, that don't implement full filesystem path (#​596)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • [ ] If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] avatar Oct 29 '22 22:10 renovate[bot]