* Correctly record calls to ``cache.get_or_set()``.
Thanks to Peter Law for the report in `Issue 319 <https://github.com/adamchainz/django-perf-rec/issues/319>`__.
4.9.0
------------------
* Support Python 3.9. * Allow recording of tracebacks alongside db queries or cache operations, selected via a function passed as ``capture_traceback`` to ``record()``.
Thanks to Nadege Michel in `PR 299 <https://github.com/adamchainz/django-perf-rec/pull/299>`__.
4.8.0
------------------
* Drop Django 2.0 and 2.1 support. * Upgrade for sqlparse 0.4.0+. This required changing how SQL lists of one element are simplified, e.g. ``IN (1)`` will now be simplified to ``IN ()`` instead of ``IN (...)``. You should regenerate your performance record files to match.
4.7.0
------------------
* Add Django 3.1 support.
4.6.1
------------------
* Create YAML files as non-executable. This will not be applied to existing files, modify their permissions if necessary, or delete and recreate.
Thanks to Peter Law for the report in `Issue 264 <https://github.com/adamchainz/django-perf-rec/issues/264>`__.
4.6.0
------------------
* Drop Django 1.11 support. Only Django 2.0+ is supported now. * Simplify SQL ``IN`` clauses to always use ``(...)``. Now ``x IN (1)`` and ``x IN (1,2)`` both simplify to ``x IN (...)``.
Thanks to Dan Palmer in `PR 263 <https://github.com/adamchainz/django-perf-rec/pull/263>`__.