summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-09-18 15:24:40 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-09-18 15:24:40 -0400
commit9ae4db27b993fbd4666907cd11c2de3a41aee02f (patch)
treef31b5e80f0c17ec53cbf755e6e56e57721f153d6 /doc
parentf82f6d55dc05daf2ba0881ded98f5715b70ae3e3 (diff)
downloadsqlalchemy-9ae4db27b993fbd4666907cd11c2de3a41aee02f.tar.gz
- Fixed bug that affected many classes of event, particularly
ORM events but also engine events, where the usual logic of "de duplicating" a redundant call to :func:`.event.listen` with the same arguments would fail, for those events where the listener function is wrapped. An assertion would be hit within registry.py. This assertion has now been integrated into the deduplication check, with the added bonus of a simpler means of checking deduplication across the board. fixes #3199
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_09.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index 91e66bded..56be5b38e 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -14,6 +14,20 @@
:version: 0.9.8
.. change::
+ :tags: bug, orm
+ :versions: 1.0.0
+ :tickets: 3199
+
+ Fixed bug that affected many classes of event, particularly
+ ORM events but also engine events, where the usual logic of
+ "de duplicating" a redundant call to :func:`.event.listen`
+ with the same arguments would fail, for those events where the
+ listener function is wrapped. An assertion would be hit within
+ registry.py. This assertion has now been integrated into the
+ deduplication check, with the added bonus of a simpler means
+ of checking deduplication across the board.
+
+ .. change::
:tags: bug, mssql
:versions: 1.0.0
:tickets: 3151