You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/01/10 13:11:29 UTC

[syncope] branch 2_1_X updated (3180806 -> f5f0bf0)

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

ilgrosso pushed a change to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git.


    from 3180806  Fixing default JaCoCo / Sonar settings
     new 0a1b5a6  Upgrading docker-maven-plugin
     new f5f0bf0  Upgrading Wicket

The 2 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:
 .../src/test/java/org/apache/syncope/fit/console/LogsITCase.java     | 5 +++++
 pom.xml                                                              | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


[syncope] 01/02: Upgrading docker-maven-plugin

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

ilgrosso pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 0a1b5a64cae5c7573e5198c265c9cbb1804fe049
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Fri Jan 10 08:00:21 2020 +0100

    Upgrading docker-maven-plugin
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0a538b4..f4bed2f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2102,7 +2102,7 @@ under the License.
         <plugin>
           <groupId>io.fabric8</groupId>
           <artifactId>docker-maven-plugin</artifactId>
-          <version>0.31.0</version>
+          <version>0.32.0</version>
         </plugin>
 
         <plugin>


[syncope] 02/02: Upgrading Wicket

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

ilgrosso pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit f5f0bf05cd88e8d5ab6e682f7e1bb6f3c3249c82
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Fri Jan 10 14:08:50 2020 +0100

    Upgrading Wicket
---
 .../src/test/java/org/apache/syncope/fit/console/LogsITCase.java     | 5 +++++
 pom.xml                                                              | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/console/LogsITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/console/LogsITCase.java
index e318a57..d341910 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/console/LogsITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/console/LogsITCase.java
@@ -29,6 +29,7 @@ import org.apache.wicket.ajax.markup.html.AjaxFallbackLink;
 import org.apache.wicket.core.util.lang.PropertyResolver;
 import org.apache.wicket.markup.html.WebMarkupContainer;
 import org.apache.wicket.markup.html.form.DropDownChoice;
+import org.apache.wicket.markup.html.form.Form;
 import org.apache.wicket.markup.html.list.ListItem;
 import org.apache.wicket.util.visit.IVisit;
 import org.junit.jupiter.api.BeforeEach;
@@ -61,6 +62,7 @@ public class LogsITCase extends AbstractConsoleITCase {
         Component result = searchLog(KEY, CONTAINER_PATH, "io.swagger");
         assertNotNull(result);
 
+        TESTER.getRequest().setMethod(Form.METHOD_GET);
         TESTER.getRequest().addParameter(
                 result.getPageRelativePath() + ":fields:1:field:dropDownChoiceField", "6");
         TESTER.assertComponent(
@@ -88,8 +90,11 @@ public class LogsITCase extends AbstractConsoleITCase {
         Component result = searchLog(KEY, CONTAINER_PATH, "org.apache.wicket");
         assertNotNull(result);
 
+        TESTER.getRequest().setMethod(Form.METHOD_GET);
         TESTER.getRequest().addParameter(
                 result.getPageRelativePath() + ":fields:1:field:dropDownChoiceField", "6");
+        TESTER.assertComponent(
+                result.getPageRelativePath() + ":fields:1:field:dropDownChoiceField", DropDownChoice.class);
         TESTER.executeAjaxEvent(
                 result.getPageRelativePath() + ":fields:1:field:dropDownChoiceField", Constants.ON_CHANGE);
 
diff --git a/pom.xml b/pom.xml
index f4bed2f..416a3a2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -481,7 +481,7 @@ under the License.
     <jsplumb.version>2.0.7</jsplumb.version>
     <chartjs.version>1.0.2</chartjs.version>
     
-    <wicket.version>8.6.1</wicket.version>
+    <wicket.version>8.7.0</wicket.version>
     <wicket-jqueryui.version>8.6.0</wicket-jqueryui.version>
     <wicket-bootstrap.version>2.0.11</wicket-bootstrap.version>