[Sqlalchemy-commits] [1061] sqlalchemy/trunk/CHANGES: updates
Brought to you by:
zzzeek
From: <co...@sq...> - 2006-02-27 06:49:18
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } #msg dt { float: left; width: 6em; font-weight: bold; } #msg dt:after { content:':';} #msg dl, #msg dt, #msg ul, #msg li { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } #msg dl a { font-weight: bold} #msg dl a:link { color:#fc3; } #msg dl a:active { color:#ff0; } #msg dl a:visited { color:#cc6; } h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } #msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; } #msg ul, pre { overflow: auto; } #patch { width: 100%; } #patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;} #patch .propset h4, #patch .binary h4 {margin:0;} #patch pre {padding:0;line-height:1.2em;margin:0;} #patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;} #patch .propset .diff, #patch .binary .diff {padding:10px 0;} #patch span {display:block;padding:0 10px;} #patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;} #patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[1061] sqlalchemy/trunk/CHANGES: updates</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>1061</dd> <dt>Author</dt> <dd>zzzeek</dd> <dt>Date</dt> <dd>2006-02-27 00:49:09 -0600 (Mon, 27 Feb 2006)</dd> </dl> <h3>Log Message</h3> <pre>updates</pre> <h3>Modified Paths</h3> <ul> <li><a href="#sqlalchemytrunkCHANGES">sqlalchemy/trunk/CHANGES</a></li> </ul> </div> <div id="patch"> <h3>Diff</h3> <a id="sqlalchemytrunkCHANGES"></a> <div class="modfile"><h4>Modified: sqlalchemy/trunk/CHANGES (1060 => 1061)</h4> <pre class="diff"><span> <span class="info">--- sqlalchemy/trunk/CHANGES 2006-02-27 06:35:46 UTC (rev 1060) +++ sqlalchemy/trunk/CHANGES 2006-02-27 06:49:09 UTC (rev 1061) </span><span class="lines">@@ -1,14 +1,27 @@ </span><span class="cx"> 0.1.3 </span><del>-- fix to Oracle "row_number over" clause with mulitple tables </del><ins>+- completed "post_update" feature, will add a second update statement before inserts +and after deletes in order to reconcile a relationship without any dependencies +being created; used when persisting two rows that are dependent on each other +- completed mapper.using(session) function, localized per-object Session functionality; +objects can be declared and manipulated as local to any user-defined Session +- fix to Oracle "row_number over" clause with multiple tables </ins><span class="cx"> - mapper.get() was not selecting multiple-keyed objects if the mapper's table was a join, </span><span class="cx"> such as in an inheritance relationship, this is fixed. </span><span class="cx"> - overhaul to sql/schema packages so that the sql package can run all on its own, </span><del>-producing selects, inserts, etc. without any engine dependencies. Table/Column -are the "physical" subclasses of TableClause/ColumnClause. -- fixes to mapper inheritance, involving properties that relate to the same table -involved in the mapper inheritance scheme </del><ins>+producing selects, inserts, etc. without any engine dependencies. builds upon +new TableClause/ColumnClause lexical objects. Schema's Table/Column objects +are the "physical" subclasses of them. simplifies schema/sql relationship, +extensions (like proxyengine), and speeds overall performance by a large margin. +removes the entire getattr() behavior that plagued 0.1.1. +- refactoring of how the mapper "synchronizes" data between two objects into a +separate module, works better with properties attached to a mapper that has an +additional inheritance relationship to one of the related tables, also the same +methodology used to synchronize parent/child objects now used by mapper to +synchronize between inherited and inheriting mappers. </ins><span class="cx"> - made objectstore "check for out-of-identitymap" more aggressive, will perform the </span><span class="cx"> check when object attributes are modified or the object is deleted </span><ins>+- Index object fully implemented, can be constructed standalone, or via +"index" and "unique" arguments on Columns. </ins><span class="cx"> </span><span class="cx"> 0.1.2 </span><span class="cx"> - fixed a recursive call in schema that was somehow running 994 times then returning </span></span></pre> </div> </div> </body> </html> |