~ubuntu-branches/debian/sid/sqlalchemy/sid

« back to all changes in this revision

Viewing changes to doc/build/changelog/migration_05.rst

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2014-06-27 20:17:13 UTC
  • mfrom: (1.4.28)
  • Revision ID: package-import@ubuntu.com-20140627201713-g6p1kq8q1qenztrv
Tags: 0.9.6-1
* New upstream release
* Remove Python 3.X build tag files, thanks to Matthias Urlichs for the
  patch (closes: #747852)
* python-fdb isn't in the Debian archive yet so default dialect for firebird://
  URLs is changed to obsolete kinterbasdb, thanks to Russell Stuart for the
  patch (closes: #752145)

Show diffs side-by-side

added added

removed removed

Lines of Context:
338
338
* **SessionExtension.** - This is an easy to use extension
339
339
  class for session events.  In particular, it provides
340
340
  ``before_flush()``, ``after_flush()`` and
341
 
  ``after_flush_postexec()`` methods.  It's usage is
 
341
  ``after_flush_postexec()`` methods.  This usage is
342
342
  recommended over ``MapperExtension.before_XXX`` in many
343
343
  cases since within ``before_flush()`` you can modify the
344
344
  flush plan of the session freely, something which cannot
545
545
* **get()/load() cleanup**
546
546
 
547
547
 
548
 
  The ``load()`` method has been removed.  It's
 
548
  The ``load()`` method has been removed.  Its
549
549
  functionality was kind of arbitrary and basically copied
550
550
  from Hibernate, where it's also not a particularly
551
551
  meaningful method.