Skip to content

Commit 5d2a1d6

Browse files
committed
Mark #568 as fixed (via #590)
1 parent 1a34e5f commit 5d2a1d6

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

release-notes/CREDITS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

release-notes/VERSION

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ implementations)
1616

1717
3.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)
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package tools.jackson.dataformat.yaml.tofix;
1+
package tools.jackson.dataformat.yaml.ser;
22

33
import java.io.StringWriter;
44

@@ -10,7 +10,6 @@
1010
import tools.jackson.dataformat.yaml.YAMLFactory;
1111
import tools.jackson.dataformat.yaml.YAMLMapper;
1212
import tools.jackson.dataformat.yaml.YAMLWriteFeature;
13-
import tools.jackson.dataformat.yaml.testutil.failure.JacksonTestFailureExpected;
1413

1514
import 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();

0 commit comments

Comments
 (0)