Changes between Version 200 and Version 201 of BackwardsIncompatibleChanges
- Timestamp:
- Aug 2, 2008, 10:09:34 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v200 v201 71 71 * [8143] July 30, 2008 [#DecimalFieldconversiontightened DecimalField conversion tightened] 72 72 * [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] 73 74 74 75 == Database constraint names changed == … … 1051 1052 1052 1053 The 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 1057 In [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.