diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-04-02 12:21:54 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-04-02 12:21:54 -0400 |
commit | 5e04995a82c00e801a99765cde7726f5e73e18c2 (patch) | |
tree | d5e0e2077dfe7dc69ce30e9d0a8c89ceff78e3fe | |
parent | 359f471a1203cafd5dc99b5b078ba7d788b67cec (diff) | |
download | sqlalchemy-5e04995a82c00e801a99765cde7726f5e73e18c2.tar.gz |
- update 0.9 changelog from rel_0_9
-rw-r--r-- | doc/build/changelog/changelog_09.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index 89a5d72da..ab1292f49 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -16,6 +16,17 @@ .. change:: :tags: bug, orm + :tickets: 3349 + + :class:`.Query` doesn't support joins, subselects, or special + FROM clauses when using the :meth:`.Query.update` or + :meth:`.Query.delete` methods; instead of silently ignoring these + fields if methods like :meth:`.Query.join` or + :meth:`.Query.select_from` has been called, a warning is emitted. + As of 1.0.0b5 this will raise an error. + + .. change:: + :tags: bug, orm :tickets: 3352 :versions: 1.0.0b5 |