From: Mike Bayer Date: Mon, 3 Apr 2006 21:46:00 +0000 (+0000) Subject: update X-Git-Tag: rel_0_1_6~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ad569a52c0d2aaee16ddf1d068109133efc7904;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git update --- diff --git a/CHANGES b/CHANGES index c027d25f59..4a5da956ba 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,14 @@ +0.1.6 +- added 'entity_name' keyword argument to mapper. a mapper is now associated +with a class via the class object as well as an optional entity_name parameter, +which is a string defaulting to None. any number of primary mappers can be +created for a class, qualified by the entity name. instances of those classes +will issue all of their load and save operations through their +entity_name-qualified mapper, and maintain separate a identity in the identity +map for an otherwise equilvalent object. +- overhaul to the attributes system. code has been clarified, and also fixed to +support proper polymorphic behavior on object attributes. + 0.1.5 - added SQLSession concept to SQLEngine. this object keeps track of retrieving a connection from the connection pool as well as an in-progress transaction.