]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 0.9.8 rel_0_9_8
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 Feb 2018 20:55:11 +0000 (15:55 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 Feb 2018 20:55:11 +0000 (15:55 -0500)
docs/build/changelog.rst
docs/build/unreleased/468.rst [deleted file]
docs/build/unreleased/478.rst [deleted file]
docs/build/unreleased/479.rst [deleted file]
docs/build/unreleased/480.rst [deleted file]
docs/build/unreleased/482.rst [deleted file]

index c57e71f72be63ac8c25431647daff74ff77b6a39..0a9b675fdbc0c141a3580787b652117f6727dfc8 100644 (file)
@@ -5,7 +5,60 @@ Changelog
 
 .. changelog::
     :version: 0.9.8
-    :include_notes_from: unreleased
+    :released: February 16, 2018
+
+    .. change::
+        :tags: bug, runtime
+        :tickets: 482
+
+        Fixed bug where the :meth:`.Script.as_revision_number` method
+        did not accommodate for the 'heads' identifier, which in turn
+        caused the :meth:`.EnvironmentContext.get_head_revisions`
+        and :meth:`.EnvironmentContext.get_revision_argument` methods
+        to be not usable when multiple heads were present.
+        The :meth:.`EnvironmentContext.get_head_revisions` method returns
+        a tuple in all cases as documented.
+
+
+
+    .. change::
+        :tags: bug, postgresql, autogenerate
+        :tickets: 478
+
+        Fixed bug where autogenerate of :class:`.ExcludeConstraint`
+        would render a raw quoted name for a Column that has case-sensitive
+        characters, which when invoked as an inline member of the Table
+        would produce a stack trace that the quoted name is not found.
+        An incoming Column object is now rendered as ``sa.column('name')``.
+
+    .. change::
+        :tags: bug, autogenerate
+        :tickets: 468
+
+        Fixed bug where the indexes would not be included in a
+        migration that was dropping the owning table.   The fix
+        now will also emit DROP INDEX for the indexes ahead of time,
+        but more importantly will include CREATE INDEX in the
+        downgrade migration.
+
+    .. change::
+        :tags: bug, postgresql
+        :tickets: 480
+
+        Fixed the autogenerate of the module prefix
+        when rendering the text_type parameter of
+        postgresql.HSTORE, in much the same way that
+        we do for ARRAY's type and JSON's text_type.
+
+    .. change::
+        :tags: bug, mysql
+        :tickets: 479
+
+        Added support for DROP CONSTRAINT to the MySQL Alembic
+        dialect to support MariaDB 10.2 which now has real
+        CHECK constraints.  Note this change does **not**
+        add autogenerate support, only support for op.drop_constraint()
+        to work.
 
 .. changelog::
     :version: 0.9.7
diff --git a/docs/build/unreleased/468.rst b/docs/build/unreleased/468.rst
deleted file mode 100644 (file)
index 3abc974..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-    :tickets: 468
-
-    Fixed bug where the indexes would not be included in a
-    migration that was dropping the owning table.   The fix
-    now will also emit DROP INDEX for the indexes ahead of time,
-    but more importantly will include CREATE INDEX in the
-    downgrade migration.
diff --git a/docs/build/unreleased/478.rst b/docs/build/unreleased/478.rst
deleted file mode 100644 (file)
index 8c479b0..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, postgresql, autogenerate
-    :tickets: 478
-
-    Fixed bug where autogenerate of :class:`.ExcludeConstraint`
-    would render a raw quoted name for a Column that has case-sensitive
-    characters, which when invoked as an inline member of the Table
-    would produce a stack trace that the quoted name is not found.
-    An incoming Column object is now rendered as ``sa.column('name')``.
diff --git a/docs/build/unreleased/479.rst b/docs/build/unreleased/479.rst
deleted file mode 100644 (file)
index feebb89..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, mysql
-    :tickets: 479
-
-    Added support for DROP CONSTRAINT to the MySQL Alembic
-    dialect to support MariaDB 10.2 which now has real
-    CHECK constraints.  Note this change does **not**
-    add autogenerate support, only support for op.drop_constraint()
-    to work.
diff --git a/docs/build/unreleased/480.rst b/docs/build/unreleased/480.rst
deleted file mode 100644 (file)
index f753e7f..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, postgresql
-    :tickets: 480
-
-    Fixed the autogenerate of the module prefix
-    when rendering the text_type parameter of
-    postgresql.HSTORE, in much the same way that
-    we do for ARRAY's type and JSON's text_type.
diff --git a/docs/build/unreleased/482.rst b/docs/build/unreleased/482.rst
deleted file mode 100644 (file)
index 67eb1a8..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-.. change::
-    :tags: bug, runtime
-    :tickets: 482
-
-    Fixed bug where the :meth:`.Script.as_revision_number` method
-    did not accommodate for the 'heads' identifier, which in turn
-    caused the :meth:`.EnvironmentContext.get_head_revisions`
-    and :meth:`.EnvironmentContext.get_revision_argument` methods
-    to be not usable when multiple heads were present.
-    The :meth:.`EnvironmentContext.get_head_revisions` method returns
-    a tuple in all cases as documented.
-
-