From 023ccedb3f99e5958f1edd6914ded621523e515c Mon Sep 17 00:00:00 2001 From: Jimmy Praet Date: Wed, 6 Nov 2024 14:20:09 +0100 Subject: [PATCH] Update 0.10 release notes (#135) `InputValidationIssue.input(Input input)` method was removed and could be potentially breaking. --- src/main/asciidoc/release-notes.adoc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/main/asciidoc/release-notes.adoc b/src/main/asciidoc/release-notes.adoc index 859d8ded..a13cbe74 100644 --- a/src/main/asciidoc/release-notes.adoc +++ b/src/main/asciidoc/release-notes.adoc @@ -19,7 +19,15 @@ * Remove @ApplicationException annotation on Problem, because it could potentially cause compilation errors when used in combination with annotation processors * Disallow creation of InputValidationIssue with inputs[] of size 1 + -WARNING: *Potentially breaking:* removed InputValidationIssue.setInputs() +[WARNING] +==== +*Potentially breaking:* + +* removed `InputValidationIssue.setInputs(List> inputs)` +* removed `InputValidationIssue.setInputs(Input... inputs)` +* removed `InputValidationIssue.input(Input input)` + +==== *belgif-rest-problem-java-ee:* @@ -137,4 +145,4 @@ To benefit from Spring Boot 2.x or 3.x specific features, replace dependencies t == Version 0.1 -Initial release under Belgif organization. \ No newline at end of file +Initial release under Belgif organization.