Changes between Version 80 and Version 81 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Apr 1, 2007, 12:29:24 AM (18 years ago)
Author:
Adrian Holovaty
Comment:

Added "Changed 'spaceless' template tag to remove all spaces"

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v80 v81  
    2020Changes made after Django [source:/django/tags/releases/0.96 0.96]
    2121
    22 ''(None so far)''
    23 
     22 * March 31, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Changedspacelesstemplatetagtoremoveallspaces Changed 'spaceless' template tag to remove all spaces]
    2423
    2524== Database constraint names changed ==
     
    110109== Enforcing MySQLdb version ==
    111110
    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.
     111As 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.
    113112
    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.
     113In [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
     117As of [4885], the {{{spaceless}}} template tag removes *all* spaces between HTML tags instead of preserving a single space.
Back to Top