You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/02/20 17:01:44 UTC

svn commit: r1448269 - in /commons/proper/logging/trunk: RELEASE-NOTES.txt src/changes/changes.xml

Author: tn
Date: Wed Feb 20 16:01:44 2013
New Revision: 1448269

URL: http://svn.apache.org/r1448269
Log:
Update release notes.

Modified:
    commons/proper/logging/trunk/RELEASE-NOTES.txt
    commons/proper/logging/trunk/src/changes/changes.xml

Modified: commons/proper/logging/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/RELEASE-NOTES.txt?rev=1448269&r1=1448268&r2=1448269&view=diff
==============================================================================
--- commons/proper/logging/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/logging/trunk/RELEASE-NOTES.txt Wed Feb 20 16:01:44 2013
@@ -1,16 +1,19 @@
               Apache Commons Logging 1.1.2 RELEASE NOTES
 
-The Commons Logging team is pleased to announce the release of commons-logging-1.1.2
+The Commons Logging team is pleased to announce the release of commons-logging-1.1.2-SNAPSHOT
 
 Commons Logging is a thin adapter allowing configurable bridging to other,
 well known logging systems.
 
-Bug fixes.
+This is a maintenance release containing bug fixes.
 
 Changes in this version include:
 
 
 Fixed Bugs:
+o LOGGING-132:  Jdk14Logger now correctly uses the specified logger name.
+o LOGGING-146:  Properly synchronize access to protected static field LogFactory.nullClassLoaderFactory.
+o LOGGING-119:  Prevent potential deadlock scenario in WeakHashtable.
 o LOGGING-130:  Potential missing privileged block for class loader.
 o LOGGING-145:  LogFactoryImpl.setAttribute - possible NPE.
 o LOGGING-142:  Log4JLogger uses deprecated static members of Priority such as INFO.
@@ -18,6 +21,13 @@ o LOGGING-128:  Static analysis suggests
 o LOGGING-147:  SimpleLog.log - unsafe update of shortLogName.
 o LOGGING-148:  LogFactory.diagnosticPrefix and diagnosticsStream could be final.
 
+Changes:
+o LOGGING-135:  Improved thread-safety for several log adapters, including AvalonLogger, SimpleLog,
+                Log4JLogger, LogKitLogger.
+o LOGGING-138:  In case of a discovery failure now also the stacktrace of the cause will be
+                added to the diagnostic message.
+o LOGGING-133:  Change scope of Jdk14Logger.log(Level, String, Throwable) to protected, allowing
+                subclasses to modify the logging output.
 
 
 Historical list of changes: http://commons.apache.org/logging/changes-report.html

Modified: commons/proper/logging/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/changes/changes.xml?rev=1448269&r1=1448268&r2=1448269&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/changes/changes.xml (original)
+++ commons/proper/logging/trunk/src/changes/changes.xml Wed Feb 20 16:01:44 2013
@@ -43,7 +43,7 @@ The <action> type attribute can be add,u
     <title>Release Notes</title>
   </properties>
   <body>
-    <release version="1.1.2" date="In SVN" description="Bug fixes.">
+    <release version="1.1.2" date="In SVN" description="This is a maintenance release containing bug fixes.">
       <action type="update" issue="LOGGING-135">
         Improved thread-safety for several log adapters, including AvalonLogger, SimpleLog,
         Log4JLogger, LogKitLogger.