1. 09 Eyl, 2015 1 kayıt (commit)
  2. 31 Agu, 2015 1 kayıt (commit)
  3. 27 Tem, 2015 1 kayıt (commit)
  4. 06 Şub, 2015 1 kayıt (commit)
  5. 22 Mar, 2014 1 kayıt (commit)
  6. 21 Mar, 2014 1 kayıt (commit)
  7. 26 Ock, 2014 1 kayıt (commit)
  8. 03 Kas, 2013 1 kayıt (commit)
  9. 26 Eki, 2013 1 kayıt (commit)
  10. 23 Eki, 2013 1 kayıt (commit)
  11. 18 Eki, 2013 1 kayıt (commit)
  12. 09 Eyl, 2013 1 kayıt (commit)
  13. 08 Eyl, 2013 1 kayıt (commit)
  14. 29 Tem, 2013 1 kayıt (commit)
  15. 10 Haz, 2013 1 kayıt (commit)
  16. 11 Mar, 2013 1 kayıt (commit)
    • Aymeric Augustin's avatar
      Made transaction.managed a no-op and deprecated it. · 7aacde84
      Aymeric Augustin yazdı
      enter_transaction_management() was nearly always followed by managed().
      
      In three places it wasn't, but they will all be refactored eventually.
      The "forced" keyword argument avoids introducing behavior changes until
      then.
      
      This is mostly backwards-compatible, except, of course, for managed
      itself. There's a minor difference in _enter_transaction_management:
      the top self.transaction_state now contains the new 'managed' state
      rather than the previous one. Django doesn't access
      self.transaction_state in _enter_transaction_management.
      7aacde84
  17. 27 Şub, 2013 1 kayıt (commit)
    • Anssi Kääriäinen's avatar
      Fixed #19861 -- Transaction ._dirty flag improvement · 50328f0a
      Anssi Kääriäinen yazdı
      There were a couple of errors in ._dirty flag handling:
        * It started as None, but was never reset to None.
        * The _dirty flag was sometimes used to indicate if the connection
          was inside transaction management, but this was not done
          consistently. This also meant the flag had three separate values.
        * The None value had a special meaning, causing for example inability
          to commit() on new connection unless enter/leave tx management was
          done.
        * The _dirty was tracking "connection in transaction" state, but only
          in managed transactions.
        * Some tests never reset the transaction state of the used connection.
        * And some additional less important changes.
      
      This commit has some potential for regressions, but as the above list
      shows, the current situation isn't perfect either.
      50328f0a
  18. 26 Şub, 2013 1 kayıt (commit)