Changes between Version 80 and Version 81 of BackwardsIncompatibleChanges
- Timestamp:
- Apr 1, 2007, 12:29:24 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v80 v81 20 20 Changes made after Django [source:/django/tags/releases/0.96 0.96] 21 21 22 ''(None so far)'' 23 22 * March 31, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Changedspacelesstemplatetagtoremoveallspaces Changed 'spaceless' template tag to remove all spaces] 24 23 25 24 == Database constraint names changed == … … 110 109 == Enforcing MySQLdb version == 111 110 112 As of [4724], Django will raise an error if you try to use the MySQL backend with a MySQLdb ( MySQL python module) version earlier than 1.2.1p2. There were significant, production-related bugs in earlier versions, so we have upgraded the minimum requirement.111 As of [4724], Django raises an error if you try to use the MySQL backend with a {{{MySQLdb}}} (MySQL Python module) version earlier than 1.2.1p2. There were significant, production-related bugs in earlier versions, so we have upgraded the minimum requirement. 113 112 114 In [4767], a mysql_old backend was added, that is identical to the original mysql backend prior to the change in [4724]. This backend can be used if upgrading the MySQLdb module is not immediately possible, however, it is deprecated and no further development will be done on it. 113 In [4767], we added a {{{mysql_old}}} backend, which is identical to the {{{mysql}}} backend prior to the change in [4724]. You can use this backend if upgrading the {{{MySQLdb}}} module is not immediately possible. However, the {{{mysql_old}}} backend is deprecated, and we will not continue developing it. 114 115 == Changed 'spaceless' template tag to remove all spaces == 116 117 As of [4885], the {{{spaceless}}} template tag removes *all* spaces between HTML tags instead of preserving a single space.