From 47850ab7dbc88905db8abf7abab6a48699d4a50a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 16 Aug 2023 12:49:05 -0400 Subject: [PATCH] - 1.11.3 --- docs/build/changelog.rst | 28 +++++++++++++++++++++++++++- docs/build/conf.py | 4 ++-- docs/build/unreleased/1270.rst | 6 ------ docs/build/unreleased/1273.rst | 11 ----------- docs/build/unreleased/1291.rst | 6 ------ 5 files changed, 29 insertions(+), 26 deletions(-) delete mode 100644 docs/build/unreleased/1270.rst delete mode 100644 docs/build/unreleased/1273.rst delete mode 100644 docs/build/unreleased/1291.rst diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index f4ae2227..d29b1ae7 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,33 @@ Changelog .. changelog:: :version: 1.11.3 - :include_notes_from: unreleased + :released: August 16, 2023 + + .. change:: + :tags: bug, autogenerate, postgresql + :tickets: 1270 + + Improved autogenerate compare of expression based indexes on PostgreSQL + to produce fewer wrong detections. + + .. change:: + :tags: bug, autogenerate + :tickets: 1291 + + Fixed issue with ``NULLS NOT DISTINCT`` detection in postgresql that + would keep detecting changes in the index or unique constraint. + + .. change:: + :tags: bug, commands + :tickets: 1273 + + Added ``encoding="locale"`` setting to the use of Python's + ``ConfigParser.read()``, so that a warning is not generated when using the + recently added Python feature ``PYTHONWARNDEFAULTENCODING`` specified in + :pep:`597`. The encoding is passed as the ``"locale"`` string under Python + 3.10 and greater, which indicates that the system-level locale should be + used, as was the case already here. Pull request courtesy Kevin Kirsche. + .. changelog:: :version: 1.11.2 diff --git a/docs/build/conf.py b/docs/build/conf.py index 173fe5b1..44451bb8 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -99,8 +99,8 @@ # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.11.2" -release_date = "August 4, 2023" +release = "1.11.3" +release_date = "August 16, 2023" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1270.rst b/docs/build/unreleased/1270.rst deleted file mode 100644 index 46d0e3e9..00000000 --- a/docs/build/unreleased/1270.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: bug, autogenerate, postgresql - :tickets: 1270 - - Improved autogenerate compare of expression based indexes on PostgreSQL - to produce fewer wrong detections. diff --git a/docs/build/unreleased/1273.rst b/docs/build/unreleased/1273.rst deleted file mode 100644 index 1577041b..00000000 --- a/docs/build/unreleased/1273.rst +++ /dev/null @@ -1,11 +0,0 @@ -.. change:: - :tags: bug, commands - :tickets: 1273 - - Added ``encoding="locale"`` setting to the use of Python's - ``ConfigParser.read()``, so that a warning is not generated when using the - recently added Python feature ``PYTHONWARNDEFAULTENCODING`` specified in - :pep:`597`. The encoding is passed as the ``"locale"`` string under Python - 3.10 and greater, which indicates that the system-level locale should be - used, as was the case already here. Pull request courtesy Kevin Kirsche. - diff --git a/docs/build/unreleased/1291.rst b/docs/build/unreleased/1291.rst deleted file mode 100644 index f2f6e04b..00000000 --- a/docs/build/unreleased/1291.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 1291 - - Fixed issue with ``NULLS NOT DISTINCT`` detection in postgresql that - would keep detecting changes in the index or unique constraint.