Skip to content

1.11.3

Compare
Choose a tag to compare
@sqla-tester sqla-tester released this 16 Aug 16:51
· 87 commits to main since this release

1.11.3

Released: August 16, 2023

bug

  • [bug] [autogenerate] [postgresql] Improved autogenerate compare of expression based indexes on PostgreSQL
    to produce fewer wrong detections.

    References: #1270

  • [bug] [autogenerate] Fixed issue with NULLS NOT DISTINCT detection in postgresql that
    would keep detecting changes in the index or unique constraint.

    References: #1291

  • [bug] [commands] 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.

    References: #1273