File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
yaml/src/test/java/tools/jackson/dataformat/yaml/ser Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -10,5 +10,7 @@ Andrey Somov (asomov@github)
1010
1111* Contributed #106: (yaml) Upgrade to `snakeyaml-engine` (from classic `snakeyaml`)
1212 (3.0.0)
13- * Contributed#590: (yaml) Upgrade to the latest version of SnakeYAML Engine (3.0.1)
13+ * Contributed #568: (yaml) YAML - ScannerException on block scalar "\n"
14+ (3.1.0)
15+ * Contributed #590: (yaml) Upgrade to the latest version of SnakeYAML Engine (3.0.1)
1416 (3.1.0)
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ implementations)
1616
17173.1.0 (not yet released)
1818
19+ #568: (yaml) YAML - ScannerException on block scalar "\n"
20+ (reported by @benken-parasoft)
21+ (fix by Andrey S)
1922#581: (csv, toml, yaml) Add `isEnabled()` methods for format-specific
2023 features to mappers
2124#590: (yaml) Upgrade to the latest version of SnakeYAML Engine (3.0.1)
Original file line number Diff line number Diff line change 1- package tools .jackson .dataformat .yaml .tofix ;
1+ package tools .jackson .dataformat .yaml .ser ;
22
33import java .io .StringWriter ;
44
1010import tools .jackson .dataformat .yaml .YAMLFactory ;
1111import tools .jackson .dataformat .yaml .YAMLMapper ;
1212import tools .jackson .dataformat .yaml .YAMLWriteFeature ;
13- import tools .jackson .dataformat .yaml .testutil .failure .JacksonTestFailureExpected ;
1413
1514import static org .junit .jupiter .api .Assertions .*;
1615
@@ -21,7 +20,6 @@ public class GeneratorWithMinimize568Test extends ModuleTestBase
2120 .build ());
2221
2322 // [dataformats-text#568]: snakeyaml-engine bug fixed in 3.x
24- @ JacksonTestFailureExpected
2523 @ Test
2624 void testLinefeedAsDoc () {
2725 StringWriter writer = new StringWriter ();
You can’t perform that action at this time.
0 commit comments