Changes between Version 135 and Version 136 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Dec 1, 2007, 12:14:27 PM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

Added latest change,

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v135 v136  
    4444 * [6668] Nov. 10, 2007: [#django.newforms.forms.SortedDictFromListclassremoved django.newforms.forms.SortedDictFromList class removed]
    4545 * [6671] Nov. 15, 2007: [#Auto-escapingintemplates Auto-escaping in templates]
     46 * [6796] Dec 1, 2007: [#Removedunusedsessionbackendfunctions Removed unused session backend functions]
    4647
    4748
     
    472473The attributes on filter functions and the new {{{escape}}} behaviour mean that you can write templates and filters that will operate correctly in both auto-escaping and non-auto-escaping environments, so you're not forcing your decision onto users of your filters, if you distribute the code.
    473474
     475== Removed unused session backend functions ==
     476
     477In [6796] a couple of session backend functions that are no longer needed were removed. In the unlikely event your code was using {{{get_new_session_key()}}} or {{{get_new_session_object()}}}, you will need to switch to using {{{SessionBase._get_new_session_key()}}}.
Back to Top