Changes between Version 231 and Version 232 of BackwardsIncompatibleChanges
- Timestamp:
- Aug 11, 2008, 12:21:32 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v231 v232 1123 1123 ```response_change```. 1124 1124 1125 ```save_model``` was introduced in [8266], but has been renamed to1126 ```save_form``` due to the new behavior which is to return unsaved instances1127 as opposed to saved instances in both ```save_form``` and ```save_formset```.1128 1129 1125 == Removed several more deprecated features for 1.0 == 1130 1126 … … 1154 1150 1155 1151 Lastly, any user that is maintaining an external database backend will need to update their code to use the new interface. The new class-based approach should make backend development much easier, as common behavior can be inherited from the base classes in django.db.backends; only database-specific behavior should require implementation. 1152