This is an automated email from the ASF dual-hosted git repository. ahuber pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/isis.git
commit 1de4fd7d224325dc0577fd646a76ed0c8da0147e Author: Andi Huber <[email protected]> AuthorDate: Fri Apr 8 20:58:47 2022 +0200 ISIS-2997: update mignotes --- .../ROOT/pages/2022/2.0.0-RC1/mignotes.adoc | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/antora/components/relnotes/modules/ROOT/pages/2022/2.0.0-RC1/mignotes.adoc b/antora/components/relnotes/modules/ROOT/pages/2022/2.0.0-RC1/mignotes.adoc index 7b3e41469b..34974c81d7 100644 --- a/antora/components/relnotes/modules/ROOT/pages/2022/2.0.0-RC1/mignotes.adoc +++ b/antora/components/relnotes/modules/ROOT/pages/2022/2.0.0-RC1/mignotes.adoc @@ -20,12 +20,24 @@ | `ViewModel.viewModelInit(String memento)` removed | use a single (String) argument constructor instead; this will allow Java Records to be used as viewmodels (future work) -| -| +| `MetamodelEvent` as provided with _metamodel_ moved +| moved to _applib_; we introduced _interface_ `MetamodelListener` for convenience to maybe use instead +[source, java] +.Example +---- +@Service +public class SeedService implements MetamodelListener { +/.. + @Override + public void onMetamodelLoaded() { + // seed database entities + } +} +---- |=== -== Configuration +== Commons Following configuration options changed: [cols="2a,3a", options="header"] @@ -35,5 +47,9 @@ Following configuration options changed: | previously | new +| `Result<T>` removed +| replaced by `Try<T>`; also promoting `Either<L, R>` to non-internal, +and introducing `Railway<F, S>` + |===
