From 07515fd289f43bb6cd749098f81402274c1daa84 Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Wed, 20 Feb 2013 16:01:44 +0000 Subject: [PATCH] Update release notes. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@1448269 13f79535-47bb-0310-9956-ffa450edef68 --- RELEASE-NOTES.txt | 14 ++++++++++++-- src/changes/changes.xml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 39078dd..ea2a680 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -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 a number of potential improvements. 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 diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 3c55009..e72191d 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -43,7 +43,7 @@ The type attribute can be add,update,fix,remove. Release Notes - + Improved thread-safety for several log adapters, including AvalonLogger, SimpleLog, Log4JLogger, LogKitLogger.