You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/06/25 14:41:54 UTC

[isis] branch master updated: ISIS-2483: adds note to mignotes re: @DomainObject(autoCompleteMethod=)

This is an automated email from the ASF dual-hosted git repository.

danhaywood 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 e89ce0e  ISIS-2483: adds note to mignotes re: @DomainObject(autoCompleteMethod=)
e89ce0e is described below

commit e89ce0ef0d27a6d6a51313c1b64da96686e4a1f2
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Jun 25 15:41:35 2021 +0100

    ISIS-2483: adds note to mignotes re: @DomainObject(autoCompleteMethod=)
---
 .../modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc | 30 ++++++++++++----------
 1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc b/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc
index f29e0aa..1756d2f 100644
--- a/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc
+++ b/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc
@@ -20,10 +20,13 @@
 | `@Action(associateWithSequence=...)` removed
 | use `@ActionLayout(sequence=...)` instead
 
+| `@DomainObject(autoCompleteAction=...)` removed
+| use `@DomainObject(autoCompleteMethod=...)` instead
+
 | `@MemberOrder(name=...)` removed
-| instead on a _Property_ use `@PropertyLayout(fieldSetId=..., fieldSetName=...)` 
-or on an _Action_ use `@Action(associateWith=...)`; 
-there is no counterpart for _Collection_ 
+| instead on a _Property_ use `@PropertyLayout(fieldSetId=..., fieldSetName=...)`
+or on an _Action_ use `@Action(associateWith=...)`;
+there is no counterpart for _Collection_
 
 | `@MemberOrder(sequence=...)` removed
 | use `@ActionLayout/@PropertyLayout/@CollectionLayout(sequence=...)` instead
@@ -41,26 +44,26 @@ Following configuration options changed:
 isis.core.meta-model.validator.ensure-unique-object-types // removed
 
 isis.core.meta-model.validator.explicit-object-type // renamed to ...
-isis.core.meta-model.validator.explicit-logical-type-names 
+isis.core.meta-model.validator.explicit-logical-type-names
 ----
 
 == Other Changes
 
-Module `IsisModuleExtCorsImpl` was renamed to `IsisModuleExtCors`. 
+Module `IsisModuleExtCorsImpl` was renamed to `IsisModuleExtCors`.
 
 Module `IsisModuleExtModelAnnotation` was removed and is no longer required.
 
-Service `BookmarkService` has been improved, such that its methods return `Optional<?>` instead of nullable objects. 
+Service `BookmarkService` has been improved, such that its methods return `Optional<?>` instead of nullable objects.
 
 Service `RepositoryService.isPersistent(Object domainObject)` has been removed. Use `getEntityState(Object domainObject)` instead.
 
 Service `RepositoryService.isDeleted(Object domainObject)` has been removed. Use `getEntityState(Object domainObject)` instead.
 
-Enum `EntityState.PERSISTABLE_DESTROYED` and `isDestroyed()` were renamed to `PERSISTABLE_REMOVED` and `isRemoved()`. Also note: the `removed` entity life-cycle state is only supported by _JDO_, 
-whereas _JPA_ is indifferent to whether an entity instance was `removed` or is `detached`. The framework's JPA integration will always report `detached`.    
+Enum `EntityState.PERSISTABLE_DESTROYED` and `isDestroyed()` were renamed to `PERSISTABLE_REMOVED` and `isRemoved()`. Also note: the `removed` entity life-cycle state is only supported by _JDO_,
+whereas _JPA_ is indifferent to whether an entity instance was `removed` or is `detached`. The framework's JPA integration will always report `detached`.
 
 
-The _Wicket Viewer_ was migrated from using _Bootstrap 3_ to _Bootstrap 4_, which might have more or less severe implications on (your) customized _CSS_ and _JavaScript_ and _Wicket_ components. 
+The _Wicket Viewer_ was migrated from using _Bootstrap 3_ to _Bootstrap 4_, which might have more or less severe implications on (your) customized _CSS_ and _JavaScript_ and _Wicket_ components.
 
 == Extensions
 
@@ -69,7 +72,7 @@ The _Wicket Viewer_ was migrated from using _Bootstrap 3_ to _Bootstrap 4_, whic
 Following SecMan artifacts have been renamed:
 [source,xml]
 ----
-<artifactId>isis-extensions-secman-model</artifactId> <!-- old --> 
+<artifactId>isis-extensions-secman-model</artifactId> <!-- old -->
 <artifactId>isis-extensions-secman-integration</artifactId> <!-- new -->
 
 <artifactId>isis-extensions-secman-api</artifactId> <!-- old -->
@@ -119,17 +122,16 @@ Use the new User Manager View Model instead:
 <mb3:serviceAction objectType="isis.ext.secman.ApplicationUserMenu" id="userManager">
     <cpt:named>User Manager</cpt:named>
 </mb3:serviceAction>
-----      
+----
 
 DB schema changes:
 
 [source,sql]
-.ApplicationUser 
+.ApplicationUser
 ----
 -- mariadb/mysql syntax - adapt to your specific vendor, schema names omitted
 UPDATE ApplicationUser set `status`='UNLOCKED' where `status` like 'ENABLED';
 UPDATE ApplicationUser set `status`='LOCKED' where `status` like 'DISABLED';
 ----
 
-          
-                
\ No newline at end of file
+