aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics/release-notes.md
diff options
context:
space:
mode:
authorTom Christie2014-08-20 12:32:24 +0100
committerTom Christie2014-08-20 12:32:24 +0100
commit59b47eac14778767a17e56bd8adc0610417f2878 (patch)
tree8e0a6ea2ca1381122dc3163d293aea121d32b330 /docs/topics/release-notes.md
parent6ffc97c808f8026c063011e2d048604f3a6b70fa (diff)
downloaddjango-rest-framework-59b47eac14778767a17e56bd8adc0610417f2878.tar.bz2
Fix cache_throttle typo
Diffstat (limited to 'docs/topics/release-notes.md')
-rw-r--r--docs/topics/release-notes.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md
index a31be28f..0a74a27d 100644
--- a/docs/topics/release-notes.md
+++ b/docs/topics/release-notes.md
@@ -62,6 +62,7 @@ You can determine your currently installed version using `pip freeze`:
* Bugfix: Copy `filter_backends` list before returning it, in order to prevent view code from mutating the class attribute itself.
* Bugfix: Set the `.action` attribute on viewsets when introspected by `OPTIONS` for testing permissions on the view.
* Bugfix: Ensure `ValueError` raised during deserialization results in a error list rather than a single error. This is now consistent with other validation errors.
+* Bugfix: Fix `cache_format` typo on throttle classes, was `"throtte_%(scope)s_%(ident)s"`. Note that this will invalidate existing throttle caches.
---