summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-03-15 10:15:48 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-03-15 11:43:25 -0400
commit86e3bc144caf8a8bbfe304f665af15daf0bc53c6 (patch)
tree13dfb1913aee8419393803b329ab5fc23ce67fa0
parentffab2ea3a49ec7528acab1e297536fe5b9a0dc05 (diff)
downloadsqlalchemy-86e3bc144caf8a8bbfe304f665af15daf0bc53c6.tar.gz
documentation updates
Change-Id: I43d0e8de1f90abcff4b278637808d1ebc8fd6c97 (cherry picked from commit 755316e66e0543f2524aeef0f11c107f95420d8a)
-rw-r--r--doc/build/changelog/unreleased_13/5919.rst1
-rw-r--r--doc/build/changelog/unreleased_13/5929.rst1
-rw-r--r--doc/build/changelog/unreleased_13/5952.rst3
-rw-r--r--doc/build/changelog/unreleased_13/5983.rst1
-rw-r--r--doc/build/changelog/unreleased_13/5989.rst8
-rw-r--r--doc/build/changelog/unreleased_13/6001.rst1
-rw-r--r--doc/build/changelog/unreleased_13/6007.rst1
7 files changed, 12 insertions, 4 deletions
diff --git a/doc/build/changelog/unreleased_13/5919.rst b/doc/build/changelog/unreleased_13/5919.rst
index ddae6c2b0..f56da617d 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 9b9b6214c..38bca63a2 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 7166e9267..8f70df710 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 a5724ebe2..42b3f1adb 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 cccf227fc..018d56afe 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 2b6f1bc09..728ce20a4 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 6523ba8bd..5b06e18b6 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