diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2013-03-28 15:02:35 -0500 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2013-03-28 15:07:43 -0500 |
| commit | d7eaadb4f810e9790d01dae99d218415c8b673a2 (patch) | |
| tree | e79d53d1c5e1607fd881fabaa088788b54f6dbd4 | |
| parent | ebac592a83c1f7c231b6cb1e05049ce53bb9347b (diff) | |
[1.5.x] Added 1.5.1 release notes.
Backport of ae5247cb from master.
| -rw-r--r-- | docs/releases/1.5.1.txt | 28 | ||||
| -rw-r--r-- | docs/releases/index.txt | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/docs/releases/1.5.1.txt b/docs/releases/1.5.1.txt new file mode 100644 index 0000000000..99998616d2 --- /dev/null +++ b/docs/releases/1.5.1.txt @@ -0,0 +1,28 @@ +========================== +Django 1.5.1 release notes +========================== + +*March 28, 2013* + +This is Django 1.5.1, a bugfix release for Django 1.5. It's completely backwards +compatible with Django 1.5, but includes a handful of fixes. + +The biggest fix is for a memory leak introduced in Django 1.5. Under certain +circumstances, repeated iteration over querysets could leak memory - sometimes +quite a bit of it. If you'd like more information, the details are in +`our ticket tracker`__ (and in `a related issue`__ in Python itself). + +__ https://code.djangoproject.com/ticket/19895 +__ http://bugs.python.org/issue17468 + +If you've noticed memory problems under Django 1.5, upgrading to 1.5.1 should +fix those issues. + +Django 1.5.1 also includes a couple smaller fixes: + +* Module-level warnings emitted during tests are no longer silently hidden + (`#18985`__). +* Prevented filtering on password hashes in the user admin (`#20078`__). + +__ https://code.djangoproject.com/ticket/18985 +__ https://code.djangoproject.com/ticket/20078 diff --git a/docs/releases/index.txt b/docs/releases/index.txt index d5d82c0ac0..55cb6fdb10 100644 --- a/docs/releases/index.txt +++ b/docs/releases/index.txt @@ -21,6 +21,7 @@ Final releases .. toctree:: :maxdepth: 1 + 1.5.1 1.5 1.4 release |
