1.9.6.txt 723 B

1234567891011121314151617181920212223
  1. ==========================
  2. Django 1.9.6 release notes
  3. ==========================
  4. *Under development*
  5. Django 1.9.6 fixes several bugs in 1.9.5.
  6. Bugfixes
  7. ========
  8. * Added support for relative path redirects to
  9. ``SimpleTestCase.assertRedirects()`` because Django 1.9 no longer converts
  10. redirects to absolute URIs (:ticket:`26428`).
  11. * Fixed ``TimeField`` microseconds round-tripping on MySQL and SQLite
  12. (:ticket:`26498`).
  13. * Prevented ``makemigrations`` from generating infinite migrations for a model
  14. field that references a ``functools.partial`` (:ticket:`26475`).
  15. * Fixed a regression where ``SessionBase.pop()`` returned ``None`` rather than
  16. raising a ``KeyError`` for nonexistent values (:ticket:`26520`).