You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by ar...@apache.org on 2004/04/29 10:56:10 UTC

cvs commit: db-ojb release-notes.txt

arminw      2004/04/29 01:56:10

  Modified:    .        release-notes.txt
  Log:
  update notes
  
  Revision  Changes    Path
  1.40      +37 -1     db-ojb/release-notes.txt
  
  Index: release-notes.txt
  ===================================================================
  RCS file: /home/cvs/db-ojb/release-notes.txt,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- release-notes.txt	28 Mar 2004 11:14:21 -0000	1.39
  +++ release-notes.txt	29 Apr 2004 08:56:10 -0000	1.40
  @@ -8,6 +8,42 @@
   relational databases. OJB provides ODMG and JDO interfaces.
   
   ---------------------------------------------------------------------
  +Release 1.0 final
  +---------------------------------------------------------------------
  +
  +NEW FEATURES:
  +
  +NOTES:
  +
  +CHANGES:
  +- ConnectionManager is more strict on CM.releaseConnection() method calls. Now an
  +exception is thrown when CM is in a "local transaction" status when try to release
  +the connection.
  +
  +BUG FIXES:
  +
  +Please refer to our Bug tracking site (http://issues.apache.org/scarab/servlet/scarab/)
  +under http://issues.apache.org/scarab/servlet/scarab/issues/id/OJBxxx
  +to see details for a bug with id OJBxxx.
  +
  +KNOWN ISSUES:
  +- odmg-api: It is not possible to exchange objects in 1:n references.
  +E.g. two objects with 1:n reference, each with one reference object, obj_1{ref_1}
  +and obj_2{ref_2}. Lock objects and exchange the references in collection obj_1{ref_2}
  +and obj_2{ref_1} and commit.
  +
  +- When mapping classes on multiple joined tables it is not possible to query
  +a reference defined in the super class, e.g.
  +Criteria crit = new Criteria();
  +crit.addLike("name", name + "%");
  +crit.addEqualTo("address.street", "snob allee");
  +Query query = QueryFactory.newQuery(Manager.class, crit);
  +If class 'Manager' is a subclass of 'Employee' and Employee has a reference
  +to 'Address', it is not possible to execute the sample query. If you do the
  +same query for 'Employee' itself it will pass.
  +
  +
  +---------------------------------------------------------------------
   Release 1.0 rc6
   ---------------------------------------------------------------------
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org