]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.9.4 rel_1_9_4
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 16 Feb 2023 17:35:31 +0000 (12:35 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 16 Feb 2023 17:35:31 +0000 (12:35 -0500)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1177.rst [deleted file]
docs/build/unreleased/1180.rst [deleted file]
docs/build/unreleased/merge_cfg.rst [deleted file]

index 852aca5d900ba4760f64aab395770ed06cefb608..71a17f24c7a9db03678a9db8f506d78a521d3153 100644 (file)
@@ -5,7 +5,47 @@ Changelog
 
 .. changelog::
     :version: 1.9.4
-    :include_notes_from: unreleased
+    :released: February 16, 2023
+
+    .. change::
+        :tags: bug, mssql
+        :tickets: 1177
+
+        Ongoing fixes for SQL Server server default comparisons under autogenerate,
+        adjusting for SQL Server's collapsing of whitespace between SQL function
+        arguments when reporting on a function-based server default, as well as its
+        arbitrary addition of parenthesis within arguments; the approach has now
+        been made more aggressive by stripping the two default strings to compare
+        of all whitespace, parenthesis, and quoting characters.
+
+
+    .. change::
+        :tags: bug, postgresql
+
+        Fixed PostgreSQL server default comparison to handle SQL expressions
+        sent as ``text()`` constructs, such as ``text("substring('name', 1, 3)")``,
+        which previously would raise errors when attempting to run a server-based
+        comparison.
+
+
+
+    .. change::
+        :tags: bug, autogenerate
+        :tickets: 1180
+
+        Removed a mis-use of the
+        :paramref:`.EnvironmentContext.configure.render_item` callable where the
+        "server_default" renderer would be erroneously used within the server
+        default comparison process, which is working against SQL expressions, not
+        Python code.
+
+    .. change::
+        :tags: bug, commands
+
+        Fixed regression introduced in 1.7.0 where the "config" object passed to
+        the template context when running the :func:`.merge` command
+        programmatically failed to be correctly populated. Pull request courtesy
+        Brendan Gann.
 
 .. changelog::
     :version: 1.9.3
index ecd34da54bf44bfe0ba021340807d77656988410..e991423e511bb25744bca3a421e47cedad270dd4 100644 (file)
@@ -99,8 +99,8 @@ copyright = "2010-2023, Mike Bayer"  # noqa
 # The short X.Y version.
 version = alembic.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.9.3"
-release_date = "February 7, 2023"
+release = "1.9.4"
+release_date = "February 16, 2023"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1177.rst b/docs/build/unreleased/1177.rst
deleted file mode 100644 (file)
index 965490b..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-.. change::
-    :tags: bug, mssql
-    :tickets: 1177
-
-    Ongoing fixes for SQL Server server default comparisons under autogenerate,
-    adjusting for SQL Server's collapsing of whitespace between SQL function
-    arguments when reporting on a function-based server default, as well as its
-    arbitrary addition of parenthesis within arguments; the approach has now
-    been made more aggressive by stripping the two default strings to compare
-    of all whitespace, parenthesis, and quoting characters.
-
-
-.. change::
-    :tags: bug, postgresql
-
-    Fixed PostgreSQL server default comparison to handle SQL expressions
-    sent as ``text()`` constructs, such as ``text("substring('name', 1, 3)")``,
-    which previously would raise errors when attempting to run a server-based
-    comparison.
-
-
diff --git a/docs/build/unreleased/1180.rst b/docs/build/unreleased/1180.rst
deleted file mode 100644 (file)
index e2771ad..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-    :tickets: 1180
-
-    Removed a mis-use of the
-    :paramref:`.EnvironmentContext.configure.render_item` callable where the
-    "server_default" renderer would be erroneously used within the server
-    default comparison process, which is working against SQL expressions, not
-    Python code.
diff --git a/docs/build/unreleased/merge_cfg.rst b/docs/build/unreleased/merge_cfg.rst
deleted file mode 100644 (file)
index 4a2df78..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, commands
-
-    Fixed regression introduced in 1.7.0 where the "config" object passed to
-    the template context when running the :func:`.merge` command
-    programmatically failed to be correctly populated. Pull request courtesy
-    Brendan Gann.