]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.5.6 rel_1_5_6
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 5 Mar 2021 14:59:54 +0000 (09:59 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 5 Mar 2021 14:59:54 +0000 (09:59 -0500)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/805.rst [deleted file]
docs/build/unreleased/812.rst [deleted file]

index 82bf098abbff903bc00111771826913a67855d43..ec188c32873af0806c9eefa639e4d3e2d663a82e 100644 (file)
@@ -5,7 +5,28 @@ Changelog
 
 .. changelog::
     :version: 1.5.6
-    :include_notes_from: unreleased
+    :released: March 5, 2021
+
+    .. change::
+        :tags: bug, mssql, operations
+        :tickets: 812
+
+        Fixed bug where the "existing_type" parameter, which the MSSQL dialect
+        requires in order to change the nullability of a column in the absence of
+        also changing the column type, would cause an ALTER COLUMN operation to
+        incorrectly render a second ALTER statement without the nullability if a
+        new type were also present, as the MSSQL-specific contract did not
+        anticipate all three of "nullability", "type_" and "existing_type" being
+        sent at the same time.
+
+
+    .. change::
+        :tags: template
+        :ticket: 805
+
+        Add async template to Alembic to bootstrap environments that use
+        async DBAPI. Updated the cookbook to include a migration guide
+        on how to adapt an existing enviroment for use with DBAPI drivers.
 
 .. changelog::
     :version: 1.5.5
index 74db4fc2f24204aa929d68ceac6e2d8f41b5325a..92b46eb119fead22388e53f659b7a6e9be29672d 100644 (file)
@@ -85,8 +85,8 @@ copyright = u"2010-2021, Mike Bayer"  # noqa
 # The short X.Y version.
 version = alembic.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.5.5"
-release_date = "February 20, 2021"
+release = "1.5.6"
+release_date = "March 5, 2021"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/805.rst b/docs/build/unreleased/805.rst
deleted file mode 100644 (file)
index 23fc20c..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: template
-    :ticket: 805
-
-    Add async template to Alembic to bootstrap environments that use
-    async DBAPI. Updated the cookbook to include a migration guide
-    on how to adapt an existing enviroment for use with DBAPI drivers.
diff --git a/docs/build/unreleased/812.rst b/docs/build/unreleased/812.rst
deleted file mode 100644 (file)
index d4c8032..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-.. change::
-    :tags: bug, mssql, operations
-    :tickets: 812
-
-    Fixed bug where the "existing_type" parameter, which the MSSQL dialect
-    requires in order to change the nullability of a column in the absence of
-    also changing the column type, would cause an ALTER COLUMN operation to
-    incorrectly render a second ALTER statement without the nullability if a
-    new type were also present, as the MSSQL-specific contract did not
-    anticipate all three of "nullability", "type_" and "existing_type" being
-    sent at the same time.
-