Ticket #12753: 12753-releasenote.diff

File 12753-releasenote.diff, 939 bytes (added by Preston Holmes, 12 years ago)
  • docs/releases/1.4.txt

    diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt
    index be3434d..6e8d78c 100644
    a b The internals of the tag aren't part of the official stable API, but in the  
    10671067interests of full disclosure, the ``ExtendsNode.__init__`` definition has
    10681068changed, which may break any custom tags that use this class.
    10691069
     1070loading some incomplete fixtures no longer works.
     1071~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     1072
     1073Prior to 1.4, a default value was inserted for fixture objects that were missing
     1074a specific date or datetime value when auto_now_add was set for the field.
     1075This was something that should not have worked and in 1.4 loading such
     1076incomplete fixtures will fail. Because fixtures are a raw import, they should
     1077explicitly specify all field values, regardless of field options on the model.
     1078
     1079
    10701080Features deprecated in 1.4
    10711081==========================
    10721082
Back to Top