Skip to content

Commit e6c6906

Browse files
committed
Upgrade to Jackson 2.14.0-rc2
Closes gh-32771
1 parent 38b5542 commit e6c6906

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

spring-boot-project/spring-boot-dependencies/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ bom {
464464
]
465465
}
466466
}
467-
library("Jackson Bom", "2.13.4.20221013") {
467+
library("Jackson Bom", "2.14.0-rc2") {
468468
group("com.fasterxml.jackson") {
469469
imports = [
470470
"jackson-bom"

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/json/JacksonJsonParserTests.java

+8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import com.fasterxml.jackson.core.type.TypeReference;
2222
import com.fasterxml.jackson.databind.ObjectMapper;
23+
import org.junit.jupiter.api.Disabled;
2324
import org.junit.jupiter.api.Test;
2425

2526
import static org.mockito.ArgumentMatchers.any;
@@ -48,4 +49,11 @@ void instanceWithSpecificObjectMapper() throws IOException {
4849
then(objectMapper).should().readValue(eq("{}"), any(TypeReference.class));
4950
}
5051

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+
5159
}

0 commit comments

Comments
 (0)