]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.4.2 rel_1_4_2
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 19 Mar 2020 21:48:15 +0000 (17:48 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 19 Mar 2020 21:48:15 +0000 (17:48 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/668.rst [deleted file]
docs/build/unreleased/669.rst [deleted file]
docs/build/unreleased/670.rst [deleted file]
docs/build/unreleased/671.rst [deleted file]

index 433788f734e45d4c920c44c4af912365af2e3c28..c48ba451fce08da5b7a6eca53b1d610c30623d43 100644 (file)
@@ -5,7 +5,44 @@ Changelog
 
 .. changelog::
     :version: 1.4.2
-    :include_notes_from: unreleased
+    :released: March 19, 2020
+
+    .. change::
+        :tags: usecase, autogenerate
+        :tickets: 669
+
+        Adjusted autogen comparison to accommodate for backends that support
+        computed column reflection, dependent on SQLAlchemy version 1.3.16 or
+        higher. This emits a warning if the SQL expression inside of a
+        :class:`.Computed` value changes between the metadata and the database, as
+        these expressions can't be changed without dropping and recreating the
+        column.
+
+
+    .. change::
+        :tags: bug, tests
+        :tickets: 668
+
+        Fixed an issue that prevented the test suite from running with the
+        recently released py.test 5.4.0.
+
+
+    .. change::
+        :tags: bug, autogenerate, mysql
+        :tickets: 617
+
+        Fixed more false-positive failures produced by the new "compare type" logic
+        first added in :ticket:`605`, particularly impacting MySQL string types
+        regarding flags such as "charset" and "collation".
+
+    .. change::
+        :tags: bug, op directives, oracle
+        :tickets: 670
+
+        Fixed issue in Oracle backend where a table RENAME with a schema-qualified
+        name would include the schema in the "to" portion, which is rejected by
+        Oracle.
+
 
 .. changelog::
     :version: 1.4.1
index 941e91c96203c402d3e7763861d01b075a61cff1..f633f613e7279c95fb223597066f2ba208c5f98f 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.1"
-release_date = "March 1, 2020"
+release = "1.4.2"
+release_date = "March 19, 2020"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/668.rst b/docs/build/unreleased/668.rst
deleted file mode 100644 (file)
index d44ab42..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, tests
-    :tickets: 668
-
-    Fixed an issue that prevented the test suite from running with the
-    recently released py.test 5.4.0.
-
diff --git a/docs/build/unreleased/669.rst b/docs/build/unreleased/669.rst
deleted file mode 100644 (file)
index 5410b54..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-.. change::
-    :tags: usecase, autogenerate
-    :tickets: 669
-
-    Adjusted autogen comparison to accommodate for backends that support
-    computed column reflection, dependent on SQLAlchemy version 1.3.16 or
-    higher. This emits a warning if the SQL expression inside of a
-    :class:`.Computed` value changes between the metadata and the database, as
-    these expressions can't be changed without dropping and recreating the
-    column.
-
diff --git a/docs/build/unreleased/670.rst b/docs/build/unreleased/670.rst
deleted file mode 100644 (file)
index 2eb6e24..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, op directives, oracle
-    :tickets: 670
-
-    Fixed issue in Oracle backend where a table RENAME with a schema-qualified
-    name would include the schema in the "to" portion, which is rejected by
-    Oracle.
-
diff --git a/docs/build/unreleased/671.rst b/docs/build/unreleased/671.rst
deleted file mode 100644 (file)
index 635faae..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, autogenerate, mysql
-    :tickets: 617
-
-    Fixed more false-positive failures produced by the new "compare type" logic
-    first added in :ticket:`605`, particularly impacting MySQL string types
-    regarding flags such as "charset" and "collation".