Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Dec 19, 2023
1 parent c5c3579 commit af8073f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ public void testOSSFuzzIssue65117() throws Exception
MismatchedInputException e = Assert.assertThrows(
MismatchedInputException.class,
() -> MAPPER.readValue("[\"\"s(", ref));
e.printStackTrace();
assertTrue(e.getMessage().contains("Guava `Collection` of type "));
assertTrue(e.getMessage().contains("does not accept `null` values"));
verifyException(e, "Guava `Collection` of type ");
verifyException(e, "does not accept `null` values");
}
}
6 changes: 4 additions & 2 deletions release-notes/CREDITS-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ Muhammad Khalikov (@mukham12)
(2.17.0)

Arthur Chan (@arthurscchan)
* Contributed #124: Some deserializers throw unexpected `NullPointerException`
* Contributed #124: (guava) Some deserializers throw unexpected `NullPointerException`
when handling invalid input
(2.17.0)

* Contributed #138: (guava) `GuavaCollectionDeserializer` still throws NPE in
some circumstances
(2.17.0)
4 changes: 3 additions & 1 deletion release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ Active Maintainers:
(contributed by Muhammad K)
#124: (guava) Some deserializers throw unexpected `NullPointerException` when
handling invalid input
(contibuted by Arthur C)
(contributed by Arthur C)
#136 (guava) Fix for failing Guava `Optional` test
(contributed by Muhammad K)
#138 (guava) `GuavaCollectionDeserializer` still throws NPE in some circumstances
(contributed by Arthur C)

2.16.0 (15-Nov-2023)

Expand Down

0 comments on commit af8073f

Please sign in to comment.