deprecate locked_cached_property

This commit is contained in:
David Lord 2023-02-23 10:05:57 -08:00
parent c690f529f2
commit 4256fc6304
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
4 changed files with 22 additions and 6 deletions

View file

@ -26,6 +26,10 @@ Unreleased
- Importing ``escape`` and ``Markup`` from ``flask`` is deprecated. Import them
directly from ``markupsafe`` instead. :pr:`4996`
- The ``app.got_first_request`` property is deprecated. :pr:`4997`
- The ``locked_cached_property`` decorator is deprecated. Use a lock inside the
decorated function if locking is needed. :issue:`4993`
- Remove uses of locks that could cause requests to block each other very briefly.
:issue:`4993`
- Use modern packaging metadata with ``pyproject.toml`` instead of ``setup.cfg``.
:pr:`4947`
- Ensure subdomains are applied with nested blueprints. :issue:`4834`