Skip to content

Commit f246980

Browse files
committed
update release notes wrt #42
1 parent fe7dfbe commit f246980

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

csv/src/main/java/com/fasterxml/jackson/dataformat/csv/CsvGenerator.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,13 @@ public enum Feature
7373
ALWAYS_QUOTE_EMPTY_STRINGS(false),
7474

7575
/**
76-
* Feature that determines whether values written Strings (from <code>java.lang.String</code>
77-
* valued POJO properties) which contains quotes be escaped using the Schema's configured escape character instead of "".
76+
* Feature that determines whether quote characters within quoted String values are escaped
77+
* using configured escape character, instead of being "doubled up" (that is: a quote character
78+
* is written twice in a row).
79+
*<p>
80+
* Default value is false so that quotes are doubled as necessary, not escaped.
7881
*
79-
* @since 2.9
82+
* @since 2.9.3
8083
*/
8184
ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR(false)
8285
;

release-notes/VERSION

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Modules:
1010

1111
2.9.3 (not yet released)
1212

13+
#42 (csv): Add support for escaping double quotes with the configured escape character
14+
(contributed by frankgrimes97@github)
1315
#51 (csv): Set of custom objects with `IGNORE_UNKNOWN` brokes silently csv
1416
(reported by Simone L)
1517

0 commit comments

Comments
 (0)