diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-05-02 09:22:11 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-05-02 10:08:11 -0400 |
commit | b2196dd953e6313fcd688530aeeccfd013c61069 (patch) | |
tree | c33f5cc3b500b8b79e215e48c3bccad9a2b8848e | |
parent | 5d8a608722e3fa42192e15e703b2f1f076693cfa (diff) | |
download | sqlalchemy-b2196dd953e6313fcd688530aeeccfd013c61069.tar.gz |
- start qualifying some regressions as "unexpected use"
regressions; regressions where we didn't know an API even worked
in a particular way or that anyone were using it in such a way
hence had no tests for such case.
-rw-r--r-- | doc/build/changelog/changelog_10.rst | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst index 18347e6d0..65d963029 100644 --- a/doc/build/changelog/changelog_10.rst +++ b/doc/build/changelog/changelog_10.rst @@ -127,7 +127,8 @@ :tags: bug, orm :tickets: 3392 - Fixed regression due to :ticket:`2992` where textual elements placed + Fixed unexpected use regression due to :ticket:`2992` where + textual elements placed into the :meth:`.Query.order_by` clause in conjunction with joined eager loading would be added to the columns clause of the inner query in such a way that they were assumed to be table-bound column names, @@ -235,9 +236,9 @@ :tags: bug, orm, declarative :tickets: 3383 - Fixed regression regarding the declarative ``__declare_first__`` - and ``__declare_last__`` accessors where these would no longer be - called on the superclass of the declarative base. + Fixed unexpected use regression regarding the declarative + ``__declare_first__`` and ``__declare_last__`` accessors where these + would no longer be called on the superclass of the declarative base. .. changelog:: :version: 1.0.1 @@ -346,7 +347,8 @@ :tags: bug, orm :tickets: 3371 - Fixed a regression cause by :ticket:`3061` where the NEVER_SET + Fixed unexpected use regression cause by :ticket:`3061` where + the NEVER_SET symbol could leak into relationship-oriented queries, including ``filter()`` and ``with_parent()`` queries. The ``None`` symbol is returned in all cases, however many of these queries have never @@ -633,8 +635,8 @@ :tickets: 3327 :pullreq: github:160 - Fixed 1.0 regression from pullreq github:137 where Py2K unicode - literals (e.g. ``u""``) would not be accepted by the + Fixed unexpected use regression from pullreq github:137 where + Py2K unicode literals (e.g. ``u""``) would not be accepted by the :paramref:`.relationship.cascade` option. Pull request courtesy Julien Castets. |