From: Mike Bayer Date: Wed, 31 Oct 2018 20:32:36 +0000 (-0400) Subject: - 1.0.2 X-Git-Tag: rel_1_0_2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecab9967b08b9fa71a985ca2de61884e3f6e0c5d;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.0.2 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index c1c80e43..a0b0f490 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,26 @@ Changelog .. changelog:: :version: 1.0.2 - :include_notes_from: unreleased + :released: October 31, 2018 + + .. change:: + :tags: bug, autogenerate + :tickets: 515 + + The ``system=True`` flag on :class:`.Column`, used primarily in conjunction + with the Postgresql "xmin" column, now renders within the autogenerate + render process, allowing the column to be excluded from DDL. Additionally, + adding a system=True column to a model will produce no autogenerate diff as + this column is implicitly present in the database. + + .. change:: + :tags: bug, mssql + :tickets: 513 + + Fixed issue where usage of the SQL Server ``mssql_include`` option within a + :meth:`.Operations.create_index` would raise a KeyError, as the additional + column(s) need to be added to the table object used by the construct + internally. .. changelog:: :version: 1.0.1 diff --git a/docs/build/unreleased/513.rst b/docs/build/unreleased/513.rst deleted file mode 100644 index 87fe332c..00000000 --- a/docs/build/unreleased/513.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, mssql - :tickets: 513 - - Fixed issue where usage of the SQL Server ``mssql_include`` option within a - :meth:`.Operations.create_index` would raise a KeyError, as the additional - column(s) need to be added to the table object used by the construct - internally. diff --git a/docs/build/unreleased/515.rst b/docs/build/unreleased/515.rst deleted file mode 100644 index 73cf85d3..00000000 --- a/docs/build/unreleased/515.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 515 - - The ``system=True`` flag on :class:`.Column`, used primarily in conjunction - with the Postgresql "xmin" column, now renders within the autogenerate - render process, allowing the column to be excluded from DDL. Additionally, - adding a system=True column to a model will produce no autogenerate diff as - this column is implicitly present in the database.