1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #26324 -- Fixed DurationField with fractional seconds on SQLite.

This commit is contained in:
Tim Graham
2016-03-10 09:22:09 -05:00
parent 85a4844f8a
commit 4f0cd0fd16
4 changed files with 14 additions and 1 deletions

View File

@@ -12,3 +12,6 @@ Bugfixes
* Made ``MultiPartParser`` ignore filenames that normalize to an empty string
to fix crash in ``MemoryFileUploadHandler`` on specially crafted user input
(:ticket:`26325`).
* Fixed data loss on SQLite where ``DurationField`` values with fractional
seconds could be saved as ``None`` (:ticket:`26324`).