Author: rgoers
Date: Sat Jun 1 20:27:53 2013
New Revision: 1488589
URL: http://svn.apache.org/r1488589
Log:
Prepare for release
Modified:
logging/log4j/log4j2/trunk/RELEASE-NOTES.txt
logging/log4j/log4j2/trunk/pom.xml
logging/log4j/log4j2/trunk/src/changes/changes.xml
Modified: logging/log4j/log4j2/trunk/RELEASE-NOTES.txt
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/RELEASE-NOTES.txt?rev=1488589&r1=1488588&r2=1488589&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/RELEASE-NOTES.txt (original)
+++ logging/log4j/log4j2/trunk/RELEASE-NOTES.txt Sat Jun 1 20:27:53 2013
@@ -15,37 +15,37 @@ Bug fixes and enhancements
Changes in this version include:
New features:
-o LOG4J2-10: Break up core into multiple osgi jars. Thanks to Timothy Ward.
-o LOG4J2-229: New JDBC, JPA, and NoSQL database Appenders. Thanks to
beamerblvd.
-o LOG4J2-251: Provide configuration information (location, content type,
content if possible) via a registered Advertiser.
+o LOG4J2-10: Break up core into multiple osgi jars. Thanks to Timothy Ward.
+o LOG4J2-229: New JDBC, JPA, and NoSQL database Appenders. Thanks to
beamerblvd.
+o LOG4J2-251: Provide configuration information (location, content type,
content if possible) via a registered Advertiser.
Fixed Bugs:
-o LOG4J2-263: Do not allow a charset on RFC5424Layout - use UTF-8.
+o LOG4J2-263: Do not allow a charset on RFC5424Layout - use UTF-8.
o LOG4J2-242: StringFormattedMessage and MessageFormatMessage now will accept
a Throwable as their last argument and
- pass it on.
-o LOG4J2-269: Use transaction when batch size is 1.
-o LOG4J2-268: Add guid to FlumeEvent headers for non-Map Messages.
-o LOG4J2-246: Data buffer is reset in finally clause.
-o LOG4J2-228: UDP now sends one event per packet.
-o LOG4J2-261: Add missing "not" to error message. Thanks to Edward Sargisson.
-o LOG4J2-223: Remove LoggerContext when LoggerContext is stopped.
-o LOG4J2-260: XML layout does not specify charset in content type.
-o LOG4J2-259: HTML layout does not specify charset in content type.
-o LOG4J2-258: HTML layout does not output meta element for charset.
-o LOG4J2-257: XML layout ignores charset for the XML processing intruction's
encoding attribute.
-o LOG4J2-255: Multi-byte character strings are now assumed to be in the
platform default encoding, not UTF-8.
-o LOG4J2-254: Mark OutputStream in OutputStreamManager as volatile. Mark
header and footer as final.
-o LOG4J2-244: Rewrite Appender was ignoring filters on referenced appenders.
-o LOG4J2-245: Avoid EmptyStack exception if getCallerClass and
SecurityManager are not available.
-o LOG4J2-247: SocketServer.isActive should be volatile because it is accessed
from different threads.
+ pass it on.
+o LOG4J2-269: Use transaction when batch size is 1.
+o LOG4J2-268: Add guid to FlumeEvent headers for non-Map Messages.
+o LOG4J2-246: Data buffer is reset in finally clause.
+o LOG4J2-228: UDP now sends one event per packet.
+o LOG4J2-261: Add missing "not" to error message. Thanks to Edward Sargisson.
+o LOG4J2-223: Remove LoggerContext when LoggerContext is stopped.
+o LOG4J2-260: XML layout does not specify charset in content type.
+o LOG4J2-259: HTML layout does not specify charset in content type.
+o LOG4J2-258: HTML layout does not output meta element for charset.
+o LOG4J2-257: XML layout ignores charset for the XML processing intruction's
encoding attribute.
+o LOG4J2-255: Multi-byte character strings are now assumed to be in the
platform default encoding, not UTF-8.
+o LOG4J2-254: Mark OutputStream in OutputStreamManager as volatile. Mark
header and footer as final.
+o LOG4J2-244: Rewrite Appender was ignoring filters on referenced appenders.
+o LOG4J2-245: Avoid EmptyStack exception if getCallerClass and
SecurityManager are not available.
+o LOG4J2-247: SocketServer.isActive should be volatile because it is accessed
from different threads.
Changes:
-o LOG4J2-249: Allow context parameters in Log4jContextListener to include
properties.
-o LOG4J2-243: Allow custom LogEventFactories.
-o LOG4J2-262: Add support for interceptors in the embedded Flume Appender.
Thanks to Edward Sargisson.
+o LOG4J2-249: Allow context parameters in Log4jContextListener to include
properties.
+o LOG4J2-243: Allow custom LogEventFactories.
+o LOG4J2-262: Add support for interceptors in the embedded Flume Appender.
Thanks to Edward Sargisson.
o Method name changes in interface
org.apache.logging.log4j.spi.ThreadContextMap:
- getContext() to getCopy(), get() to getImmutableMapOrNull().
-o LOG4J2-154: Improve ThreadContext performance with copy-on-write map and
stack.
+ getContext() to getCopy(), get() to getImmutableMapOrNull().
+o LOG4J2-154: Improve ThreadContext performance with copy-on-write map and
stack.
Apache Log4j 2.0-beta7 requires a minimum of Java 6 to build and run. Basic
compatibility with
Modified: logging/log4j/log4j2/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/pom.xml?rev=1488589&r1=1488588&r2=1488589&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/pom.xml (original)
+++ logging/log4j/log4j2/trunk/pom.xml Sat Jun 1 20:27:53 2013
@@ -566,7 +566,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
- <version>3.3</version>
+ <!-- Do not upgrade to versions 3.1, 3.2 or 3.3. 3.2 & 3.3 cause a
NullPointerException in site:stage-deploy
+ and the site is broken in all of them -->
+ <version>3.0</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
@@ -877,6 +879,8 @@
<version>${rat.plugin.version}</version>
<configuration>
<excludes>
+ <exclude>dist/target/.plxarc</exclude>
+ <exclude>dist/target/*.asc</exclude>
<exclude>dist/target/**/*</exclude>
<exclude>src/main/resources/META-INF/services/**/*</exclude>
<exclude>.idea/**/*</exclude>
Modified: logging/log4j/log4j2/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/src/changes/changes.xml?rev=1488589&r1=1488588&r2=1488589&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/src/changes/changes.xml (original)
+++ logging/log4j/log4j2/trunk/src/changes/changes.xml Sat Jun 1 20:27:53 2013
@@ -84,7 +84,7 @@
<action issue="LOG4J2-254" dev="rgoers" type="fix">
Mark OutputStream in OutputStreamManager as volatile. Mark header and
footer as final.
</action>
- <action issue="LOG4J-244" dev="rgoers" type="fix">
+ <action issue="LOG4J2-244" dev="rgoers" type="fix">
Rewrite Appender was ignoring filters on referenced appenders.
</action>
<action issue="LOG4J2-245" dev="rgoers" type="fix">