summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2023-02-16 12:35:31 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2023-02-16 12:35:31 -0500
commit31d3d8dc582bc76982cab8e7e76a414d1f466517 (patch)
treeb5e4ecb13dd22e8c4379ec076528f53137a34928
parente646035d62f692e8b2e3d98f9ea42fd378322d0d (diff)
downloadalembic-31d3d8dc582bc76982cab8e7e76a414d1f466517.tar.gz
- 1.9.4rel_1_9_4
-rw-r--r--docs/build/changelog.rst42
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/1177.rst21
-rw-r--r--docs/build/unreleased/1180.rst9
-rw-r--r--docs/build/unreleased/merge_cfg.rst7
5 files changed, 43 insertions, 40 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 852aca5..71a17f2 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -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
diff --git a/docs/build/conf.py b/docs/build/conf.py
index ecd34da..e991423 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -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
index 965490b..0000000
--- a/docs/build/unreleased/1177.rst
+++ /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
index e2771ad..0000000
--- a/docs/build/unreleased/1180.rst
+++ /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
index 4a2df78..0000000
--- a/docs/build/unreleased/merge_cfg.rst
+++ /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.