From: Mike Bayer Date: Sat, 20 Oct 2012 22:57:52 +0000 (-0400) Subject: fix missing/incorrect version ids X-Git-Tag: rel_0_8_0b1~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14652dd16f8aabc9e447095865eac99356999710;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix missing/incorrect version ids --- diff --git a/doc/build/changelog/changelog_05.rst b/doc/build/changelog/changelog_05.rst index a02a67fcfa..0bcc1aa3f1 100644 --- a/doc/build/changelog/changelog_05.rst +++ b/doc/build/changelog/changelog_05.rst @@ -3246,7 +3246,7 @@ added BFILE to reflected type names .. changelog:: - :version: 0.5beta3 + :version: 0.5.0beta3 :released: Mon Aug 04 2008 .. change:: @@ -3405,7 +3405,7 @@ always optional for use with existing tables.) .. changelog:: - :version: 0.5beta2 + :version: 0.5.0beta2 :released: Mon Jul 14 2008 .. change:: @@ -3554,7 +3554,7 @@ to be passed to the Table constructor. .. changelog:: - :version: 0.5beta1 + :version: 0.5.0beta1 :released: Thu Jun 12 2008 .. change:: diff --git a/doc/build/changelog/changelog_07.rst b/doc/build/changelog/changelog_07.rst index 8029339a2f..7b28f5f230 100644 --- a/doc/build/changelog/changelog_07.rst +++ b/doc/build/changelog/changelog_07.rst @@ -214,17 +214,6 @@ operators are present as methods like all the other operators. - .. change:: - :tags: bug, sql - :tickets: 2525 - - When the primary key column of a Table - is replaced, such as via extend_existing, - the "auto increment" column used by insert() - constructs is reset. Previously it would - remain referring to the previous primary - key column. - .. change:: :tags: engine, bug :tickets: 2522 @@ -235,7 +224,7 @@ for connections would leave those threads waiting for the duration of the timeout on the old pool (or indefinitely - if timeout was disabled). The fix + if timeout was disabled). The fix now notifies those waiters with a special exception case and has them move onto the new pool. @@ -696,6 +685,17 @@ attempts to remove "." from column names returned by SQLite cursor.description. + .. change:: + :tags: sqlite, bug + :tickets: 2525 + + When the primary key column of a Table + is replaced, such as via extend_existing, + the "auto increment" column used by insert() + constructs is reset. Previously it would + remain referring to the previous primary + key column. + .. changelog:: :version: 0.7.6 :released: Wed Mar 14 2012 @@ -1039,6 +1039,10 @@ to get everything including subqueries in the columns clause, etc. +.. changelog:: + :version: 0.7.5 + :released: Sat Jan 28 2012 + .. change:: :tags: orm, bug :tickets: 2389 @@ -1352,7 +1356,7 @@ weakref callback was invoked. .. change:: - :tags: bug, Py3K + :tags: bug, py3k :tickets: 2348 Fixed inappropriate usage of util.py3k @@ -1376,6 +1380,10 @@ Fixed large_collection.py to close the session before dropping tables. +.. changelog:: + :version: 0.7.4 + :released: Fri Dec 09 2011 + .. change:: :tags: orm, bug :tickets: 2315 @@ -2751,7 +2759,7 @@ added CURRENT to reserved word list. Also in 0.6.9. .. change:: - :tags: ext + :tags: oracle :tickets: Fixed bug in the mutable extension whereby @@ -2760,7 +2768,7 @@ would not get instrumented. .. change:: - :tags: ext + :tags: oracle :tickets: Fixed bug in the mutable extension whereby @@ -2950,7 +2958,7 @@ :released: Fri May 20 2011 .. change:: - :tags: mysql + :tags: :tickets: This section documents those changes from 0.7b4 @@ -3856,7 +3864,7 @@ :released: Sat Feb 12 2011 .. change:: - :tags: examples + :tags: :tickets: Detailed descriptions of each change below are @@ -4426,10 +4434,3 @@ FB/Interbase version idents are parsed into a structure such as (8, 1, 1, 'interbase') or (2, 1, 588, 'firebird') so they can be distinguished. - - .. change:: - :tags: drizzle - :tickets: 2003 - - New dialect for Drizzle, a MySQL variant. Uses MySQL-python - for the DBAPI. diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index a093ffb482..40487001a6 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -1288,11 +1288,3 @@ name was omitted which apparently creates the index in the default schema, rather than that of the table. - - .. change:: - :tags: removed, extensions - :tickets: 2262 - - The SQLSoup extension is removed from - SQLAlchemy, and is now an external project. - See http://pypi.python.org/pypi/sqlsoup .