From: Mike Bayer Date: Thu, 22 Mar 2018 14:06:32 +0000 (-0400) Subject: - 0.9.9 X-Git-Tag: rel_0_9_9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff6b851ceddea347e1779e7a74cd12700e38f258;p=thirdparty%2Fsqlalchemy%2Falembic.git - 0.9.9 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 5addbfa7..1b564a91 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,45 @@ Changelog .. changelog:: :version: 0.9.9 - :include_notes_from: unreleased + :released: March 22, 2018 + + .. change:: + :tags: feature, commands + :tickets: 481 + + Added new flag ``--indicate-current`` to the ``alembic history`` command. + When listing versions, it will include the token "(current)" to indicate + the given version is a current head in the target database. Pull request + courtesy Kazutaka Mise. + + .. change:: + :tags: bug, autogenerate, mysql + :tickets: 455 + + The fix for :ticket:`455` in version 0.9.6 involving MySQL server default + comparison was entirely non functional, as the test itself was also broken + and didn't reveal that it wasn't working. The regular expression to compare + server default values like CURRENT_TIMESTAMP to current_timestamp() is + repaired. + + .. change:: + :tags: bug, mysql, autogenerate + :tickets: 483 + + Fixed bug where MySQL server default comparisons were basically not working + at all due to incorrect regexp added in :ticket:`455`. Also accommodates + for MariaDB 10.2 quoting differences in reporting integer based server + defaults. + + + + + .. change:: + :tags: bug, operations, mysql + :tickets: 487 + + Fixed bug in ``op.drop_constraint()`` for MySQL where + quoting rules would not be applied to the constraint name. .. changelog:: :version: 0.9.8 diff --git a/docs/build/unreleased/455.rst b/docs/build/unreleased/455.rst deleted file mode 100644 index c9d439df..00000000 --- a/docs/build/unreleased/455.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, autogenerate, mysql - :tickets: 455 - - The fix for :ticket:`455` in version 0.9.6 involving MySQL server default - comparison was entirely non functional, as the test itself was also broken - and didn't reveal that it wasn't working. The regular expression to compare - server default values like CURRENT_TIMESTAMP to current_timestamp() is - repaired. diff --git a/docs/build/unreleased/481.rst b/docs/build/unreleased/481.rst deleted file mode 100644 index b94a09c6..00000000 --- a/docs/build/unreleased/481.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: feature, commands - :tickets: 481 - - Added new flag ``--indicate-current`` to the ``alembic history`` command. - When listing versions, it will include the token "(current)" to indicate - the given version is a current head in the target database. Pull request - courtesy Kazutaka Mise. diff --git a/docs/build/unreleased/483.rst b/docs/build/unreleased/483.rst deleted file mode 100644 index fc4ca12a..00000000 --- a/docs/build/unreleased/483.rst +++ /dev/null @@ -1,11 +0,0 @@ -.. change:: - :tags: bug, mysql, autogenerate - :tickets: 483 - - Fixed bug where MySQL server default comparisons were basically not working - at all due to incorrect regexp added in :ticket:`455`. Also accommodates - for MariaDB 10.2 quoting differences in reporting integer based server - defaults. - - - diff --git a/docs/build/unreleased/487.rst b/docs/build/unreleased/487.rst deleted file mode 100644 index 273edf20..00000000 --- a/docs/build/unreleased/487.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: bug, operations, mysql - :tickets: 487 - - Fixed bug in ``op.drop_constraint()`` for MySQL where - quoting rules would not be applied to the constraint name.