Changes between Version 205 and Version 206 of BackwardsIncompatibleChanges
- Timestamp:
- Aug 5, 2008, 9:22:03 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v205 v206 73 73 * [8191] Aug. 1, 2008 [#Removedseveraldeprecatedfeaturesfor1.0 Removed several deprecated features for 1.0] 74 74 * [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] 75 76 76 77 == Database constraint names changed == … … 1071 1072 * `request.has_key(key)` -> `request.REQUEST.has_key(key)` 1072 1073 1074 == `url` tag now allows !NoReverseMatch exceptions to propagate == 1075 1076 Previously !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