]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
update
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Apr 2006 21:46:00 +0000 (21:46 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Apr 2006 21:46:00 +0000 (21:46 +0000)
CHANGES

diff --git a/CHANGES b/CHANGES
index c027d25f591d00550d35b65eb96ad744959bef4f..4a5da956bad215b3d68edc87b8b67314aad39c26 100644 (file)
--- 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.