summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-07-01 13:19:28 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-07-01 13:19:28 -0400
commitee34f7276b8ce7ef4b5c746b5adf8f8c65f7c826 (patch)
tree6c120a4652b2ca80974973dbcc54c045ea180bec /doc
parent4d6f4ed184b94e60d5d39eff7fae678d64e9aeaa (diff)
downloadsqlalchemy-ee34f7276b8ce7ef4b5c746b5adf8f8c65f7c826.tar.gz
- Fixed 1.0 regression where value objects that override
``__eq__()`` to return a non-boolean-capable object, such as some geoalchemy types as well as numpy types, were being tested for ``bool()`` during a unit of work update operation, where in 0.9 the return value of ``__eq__()`` was tested against "is True" to guard against this. fixes #3469
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_10.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst
index 9f0f0dff3..8ac3d5844 100644
--- a/doc/build/changelog/changelog_10.rst
+++ b/doc/build/changelog/changelog_10.rst
@@ -20,6 +20,17 @@
.. change::
:tags: bug, orm
+ :tickets: 3469
+
+ Fixed 1.0 regression where value objects that override
+ ``__eq__()`` to return a non-boolean-capable object, such as
+ some geoalchemy types as well as numpy types, were being tested
+ for ``bool()`` during a unit of work update operation, where in
+ 0.9 the return value of ``__eq__()`` was tested against "is True"
+ to guard against this.
+
+ .. change::
+ :tags: bug, orm
:tickets: 3468
Fixed 1.0 regression where a "deferred" attribute would not populate