]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.12.1 rel_1_12_1
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 26 Oct 2023 15:08:25 +0000 (11:08 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 26 Oct 2023 15:08:25 +0000 (11:08 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1304.rst [deleted file]
docs/build/unreleased/1322.rst [deleted file]
docs/build/unreleased/1325.rst [deleted file]
docs/build/unreleased/1329.rst [deleted file]
docs/build/unreleased/1335.rst [deleted file]
docs/build/unreleased/improve_typing.rst [deleted file]
docs/build/unreleased/op_execute.rst [deleted file]

index e0a7d753b008ebd7491de3962feb742e52e50b05..a5f210bae2c2b854507c8ee3b38c7422385a3d80 100644 (file)
@@ -5,7 +5,74 @@ Changelog
 
 .. changelog::
     :version: 1.12.1
-    :include_notes_from: unreleased
+    :released: October 26, 2023
+
+    .. change::
+        :tags: bug, autogenerate, regression
+        :tickets: 1329
+
+        Fixed regression caused by :ticket:`879` released in 1.7.0 where the
+        ".info" dictionary of ``Table`` would not render in autogenerate create
+        table statements.  This can be useful for custom create table DDL rendering
+        schemes so it is restored.
+
+    .. change::
+        :tags: bug, typing
+        :tickets: 1325
+
+        Improved typing in the
+        :paramref:`.EnvironmentContext.configure.process_revision_directives`
+        callable to better indicate that the passed-in type is
+        :class:`.MigrationScript`, not the :class:`.MigrationOperation` base class,
+        and added typing to the example at :ref:`cookbook_no_empty_migrations` to
+        illustrate.
+
+    .. change::
+        :tags: bug, operations
+        :tickets: 1335
+
+        Repaired :class:`.ExecuteSQLOp` so that it can participate in "diff"
+        operations; while this object is typically not present in a reflected
+        operation stream, custom hooks may be adding this construct where it needs
+        to have the correct ``to_diff_tuple()`` method.  Pull request courtesy
+        Sebastian Bayer.
+
+    .. change::
+        :tags: typing, bug
+        :tickets: 1058, 1277
+
+        Improved the ``op.execute()`` method to correctly accept the
+        ``Executable`` type that is the same which is used in SQLAlchemy
+        ``Connection.execute()``.  Pull request courtesy Mihail Milushev.
+
+    .. change::
+        :tags: typing, bug
+        :tickets: 930
+
+        Improve typing of the revision parameter in various command functions.
+
+    .. change::
+        :tags: typing, bug
+        :tickets: 1266
+
+        Properly type the :paramref:`.Operations.create_check_constraint.condition`
+        parameter of :meth:`.Operations.create_check_constraint` to accept boolean
+        expressions.
+
+    .. change::
+        :tags: bug, postgresql
+        :tickets: 1322
+
+        Fixed autogen render issue where expressions inside of indexes for PG need
+        to be double-parenthesized, meaning a single parens must be present within
+        the generated ``text()`` construct.
+
+    .. change::
+        :tags: usecase
+        :tickets: 1304
+
+        Alembic now accommodates for Sequence and Identity that support dialect kwargs.
+        This is a change that will be added to SQLAlchemy v2.1.
 
 .. changelog::
     :version: 1.12.0
index f4de5670c4bf5069260c9ce84f0265733068da5d..658beb6b55d967d1b511395bd71b05512ac91d09 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.12.0"
-release_date = "August 31, 2023"
+release = "1.12.1"
+release_date = "October 26, 2023"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1304.rst b/docs/build/unreleased/1304.rst
deleted file mode 100644 (file)
index 089adbb..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: usecase
-    :tickets: 1304
-
-    Alembic now accommodates for Sequence and Identity that support dialect kwargs.
-    This is a change that will be added to SQLAlchemy v2.1.
diff --git a/docs/build/unreleased/1322.rst b/docs/build/unreleased/1322.rst
deleted file mode 100644 (file)
index dc5bf6c..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, postgresql
-    :tickets: 1322
-
-    Fixed autogen render issue where expressions inside of indexes for PG need
-    to be double-parenthesized, meaning a single parens must be present within
-    the generated ``text()`` construct.
diff --git a/docs/build/unreleased/1325.rst b/docs/build/unreleased/1325.rst
deleted file mode 100644 (file)
index 1b4ccfa..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, typing
-    :tickets: 1325
-
-    Improved typing in the
-    :paramref:`.EnvironmentContext.configure.process_revision_directives`
-    callable to better indicate that the passed-in type is
-    :class:`.MigrationScript`, not the :class:`.MigrationOperation` base class,
-    and added typing to the example at :ref:`cookbook_no_empty_migrations` to
-    illustrate.
diff --git a/docs/build/unreleased/1329.rst b/docs/build/unreleased/1329.rst
deleted file mode 100644 (file)
index b6065d9..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, autogenerate, regression
-    :tickets: 1329
-
-    Fixed regression caused by :ticket:`879` released in 1.7.0 where the
-    ".info" dictionary of ``Table`` would not render in autogenerate create
-    table statements.  This can be useful for custom create table DDL rendering
-    schemes so it is restored.
diff --git a/docs/build/unreleased/1335.rst b/docs/build/unreleased/1335.rst
deleted file mode 100644 (file)
index ce4ab57..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, operations
-    :tickets: 1335
-
-    Repaired :class:`.ExecuteSQLOp` so that it can participate in "diff"
-    operations; while this object is typically not present in a reflected
-    operation stream, custom hooks may be adding this construct where it needs
-    to have the correct ``to_diff_tuple()`` method.  Pull request courtesy
-    Sebastian Bayer.
diff --git a/docs/build/unreleased/improve_typing.rst b/docs/build/unreleased/improve_typing.rst
deleted file mode 100644 (file)
index ccaab00..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-.. change::
-    :tags: typing, bug
-    :tickets: 930
-
-    Improve typing of the revision parameter in various command functions.
-
-.. change::
-    :tags: typing, bug
-    :tickets: 1266
-
-    Properly type the :paramref:`.Operations.create_check_constraint.condition`
-    parameter of :meth:`.Operations.create_check_constraint` to accept boolean
-    expressions.
diff --git a/docs/build/unreleased/op_execute.rst b/docs/build/unreleased/op_execute.rst
deleted file mode 100644 (file)
index e8b6b00..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: typing, bug
-    :tickets: 1058, 1277
-
-    Improved the ``op.execute()`` method to correctly accept the
-    ``Executable`` type that is the same which is used in SQLAlchemy
-    ``Connection.execute()``.  Pull request courtesy Mihail Milushev.