summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-04-26 15:51:29 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-04-26 15:51:29 -0400
commite3a7015f8991cea869c6e59cd537fec9836fc9bd (patch)
treefc051a11d664f4fc6b7ab8d0048388ef4f518af1 /doc
parent22c4ae0aaf3a00e9020c3950a53d2a3238b2091c (diff)
downloadsqlalchemy-e3a7015f8991cea869c6e59cd537fec9836fc9bd.tar.gz
Fixes to the ``sqlalchemy.ext.serializer`` extension, including
that the "id" passed from the pickler is turned into a string to prevent against bytes being parsed on Py3K, as well as that ``relationship()`` and ``orm.join()`` constructs are now properly serialized. [ticket:2698] and some other observed issues.
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_08.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst
index 9d392e778..621fd2a61 100644
--- a/doc/build/changelog/changelog_08.rst
+++ b/doc/build/changelog/changelog_08.rst
@@ -8,6 +8,16 @@
.. change::
:tags: bug, orm
+ :tickets: 2698
+
+ Fixes to the ``sqlalchemy.ext.serializer`` extension, including
+ that the "id" passed from the pickler is turned into a string
+ to prevent against bytes being parsed on Py3K, as well as that
+ ``relationship()`` and ``orm.join()`` constructs are now properly
+ serialized.
+
+ .. change::
+ :tags: bug, orm
:tickets: 2714
A significant improvement to the inner workings of query.join(),