|
From: <bil...@us...> - 2003-02-12 00:33:55
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1:/tmp/cvs-serv26428 Modified Files: CHANGES.txt Log Message: merged from doc Index: CHANGES.txt =================================================================== RCS file: /cvsroot/proxool/proxool/CHANGES.txt,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** CHANGES.txt 24 Jan 2003 14:40:08 -0000 1.14 --- CHANGES.txt 12 Feb 2003 00:33:51 -0000 1.15 *************** *** 6,9 **** --- 6,45 ---- $Author$ + 0.7 - scheduled for February 12, 2003 + + - We have dropped the dependency on commons-logging.jar + by copying the code into our own project (retaining credit to + the Jakarta team, naturally). + + - New monitor package provides statistical + and snapshot information so you can measure how well Proxool, and + your database, is doing. + + - New MonitorServlet provides statistical + information for your web application. + + - The JDK 1.2 patch code has been brought up to date and now + passes all the unit tests. + + - The listener code has been redone. Proxool now allows multiple + listeners per pool. setFooListener has now been deprecated in + favour of addFooListener. And it's now thread safe (just in case you + add or remove a listener while the pool is running). + + - The new ServletConfigurator will help you + to configure and shutdown your pools simply by adding a few lines to + your servlet configuration (web.xml) file and perhaps writing an XML file. + No changes to your Java code. + + - By using ShutdownHooks (with JDK1.3 or later) we get a cleaner, more + reliable shutdown of the pools when the JVM stops. + + - Fixed bug when you asked DatabaseMetaData for the connection. It + now gives you back the Proxool connection, not the underlying delegate + connection. + + - Fixed bug where if you registered, removed and then re-registered a pool + then the new pool would not notice the Properties passed to it. + 0.6 (January 23, 2003) |