]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.4.1 rel_1_4_1
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 1 Mar 2020 17:45:18 +0000 (12:45 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 1 Mar 2020 17:45:18 +0000 (12:45 -0500)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/654.rst [deleted file]
docs/build/unreleased/655.rst [deleted file]
docs/build/unreleased/661.rst [deleted file]
docs/build/unreleased/663.rst [deleted file]
docs/build/unreleased/rowcount.rst [deleted file]

index 5374ab4c91d5c475cddff78b0783438b454949fe..e09b7ee9a13aa72b66c32563cc9c75e0a4b76907 100644 (file)
@@ -5,7 +5,53 @@ Changelog
 
 .. changelog::
     :version: 1.4.1
-    :include_notes_from: unreleased
+    :released: March 1, 2020
+
+    .. change::
+        :tags: bug, autogenerate
+        :tickets: 661
+
+        Fixed regression caused by the new "type comparison" logic introduced in
+        1.4 as part of :ticket:`605` where comparisons of MySQL "unsigned integer"
+        datatypes would produce false positives, as the regular expression logic
+        was not correctly parsing the "unsigned" token when MySQL's default display
+        width would be returned by the database.  Pull request courtesy Paul
+        Becotte.
+
+    .. change::
+        :tags: bug, environment
+        :tickets: 663
+
+        Error message for "path doesn't exist" when loading up script environment
+        now displays the absolute path.  Pull request courtesy Rowan Hart.
+
+    .. change::
+        :tags: bug, autogenerate
+        :tickets: 654
+
+        Fixed regression in 1.4.0 due to :ticket:`647` where unique constraint
+        comparison with mixed case constraint names while not using a naming
+        convention would produce false positives during autogenerate.
+
+    .. change::
+        :tags: bug, environment
+
+        The check for matched rowcount when the alembic_version table is updated or
+        deleted from is now conditional based on whether or not the dialect
+        supports the concept of "rowcount" for UPDATE or DELETE rows matched.  Some
+        third party dialects do not support this concept.  Pull request courtesy Ke
+        Zhu.
+
+    .. change::
+        :tags: bug, operations
+        :tickets: 655
+
+        Fixed long-standing bug where an inline column CHECK constraint would not
+        be rendered within an "ADD COLUMN" operation.  The DDL compiler is now
+        consulted for inline constraints within the :meth:`.Operations.add_column`
+        method as is done for regular CREATE TABLE operations.
+
+
 
 .. changelog::
     :version: 1.4.0
index a45ee0a181574cec949dfe3d7fbb3e9daebc083c..941e91c96203c402d3e7763861d01b075a61cff1 100644 (file)
@@ -85,8 +85,8 @@ copyright = u"2010-2020, Mike Bayer"  # noqa
 # The short X.Y version.
 version = alembic.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.4.0"
-release_date = "February 4, 2020"
+release = "1.4.1"
+release_date = "March 1, 2020"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/654.rst b/docs/build/unreleased/654.rst
deleted file mode 100644 (file)
index e21bbd9..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-    :tickets: 654
-
-    Fixed regression in 1.4.0 due to :ticket:`647` where unique constraint
-    comparison with mixed case constraint names while not using a naming
-    convention would produce false positives during autogenerate.
diff --git a/docs/build/unreleased/655.rst b/docs/build/unreleased/655.rst
deleted file mode 100644 (file)
index 9d9ebfc..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, operations
-    :tickets: 655
-
-    Fixed long-standing bug where an inline column CHECK constraint would not
-    be rendered within an "ADD COLUMN" operation.  The DDL compiler is now
-    consulted for inline constraints within the :meth:`.Operations.add_column`
-    method as is done for regular CREATE TABLE operations.
-
-
diff --git a/docs/build/unreleased/661.rst b/docs/build/unreleased/661.rst
deleted file mode 100644 (file)
index d052018..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-    :tickets: 661
-
-    Fixed regression caused by the new "type comparison" logic introduced in
-    1.4 as part of :ticket:`605` where comparisons of MySQL "unsigned integer"
-    datatypes would produce false positives, as the regular expression logic
-    was not correctly parsing the "unsigned" token when MySQL's default display
-    width would be returned by the database.  Pull request courtesy Paul
-    Becotte.
diff --git a/docs/build/unreleased/663.rst b/docs/build/unreleased/663.rst
deleted file mode 100644 (file)
index 9c4cb2c..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, environment
-    :tickets: 663
-
-    Error message for "path doesn't exist" when loading up script environment
-    now displays the absolute path.  Pull request courtesy Rowan Hart.
diff --git a/docs/build/unreleased/rowcount.rst b/docs/build/unreleased/rowcount.rst
deleted file mode 100644 (file)
index 8e7830a..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, environment
-
-    The check for matched rowcount when the alembic_version table is updated or
-    deleted from is now conditional based on whether or not the dialect
-    supports the concept of "rowcount" for UPDATE or DELETE rows matched.  Some
-    third party dialects do not support this concept.  Pull request courtesy Ke
-    Zhu.