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

« back to all changes in this revision

Viewing changes to doc/build/changelog/changelog_01.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:
48
48
        :tags: 
49
49
        :tickets: 
50
50
 
51
 
      types types types!  still werent working....have to use TypeDecorator again :(
 
51
      types types types!  still weren't working....have to use TypeDecorator again :(
52
52
 
53
53
    .. change::
54
54
        :tags: 
477
477
        :tickets: 
478
478
 
479
479
      fixed attributes bug where if an object is committed, its lazy-loaded list got
480
 
      blown away if it hadnt been loaded
 
480
      blown away if it hadn't been loaded
481
481
 
482
482
    .. change::
483
483
        :tags: 
854
854
        :tags: 
855
855
        :tickets: 
856
856
 
857
 
      two issues related to postgres, which doesnt want to give you the "lastrowid"
 
857
      two issues related to postgres, which doesn't want to give you the "lastrowid"
858
858
      since oids are deprecated:
859
859
 
860
860
        * postgres database-side defaults that are on primary key cols *do* execute
861
 
          explicitly beforehand, even though thats not the idea of a PassiveDefault.  this is
 
861
          explicitly beforehand, even though that's not the idea of a PassiveDefault.  this is
862
862
          because sequences on columns get reflected as PassiveDefaults, but need to be explicitly
863
863
          executed on a primary key col so we know what we just inserted.
864
864
        * if you did add a row that has a bunch of database-side defaults on it,