rel_1_11_3
版本发布时间: 2023-08-17 00:51:29
sqlalchemy/alembic最新发布版本:rel_1_13_2(2024-06-26 23:46:26)
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'sConfigParser.read()
, so that a warning is not generated when using the recently added Python featurePYTHONWARNDEFAULTENCODING
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