Upgrade to Jackson 2.14.0-rc2

Closes gh-32771
This commit is contained in:
Andy Wilkinson 2022-10-19 10:39:46 +01:00
parent 38b5542151
commit e6c69061b5
2 changed files with 9 additions and 1 deletions

View File

@ -464,7 +464,7 @@ bom {
]
}
}
library("Jackson Bom", "2.13.4.20221013") {
library("Jackson Bom", "2.14.0-rc2") {
group("com.fasterxml.jackson") {
imports = [
"jackson-bom"

View File

@ -20,6 +20,7 @@ import java.io.IOException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import static org.mockito.ArgumentMatchers.any;
@ -48,4 +49,11 @@ class JacksonJsonParserTests extends AbstractJsonParserTests {
then(objectMapper).should().readValue(eq("{}"), any(TypeReference.class));
}
@Override
@Disabled("Jackson's array handling is no longer stack bound so protection has been removed.")
// https://github.com/FasterXML/jackson-databind/commit/8238ab41d0350fb915797c89d46777b4496b74fd
void listWithRepeatedOpenArray() throws IOException {
}
}