parent
38b5542151
commit
e6c69061b5
|
@ -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"
|
||||
|
|
|
@ -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 {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue