From ad308b426a253b0d3a8062b22abe1c2191f789c0 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Thu, 4 May 2023 13:55:48 -0700 Subject: [PATCH] Update release notes wrt #3897 --- release-notes/CREDITS-2.x | 8 ++++++++ release-notes/VERSION-2.x | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/release-notes/CREDITS-2.x b/release-notes/CREDITS-2.x index f3da1cc9c6..e2c74efd5c 100644 --- a/release-notes/CREDITS-2.x +++ b/release-notes/CREDITS-2.x @@ -1595,6 +1595,9 @@ Sim Yih Tsern (yihtsern@github) (2.15.0) * Contributed fix for #3894: Only avoid Records fields detection for deserialization (2.15.1) + * Contributed fix for #3897: 2.15.0 breaks deserialization when POJO/Record only has a + single field and is marked `Access.WRITE_ONLY` + (2.15.1) Ajay Siwach (Siwach16@github) * Contributed #3637: Add enum features into `@JsonFormat.Feature` @@ -1628,4 +1631,9 @@ Matteo Bertozzi (matteobertozzi@github) * Reported #3895: 2.15.0 breaking behaviour change for records and Getter Visibility (2.15.1) +Antti Lampinen (arlampin@github) + * Reported #3897: 2.15.0 breaks deserialization when POJO/Record only has a single field + and is marked `Access.WRITE_ONLY` + (2.15.1) + diff --git a/release-notes/VERSION-2.x b/release-notes/VERSION-2.x index ef00a45d65..3be724e039 100644 --- a/release-notes/VERSION-2.x +++ b/release-notes/VERSION-2.x @@ -10,6 +10,10 @@ Project: jackson-databind (contributed by Sim Y-T) #3895: 2.15.0 breaking behaviour change for records and Getter Visibility (reported by Matteo B) +#3897: 2.15.0 breaks deserialization when POJO/Record only has a single field + and is marked `Access.WRITE_ONLY` + (reported by Antti L) + (fix contributed by Sim Y-T) #3913: Issue with deserialization when there are unexpected properties (due to null `StreamReadConstraints`) (reported by @sbertault)