Changes between Version 87 and Version 88 of BackwardsIncompatibleChanges
- Timestamp:
- Apr 25, 2007, 3:54:28 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v87 v88 21 21 * April 9, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#RemovedLazyDate Removed `LazyDate`] 22 22 * April 20, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#MySQLIntrospectionChange MySQL Introspection change] 23 23 * April 25, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#LOGIN_URLisnowasetting Login URL is now a setting] 24 24 25 25 == Database constraint names changed == … … 116 116 117 117 This will only be apparent if you introspect a database table using 0.96 and again using [5042] or later: you will have slightly different Django models generated if there are any `CHAR(n)` columns. However, no real code changes should be necessary. 118 119 == LOGIN_URL is now a setting == 120 121 In [5072], we moved the LOGIN_URL constant from django.contrib.auth into the settings module. This was part of a broader change to make these URLs (including logout and post-login redirect) configurable. Code that previously read 122 {{{ 123 #!python 124 from django.contrib.auth import LOGIN_URL 125 }}} 126 127 should be changed to refer to `settings.LOGIN_URL` instead.