You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/01/07 18:36:19 UTC

[isis] branch master updated: ISIS-2939: update mignotes (M7)

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


The following commit(s) were added to refs/heads/master by this push:
     new 626758a  ISIS-2939: update mignotes (M7)
626758a is described below

commit 626758aefe4c6b91930a8fdb6875c994f4094160
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri Jan 7 19:36:08 2022 +0100

    ISIS-2939: update mignotes (M7)
---
 .../relnotes/modules/ROOT/pages/2021/2.0.0-M7/mignotes.adoc    | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M7/mignotes.adoc b/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M7/mignotes.adoc
index ccc69eb..596a751 100644
--- a/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M7/mignotes.adoc
+++ b/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M7/mignotes.adoc
@@ -5,6 +5,10 @@
 
 (This page will be added to as development progresses).
 
+WARNING: `org.apache.isis.applib.annotation` was renamed to `org.apache.isis.applib.annotations` (plural), 
+which unfortunately affects all early adopters! This has come up as a requirement to ease migration for existing projects 
+from v1 to v2 using Spring's `@AliasFor` annotation. 
+
 == Programming Model
 
 [cols="2a,3a", options="header"]
@@ -14,6 +18,12 @@
 | previously
 | new
 
+| `org.apache.isis.applib.annotation.*`
+| renamed to `org.apache.isis.applib.annotations.*` (plural) 
+- this unfortunately affects all early adopters, 
+but it has come up as a requirement to ease migration for existing projects 
+from v1 to v2 using Spring's `@AliasFor` annotation 
+
 | We provided introspection control via global config option 
 `isis.core.meta-model.annotation.action.explicit=true/false`.
 | Use `@DomainObject(introspection=...)` instead ...