Changes between Version 205 and Version 206 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Aug 5, 2008, 9:22:03 AM (16 years ago)
Author:
Luke Plant
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v205 v206  
    7373 * [8191] Aug. 1, 2008 [#Removedseveraldeprecatedfeaturesfor1.0 Removed several deprecated features for 1.0]
    7474 * [8202] Aug. 3, 2008 [#Removeddictionaryaccesstorequestobject Removed dictionary access to request object]
     75 * [8211] Aug. 5, 2008 [#UrltagnowallowsNoReverseMatchexceptionstopropagate url tag now allows !NoReverseMatch exceptions to propagate]
    7576
    7677== Database constraint names changed ==
     
    10711072 * `request.has_key(key)` -> `request.REQUEST.has_key(key)`
    10721073 
     1074== `url` tag now allows !NoReverseMatch exceptions to propagate ==
     1075
     1076Previously !NoReverseMatch exceptions were silenced in the `{% url %}` tag.  This is very rarely useful, and usually just produced difficult to find bugs, and so was changed in [8211] .  See #8031
Back to Top