From c4cf4078d0b0aae5806649218971742bc1d85f2b Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sat, 15 Oct 2022 09:40:04 -0400 Subject: [PATCH] Validate input to setDelimiter(String) for empty string #266. --- src/changes/changes.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index cd97e0d4..8f624a15 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -49,6 +49,7 @@ CSVParser.getRecords() now throws UncheckedIOException instead of IOException. Add comments to iterator() and stream() #270. Fix wrong assumptions in PostgreSQL formats #265. + Validate input to setDelimiter(String) for empty string #266. Make CSVRecord#values() public. Add DuplicateHeaderMode for flexibility with header strictness. #114.