]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.7.6 rel_1_7_6
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 1 Feb 2022 15:00:09 +0000 (10:00 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 1 Feb 2022 15:00:09 +0000 (10:00 -0500)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/964.rst [deleted file]
docs/build/unreleased/968.rst [deleted file]
docs/build/unreleased/982.rst [deleted file]
docs/build/unreleased/cache_warning.rst [deleted file]
docs/build/unreleased/variant.rst [deleted file]

index 49dc45583ae8dc6d4fb00c13afb02333a7f7016d..484ec564390c8872525ade31a9073e3bdf4c9a45 100644 (file)
@@ -5,7 +5,45 @@ Changelog
 
 .. changelog::
     :version: 1.7.6
-    :include_notes_from: unreleased
+    :released: February 1, 2022
+
+    .. change::
+        :tags: bug, batch, regression
+        :tickets: 982
+
+        Fixed regression where usage of a ``with_variant()`` datatype in
+        conjunction with the ``existing_type`` option of ``op.alter_column()``
+        under batch mode would lead to an internal exception.
+
+    .. change::
+        :tags: usecase, commands
+        :tickets: 964
+
+        Add a new command ``alembic ensure_version``, which will ensure that the
+        Alembic version table is present in the target database, but does not
+        alter its contents.  Pull request courtesy Kai Mueller.
+
+    .. change::
+        :tags: bug, autogenerate
+
+        Implemented support for recognizing and rendering SQLAlchemy "variant"
+        types going forward into SQLAlchemy 2.0, where the architecture of
+        "variant" datatypes will be changing.
+
+
+    .. change::
+        :tags: bug, mysql, autogenerate
+        :tickets: 968
+
+        Added a rule to the MySQL impl so that the translation between JSON /
+        LONGTEXT is accommodated by autogenerate, treating LONGTEXT from the server
+        as equivalent to an existing JSON in the model.
+
+    .. change::
+        :tags: mssql
+
+        Removed a warning raised by SQLAlchemy when dropping constraints
+        on MSSQL regarding statement caching.
 
 .. changelog::
     :version: 1.7.5
index 8ee7af2a7f20b945224299cdaad5a3c92d7c1974..c39e5b227f4216644f02a21dbf1214f27ea35e87 100644 (file)
@@ -85,8 +85,8 @@ copyright = u"2010-2022, Mike Bayer"  # noqa
 # The short X.Y version.
 version = alembic.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.7.5"
-release_date = "November 11, 2021"
+release = "1.7.6"
+release_date = "February 1, 2022"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/964.rst b/docs/build/unreleased/964.rst
deleted file mode 100644 (file)
index 9cf2321..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: usecase, commands
-    :tickets: 964
-
-    Add a new command ``alembic ensure_version``, which will ensure that the
-    Alembic version table is present in the target database, but does not
-    alter its contents.  Pull request courtesy Kai Mueller.
diff --git a/docs/build/unreleased/968.rst b/docs/build/unreleased/968.rst
deleted file mode 100644 (file)
index be5440b..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, mysql, autogenerate
-    :tickets: 968
-
-    Added a rule to the MySQL impl so that the translation between JSON /
-    LONGTEXT is accommodated by autogenerate, treating LONGTEXT from the server
-    as equivalent to an existing JSON in the model.
diff --git a/docs/build/unreleased/982.rst b/docs/build/unreleased/982.rst
deleted file mode 100644 (file)
index 715cb1f..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, batch, regression
-    :tickets: 982
-
-    Fixed regression where usage of a ``with_variant()`` datatype in
-    conjunction with the ``existing_type`` option of ``op.alter_column()``
-    under batch mode would lead to an internal exception.
diff --git a/docs/build/unreleased/cache_warning.rst b/docs/build/unreleased/cache_warning.rst
deleted file mode 100644 (file)
index 19abad1..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-.. change::
-    :tags: mssql
-
-    Removed a warning raised by SQLAlchemy when dropping constraints
-    on MSSQL regarding statement caching.
diff --git a/docs/build/unreleased/variant.rst b/docs/build/unreleased/variant.rst
deleted file mode 100644 (file)
index 71cf3c7..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-
-    Implemented support for recognizing and rendering SQLAlchemy "variant"
-    types going forward into SQLAlchemy 2.0, where the architecture of
-    "variant" datatypes will be changing.
-