Skip to content

Commit 3470b02

Browse files
committed
Bump commons-codec:commons-codec from 1.19.0 to 1.20.0
1 parent c55316f commit 3470b02

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
<japicmp.skip>false</japicmp.skip>
110110
<commons.release.isDistModule>true</commons.release.isDistModule>
111111
<project.build.outputTimestamp>2025-07-30T14:51:35Z</project.build.outputTimestamp>
112-
<commons.codec.version>1.19.0</commons.codec.version>
112+
<commons.codec.version>1.20.0</commons.codec.version>
113113
<commons.io.version>2.20.0</commons.io.version>
114114
<!-- Apache Felix maven-bundle-plugin -->
115115
<commons.osgi.import>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump org.apache.commons:commons-parent from 85 to 91 #573.</action>
5050
<action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">[test] Bump com.opencsv:opencsv from 5.11.2 to 5.12.0 #558.</action>
5151
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-lang3 from 3.18.0 to 3.19.0.</action>
52+
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump commons-codec:commons-codec from 1.19.0 to 1.20.0.</action>
5253
</release>
5354
<release version="1.14.1" date="2025-07-27" description="This is a feature and maintenance release. Java 8 or later is required.">
5455
<!-- FIX -->

src/test/java/org/apache/commons/csv/CSVPrinterTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ void testJdbcPrinter() throws IOException, ClassNotFoundException, SQLException
807807
}
808808
}
809809
final String csv = sw.toString();
810-
assertEquals("1,r1,\"long text 1\",\"YmluYXJ5IGRhdGEgMQ==\r\n\"" + RECORD_SEPARATOR + "2,r2,\"" + longText2 + "\",\"YmluYXJ5IGRhdGEgMg==\r\n\"" +
810+
assertEquals("1,r1,\"long text 1\",\"YmluYXJ5IGRhdGEgMQ==\"" + RECORD_SEPARATOR + "2,r2,\"" + longText2 + "\",\"YmluYXJ5IGRhdGEgMg==\"" +
811811
RECORD_SEPARATOR, csv);
812812
// Round trip the data
813813
try (StringReader reader = new StringReader(csv);
@@ -817,12 +817,12 @@ void testJdbcPrinter() throws IOException, ClassNotFoundException, SQLException
817817
assertEquals("1", record.get(0));
818818
assertEquals("r1", record.get(1));
819819
assertEquals("long text 1", record.get(2));
820-
assertEquals("YmluYXJ5IGRhdGEgMQ==\r\n", record.get(3));
820+
assertEquals("YmluYXJ5IGRhdGEgMQ==", record.get(3));
821821
// Row 2
822822
record = csvParser.nextRecord();
823823
assertEquals("2", record.get(0));
824824
assertEquals("r2", record.get(1));
825-
assertEquals("YmluYXJ5IGRhdGEgMg==\r\n", record.get(3));
825+
assertEquals("YmluYXJ5IGRhdGEgMg==", record.get(3));
826826
}
827827
}
828828

0 commit comments

Comments
 (0)