|
From: Wes B. <wb...@us...> - 2006-02-10 16:48:46
|
Update of /cvsroot/xorm/xorm/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15020 Modified Files: changelog.html Log Message: Keeping up with changelog. Index: changelog.html =================================================================== RCS file: /cvsroot/xorm/xorm/docs/changelog.html,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** changelog.html 25 Feb 2005 00:21:24 -0000 1.20 --- changelog.html 10 Feb 2006 16:48:36 -0000 1.21 *************** *** 52,55 **** --- 52,56 ---- <TR> <TD> + <!-- Begin Main Content --> <h2> <a name="beta7">Current CVS Version (Work in Progress)</a> *************** *** 59,72 **** <li><b>General:</b></li> <ul> ! <li>Modified some source-level constructs to compile cleanly with J2SE 5.0 javac.</li> <li>Fixed problems handling hollow objects that get cloned.</li> <li>Allow already-transactional objects to be the target of makePersistent().</li> <li>Modifications to ordering of objects for datastore flush; fixes some problems with object graphs that contain circular references.</li> <li>Only mark an instance dirty if a change that needs to be reflected in the datastore is made.</li> - <li>New property "org.xorm.option.TestConnectionOnStartup" can be selected to report datastore information and immediately connect with failfast behavior.</li> <li>Provide very primitive concurrency checks for multiple threads using the same Transaction (if multithreaded option is set).</li> <li>Support the JDO 1.0.1 conventions for finding a .jdo metadata file. Support for the legacy XORM method is still included but prints a warning.</li> <li>Fix a bug with using the XORM datastore-level "order-by" option for many-to-many relationships.</li> ! <li>Added methods to CodeQuery/CodeParser to better handle null values used as parameters.</li> </ul> <li><b>SQL Datastore:</b></li> --- 60,79 ---- <li><b>General:</b></li> <ul> ! <li>Modified some source-level constructs to compile cleanly with JDK 1.5 javac.</li> <li>Fixed problems handling hollow objects that get cloned.</li> <li>Allow already-transactional objects to be the target of makePersistent().</li> <li>Modifications to ordering of objects for datastore flush; fixes some problems with object graphs that contain circular references.</li> <li>Only mark an instance dirty if a change that needs to be reflected in the datastore is made.</li> <li>Provide very primitive concurrency checks for multiple threads using the same Transaction (if multithreaded option is set).</li> + <li>Added methods to CodeQuery/CodeParser to better handle null values used as parameters.</li> + <li>Upgraded to JDOM 1.0.</li> + <li>Added new testsuite framework and some basic regression tests. No longer requires user to configure a database (uses included HSQL). See the README in directory unit-tests.</li> + </ul> + <li><b>Configuration:</b></li> + <ul> + <li>New property "org.xorm.option.TestConnectionOnStartup" can be selected to report datastore information and immediately connect with failfast behavior.</li> <li>Support the JDO 1.0.1 conventions for finding a .jdo metadata file. Support for the legacy XORM method is still included but prints a warning.</li> <li>Fix a bug with using the XORM datastore-level "order-by" option for many-to-many relationships.</li> ! <li>Fixed issue where key="ordering" was ignored on a filtered relationship.</li> </ul> <li><b>SQL Datastore:</b></li> *************** *** 74,81 **** <li>Made the DISTINCT keyword configurable per query when using SQLCondition.</li> <li>Ensure all PreparedStatements are closed when no longer needed.</li> </ul> </ul> - <!-- Begin Main Content --> <h2> <a name="beta6">Beta 6 (30 May 2004)</a> --- 81,88 ---- <li>Made the DISTINCT keyword configurable per query when using SQLCondition.</li> <li>Ensure all PreparedStatements are closed when no longer needed.</li> + <li>Added option for SybaseDriver. "org.xorm.datastore.sql.SybaseDriver.maxVarcharLength" defaults to 255 but can be overridden to specify the size at which the code will truncate strings in columns marked as (or assumed to be) varchars.</li> </ul> </ul> <h2> <a name="beta6">Beta 6 (30 May 2004)</a> |