From 64634e1c3e357251a84278c26b73b04fc3450ea3 Mon Sep 17 00:00:00 2001 From: Kevin Cooney Date: Sat, 16 Jan 2021 19:24:40 -0800 Subject: [PATCH] Update 4.13.2 release notes to document pull 1654 --- doc/ReleaseNotes4.13.2.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/ReleaseNotes4.13.2.md b/doc/ReleaseNotes4.13.2.md index 3e89f62e591c..ba801396d1a4 100644 --- a/doc/ReleaseNotes4.13.2.md +++ b/doc/ReleaseNotes4.13.2.md @@ -28,3 +28,11 @@ behave as they did in JUnit 4.11 (and more similar to tests that do not have a t unfortunately could result in visible changes of tests written or updated since the 4.12 release. If this change adversely affects your tests, you can create the `Timeout` rule via the builder and call `Timeout.Builder.lookForStuckThread(true)`. + +# Exceptions + +### [Pull request #1654:](https://github.com/junit-team/junit/pull/1654) Fix for issue #1192: NotSerializableException with AssumptionViolatedException + +This change fixes an issue where `AssumptionViolatedException` instances could not be serialized +if they were created with a constructor that takes in an `org.hamcrest.Matcher` instance (these +constructors are used if you use one of the `assumeThat()` methods in `org.junit.Assume`).