This repository was archived by the owner on Jan 22, 2019. It is now read-only.
File tree 3 files changed +11
-0
lines changed
src/main/java/com/fasterxml/jackson/dataformat/csv
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)
88
88
89
89
* Contributed fix for #128: Write out headers even if no data rows written
90
90
(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
6
6
7
7
2.9.0 (not yet released)
8
8
9
+ #127: Add `CsvGenerator.Feature.ALWAYS_QUOTE_EMPTY_STRINGS` to allow forced
10
+ quoting of empty Strings.
11
+ (contributed by georgewfraser@github)
9
12
#130: Add fluent addColumns operation to CsvSchema.Builder
10
13
(contributed by Peter A)
11
14
Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ public enum Feature
68
68
/**
69
69
* Feature that determines whether values written as empty Strings (from <code>java.lang.String</code>
70
70
* valued POJO properties) should be forced to be quoted.
71
+ *
72
+ * @since 2.9
71
73
*/
72
74
ALWAYS_QUOTE_EMPTY_STRINGS (false ),
73
75
;
You can’t perform that action at this time.
0 commit comments