diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build/changelog/unreleased_20/9779.rst | 9 | ||||
-rw-r--r-- | doc/build/changelog/unreleased_20/9789.rst | 7 |
2 files changed, 16 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_20/9779.rst b/doc/build/changelog/unreleased_20/9779.rst new file mode 100644 index 000000000..ab417b2dc --- /dev/null +++ b/doc/build/changelog/unreleased_20/9779.rst @@ -0,0 +1,9 @@ +.. change:: + :tags: bug, orm + :tickets: 9779 + + Fixed issue where using additional relationship criteria with the + :func:`_orm.joinedload` loader option, where the additional criteria itself + contained correlated subqueries that referred to the joined entities and + therefore also required "adaption" to aliased entities, would be excluded + from this adaption, producing the wrong ON clause for the joinedload. diff --git a/doc/build/changelog/unreleased_20/9789.rst b/doc/build/changelog/unreleased_20/9789.rst new file mode 100644 index 000000000..bae1537cd --- /dev/null +++ b/doc/build/changelog/unreleased_20/9789.rst @@ -0,0 +1,7 @@ +.. change:: + :tags: bug, tests, pypy + :tickets: 9789 + + Fixed test that relied on the ``sys.getsizeof()`` function to not run on + pypy, where this function appears to have different behavior than it does + on cpython. |