Repository: logging-log4j2 Updated Branches: refs/heads/master 7473ab7d2 -> a270b6ea2
[LOG4J2-2044] Update Apache Commons CSV from 1.4 to 1.5. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/a270b6ea Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/a270b6ea Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/a270b6ea Branch: refs/heads/master Commit: a270b6ea25398840eb6a5ac56494dc9445caa5fa Parents: 7473ab7 Author: Gary Gregory <[email protected]> Authored: Mon Sep 11 11:47:50 2017 -0600 Committer: Gary Gregory <[email protected]> Committed: Mon Sep 11 11:47:50 2017 -0600 ---------------------------------------------------------------------- .../appender/CsvJsonParameterLayoutFileAppenderTest.java | 9 +++------ pom.xml | 2 +- src/changes/changes.xml | 3 +++ 3 files changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a270b6ea/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/CsvJsonParameterLayoutFileAppenderTest.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/CsvJsonParameterLayoutFileAppenderTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/CsvJsonParameterLayoutFileAppenderTest.java index e3acddd..2443d5b 100644 --- a/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/CsvJsonParameterLayoutFileAppenderTest.java +++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/CsvJsonParameterLayoutFileAppenderTest.java @@ -91,23 +91,20 @@ public class CsvJsonParameterLayoutFileAppenderTest { @Test public void testNoNulCharactersOpenCurly() throws IOException { - // TODO Why is the char quoted? Check Apache Commons CSV. - testNoNulCharacters("{", "\"{\""); + testNoNulCharacters("{", "{"); } @Test public void testNoNulCharactersOpenParen() throws IOException { - // TODO Why is the char quoted? Check Apache Commons CSV. - testNoNulCharacters("(", "\"(\""); + testNoNulCharacters("(", "("); } @Test public void testNoNulCharactersOpenSquare() throws IOException { // TODO Why is the char quoted? Check Apache Commons CSV. - testNoNulCharacters("[", "\"[\""); + testNoNulCharacters("[", "["); } - @Test public void testNoNulCharactersThreeChars() throws IOException { testNoNulCharacters("ABC", "ABC"); } http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a270b6ea/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 6ce79d7..46ddd7f 100644 --- a/pom.xml +++ b/pom.xml @@ -773,7 +773,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> - <version>1.4</version> + <version>1.5</version> </dependency> <!-- GC-free --> <dependency> http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a270b6ea/src/changes/changes.xml ---------------------------------------------------------------------- diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 81ba0ac..0baa9f2 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -55,6 +55,9 @@ <action issue="LOG4J2-2043" dev="ggregory" type="update"> Update Jackson from 2.9.0 to 2.9.1 (fix for Java 9.) </action> + <action issue="LOG4J2-2044" dev="ggregory" type="update"> + Update Apache Commons CSV from 1.4 to 1.5. + </action> </release> <release version="2.9.0" date="2017-08-26" description="GA Release 2.9.0"> <action issue="LOG4J2-1928" dev="rgoers" type="update">
