This repository was archived by the owner on Jan 22, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
src/main/java/com/fasterxml/jackson/dataformat/csv Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -88,3 +88,9 @@ Peter Ansell (ansell@github)
8888
8989* Contributed fix for #128: Write out headers even if no data rows written
9090 (2.7.7)
91+
92+ George Fraser (georgewfraser@github)
93+
94+ * Contributed #127: Add `CsvGenerator.Feature.ALWAYS_QUOTE_EMPTY_STRINGS` to allow forced
95+ quoting of empty Strings.
96+ (2.9.0)
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ Project: jackson-dataformat-csv
66
772.9.0 (not yet released)
88
9+ #127: Add `CsvGenerator.Feature.ALWAYS_QUOTE_EMPTY_STRINGS` to allow forced
10+ quoting of empty Strings.
11+ (contributed by georgewfraser@github)
912#130: Add fluent addColumns operation to CsvSchema.Builder
1013 (contributed by Peter A)
1114
Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ public enum Feature
6868 /**
6969 * Feature that determines whether values written as empty Strings (from <code>java.lang.String</code>
7070 * valued POJO properties) should be forced to be quoted.
71+ *
72+ * @since 2.9
7173 */
7274 ALWAYS_QUOTE_EMPTY_STRINGS (false ),
7375 ;
You can’t perform that action at this time.
0 commit comments