Return-Path: Mailing-List: contact ojb-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ojb-dev@jakarta.apache.org Received: (qmail 19525 invoked by uid 97); 9 Jan 2003 17:37:38 -0000 Received: (qmail 19514 invoked by uid 98); 9 Jan 2003 17:37:38 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Received: (qmail 19442 invoked from network); 9 Jan 2003 17:37:36 -0000 Received: from daedalus.apache.org (HELO apache.org) (63.251.56.142) by nagoya.betaversion.org with SMTP; 9 Jan 2003 17:37:36 -0000 Received: (qmail 69666 invoked by uid 500); 9 Jan 2003 17:36:11 -0000 Received: (qmail 69632 invoked from network); 9 Jan 2003 17:36:10 -0000 Received: from icarus.apache.org (63.251.56.143) by daedalus.apache.org with SMTP; 9 Jan 2003 17:36:10 -0000 Received: (qmail 50557 invoked by uid 1510); 9 Jan 2003 17:36:08 -0000 Date: 9 Jan 2003 17:36:08 -0000 Message-ID: <20030109173608.50554.qmail@icarus.apache.org> From: arminw@apache.org To: jakarta-ojb-cvs@apache.org Subject: cvs commit: jakarta-ojb release-notes.txt X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N arminw 2003/01/09 09:36:08 Modified: . release-notes.txt Log: update release notes Revision Changes Path 1.3 +43 -5 jakarta-ojb/release-notes.txt Index: release-notes.txt =================================================================== RCS file: /home/cvs/jakarta-ojb/release-notes.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- release-notes.txt 21 Dec 2002 16:13:26 -0000 1.2 +++ release-notes.txt 9 Jan 2003 17:36:08 -0000 1.3 @@ -1,14 +1,52 @@ ObJectRelationalBridge -- Bridging Java Objects and Relational Databases -ObJectRelationalBridge (OJB) is an Object/Relational mapping tool that -provides transparent transactional persistence for Java Objects against -relational databases. -OJB supports ODMG and JDO. +ObJectRelationalBridge (OJB) is an Object/Relational mapping tool that +provides transparent transactional persistence for Java Objects against +relational databases. +OJB supports ODMG and JDO. + +Changes in Release 0.9.9.1 + +- Metadata handling was improved. The persistent object +metadata now is decoupled from the connection metadata. + +- Multiple database support was simplified. Now you only +need one repository file and it is allowed to define several +jdbc-connection-descriptors in the repository file. + +- In the PBKey we now use an alias name (and user/password) +to match the connection (jdbc-connection-descriptor), instead +using the path to the repository file. + +- Remove the "max. connections in pool" property from OJB.properties, +this could be done separate for each database in the repository +file using the connection-pool element. + +- Move sequence manager configuration from OJB.properties into the +repository file (see sequence-manager element in repository.dtd). +Now it's possible to define a separate sequence manager for each +jdbc-connection-descriptor. + +- The connection factory implementations using connection +pooling (ConnectionFactoryDBCPImpl, ConnectionFactoryPooledImpl) +now support a 'validationQuery' to check if the returned pooled +connection is valid. + + + +new features: +With this release we are feature complete for the 1.0 release! +For 1.0 you should not expect more features to be added. + +bug fixes: + + Changes in Release 0.9.8 new features: -- On the fly database generation +- a release notes file :-) +- On the fly database generation - JDO support by providing a plugin to the JDO reference implementation - support for nested fields