File tree 2 files changed +9
-1
lines changed
spring-boot/src/test/java/org/springframework/boot/json
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -464,7 +464,7 @@ bom {
464
464
]
465
465
}
466
466
}
467
- library(" Jackson Bom" , " 2.13.4.20221013 " ) {
467
+ library(" Jackson Bom" , " 2.14.0-rc2 " ) {
468
468
group(" com.fasterxml.jackson" ) {
469
469
imports = [
470
470
" jackson-bom"
Original file line number Diff line number Diff line change 20
20
21
21
import com .fasterxml .jackson .core .type .TypeReference ;
22
22
import com .fasterxml .jackson .databind .ObjectMapper ;
23
+ import org .junit .jupiter .api .Disabled ;
23
24
import org .junit .jupiter .api .Test ;
24
25
25
26
import static org .mockito .ArgumentMatchers .any ;
@@ -48,4 +49,11 @@ void instanceWithSpecificObjectMapper() throws IOException {
48
49
then (objectMapper ).should ().readValue (eq ("{}" ), any (TypeReference .class ));
49
50
}
50
51
52
+ @ Override
53
+ @ Disabled ("Jackson's array handling is no longer stack bound so protection has been removed." )
54
+ // https://github.com/FasterXML/jackson-databind/commit/8238ab41d0350fb915797c89d46777b4496b74fd
55
+ void listWithRepeatedOpenArray () throws IOException {
56
+
57
+ }
58
+
51
59
}
You can’t perform that action at this time.
0 commit comments