diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 82bf098a..ec188c32 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -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 diff --git a/docs/build/conf.py b/docs/build/conf.py index 74db4fc2..92b46eb1 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -85,8 +85,8 @@ # 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 index 23fc20c5..00000000 --- a/docs/build/unreleased/805.rst +++ /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 index d4c80320..00000000 --- a/docs/build/unreleased/812.rst +++ /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. -