From: Mike Bayer Date: Mon, 15 Mar 2021 14:15:48 +0000 (-0400) Subject: documentation updates X-Git-Tag: rel_1_3_24~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=86e3bc144caf8a8bbfe304f665af15daf0bc53c6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git documentation updates Change-Id: I43d0e8de1f90abcff4b278637808d1ebc8fd6c97 (cherry picked from commit 755316e66e0543f2524aeef0f11c107f95420d8a) --- diff --git a/doc/build/changelog/unreleased_13/5919.rst b/doc/build/changelog/unreleased_13/5919.rst index ddae6c2b03..f56da617d2 100644 --- a/doc/build/changelog/unreleased_13/5919.rst +++ b/doc/build/changelog/unreleased_13/5919.rst @@ -1,6 +1,7 @@ .. change:: :tags: bug, schema :tickets: 5919 + :versions: 1.4.0 Repaired / implemented support for primary key constraint naming conventions that use column names/keys/etc as part of the convention. In diff --git a/doc/build/changelog/unreleased_13/5929.rst b/doc/build/changelog/unreleased_13/5929.rst index 9b9b6214c4..38bca63a22 100644 --- a/doc/build/changelog/unreleased_13/5929.rst +++ b/doc/build/changelog/unreleased_13/5929.rst @@ -1,6 +1,7 @@ .. change:: :tags: bug, engine :tickets: 5929 + :versions: 1.4.0 Fixed bug where the "schema_translate_map" feature failed to be taken into account for the use case of direct execution of diff --git a/doc/build/changelog/unreleased_13/5952.rst b/doc/build/changelog/unreleased_13/5952.rst index 7166e92675..8f70df710a 100644 --- a/doc/build/changelog/unreleased_13/5952.rst +++ b/doc/build/changelog/unreleased_13/5952.rst @@ -1,11 +1,12 @@ .. change:: :tags: bug, orm :tickets: 5952 + :versions: 1.4.0 Fixed issue where the process of joining two tables could fail if one of the tables had an unrelated, unresolvable foreign key constraint which would raise :class:`_exc.NoReferenceError` within the join process, which nonetheless could be bypassed to allow the join to complete. The logic - which tested the exception for signficance within the process would make + which tested the exception for significance within the process would make assumptions about the construct which would fail. diff --git a/doc/build/changelog/unreleased_13/5983.rst b/doc/build/changelog/unreleased_13/5983.rst index a5724ebe28..42b3f1adb6 100644 --- a/doc/build/changelog/unreleased_13/5983.rst +++ b/doc/build/changelog/unreleased_13/5983.rst @@ -1,6 +1,7 @@ .. change:: :tags: bug, orm :tickets: 5983 + :versions: 1.4.0 Removed very old warning that states that passive_deletes is not intended for many-to-one relationships. While it is likely that in many cases diff --git a/doc/build/changelog/unreleased_13/5989.rst b/doc/build/changelog/unreleased_13/5989.rst index cccf227fcd..018d56afe7 100644 --- a/doc/build/changelog/unreleased_13/5989.rst +++ b/doc/build/changelog/unreleased_13/5989.rst @@ -1,6 +1,8 @@ .. change:: - :tags: bug, orm, postgresql + :tags: bug, postgresql :tickets: 5989 + :versions: 1.4.0 - Fixed issue where using :class:`_ext.aggregate_order_by` would return - ARRAY(NullType) under certain conditions. + Fixed issue where using :class:`_postgresql.aggregate_order_by` would + return ARRAY(NullType) under certain conditions, interfering with + the ability of the result object to return data correctly. diff --git a/doc/build/changelog/unreleased_13/6001.rst b/doc/build/changelog/unreleased_13/6001.rst index 2b6f1bc093..728ce20a43 100644 --- a/doc/build/changelog/unreleased_13/6001.rst +++ b/doc/build/changelog/unreleased_13/6001.rst @@ -1,6 +1,7 @@ .. change:: :tags: bug, orm :tickets: 6001 + :versions: 1.4.0 Fixed issue where the :class:`_mutable.MutableComposite` construct could be placed into an invalid state when the parent object was already loaded, and diff --git a/doc/build/changelog/unreleased_13/6007.rst b/doc/build/changelog/unreleased_13/6007.rst index 6523ba8bd0..5b06e18b6b 100644 --- a/doc/build/changelog/unreleased_13/6007.rst +++ b/doc/build/changelog/unreleased_13/6007.rst @@ -1,6 +1,7 @@ .. change:: :tags: bug, sql, sqlite :tickets: 6007 + :versions: 1.4.0 Fixed issue where the CHECK constraint generated by :class:`_types.Boolean` or :class:`_types.Enum` would fail to render the naming convention