Changes between Version 200 and Version 201 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Aug 2, 2008, 10:09:34 AM (16 years ago)
Author:
Gary Wilson
Comment:

Added note about [8191], fixes #8089.

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v200 v201  
    7171 * [8143] July 30, 2008 [#DecimalFieldconversiontightened DecimalField conversion tightened]
    7272 * [8162] July 30, 2008 [#Passwordresetsystemchangedtoimprovesecurityandusability  Password reset system changed to improve security and usability ]
     73 * [8191] Aug. 1, 2008 [#Removedseveraldeprecatedfeaturesfor1.0 Removed several deprecated features for 1.0]
    7374
    7475== Database constraint names changed ==
     
    10511052
    10521053The new system has much better security (#7723 is fixed).  It does not reset the password, but sends an emails to the user with a link to click on.  It also has much better usability -- the user is then prompted to enter their own password, rather than given a random one (which many users often forget to change).  The link for resetting the password will expire as soon as it is used, or after a timeout -- default 3 days.
     1054
     1055== Removed several deprecated features for 1.0 ==
     1056
     1057In [8191], several deprecated features were removed:
     1058
     1059 * The"simple" cache backend was removed, use the [http://www.djangoproject.com/documentation/cache/#local-memory-caching "locmem" backend] instead.
     1060 * The `ObjectPaginator` class was removed, use the new [http://www.djangoproject.com/documentation/pagination/ Paginator and Page classes] instead.
     1061 * The `edit_inline_type` argument for `ForeignKey` fields was removed, use [http://www.djangoproject.com/documentation/admin/#inlinemodeladmin-objects InlineModelAdmin] instead.
     1062 * The `QOperator`, `QNot`, `QAnd` and `QOr` classes were removed, use the [http://www.djangoproject.com/documentation/db-api/#complex-lookups-with-q-objects Q class] instead.
     1063 * The `maxlength` argument for model fields was removed, use `max_length` instead.
Back to Top