From 8b3a2d8606db604186a23e49765447382f54e956 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 20 Jan 2021 13:30:40 -0500 Subject: [PATCH] - 1.5.2 --- docs/build/changelog.rst | 20 +++++++++++++++++++- docs/build/conf.py | 4 ++-- docs/build/unreleased/782.rst | 8 -------- docs/build/unreleased/784.rst | 8 -------- 4 files changed, 21 insertions(+), 19 deletions(-) delete mode 100644 docs/build/unreleased/782.rst delete mode 100644 docs/build/unreleased/784.rst diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 0fe68593..23aa3897 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,25 @@ Changelog .. changelog:: :version: 1.5.2 - :include_notes_from: unreleased + :released: January 20, 2021 + + .. change:: + :tags: bug, versioning, regression + :tickets: 784 + + Fixed regression where new "loop detection" feature introduced in + :ticket:`757` produced false positives for revision names that have + overlapping substrings between revision number and down revision and/or + dependency, if the downrev/dependency were not in sequence form. + + .. change:: + :tags: bug, environment + :tickets: 782 + + Fixed regression where Alembic would fail to create a transaction properly + if the :class:`sqlalchemy.engine.Connection` were a so-called "branched" + connection, that is, one where the ``.connect()`` method had been called to + create a "sub" connection. .. changelog:: :version: 1.5.1 diff --git a/docs/build/conf.py b/docs/build/conf.py index 897574b8..7b16edd2 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -85,8 +85,8 @@ # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.5.1" -release_date = "January 19, 2021" +release = "1.5.2" +release_date = "January 20, 2021" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/782.rst b/docs/build/unreleased/782.rst deleted file mode 100644 index 0a00b46d..00000000 --- a/docs/build/unreleased/782.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, environment - :tickets: 782 - - Fixed regression where Alembic would fail to create a transaction properly - if the :class:`sqlalchemy.engine.Connection` were a so-called "branched" - connection, that is, one where the ``.connect()`` method had been called to - create a "sub" connection. diff --git a/docs/build/unreleased/784.rst b/docs/build/unreleased/784.rst deleted file mode 100644 index c85ba3c7..00000000 --- a/docs/build/unreleased/784.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, versioning, regression - :tickets: 784 - - Fixed regression where new "loop detection" feature introduced in - :ticket:`757` produced false positives for revision names that have - overlapping substrings between revision number and down revision and/or - dependency, if the downrev/dependency were not in sequence form.