]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed 1.0 regression where the "noload" loader strategy would fail
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 11 Aug 2015 17:05:17 +0000 (13:05 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 11 Aug 2015 17:06:10 +0000 (13:06 -0400)
commit7f3548909e5d72a7a910d2629d53f7ed44625c08
tree7552116aec71b07e37bed5c062e2bfb0c1095ddb
parent7841611413c7c6cfb21351aca80813829daa656a
- Fixed 1.0 regression where the "noload" loader strategy would fail
to function for a many-to-one relationship.  The loader used an
API to place "None" into the dictionary which no longer actually
writes a value; this is a side effect of :ticket:`3061`.
- remove InstanceState._initialize() totally, it's used nowhere
else and no longer does what it says it does
- fill in fowards-port version ids throughout the changes for 1.0.9

(cherry picked from commit 5198b1de31029cc985102cd13569086a7056c2f1)
doc/build/changelog/changelog_10.rst
lib/sqlalchemy/orm/attributes.py
lib/sqlalchemy/orm/state.py
lib/sqlalchemy/orm/strategies.py
test/orm/test_mapper.py