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/03 05:38:55 UTC

[isis] branch ISIS-2712 updated (159448d -> bbc4de9)

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

danhaywood pushed a change to branch ISIS-2712
in repository https://gitbox.apache.org/repos/asf/isis.git.


 discard 159448d  ISIS-2712: metamodel XML downloads now filter on namespace rather than package
     add a90ca82  ISIS-2557: let AuthenticationManager.authenticate(...) manage its own transaction and interaction
     add d5f2740  ISIS-2557: revert debug line from prev. commit (not needed)
     add 01d15f9  ISIS-2712: metamodel XML downloads now filter on namespace rather than package
     new bbc4de9  ISIS-2713: fixes compile issues in regression tests

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (159448d)
            \
             N -- N -- N   refs/heads/ISIS-2712 (bbc4de9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../interaction/session/InteractionFactory.java    |  7 ++-
 .../manager/AnonymousInteractionFactory.java       | 69 ++++++++++++++++++++++
 .../manager/AuthenticationManager.java             | 41 +++++++++----
 .../AuthenticationManager_authenticators_Test.java | 17 +++---
 ...rdAuthenticationManager_AuthenticationTest.java | 14 +++--
 .../authenticator/AuthenticatorSecman.java         | 17 +-----
 .../AuthenticatorSecmanAutoConfiguration.java      |  1 -
 .../domainmodel/AnnotationSyntesizerTest.java      |  2 +-
 .../DomainModelTest_usingGoodDomain.java           |  2 +-
 ...uthenticatedWebSessionForIsis_Authenticate.java | 32 +++++-----
 .../AuthenticatedWebSessionForIsis_SignIn.java     | 26 ++++----
 11 files changed, 156 insertions(+), 72 deletions(-)
 create mode 100644 core/security/src/main/java/org/apache/isis/core/security/authentication/manager/AnonymousInteractionFactory.java

[isis] 01/01: ISIS-2713: fixes compile issues in regression tests

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch ISIS-2712
in repository https://gitbox.apache.org/repos/asf/isis.git

commit bbc4de9cf3cd11dd6429c4afa8a06df7d6a53d0c
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Wed Jun 2 22:44:34 2021 +0100

    ISIS-2713: fixes compile issues in regression tests
---
 .../apache/isis/testdomain/domainmodel/AnnotationSyntesizerTest.java    | 2 +-
 .../isis/testdomain/domainmodel/DomainModelTest_usingGoodDomain.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/regressiontests/stable-domainmodel/src/test/java/org/apache/isis/testdomain/domainmodel/AnnotationSyntesizerTest.java b/regressiontests/stable-domainmodel/src/test/java/org/apache/isis/testdomain/domainmodel/AnnotationSyntesizerTest.java
index f6a1fa5..c2e4814 100644
--- a/regressiontests/stable-domainmodel/src/test/java/org/apache/isis/testdomain/domainmodel/AnnotationSyntesizerTest.java
+++ b/regressiontests/stable-domainmodel/src/test/java/org/apache/isis/testdomain/domainmodel/AnnotationSyntesizerTest.java
@@ -88,7 +88,7 @@ class AnnotationSyntesizerTest {
                 //            .withIgnoreBuiltInValueTypes()
                 //            .withIgnoreInterfaces()
                 //.withPackagePrefix("*")
-                .withPackagePrefix("org.apache.isis.testdomain.model.")
+                .withNamespacePrefix("org.apache.isis.testdomain.model.")
                 ;
 
         System.out.println("!!! listing MM");
diff --git a/regressiontests/stable-domainmodel/src/test/java/org/apache/isis/testdomain/domainmodel/DomainModelTest_usingGoodDomain.java b/regressiontests/stable-domainmodel/src/test/java/org/apache/isis/testdomain/domainmodel/DomainModelTest_usingGoodDomain.java
index 09424dc..b0322f5 100644
--- a/regressiontests/stable-domainmodel/src/test/java/org/apache/isis/testdomain/domainmodel/DomainModelTest_usingGoodDomain.java
+++ b/regressiontests/stable-domainmodel/src/test/java/org/apache/isis/testdomain/domainmodel/DomainModelTest_usingGoodDomain.java
@@ -103,7 +103,7 @@ class DomainModelTest_usingGoodDomain {
 //              .withIgnoreBuiltInValueTypes()
 //              .withIgnoreInterfaces()
                 //.withPackagePrefix("*")
-                .withPackagePrefix("org.apache.isis.testdomain.")
+                .withNamespacePrefix("org.apache.isis.testdomain.")
                 ;
 
         System.out.println("=== listing MM");