This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch 4_0_X in repository https://gitbox.apache.org/repos/asf/syncope.git
commit 06a8f55c3530a740b7d5b545a705289466900450 Author: Francesco Chicchiriccò <[email protected]> AuthorDate: Thu May 21 08:34:54 2026 +0200 Upgrading CXF, cas-client, Wicket and woodstox-core --- .../org/apache/syncope/client/console/SyncopeConsoleSession.java | 2 +- .../org/apache/syncope/client/enduser/SyncopeEnduserSession.java | 2 +- pom.xml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java index e4c8fdabaa..5c59deb01a 100644 --- a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java +++ b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java @@ -421,7 +421,7 @@ public class SyncopeConsoleSession extends AuthenticatedWebSession implements Ba @Override public SyncopeAnonymousClient getAnonymousClient() { - if (anonymousClient == null) { + if (anonymousClient == null || !getDomain().equals(anonymousClient.getDomain())) { anonymousClient = SyncopeWebApplication.get().newAnonymousClient(getDomain()); } return anonymousClient; diff --git a/client/idrepo/enduser/src/main/java/org/apache/syncope/client/enduser/SyncopeEnduserSession.java b/client/idrepo/enduser/src/main/java/org/apache/syncope/client/enduser/SyncopeEnduserSession.java index 0287385078..fe46c5f827 100644 --- a/client/idrepo/enduser/src/main/java/org/apache/syncope/client/enduser/SyncopeEnduserSession.java +++ b/client/idrepo/enduser/src/main/java/org/apache/syncope/client/enduser/SyncopeEnduserSession.java @@ -316,7 +316,7 @@ public class SyncopeEnduserSession extends AuthenticatedWebSession implements Ba @Override public SyncopeAnonymousClient getAnonymousClient() { - if (anonymousClient == null) { + if (anonymousClient == null || !getDomain().equals(anonymousClient.getDomain())) { anonymousClient = SyncopeWebApplication.get().newAnonymousClient(getDomain()); } return anonymousClient; diff --git a/pom.xml b/pom.xml index 4aab22531c..b20a18ec70 100644 --- a/pom.xml +++ b/pom.xml @@ -431,7 +431,7 @@ under the License. <connid.kafka.version>1.0.0</connid.kafka.version> <connid.ldup.version>0.1.0</connid.ldup.version> - <cxf.version>4.1.5</cxf.version> + <cxf.version>4.1.6</cxf.version> <bouncycastle.version>1.84</bouncycastle.version> <nimbus-jose-jwt.version>10.9</nimbus-jose-jwt.version> @@ -465,7 +465,7 @@ under the License. <pac4j.version>6.3.3</pac4j.version> <cas.version>7.2.7.1</cas.version> - <cas-client.version>4.0.4</cas-client.version> + <cas-client.version>4.1.1</cas-client.version> <swagger-core.version>2.2.50</swagger-core.version> <swagger-ui.version>5.32.5</swagger-ui.version> @@ -482,7 +482,7 @@ under the License. <jsplumb.version>2.0.7</jsplumb.version> <chartjs.version>4.4.3</chartjs.version> - <wicket.version>10.9.0</wicket.version> + <wicket.version>10.9.1</wicket.version> <wicketstuff.version>10.8.0</wicketstuff.version> <wicket-bootstrap.version>7.0.14</wicket-bootstrap.version> <wicket-spring-boot.version>4.0.0</wicket-spring-boot.version> @@ -688,7 +688,7 @@ under the License. <dependency> <groupId>com.fasterxml.woodstox</groupId> <artifactId>woodstox-core</artifactId> - <version>7.1.1</version> + <version>7.2.0</version> </dependency> <dependency>
