]> 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:05:17 +0000 (13:05 -0400)
commit5198b1de31029cc985102cd13569086a7056c2f1
tree839156c42571e12cc9cf1d872076e506c3869700
parent669a42c604e007623aeeb50a6f01b217badc8ceb
- 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
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