(wicket) branch wicket-9.x updated: WICKET-7119 fixed non-idempotent unit tests (#929)

2024-07-30 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-9.x by this push:
 new dfa5713f9c WICKET-7119 fixed non-idempotent unit tests (#929)
dfa5713f9c is described below

commit dfa5713f9c60d76fb78d68c41df982236315488f
Author: Kaiyao Ke <47203510+kaiya...@users.noreply.github.com>
AuthorDate: Tue Jul 30 14:45:17 2024 +0800

WICKET-7119 fixed non-idempotent unit tests (#929)

(cherry picked from commit 1a55391e77e3bc6951a59ac99c6bf23c8b66d40b)
---
 .../apache/wicket/ComponentOnConfigureTest.java|  11 ++
 .../markup/repeater/AbstractPageableViewTest.java  | 199 +++--
 .../pageStore/AbstractPersistentPageStoreTest.java |   2 +
 .../resource/FileSystemResourceReferenceTest.java  |  14 +-
 .../org/apache/wicket/util/string/Strings.java |   4 +-
 .../org/apache/wicket/util/string/StringsTest.java |   3 +-
 6 files changed, 133 insertions(+), 100 deletions(-)

diff --git 
a/wicket-core/src/test/java/org/apache/wicket/ComponentOnConfigureTest.java 
b/wicket-core/src/test/java/org/apache/wicket/ComponentOnConfigureTest.java
index f1f80aeea3..b6e3444e05 100644
--- a/wicket-core/src/test/java/org/apache/wicket/ComponentOnConfigureTest.java
+++ b/wicket-core/src/test/java/org/apache/wicket/ComponentOnConfigureTest.java
@@ -28,6 +28,7 @@ import org.apache.wicket.markup.html.WebPage;
 import org.apache.wicket.util.resource.IResourceStream;
 import org.apache.wicket.util.resource.StringResourceStream;
 import org.apache.wicket.util.tester.WicketTestCase;
+import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
 
 /**
@@ -41,6 +42,16 @@ class ComponentOnConfigureTest extends WicketTestCase
private static final AtomicInteger BEHAVIOR = new AtomicInteger(0);
private static final AtomicInteger APPLICATION_LISTENER = new 
AtomicInteger(0);
 
+   @BeforeEach
+   void resetCounters()
+   {
+   COUNTER.set(0);
+   PAGE.set(0);
+   COMPONENT.set(0);
+   BEHAVIOR.set(0);
+   APPLICATION_LISTENER.set(0);
+   }
+   
/**
 * testOrder()
 */
diff --git 
a/wicket-core/src/test/java/org/apache/wicket/markup/repeater/AbstractPageableViewTest.java
 
b/wicket-core/src/test/java/org/apache/wicket/markup/repeater/AbstractPageableViewTest.java
index 36af146512..b85aff8816 100644
--- 
a/wicket-core/src/test/java/org/apache/wicket/markup/repeater/AbstractPageableViewTest.java
+++ 
b/wicket-core/src/test/java/org/apache/wicket/markup/repeater/AbstractPageableViewTest.java
@@ -1,97 +1,104 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.wicket.markup.repeater;
-
-import static org.junit.jupiter.api.Assertions.assertEquals;
-
-import java.util.ArrayList;
-import java.util.Iterator;
-import java.util.List;
-
-import org.apache.wicket.model.IModel;
-import org.apache.wicket.model.Model;
-import org.apache.wicket.util.tester.WicketTestCase;
-import org.junit.jupiter.api.Test;
-
-/**
- * Test for {@link AbstractPageableView}. 
- */
-public class AbstractPageableViewTest extends WicketTestCase
-{
-   private static int count = 5;
-   
-   /**
-*/
-   @Test
-   public void cachedItemCount()
-   {
-   View view = new View("f");
-   
-   assertEquals(5, view.getItemCount());
-   
-   count = 6;
-
-   assertEquals(5, view.getItemCount(), "still 5 cached");
-   
-   view.beforeRender();
-
-   assertEquals(6, view.getItemCount(), "cached cleared before 
render");
-
-   byte[] bytes = 
tester.getApplication().getFrameworkSettings().getSerializer().serialize(view);
-   
-   view = 
(View)tester.getApplication().getFrameworkSettings().getSerializer().deserialize(bytes);
-   
-   count = 7;
-   
-   assertEquals(7,

(wicket) branch master updated: fixed non-idempotent unit tests (#929)

2024-07-30 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 1a55391e77 fixed non-idempotent unit tests (#929)
1a55391e77 is described below

commit 1a55391e77e3bc6951a59ac99c6bf23c8b66d40b
Author: Kaiyao Ke <47203510+kaiya...@users.noreply.github.com>
AuthorDate: Tue Jul 30 14:45:17 2024 +0800

fixed non-idempotent unit tests (#929)
---
 .../java/org/apache/wicket/ComponentOnConfigureTest.java   | 11 +++
 .../wicket/markup/repeater/AbstractPageableViewTest.java   |  7 +++
 .../wicket/pageStore/AbstractPersistentPageStoreTest.java  |  2 ++
 .../wicket/resource/FileSystemResourceReferenceTest.java   | 14 --
 .../java/org/apache/wicket/util/string/StringsTest.java|  3 ++-
 5 files changed, 34 insertions(+), 3 deletions(-)

diff --git 
a/wicket-core-tests/src/test/java/org/apache/wicket/ComponentOnConfigureTest.java
 
b/wicket-core-tests/src/test/java/org/apache/wicket/ComponentOnConfigureTest.java
index f1f80aeea3..b6e3444e05 100644
--- 
a/wicket-core-tests/src/test/java/org/apache/wicket/ComponentOnConfigureTest.java
+++ 
b/wicket-core-tests/src/test/java/org/apache/wicket/ComponentOnConfigureTest.java
@@ -28,6 +28,7 @@ import org.apache.wicket.markup.html.WebPage;
 import org.apache.wicket.util.resource.IResourceStream;
 import org.apache.wicket.util.resource.StringResourceStream;
 import org.apache.wicket.util.tester.WicketTestCase;
+import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
 
 /**
@@ -41,6 +42,16 @@ class ComponentOnConfigureTest extends WicketTestCase
private static final AtomicInteger BEHAVIOR = new AtomicInteger(0);
private static final AtomicInteger APPLICATION_LISTENER = new 
AtomicInteger(0);
 
+   @BeforeEach
+   void resetCounters()
+   {
+   COUNTER.set(0);
+   PAGE.set(0);
+   COMPONENT.set(0);
+   BEHAVIOR.set(0);
+   APPLICATION_LISTENER.set(0);
+   }
+   
/**
 * testOrder()
 */
diff --git 
a/wicket-core-tests/src/test/java/org/apache/wicket/markup/repeater/AbstractPageableViewTest.java
 
b/wicket-core-tests/src/test/java/org/apache/wicket/markup/repeater/AbstractPageableViewTest.java
index 7cbc77a443..b85aff8816 100644
--- 
a/wicket-core-tests/src/test/java/org/apache/wicket/markup/repeater/AbstractPageableViewTest.java
+++ 
b/wicket-core-tests/src/test/java/org/apache/wicket/markup/repeater/AbstractPageableViewTest.java
@@ -25,6 +25,7 @@ import java.util.List;
 import org.apache.wicket.model.IModel;
 import org.apache.wicket.model.Model;
 import org.apache.wicket.util.tester.WicketTestCase;
+import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
 
 /**
@@ -34,6 +35,12 @@ public class AbstractPageableViewTest extends WicketTestCase
 {
private static int count = 5;

+   @BeforeEach
+   public void resetCount()
+   {
+   count = 5;
+   }
+
/**
 */
@Test
diff --git 
a/wicket-core-tests/src/test/java/org/apache/wicket/pageStore/AbstractPersistentPageStoreTest.java
 
b/wicket-core-tests/src/test/java/org/apache/wicket/pageStore/AbstractPersistentPageStoreTest.java
index 2b9f3f86ee..c2b7dd9713 100644
--- 
a/wicket-core-tests/src/test/java/org/apache/wicket/pageStore/AbstractPersistentPageStoreTest.java
+++ 
b/wicket-core-tests/src/test/java/org/apache/wicket/pageStore/AbstractPersistentPageStoreTest.java
@@ -88,6 +88,8 @@ class AbstractPersistentPageStoreTest
};
assertTrue(store.canBeAsynchronous(context));

+   store.destroy();
+   
}
 
 }
diff --git 
a/wicket-core-tests/src/test/java/org/apache/wicket/resource/FileSystemResourceReferenceTest.java
 
b/wicket-core-tests/src/test/java/org/apache/wicket/resource/FileSystemResourceReferenceTest.java
index 0fa16f0c23..56b779b03c 100644
--- 
a/wicket-core-tests/src/test/java/org/apache/wicket/resource/FileSystemResourceReferenceTest.java
+++ 
b/wicket-core-tests/src/test/java/org/apache/wicket/resource/FileSystemResourceReferenceTest.java
@@ -23,7 +23,11 @@ import java.io.InputStream;
 import java.net.URI;
 import java.net.URISyntaxException;
 import java.net.URL;
+import java.nio.file.FileSystem;
+import java.nio.file.FileSystems;
+import java.nio.file.FileSystemAlreadyExistsException;
 import java.nio.file.Path;
+import java.util.Collections;
 
 import org.apache.wicket.core.util.lang.WicketObjects;
 import org.apache.wicket.util.io.ByteArrayOutputStream;
@@ -55,8 +59,14 @@ class FileSystemResourceReferenceTest extends WicketTestCase
try
{
URL resource = 
FileSystemResourceReferenceTest.class.getResource("FileSystemResourceRefere

(wicket) branch master updated (a488379c6e -> 6c76974a75)

2024-07-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from a488379c6e Bump com.github.siom79.japicmp:japicmp-maven-plugin (#931)
 add 6c76974a75 Bump org.jboss.logging:jboss-logging-annotations (#930)

No new revisions were added by this update.

Summary of changes:
 testing/wicket-common-tests/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump com.github.siom79.japicmp:japicmp-maven-plugin (#931)

2024-07-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new a488379c6e Bump com.github.siom79.japicmp:japicmp-maven-plugin (#931)
a488379c6e is described below

commit a488379c6e45192e12c0d52860ca3601e1615336
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 28 09:02:55 2024 +0300

Bump com.github.siom79.japicmp:japicmp-maven-plugin (#931)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 26d6b4bb77..936f7e1ce6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -184,7 +184,7 @@
 


3.6.0
-   
0.21.2
+   
0.22.0

3.2.1
5.1.9
3.4.0



(wicket) branch master updated: Bump org.jboss.logging:jboss-logging-processor (#932)

2024-07-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 33e0bec3df Bump org.jboss.logging:jboss-logging-processor (#932)
33e0bec3df is described below

commit 33e0bec3df89a629c34586303ac60d0413888141
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 28 09:02:28 2024 +0300

Bump org.jboss.logging:jboss-logging-processor (#932)
---
 testing/wicket-common-tests/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/wicket-common-tests/pom.xml 
b/testing/wicket-common-tests/pom.xml
index 4a0173c84b..1ad29fca35 100644
--- a/testing/wicket-common-tests/pom.xml
+++ b/testing/wicket-common-tests/pom.xml
@@ -61,7 +61,7 @@

org.jboss.logging
jboss-logging-processor
-   3.0.0.Final
+   3.0.1.Final
test





(wicket) branch master updated: Bump org.jglue.cdi-unit:cdi-unit from 4.1.0 to 4.2.0 (#891)

2024-07-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 37c80e8c54 Bump org.jglue.cdi-unit:cdi-unit from 4.1.0 to 4.2.0 (#891)
37c80e8c54 is described below

commit 37c80e8c54533257c9fc5737424847a61e889b4e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jul 22 14:08:43 2024 +0300

Bump org.jglue.cdi-unit:cdi-unit from 4.1.0 to 4.2.0 (#891)

Bumps [org.jglue.cdi-unit:cdi-unit](https://github.com/cdi-unit/cdi-unit) 
from 4.1.0 to 4.2.0.
- 
[Commits](https://github.com/cdi-unit/cdi-unit/compare/cdi-unit-parent-4.1.0...cdi-unit-parent-4.2.0)

---
updated-dependencies:
- dependency-name: org.jglue.cdi-unit:cdi-unit
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index dd3d7b7a4d..26d6b4bb77 100644
--- a/pom.xml
+++ b/pom.xml
@@ -145,7 +145,7 @@
3.26.3
1.78.1
1.14.18
-   4.1.0
+   4.2.0
4.4

2.0.0-M2
2.16.1



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-project-info-reports-plugin (#920)

2024-07-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new f3af4374f6 Bump 
org.apache.maven.plugins:maven-project-info-reports-plugin (#920)
f3af4374f6 is described below

commit f3af4374f63434d774538d61bda2cff118b37412
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jul 22 14:08:25 2024 +0300

Bump org.apache.maven.plugins:maven-project-info-reports-plugin (#920)

Bumps 
[org.apache.maven.plugins:maven-project-info-reports-plugin](https://github.com/apache/maven-project-info-reports-plugin)
 from 3.6.1 to 3.6.2.
- 
[Commits](https://github.com/apache/maven-project-info-reports-plugin/compare/maven-project-info-reports-plugin-3.6.1...maven-project-info-reports-plugin-3.6.2)

---
updated-dependencies:
- dependency-name: 
org.apache.maven.plugins:maven-project-info-reports-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 77d70f44ec..dd3d7b7a4d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -196,7 +196,7 @@

3.1.2
3.4.2

3.8.0
-   
3.6.1
+   
3.6.2

3.1.1

3.2.0

3.3.1



(wicket) branch master updated (8d53befb94 -> 809defc637)

2024-07-21 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 8d53befb94 Bump com.google.errorprone:error_prone_annotations from 
2.28.0 to 2.29.2 (#922)
 add 809defc637 Bump org.apache.maven.plugins:maven-release-plugin from 
3.1.0 to 3.1.1 (#921)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (6a1c3e05da -> 8d53befb94)

2024-07-21 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 6a1c3e05da Bump org.apache.maven.plugins:maven-javadoc-plugin from 
3.7.0 to 3.8.0 (#923)
 add 8d53befb94 Bump com.google.errorprone:error_prone_annotations from 
2.28.0 to 2.29.2 (#922)

No new revisions were added by this update.

Summary of changes:
 wicket-guice/pom.xml | 2 +-
 wicket-migration/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 (#923)

2024-07-21 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 6a1c3e05da Bump org.apache.maven.plugins:maven-javadoc-plugin from 
3.7.0 to 3.8.0 (#923)
6a1c3e05da is described below

commit 6a1c3e05daf74a03ff8435998685347e123673b1
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 21 14:34:36 2024 +0300

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 
(#923)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a8c436ef5e..a830a2e86e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -195,7 +195,7 @@
3.2.4

3.1.2
3.4.2
-   
3.7.0
+   
3.8.0

3.6.1

3.1.0

3.2.0



(wicket) branch master updated: Bump grunt-cli from 1.4.3 to 1.5.0 in /testing/wicket-js-tests (#926)

2024-07-21 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 41b60f9574 Bump grunt-cli from 1.4.3 to 1.5.0 in 
/testing/wicket-js-tests (#926)
41b60f9574 is described below

commit 41b60f9574b46d0050badcb44b5be99d4737eab9
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 21 14:33:44 2024 +0300

Bump grunt-cli from 1.4.3 to 1.5.0 in /testing/wicket-js-tests (#926)
---
 testing/wicket-js-tests/package-lock.json | 80 ---
 testing/wicket-js-tests/package.json  |  2 +-
 2 files changed, 63 insertions(+), 19 deletions(-)

diff --git a/testing/wicket-js-tests/package-lock.json 
b/testing/wicket-js-tests/package-lock.json
index 6aaa6dbc94..11eec11830 100644
--- a/testing/wicket-js-tests/package-lock.json
+++ b/testing/wicket-js-tests/package-lock.json
@@ -10,7 +10,7 @@
   "license": "Apache-2.0",
   "devDependencies": {
 "grunt": "1.6.1",
-"grunt-cli": "1.4.3",
+"grunt-cli": "1.5.0",
 "grunt-contrib-connect": "5.0.0",
 "grunt-contrib-jshint": "3.2.0",
 "grunt-contrib-nodeunit": "5.0.0",
@@ -2295,16 +2295,16 @@
   }
 },
 "node_modules/grunt-cli": {
-  "version": "1.4.3",
-  "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz;,
-  "integrity": 
"sha512-9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==",
+  "version": "1.5.0",
+  "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.5.0.tgz;,
+  "integrity": 
"sha512-rILKAFoU0dzlf22SUfDtq2R1fosChXXlJM5j7wI6uoW8gwmXDXzbUvirlKZSYCdXl3LXFbR+8xyS+WFo+b6vlA==",
   "dev": true,
   "dependencies": {
 "grunt-known-options": "~2.0.0",
 "interpret": "~1.1.0",
 "liftup": "~3.0.1",
-"nopt": "~4.0.1",
-"v8flags": "~3.2.0"
+"nopt": "~5.0.0",
+"v8flags": "^4.0.1"
   },
   "bin": {
 "grunt": "bin/grunt"
@@ -2314,16 +2314,18 @@
   }
 },
 "node_modules/grunt-cli/node_modules/nopt": {
-  "version": "4.0.3",
-  "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz;,
-  "integrity": 
"sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==",
+  "version": "5.0.0",
+  "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz;,
+  "integrity": 
"sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
   "dev": true,
   "dependencies": {
-"abbrev": "1",
-"osenv": "^0.1.4"
+"abbrev": "1"
   },
   "bin": {
 "nopt": "bin/nopt.js"
+  },
+  "engines": {
+"node": ">=6"
   }
 },
 "node_modules/grunt-contrib-connect": {
@@ -2446,6 +2448,50 @@
 "node": ">=10"
   }
 },
+"node_modules/grunt/node_modules/grunt-cli": {
+  "version": "1.4.3",
+  "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz;,
+  "integrity": 
"sha512-9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==",
+  "dev": true,
+  "dependencies": {
+"grunt-known-options": "~2.0.0",
+"interpret": "~1.1.0",
+"liftup": "~3.0.1",
+"nopt": "~4.0.1",
+"v8flags": "~3.2.0"
+  },
+  "bin": {
+"grunt": "bin/grunt"
+  },
+  "engines": {
+"node": ">=10"
+  }
+},
+"node_modules/grunt/node_modules/grunt-cli/node_modules/nopt": {
+  "version": "4.0.3",
+  "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz;,
+  "integrity": 
"sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5Ywt

(wicket) branch master updated (83fdafddcb -> d7533716bf)

2024-07-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 83fdafddcb Bump maven-surefire-plugin.version from 3.3.0 to 3.3.1 
(#917)
 add d7533716bf Bump org.apache:apache from 32 to 33 (#915)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (2985e92f83 -> 574b8fa1a8)

2024-07-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 2985e92f83 Bump net.bytebuddy:byte-buddy from 1.14.17 to 1.14.18 (#919)
 add 574b8fa1a8 Bump spring.version from 6.1.10 to 6.1.11 (#918)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (574b8fa1a8 -> 83fdafddcb)

2024-07-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 574b8fa1a8 Bump spring.version from 6.1.10 to 6.1.11 (#918)
 add 83fdafddcb Bump maven-surefire-plugin.version from 3.3.0 to 3.3.1 
(#917)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump net.bytebuddy:byte-buddy from 1.14.17 to 1.14.18 (#919)

2024-07-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 2985e92f83 Bump net.bytebuddy:byte-buddy from 1.14.17 to 1.14.18 (#919)
2985e92f83 is described below

commit 2985e92f8385a28abb23a05830d8132d4b7b01a8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 14 07:55:54 2024 +0300

Bump net.bytebuddy:byte-buddy from 1.14.17 to 1.14.18 (#919)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e87478d205..07ab6a8336 100644
--- a/pom.xml
+++ b/pom.xml
@@ -144,7 +144,7 @@
1.9.22.1
3.26.3
1.78.1
-   1.14.17
+   1.14.18
4.1.0
4.4

2.0.0-M2



(wicket) branch master updated: Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 (#916)

2024-07-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 5f04fd1ede Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 (#916)
5f04fd1ede is described below

commit 5f04fd1ede984c0d65b355a306cb4b9f512b2cfa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 14 07:55:38 2024 +0300

Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 (#916)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index cfb86e8fbe..e87478d205 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,7 +142,7 @@

9.7
1.9.22.1
-   3.26.0
+   3.26.3
1.78.1
1.14.17
4.1.0



(wicket) branch master updated (1bdd5a78f3 -> b4ce60c319)

2024-07-06 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 1bdd5a78f3 Bump org.jboss.logging:jboss-logging-annotations (#911)
 add b4ce60c319 Bump org.jboss.logging:jboss-logging-processor (#910)

No new revisions were added by this update.

Summary of changes:
 testing/wicket-common-tests/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (31f32a0195 -> 1bdd5a78f3)

2024-07-06 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 31f32a0195 Bump grunt-contrib-connect in /testing/wicket-js-tests 
(#914)
 add 1bdd5a78f3 Bump org.jboss.logging:jboss-logging-annotations (#911)

No new revisions were added by this update.

Summary of changes:
 testing/wicket-common-tests/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump grunt-contrib-connect in /testing/wicket-js-tests (#914)

2024-07-06 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 31f32a0195 Bump grunt-contrib-connect in /testing/wicket-js-tests 
(#914)
31f32a0195 is described below

commit 31f32a0195e174c41e567dd7d0a1810c20184ee3
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 7 08:00:21 2024 +0300

Bump grunt-contrib-connect in /testing/wicket-js-tests (#914)
---
 testing/wicket-js-tests/package-lock.json | 450 +++---
 testing/wicket-js-tests/package.json  |   2 +-
 2 files changed, 38 insertions(+), 414 deletions(-)

diff --git a/testing/wicket-js-tests/package-lock.json 
b/testing/wicket-js-tests/package-lock.json
index fce0ec7107..6aaa6dbc94 100644
--- a/testing/wicket-js-tests/package-lock.json
+++ b/testing/wicket-js-tests/package-lock.json
@@ -11,7 +11,7 @@
   "devDependencies": {
 "grunt": "1.6.1",
 "grunt-cli": "1.4.3",
-"grunt-contrib-connect": "4.0.0",
+"grunt-contrib-connect": "5.0.0",
 "grunt-contrib-jshint": "3.2.0",
 "grunt-contrib-nodeunit": "5.0.0",
 "grunt-contrib-qunit": "9.1.1"
@@ -856,15 +856,6 @@
 "node": ">=0.10.0"
   }
 },
-"node_modules/assert": {
-  "version": "1.4.1",
-  "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz;,
-  "integrity": 
"sha512-N+aAxov+CKVS3JuhDIQFr24XvZvwE96Wlhk9dytTg/GmwWoghdOvR8dspx8MVz71O+Y0pA3UPqHF68D6iy8UvQ==",
-  "dev": true,
-  "dependencies": {
-"util": "0.10.3"
-  }
-},
 "node_modules/ast-types": {
   "version": "0.13.4",
   "resolved": 
"https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz;,
@@ -892,12 +883,6 @@
 "node": ">=10"
   }
 },
-"node_modules/async-limiter": {
-  "version": "1.0.1",
-  "resolved": 
"https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz;,
-  "integrity": 
"sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
-  "dev": true
-},
 "node_modules/b4a": {
   "version": "1.6.6",
   "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz;,
@@ -1129,20 +1114,6 @@
 "node": ">=8"
   }
 },
-"node_modules/call-bind": {
-  "version": "1.0.5",
-  "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz;,
-  "integrity": 
"sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==",
-  "dev": true,
-  "dependencies": {
-"function-bind": "^1.1.2",
-"get-intrinsic": "^1.2.1",
-"set-function-length": "^1.1.1"
-  },
-  "funding": {
-"url": "https://github.com/sponsors/ljharb;
-  }
-},
 "node_modules/callsites": {
   "version": "3.1.0",
   "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz;,
@@ -1479,20 +1450,6 @@
 "url": "https://github.com/sponsors/sindresorhus;
   }
 },
-"node_modules/define-data-property": {
-  "version": "1.1.1",
-  "resolved": 
"https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz;,
-  "integrity": 
"sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==",
-  "dev": true,
-  "dependencies": {
-"get-intrinsic": "^1.2.1",
-"gopd": "^1.0.1",
-"has-property-descriptors": "^1.0.0"
-  },
-  "engines": {
-"node": ">= 0.4"
-  }
-},
 "node_modules/define-lazy-prop": {
   "version": "2.0.0",
   "resolved": 
"https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz;,
@@ -1615,48 +1572,6 @@
 "domelementtype": "1"
   }
 },
-"node_modules/duplexify": {
-  &quo

(wicket) branch master updated: Bump org.checkerframework:checker-qual from 3.44.0 to 3.45.0 (#913)

2024-07-06 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new dacc3d6da3 Bump org.checkerframework:checker-qual from 3.44.0 to 
3.45.0 (#913)
dacc3d6da3 is described below

commit dacc3d6da3c9b14fddec9f9cae73a1d66a19d470
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jul 7 07:59:17 2024 +0300

Bump org.checkerframework:checker-qual from 3.44.0 to 3.45.0 (#913)
---
 wicket-migration/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wicket-migration/pom.xml b/wicket-migration/pom.xml
index 4b65b9f9a4..7c3622b6dd 100644
--- a/wicket-migration/pom.xml
+++ b/wicket-migration/pom.xml
@@ -25,7 +25,7 @@
 
 org.checkerframework
 checker-qual
-3.44.0
+3.45.0
 test
 
 



(wicket) branch wicket-9.x updated: WICKET-7117 Fixed tests in ApacheLicenceHeaderTest and LocalizerTest. Also fixed code warnings. (#908)

2024-07-01 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-9.x by this push:
 new d20b702d3f WICKET-7117 Fixed tests in ApacheLicenceHeaderTest and 
LocalizerTest. Also fixed code warnings. (#908)
d20b702d3f is described below

commit d20b702d3fe7bd36060f45c1e67b666de0d6f455
Author: Johan Stuyts 
AuthorDate: Mon Jul 1 12:58:27 2024 +0200

WICKET-7117 Fixed tests in ApacheLicenceHeaderTest and LocalizerTest. Also 
fixed code warnings. (#908)

(cherry picked from commit abab1682aac22371738d7e7214514b7f781e3134)
---
 .../test/java/org/apache/wicket/LocalizerTest.java | 25 +++---
 1 file changed, 12 insertions(+), 13 deletions(-)

diff --git a/wicket-core/src/test/java/org/apache/wicket/LocalizerTest.java 
b/wicket-core/src/test/java/org/apache/wicket/LocalizerTest.java
index 9f922e58d0..40b92cbb97 100644
--- a/wicket-core/src/test/java/org/apache/wicket/LocalizerTest.java
+++ b/wicket-core/src/test/java/org/apache/wicket/LocalizerTest.java
@@ -18,7 +18,6 @@ package org.apache.wicket;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertNull;
-import static org.junit.jupiter.api.Assertions.assertTrue;
 import static org.junit.jupiter.api.Assertions.fail;
 
 import java.util.Arrays;
@@ -36,7 +35,6 @@ import org.apache.wicket.model.PropertyModel;
 import org.apache.wicket.resource.DummyApplication;
 import org.apache.wicket.resource.loader.ComponentStringResourceLoader;
 import org.apache.wicket.settings.ResourceSettings;
-import org.apache.wicket.util.string.Strings;
 import org.apache.wicket.util.tester.WicketTester;
 import org.apache.wicket.util.value.ValueMap;
 import org.junit.jupiter.api.AfterEach;
@@ -68,7 +66,7 @@ class LocalizerTest
}
 
@AfterEach
-   void tearDown() throws Exception
+   void tearDown()
{
tester.destroy();
}
@@ -151,7 +149,7 @@ class LocalizerTest
ValueMap vm = new ValueMap();
vm.put("user", "John Doe");
vm.put("rating", 4.5);
-   IModel model = new Model(vm);
+   IModel model = new Model<>(vm);
assertEquals("John Doe gives 4,5 stars",
localizer.getString("test.substitute", null, model, 
null),
"Property substitution should occur");
@@ -194,7 +192,7 @@ class LocalizerTest
{
Session.get().setLocale(Locale.GERMAN);
 
-   HashMap model = new HashMap();
+   HashMap model = new HashMap<>();
model.put("user", "juergen");
model.put("rating", 4.5);
 
@@ -216,6 +214,10 @@ class LocalizerTest
void test_1851_1()
{
MyMockPage page = new MyMockPage();
+   // Set it to any locale except for Dutch (or a variant 
thereof), because there is a file
+   // containing Dutch translations for MyMockPage. Those 
translations will not match
+   // 'value 1' below.
+   tester.getSession().setLocale(Locale.FRENCH);
 

tester.getApplication().getResourceSettings().setThrowExceptionOnMissingResource(false);

tester.getApplication().getResourceSettings().setUseDefaultOnMissingResource(false);
@@ -226,10 +228,7 @@ class LocalizerTest
 
option = localizer.getStringIgnoreSettings("dummy.null", 
page.drop1, null, null);
assertNull(option);
-   if (Strings.isEmpty(option))
-   {
-   option = localizer.getString("null", page.drop1, 
"CHOOSE_ONE");
-   }
+   option = localizer.getString("null", page.drop1, "CHOOSE_ONE");
assertEquals("value 1", option);
 

tester.getApplication().getResourceSettings().setThrowExceptionOnMissingResource(false);
@@ -247,7 +246,7 @@ class LocalizerTest
try
{
localizer.getString("dummy.null", page.drop1, null, 
null);
-   assertTrue(false, "Expected an exception to happen");
+   fail("Expected an exception to happen");
}
catch (MissingResourceException ex)
{
@@ -269,12 +268,12 @@ class LocalizerTest
 */
MyMockPage()
{
-   final Form form = new Form("form");
+   final Form form = new Form<>("form");
add(form);
 
   

(wicket) branch master updated: WICKET-7117 Fixed tests in ApacheLicenceHeaderTest and LocalizerTest. Also fixed code warnings. (#908)

2024-07-01 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new abab1682aa WICKET-7117 Fixed tests in ApacheLicenceHeaderTest and 
LocalizerTest. Also fixed code warnings. (#908)
abab1682aa is described below

commit abab1682aac22371738d7e7214514b7f781e3134
Author: Johan Stuyts 
AuthorDate: Mon Jul 1 12:58:27 2024 +0200

WICKET-7117 Fixed tests in ApacheLicenceHeaderTest and LocalizerTest. Also 
fixed code warnings. (#908)
---
 .../test/java/org/apache/wicket/LocalizerTest.java | 25 +++---
 .../core/util/license/ApacheLicenceHeaderTest.java |  8 ---
 2 files changed, 17 insertions(+), 16 deletions(-)

diff --git 
a/wicket-core-tests/src/test/java/org/apache/wicket/LocalizerTest.java 
b/wicket-core-tests/src/test/java/org/apache/wicket/LocalizerTest.java
index 9f922e58d0..40b92cbb97 100644
--- a/wicket-core-tests/src/test/java/org/apache/wicket/LocalizerTest.java
+++ b/wicket-core-tests/src/test/java/org/apache/wicket/LocalizerTest.java
@@ -18,7 +18,6 @@ package org.apache.wicket;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertNull;
-import static org.junit.jupiter.api.Assertions.assertTrue;
 import static org.junit.jupiter.api.Assertions.fail;
 
 import java.util.Arrays;
@@ -36,7 +35,6 @@ import org.apache.wicket.model.PropertyModel;
 import org.apache.wicket.resource.DummyApplication;
 import org.apache.wicket.resource.loader.ComponentStringResourceLoader;
 import org.apache.wicket.settings.ResourceSettings;
-import org.apache.wicket.util.string.Strings;
 import org.apache.wicket.util.tester.WicketTester;
 import org.apache.wicket.util.value.ValueMap;
 import org.junit.jupiter.api.AfterEach;
@@ -68,7 +66,7 @@ class LocalizerTest
}
 
@AfterEach
-   void tearDown() throws Exception
+   void tearDown()
{
tester.destroy();
}
@@ -151,7 +149,7 @@ class LocalizerTest
ValueMap vm = new ValueMap();
vm.put("user", "John Doe");
vm.put("rating", 4.5);
-   IModel model = new Model(vm);
+   IModel model = new Model<>(vm);
assertEquals("John Doe gives 4,5 stars",
localizer.getString("test.substitute", null, model, 
null),
"Property substitution should occur");
@@ -194,7 +192,7 @@ class LocalizerTest
{
Session.get().setLocale(Locale.GERMAN);
 
-   HashMap model = new HashMap();
+   HashMap model = new HashMap<>();
model.put("user", "juergen");
model.put("rating", 4.5);
 
@@ -216,6 +214,10 @@ class LocalizerTest
void test_1851_1()
{
MyMockPage page = new MyMockPage();
+   // Set it to any locale except for Dutch (or a variant 
thereof), because there is a file
+   // containing Dutch translations for MyMockPage. Those 
translations will not match
+   // 'value 1' below.
+   tester.getSession().setLocale(Locale.FRENCH);
 

tester.getApplication().getResourceSettings().setThrowExceptionOnMissingResource(false);

tester.getApplication().getResourceSettings().setUseDefaultOnMissingResource(false);
@@ -226,10 +228,7 @@ class LocalizerTest
 
option = localizer.getStringIgnoreSettings("dummy.null", 
page.drop1, null, null);
assertNull(option);
-   if (Strings.isEmpty(option))
-   {
-   option = localizer.getString("null", page.drop1, 
"CHOOSE_ONE");
-   }
+   option = localizer.getString("null", page.drop1, "CHOOSE_ONE");
assertEquals("value 1", option);
 

tester.getApplication().getResourceSettings().setThrowExceptionOnMissingResource(false);
@@ -247,7 +246,7 @@ class LocalizerTest
try
{
localizer.getString("dummy.null", page.drop1, null, 
null);
-   assertTrue(false, "Expected an exception to happen");
+   fail("Expected an exception to happen");
}
catch (MissingResourceException ex)
{
@@ -269,12 +268,12 @@ class LocalizerTest
 */
MyMockPage()
{
-   final Form form = new Form("form");
+   final Form form = new Form<>("form");
add(form);
 
   

(wicket) branch master updated (76ce71d77f -> 998efbcc11)

2024-06-29 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 76ce71d77f Bump 
org.apache.maven.plugins:maven-project-info-reports-plugin (#907)
 add 998efbcc11 Bump junit.version from 5.10.2 to 5.10.3 (#906)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (b7d8ba2cae -> 76ce71d77f)

2024-06-29 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from b7d8ba2cae WICKET-7116 Spelling corrections, and made the case of 
headings in the user guide consistent.
 add 76ce71d77f Bump 
org.apache.maven.plugins:maven-project-info-reports-plugin (#907)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (29e1927fbf -> 7a76c59dad)

2024-06-24 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 29e1927fbf Bump org.apache.maven.plugins:maven-clean-plugin from 3.3.2 
to 3.4.0 (#898)
 add 7a76c59dad Bump org.apache.maven.plugins:maven-release-plugin from 
3.0.1 to 3.1.0 (#899)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (4edd40424a -> 29e1927fbf)

2024-06-24 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 4edd40424a Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 
to 3.4.2 (#900)
 add 29e1927fbf Bump org.apache.maven.plugins:maven-clean-plugin from 3.3.2 
to 3.4.0 (#898)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2 (#900)

2024-06-24 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 4edd40424a Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 
to 3.4.2 (#900)
4edd40424a is described below

commit 4edd40424a82548ef37de3d421a5ecca0efad93a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 24 09:12:38 2024 +0300

Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2 (#900)

Bumps 
[org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin)
 from 3.4.1 to 3.4.2.
- [Release notes](https://github.com/apache/maven-jar-plugin/releases)
- 
[Commits](https://github.com/apache/maven-jar-plugin/compare/maven-jar-plugin-3.4.1...maven-jar-plugin-3.4.2)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-jar-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b401aea6bc..63a8ff5bb4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -194,7 +194,7 @@

3.1.0
3.2.4

3.1.2
-   3.4.1
+   3.4.2

3.7.0

3.6.0

3.0.1



(wicket) branch master updated (8b2622888a -> 4cef5acc9f)

2024-06-24 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 8b2622888a Bump 
org.apache.maven.plugins:maven-project-info-reports-plugin (#902)
 add 4cef5acc9f Bump spring.version from 6.1.9 to 6.1.10 (#901)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-project-info-reports-plugin (#902)

2024-06-24 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 8b2622888a Bump 
org.apache.maven.plugins:maven-project-info-reports-plugin (#902)
8b2622888a is described below

commit 8b2622888a34df64b1443c154ab062740766391a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 24 09:12:07 2024 +0300

Bump org.apache.maven.plugins:maven-project-info-reports-plugin (#902)

Bumps 
[org.apache.maven.plugins:maven-project-info-reports-plugin](https://github.com/apache/maven-project-info-reports-plugin)
 from 3.5.0 to 3.6.0.
- 
[Commits](https://github.com/apache/maven-project-info-reports-plugin/compare/maven-project-info-reports-plugin-3.5.0...maven-project-info-reports-plugin-3.6.0)

---
updated-dependencies:
- dependency-name: 
org.apache.maven.plugins:maven-project-info-reports-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index cdaf20cdae..40f193b2ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -196,7 +196,7 @@

3.1.2
3.4.1

3.7.0
-   
3.5.0
+   
3.6.0

3.0.1

3.2.0

3.3.1



(wicket) branch master updated: Bump org.primefaces.extensions:resources-optimizer-maven-plugin (#903)

2024-06-24 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new b2cc4b3b6d Bump 
org.primefaces.extensions:resources-optimizer-maven-plugin (#903)
b2cc4b3b6d is described below

commit b2cc4b3b6de7c4041994e8c3f7fc7b91fe253b12
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 24 09:11:54 2024 +0300

Bump org.primefaces.extensions:resources-optimizer-maven-plugin (#903)

Bumps 
[org.primefaces.extensions:resources-optimizer-maven-plugin](https://github.com/primefaces-extensions/resources-optimizer-maven-plugin)
 from 2.6.3 to 2.6.4.
- [Release 
notes](https://github.com/primefaces-extensions/resources-optimizer-maven-plugin/releases)
- 
[Commits](https://github.com/primefaces-extensions/resources-optimizer-maven-plugin/compare/v2.6.3...v2.6.4)

---
updated-dependencies:
- dependency-name: 
org.primefaces.extensions:resources-optimizer-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a4337bf27f..cdaf20cdae 100644
--- a/pom.xml
+++ b/pom.xml
@@ -204,7 +204,7 @@
3.3.1

3.2.0
3.4.0
-   
2.6.3
+   
2.6.4
 

*



(wicket) branch master updated: WICKET-7112 Expand error messages in Component class (#894)

2024-06-21 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 7c400a2f14 WICKET-7112 Expand error messages in Component class (#894)
7c400a2f14 is described below

commit 7c400a2f146105401e01f8d2d2975c848f5d8cb4
Author: kbachl 
AuthorDate: Fri Jun 21 10:08:00 2024 +0200

WICKET-7112 Expand error messages in Component class (#894)

* Expand error messages in Component class

The error messages in the Component class have been augmented with more 
detailed information. These include class type, parent markup ID, parent 
relative path, and the original URL. This is to give a more comprehensive 
context surrounding the error, aiding debugging and issue resolution.

* Refactor error messages for markup components

The error messages in the Component class have been simplified by removing 
details about the parent markup ID, parent relative path, and original URL. 
Instead, the focus is now on the component's page class and relative path. The 
associated test has been adjusted to reflect these changes.

* WICKET-7112 Improve log message

-

Co-authored-by: Martin Grigorov 
(cherry picked from commit fd91611d1df8726e3b1836c045577baa09ff4cd1)
---
 .../settings/ExceptionSettingsNotRenderableErrorStrategyTest.java   | 5 +++--
 wicket-core/src/main/java/org/apache/wicket/Component.java  | 6 --
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git 
a/wicket-core-tests/src/test/java/org/apache/wicket/settings/ExceptionSettingsNotRenderableErrorStrategyTest.java
 
b/wicket-core-tests/src/test/java/org/apache/wicket/settings/ExceptionSettingsNotRenderableErrorStrategyTest.java
index 169b7e3852..96d7e5c1dc 100644
--- 
a/wicket-core-tests/src/test/java/org/apache/wicket/settings/ExceptionSettingsNotRenderableErrorStrategyTest.java
+++ 
b/wicket-core-tests/src/test/java/org/apache/wicket/settings/ExceptionSettingsNotRenderableErrorStrategyTest.java
@@ -115,8 +115,9 @@ class ExceptionSettingsNotRenderableErrorStrategyTest 
extends WicketTestCase {
 }
 
 private void assertRenderBodyOnlyException(final WicketRuntimeException 
wrx) {
-assertThat(wrx.getCause().getMessage(), is(equalTo("Markup id set on a 
component that renders its "
-   + "body only. 
Markup id: test1, component id: test.")));
+assertThat(wrx.getCause().getMessage(), is(equalTo("Markup id set on a 
component that renders its body only. " +
+"Markup id: test1, component id: test, type: class 
org.apache.wicket.markup.html.basic.Label, " +
+"path: class 
org.apache.wicket.settings.ExceptionSettingsNotRenderableErrorStrategyTest$RenderBodyOnlyTestPage:test")));
 }
 
 private static class WicketTagTestPage extends WebPage implements 
IMarkupResourceStreamProvider
diff --git a/wicket-core/src/main/java/org/apache/wicket/Component.java 
b/wicket-core/src/main/java/org/apache/wicket/Component.java
index ac1c93b5e8..5b695089bd 100644
--- a/wicket-core/src/main/java/org/apache/wicket/Component.java
+++ b/wicket-core/src/main/java/org/apache/wicket/Component.java
@@ -2478,7 +2478,8 @@ public abstract class Component
if (getFlag(FLAG_OUTPUT_MARKUP_ID))
{
String message = String.format("Markup 
id set on a component that renders its body only. " +
-  "Markup 
id: %s, component id: %s.", getMarkupId(), getId());
+  "Markup 
id: %s, component id: %s, type: %s, path: %s",
+   getMarkupId(), getId(), 
getClass(), getPage().getPageClass() + ":" + getPageRelativePath());
if (notRenderableErrorStrategy == 
ExceptionSettings.NotRenderableErrorStrategy.THROW_EXCEPTION)
{
throw new 
IllegalStateException(message);
@@ -2488,7 +2489,8 @@ public abstract class Component
if (getFlag(FLAG_PLACEHOLDER))
{
String message = 
String.format("Placeholder tag set on a component that renders its body only. " 
+
-  
"Component id: %s.", getId());
+  
"Component id: %s, type: %s, path: %s\", ",
+

(wicket) branch wicket-9.x updated: WICKET-7112 Expand error messages in Component class (#894)

2024-06-21 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-9.x by this push:
 new fd91611d1d WICKET-7112 Expand error messages in Component class (#894)
fd91611d1d is described below

commit fd91611d1df8726e3b1836c045577baa09ff4cd1
Author: kbachl 
AuthorDate: Fri Jun 21 10:08:00 2024 +0200

WICKET-7112 Expand error messages in Component class (#894)

* Expand error messages in Component class

The error messages in the Component class have been augmented with more 
detailed information. These include class type, parent markup ID, parent 
relative path, and the original URL. This is to give a more comprehensive 
context surrounding the error, aiding debugging and issue resolution.

* Refactor error messages for markup components

The error messages in the Component class have been simplified by removing 
details about the parent markup ID, parent relative path, and original URL. 
Instead, the focus is now on the component's page class and relative path. The 
associated test has been adjusted to reflect these changes.

* WICKET-7112 Improve log message

-

Co-authored-by: Martin Grigorov 
---
 wicket-core/src/main/java/org/apache/wicket/Component.java  | 6 --
 .../settings/ExceptionSettingsNotRenderableErrorStrategyTest.java   | 5 +++--
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/wicket-core/src/main/java/org/apache/wicket/Component.java 
b/wicket-core/src/main/java/org/apache/wicket/Component.java
index 1b2fe94cb0..ea7d3a3e6f 100644
--- a/wicket-core/src/main/java/org/apache/wicket/Component.java
+++ b/wicket-core/src/main/java/org/apache/wicket/Component.java
@@ -2478,7 +2478,8 @@ public abstract class Component
if (getFlag(FLAG_OUTPUT_MARKUP_ID))
{
String message = String.format("Markup 
id set on a component that renders its body only. " +
-  "Markup 
id: %s, component id: %s.", getMarkupId(), getId());
+  "Markup 
id: %s, component id: %s, type: %s, path: %s",
+   getMarkupId(), getId(), 
getClass(), getPage().getPageClass() + ":" + getPageRelativePath());
if (notRenderableErrorStrategy == 
ExceptionSettings.NotRenderableErrorStrategy.THROW_EXCEPTION)
{
throw new 
IllegalStateException(message);
@@ -2488,7 +2489,8 @@ public abstract class Component
if (getFlag(FLAG_PLACEHOLDER))
{
String message = 
String.format("Placeholder tag set on a component that renders its body only. " 
+
-  
"Component id: %s.", getId());
+  
"Component id: %s, type: %s, path: %s\", ",
+   getId(), getClass(), 
getPage().getPageClass() + ":" + getPageRelativePath());
if (notRenderableErrorStrategy == 
ExceptionSettings.NotRenderableErrorStrategy.THROW_EXCEPTION)
{
throw new 
IllegalStateException(message);
diff --git 
a/wicket-core/src/test/java/org/apache/wicket/settings/ExceptionSettingsNotRenderableErrorStrategyTest.java
 
b/wicket-core/src/test/java/org/apache/wicket/settings/ExceptionSettingsNotRenderableErrorStrategyTest.java
index 169b7e3852..96d7e5c1dc 100644
--- 
a/wicket-core/src/test/java/org/apache/wicket/settings/ExceptionSettingsNotRenderableErrorStrategyTest.java
+++ 
b/wicket-core/src/test/java/org/apache/wicket/settings/ExceptionSettingsNotRenderableErrorStrategyTest.java
@@ -115,8 +115,9 @@ class ExceptionSettingsNotRenderableErrorStrategyTest 
extends WicketTestCase {
 }
 
 private void assertRenderBodyOnlyException(final WicketRuntimeException 
wrx) {
-assertThat(wrx.getCause().getMessage(), is(equalTo("Markup id set on a 
component that renders its "
-   + "body only. 
Markup id: test1, component id: test.")));
+assertThat(wrx.getCause().getMessage(), is(equalTo("Markup id set on a 
component that renders its body only. " +
+"Markup 

(wicket) branch master updated: Bump ws and puppeteer in /testing/wicket-js-tests (#895)

2024-06-19 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 6d8dc9b802 Bump ws and puppeteer in /testing/wicket-js-tests (#895)
6d8dc9b802 is described below

commit 6d8dc9b8023e4d1d16a9cb0dc7a0f1ea71567288
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Jun 19 12:20:19 2024 +0300

Bump ws and puppeteer in /testing/wicket-js-tests (#895)

Bumps [ws](https://github.com/websockets/ws) and 
[puppeteer](https://github.com/puppeteer/puppeteer). These dependencies needed 
to be updated together.

Updates `ws` from 7.5.9 to 8.17.1
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/7.5.9...8.17.1)

Updates `puppeteer` from 22.11.0 to 22.11.2
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- 
[Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json)
- 
[Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v22.11.0...puppeteer-v22.11.2)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: indirect
- dependency-name: puppeteer
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 testing/wicket-js-tests/package-lock.json | 28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/testing/wicket-js-tests/package-lock.json 
b/testing/wicket-js-tests/package-lock.json
index f8c3d7dee2..fce0ec7107 100644
--- a/testing/wicket-js-tests/package-lock.json
+++ b/testing/wicket-js-tests/package-lock.json
@@ -688,9 +688,9 @@
   "dev": true
 },
 "node_modules/@types/node": {
-  "version": "20.14.2",
-  "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz;,
-  "integrity": 
"sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==",
+  "version": "20.14.5",
+  "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.5.tgz;,
+  "integrity": 
"sha512-aoRR+fJkZT2l0aGOJhuA8frnCSoNX6W7U2mpNq63+BxBIj5BQFt8rHy627kijCmm63ijdSdwvGgpUsU6MBsZZA==",
   "dev": true,
   "optional": true,
   "dependencies": {
@@ -4391,16 +4391,16 @@
   }
 },
 "node_modules/puppeteer": {
-  "version": "22.11.0",
-  "resolved": 
"https://registry.npmjs.org/puppeteer/-/puppeteer-22.11.0.tgz;,
-  "integrity": 
"sha512-U5U0Dx5Tsd/ec39BmflhcSFIK9UnZxGQfyUzvQVHivt6gIi6RgJqYL9MJaU90OG6tTz65XqzN4wF0ZyDyY0NuA==",
+  "version": "22.11.2",
+  "resolved": 
"https://registry.npmjs.org/puppeteer/-/puppeteer-22.11.2.tgz;,
+  "integrity": 
"sha512-8fjdQSgW0sq7471ftca24J7sXK+jXZ7OW7Gx+NEBFNyXrcTiBfukEI46gNq6hiMhbLEDT30NeylK/1ZoPdlKSA==",
   "dev": true,
   "hasInstallScript": true,
   "dependencies": {
 "@puppeteer/browsers": "2.2.3",
 "cosmiconfig": "9.0.0",
 "devtools-protocol": "0.0.1299070",
-"puppeteer-core": "22.11.0"
+"puppeteer-core": "22.11.2"
   },
   "bin": {
 "puppeteer": "lib/esm/puppeteer/node/cli.js"
@@ -4410,16 +4410,16 @@
   }
 },
 "node_modules/puppeteer-core": {
-  "version": "22.11.0",
-  "resolved": 
"https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.11.0.tgz;,
-  "integrity": 
"sha512-57YUjhRoSpZWg9lCssWsgzM1/X/1jQnkKbbspbeW0bhZTt3TD4WdNXEYI7KrFFnSvx21tyHhfWW0zlxzbwYSAA==",
+  "version": "22.11.2",
+  "resolved": 
"https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.11.2.tgz;,
+  "integrity": 
"sha512-vQo+YDuePyvj+92Z9cdtxi/HalKf+k/R4tE80nGtQqJRNqU81eHaHkbVfnLszdaLlvwFF5tipnnSCzqWlEddtw==",
   "dev": true,
   "dependencies": {
 "@puppeteer/browsers": "2.2.3",
 "chromium-bidi": "0.5.23",
 "debug": "4.3.5",
 "devtools-protocol": "0.0.1299070",
-"ws": "8.17.0"
+"ws": "8.17.1"
   },
   "engines": {
 "node": ">=18"
@@ -7533,9 +7533,9 @@
   }
 },
 "node_modules/ws": {
-  "version": "8.17.0",
-  "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz;,
-  "integrity": 
"sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==",
+  "version": "8.17.1",
+  "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz;,
+  "integrity": 
"sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==",
   "dev": true,
   "engines": {
 "node": ">=10.0.0"



(wicket) branch master updated: Bump braces from 3.0.2 to 3.0.3 in /testing/wicket-js-tests (#893)

2024-06-16 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new b2d55be7b0 Bump braces from 3.0.2 to 3.0.3 in /testing/wicket-js-tests 
(#893)
b2d55be7b0 is described below

commit b2d55be7b06d736b2085387ecc29cdd22540b588
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jun 16 15:04:12 2024 +0300

Bump braces from 3.0.2 to 3.0.3 in /testing/wicket-js-tests (#893)
---
 testing/wicket-js-tests/package-lock.json | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/testing/wicket-js-tests/package-lock.json 
b/testing/wicket-js-tests/package-lock.json
index c4a2957db9..f8c3d7dee2 100644
--- a/testing/wicket-js-tests/package-lock.json
+++ b/testing/wicket-js-tests/package-lock.json
@@ -1032,12 +1032,12 @@
   }
 },
 "node_modules/braces": {
-  "version": "3.0.2",
-  "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz;,
-  "integrity": 
"sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+  "version": "3.0.3",
+  "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz;,
+  "integrity": 
"sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
   "dev": true,
   "dependencies": {
-"fill-range": "^7.0.1"
+"fill-range": "^7.1.1"
   },
   "engines": {
 "node": ">=8"
@@ -1960,9 +1960,9 @@
   }
 },
 "node_modules/fill-range": {
-  "version": "7.0.1",
-  "resolved": 
"https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz;,
-  "integrity": 
"sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+  "version": "7.1.1",
+  "resolved": 
"https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz;,
+  "integrity": 
"sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
   "dev": true,
   "dependencies": {
 "to-regex-range": "^5.0.1"



(wicket) branch master updated: Bump grunt-contrib-qunit from 8.0.1 to 9.1.1 in /testing/wicket-js-tests (#892)

2024-06-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 7d5ac9f57e Bump grunt-contrib-qunit from 8.0.1 to 9.1.1 in 
/testing/wicket-js-tests (#892)
7d5ac9f57e is described below

commit 7d5ac9f57ec85279ae1f773fd76bd4b842f421d3
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jun 16 08:06:02 2024 +0300

Bump grunt-contrib-qunit from 8.0.1 to 9.1.1 in /testing/wicket-js-tests 
(#892)
---
 testing/wicket-js-tests/package-lock.json | 509 --
 testing/wicket-js-tests/package.json  |   2 +-
 2 files changed, 278 insertions(+), 233 deletions(-)

diff --git a/testing/wicket-js-tests/package-lock.json 
b/testing/wicket-js-tests/package-lock.json
index 7ea159dc8e..c4a2957db9 100644
--- a/testing/wicket-js-tests/package-lock.json
+++ b/testing/wicket-js-tests/package-lock.json
@@ -14,7 +14,7 @@
 "grunt-contrib-connect": "4.0.0",
 "grunt-contrib-jshint": "3.2.0",
 "grunt-contrib-nodeunit": "5.0.0",
-"grunt-contrib-qunit": "8.0.1"
+"grunt-contrib-qunit": "9.1.1"
   }
 },
 "node_modules/@ampproject/remapping": {
@@ -610,16 +610,17 @@
   }
 },
 "node_modules/@puppeteer/browsers": {
-  "version": "1.9.1",
-  "resolved": 
"https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.1.tgz;,
-  "integrity": 
"sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==",
+  "version": "2.2.3",
+  "resolved": 
"https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.2.3.tgz;,
+  "integrity": 
"sha512-bJ0UBsk0ESOs6RFcLXOt99a3yTDcOKlzfjad+rhFwdaG1Lu/Wzq58GHYCDTlZ9z6mldf4g+NTb+TXEfe0PpnsQ==",
   "dev": true,
   "dependencies": {
 "debug": "4.3.4",
 "extract-zip": "2.0.1",
 "progress": "2.0.3",
-"proxy-agent": "6.3.1",
-"tar-fs": "3.0.4",
+"proxy-agent": "6.4.0",
+"semver": "7.6.0",
+"tar-fs": "3.0.5",
 "unbzip2-stream": "1.4.3",
 "yargs": "17.7.2"
   },
@@ -627,7 +628,7 @@
 "browsers": "lib/cjs/main-cli.js"
   },
   "engines": {
-"node": ">=16.3.0"
+"node": ">=18"
   }
 },
 "node_modules/@puppeteer/browsers/node_modules/debug": {
@@ -647,12 +648,39 @@
 }
   }
 },
+"node_modules/@puppeteer/browsers/node_modules/lru-cache": {
+  "version": "6.0.0",
+  "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz;,
+  "integrity": 
"sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+  "dev": true,
+  "dependencies": {
+"yallist": "^4.0.0"
+  },
+  "engines": {
+"node": ">=10"
+  }
+},
 "node_modules/@puppeteer/browsers/node_modules/ms": {
   "version": "2.1.2",
   "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz;,
   "integrity": 
"sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
   "dev": true
 },
+"node_modules/@puppeteer/browsers/node_modules/semver": {
+  "version": "7.6.0",
+  "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz;,
+  "integrity": 
"sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
+  "dev": true,
+  "dependencies": {
+"lru-cache": "^6.0.0"
+  },
+  "bin": {
+"semver": "bin/semver.js"
+  },
+  "engines": {
+"node": ">=10"
+  }
+},
 "node_modules/@tootallnate/quickjs-emscripten": {
   "version": "0.23.0",
   "resolved": 
"https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz;,
@@ -660,9 +688,9 @@
   "dev": true
   

(wicket) branch master updated (eb7190f685 -> b9adc65573)

2024-06-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from eb7190f685 Bump metrics.version from 4.2.25 to 4.2.26 (#890)
 add b9adc65573 Bump maven-surefire-plugin.version from 3.2.5 to 3.3.0 
(#888)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump metrics.version from 4.2.25 to 4.2.26 (#890)

2024-06-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new eb7190f685 Bump metrics.version from 4.2.25 to 4.2.26 (#890)
eb7190f685 is described below

commit eb7190f685c370ec3f8acc598d07dee8c50de9e3
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jun 16 08:05:02 2024 +0300

Bump metrics.version from 4.2.25 to 4.2.26 (#890)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c4ed2ecfd4..347175bd29 100644
--- a/pom.xml
+++ b/pom.xml
@@ -172,7 +172,7 @@
2.2

8.0.1.Final
1.7.3
-   4.2.25
+   4.2.26
5.12.0
3.4
1.0.13



(wicket) branch master updated: Bump spring.version from 6.1.8 to 6.1.9 (#886)

2024-06-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new f507b8025a Bump spring.version from 6.1.8 to 6.1.9 (#886)
f507b8025a is described below

commit f507b8025a6cc9f4a019826e3b5c008dbc90e1d8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Jun 16 08:04:23 2024 +0300

Bump spring.version from 6.1.8 to 6.1.9 (#886)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a0156a5a67..c4ed2ecfd4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -177,7 +177,7 @@
3.4
1.0.13
2.0.13
-   6.1.8
+   6.1.9
3.5.3
4.0.3.Final
2.3



(wicket) branch master updated: Bump org.checkerframework:checker-qual from 3.43.0 to 3.44.0 (#884)

2024-06-10 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new fe73b250b9 Bump org.checkerframework:checker-qual from 3.43.0 to 
3.44.0 (#884)
fe73b250b9 is described below

commit fe73b250b9e54c30e5bdd3c68c77ad1d2db4d99a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 10 10:28:52 2024 +0300

Bump org.checkerframework:checker-qual from 3.43.0 to 3.44.0 (#884)

Bumps 
[org.checkerframework:checker-qual](https://github.com/typetools/checker-framework)
 from 3.43.0 to 3.44.0.
- [Release notes](https://github.com/typetools/checker-framework/releases)
- 
[Changelog](https://github.com/typetools/checker-framework/blob/master/docs/CHANGELOG.md)
- 
[Commits](https://github.com/typetools/checker-framework/compare/checker-framework-3.43.0...checker-framework-3.44.0)

---
updated-dependencies:
- dependency-name: org.checkerframework:checker-qual
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 wicket-migration/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wicket-migration/pom.xml b/wicket-migration/pom.xml
index da196217e8..4b65b9f9a4 100644
--- a/wicket-migration/pom.xml
+++ b/wicket-migration/pom.xml
@@ -25,7 +25,7 @@
 
 org.checkerframework
 checker-qual
-3.43.0
+3.44.0
 test
 
 



(wicket) branch master updated (6772f7fdad -> 7dbcb84f19)

2024-06-02 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 6772f7fdad Bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (#881)
 add 7dbcb84f19 Bump com.google.errorprone:error_prone_annotations from 
2.27.1 to 2.28.0 (#880)

No new revisions were added by this update.

Summary of changes:
 wicket-guice/pom.xml | 2 +-
 wicket-migration/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



(wicket) branch master updated (c017c7682c -> a799fb2f24)

2024-06-02 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from c017c7682c Bump net.bytebuddy:byte-buddy from 1.14.16 to 1.14.17 (#883)
 add a799fb2f24 Bump org.apache.maven.plugins:maven-javadoc-plugin from 
3.6.3 to 3.7.0 (#882)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (#881)

2024-06-02 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 6772f7fdad Bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (#881)
6772f7fdad is described below

commit 6772f7fdadb75c6ac735232fe5f8aa6c5d01956a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 3 00:36:31 2024 +0300

Bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (#881)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 34a0d05b7d..a0156a5a67 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,7 +142,7 @@

9.7
1.9.22.1
-   3.25.3
+   3.26.0
1.78.1
1.14.17
4.1.0



(wicket) branch master updated: Bump net.bytebuddy:byte-buddy from 1.14.16 to 1.14.17 (#883)

2024-06-02 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new c017c7682c Bump net.bytebuddy:byte-buddy from 1.14.16 to 1.14.17 (#883)
c017c7682c is described below

commit c017c7682c3e0246004a4aa2c5606dbfade03dbb
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 3 00:35:41 2024 +0300

Bump net.bytebuddy:byte-buddy from 1.14.16 to 1.14.17 (#883)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 936238f954..6a3c9e609c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -144,7 +144,7 @@
1.9.22.1
3.25.3
1.78.1
-   1.14.16
+   1.14.17
4.1.0
4.4

2.0.0-M2



(wicket) branch master updated: WICKET-7111 Fix/improve Application_el.utf8.properties: fix filename, replace xml contents with properly formatted comments, add missing properties. (#879)

2024-05-27 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 139b921ed4 WICKET-7111 Fix/improve Application_el.utf8.properties: fix 
filename, replace xml contents with properly formatted comments, add missing 
properties. (#879)
139b921ed4 is described below

commit 139b921ed4d6acf6cd68cc3b8cbb416ad07bff81
Author: mscoon 
AuthorDate: Mon May 27 23:41:21 2024 +0300

WICKET-7111 Fix/improve Application_el.utf8.properties: fix filename, 
replace xml contents with properly formatted comments, add missing properties. 
(#879)

Co-authored-by: mscoon 
---
 ...rties.utf8.properties => Application_el.utf8.properties} | 13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git 
a/wicket-core/src/main/java/org/apache/wicket/Application_el.properties.utf8.properties
 b/wicket-core/src/main/java/org/apache/wicket/Application_el.utf8.properties
similarity index 85%
rename from 
wicket-core/src/main/java/org/apache/wicket/Application_el.properties.utf8.properties
rename to 
wicket-core/src/main/java/org/apache/wicket/Application_el.utf8.properties
index 7a414f4cbd..31ddfd8ce1 100644
--- 
a/wicket-core/src/main/java/org/apache/wicket/Application_el.properties.utf8.properties
+++ b/wicket-core/src/main/java/org/apache/wicket/Application_el.utf8.properties
@@ -19,14 +19,14 @@ RangeValidator.exact=Η τιμή του '${label}' πρέπει να είναι
 RangeValidator.minimum=Η τιμή του '${label}' πρέπει να είναι τουλάχιστον 
${minimum}.
 RangeValidator.maximum=Η τιμή του '${label}' πρέπει να είναι το πολύ 
${maximum}.
 
-
+#deprecated, use RangeValidator.minimum
 MinimumValidator=Η τιμή του '${label}' πρέπει να είναι τουλάχιστον ${minimum}.
-
+#deprecated, use RangeValidator.maximum
 MaximumValidator=Η τιμή του '${label}' πρέπει να είναι το πολύ ${maximum}.
 
-
+#raplaced with RangeValidator
 NumberValidator.positive=Η τιμή του '${label}' πρέπει να είναι θετική.
-
+#replaced with RangeValidator
 NumberValidator.negative=Η τιμή του '${label}' πρέπει να είναι αρνητική.
 
 StringValidator.range=Το μήκος του '${label}' πρέπει να είναι μεταξύ 
${minimum} και ${maximum} χαρακτήρες.
@@ -58,3 +58,8 @@ PagingNavigation.page=Μετάβαση στη σελίδα ${page}
 org.apache.wicket.mfu.caption.unlimited=Αρχεία:
 org.apache.wicket.mfu.caption.limited=Αρχεία (το πολύ ${max}):
 org.apache.wicket.mfu.delete=Διαγραφή
+
+uploadTooLarge = Το μέγεθος του αρχείου πρέπει να είναι μικρότερο από 
${maxSize}.
+uploadSingleFileTooLarge = Το μέγεθος κάθε αρχείου πρέπει να είναι μικρότερο 
από ${fileMaxSize}.
+uploadTooManyFiles = Μπορείτε να ανεβάσετε μέχρι ${fileCountMax} αρχεία.
+uploadFailed = Σφάλμα κατά το ανέβασμα του αρχείου: 
${exception.localizedMessage}
\ No newline at end of file



(wicket) branch master updated: Bump jakarta.websocket-api.version from 2.1.1 to 2.2.0 (#877)

2024-05-26 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 8a7b2fa2f7 Bump jakarta.websocket-api.version from 2.1.1 to 2.2.0 
(#877)
8a7b2fa2f7 is described below

commit 8a7b2fa2f7cdcd5ce06991ebe639c2caa8b92958
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun May 26 12:16:30 2024 +0300

Bump jakarta.websocket-api.version from 2.1.1 to 2.2.0 (#877)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 16daa1b2be..037d7df1e7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -162,7 +162,7 @@
2.0.1

3.1.1

3.1.0
-   
2.1.1
+   
2.2.0
6.0.0

1.9.0
11.0.14



(wicket) branch master updated: Bump jakarta.validation:jakarta.validation-api from 3.0.2 to 3.1.0 (#875)

2024-05-25 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 4d6e4e9cd3 Bump jakarta.validation:jakarta.validation-api from 3.0.2 
to 3.1.0 (#875)
4d6e4e9cd3 is described below

commit 4d6e4e9cd38737db35627cddfce23f0d6218067b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun May 26 07:06:13 2024 +0300

Bump jakarta.validation:jakarta.validation-api from 3.0.2 to 3.1.0 (#875)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 84bb95f410..16daa1b2be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -161,7 +161,7 @@

3.0.1
2.0.1

3.1.1
-   
3.0.2
+   
3.1.0

2.1.1
6.0.0

1.9.0



(wicket) branch master updated: Bump org.codehaus.mojo:build-helper-maven-plugin from 3.5.0 to 3.6.0 (#873)

2024-05-25 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 3e20af018d Bump org.codehaus.mojo:build-helper-maven-plugin from 3.5.0 
to 3.6.0 (#873)
3e20af018d is described below

commit 3e20af018de964530f4518a77ccda182d91fe0ba
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun May 26 07:05:46 2024 +0300

Bump org.codehaus.mojo:build-helper-maven-plugin from 3.5.0 to 3.6.0 (#873)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f135a36914..84bb95f410 100644
--- a/pom.xml
+++ b/pom.xml
@@ -183,7 +183,7 @@
2.3
 

-   
3.5.0
+   
3.6.0

0.21.2

3.2.1
5.1.9



(wicket) branch master updated (b17b1bee8b -> 9edf1b431a)

2024-05-25 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from b17b1bee8b Bump spring.version from 6.1.7 to 6.1.8 (#876)
 add 9edf1b431a Bump net.bytebuddy:byte-buddy from 1.14.15 to 1.14.16 (#874)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump spring.version from 6.1.7 to 6.1.8 (#876)

2024-05-25 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new b17b1bee8b Bump spring.version from 6.1.7 to 6.1.8 (#876)
b17b1bee8b is described below

commit b17b1bee8b0a0f05e943063a0fbfd130bf4e56d2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun May 26 07:04:53 2024 +0300

Bump spring.version from 6.1.7 to 6.1.8 (#876)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 2dd83236e2..9a7725b4b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -177,7 +177,7 @@
3.4
1.0.13
2.0.13
-   6.1.7
+   6.1.8
3.5.3
4.0.3.Final
2.3



(wicket) branch master updated: Bump spring.version from 6.1.6 to 6.1.7 (#872)

2024-05-20 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 58d953e195 Bump spring.version from 6.1.6 to 6.1.7 (#872)
58d953e195 is described below

commit 58d953e195a00f68257c3b4e8f34c9e2ef442a1f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon May 20 14:29:20 2024 +0300

Bump spring.version from 6.1.6 to 6.1.7 (#872)

Bumps `spring.version` from 6.1.6 to 6.1.7.

Updates `org.springframework:spring-context` from 6.1.6 to 6.1.7
- [Release 
notes](https://github.com/spring-projects/spring-framework/releases)
- 
[Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.6...v6.1.7)

Updates `org.springframework:spring-core` from 6.1.6 to 6.1.7
- [Release 
notes](https://github.com/spring-projects/spring-framework/releases)
- 
[Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.6...v6.1.7)

Updates `org.springframework:spring-web` from 6.1.6 to 6.1.7
- [Release 
notes](https://github.com/spring-projects/spring-framework/releases)
- 
[Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.6...v6.1.7)

Updates `org.springframework:spring-test` from 6.1.6 to 6.1.7
- [Release 
notes](https://github.com/spring-projects/spring-framework/releases)
- 
[Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.6...v6.1.7)

---
updated-dependencies:
- dependency-name: org.springframework:spring-context
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.springframework:spring-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.springframework:spring-web
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.springframework:spring-test
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f281ad0d36..2dd83236e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -177,7 +177,7 @@
3.4
1.0.13
2.0.13
-   6.1.6
+   6.1.7
3.5.3
4.0.3.Final
2.3



(wicket) branch wicket-9.x updated: feat: configurable transformer formatting (#870)

2024-05-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-9.x by this push:
 new bc7dcc3f5b feat: configurable transformer formatting (#870)
bc7dcc3f5b is described below

commit bc7dcc3f5bfbb3a41ab407d53ba5e0af3d3453a0
Author: Tobias Soloschenko 
AuthorDate: Mon May 13 14:44:55 2024 +0200

feat: configurable transformer formatting (#870)
---
 .../wicket/util/resource/XSLTResourceStream.java   | 58 +-
 1 file changed, 46 insertions(+), 12 deletions(-)

diff --git 
a/wicket-util/src/main/java/org/apache/wicket/util/resource/XSLTResourceStream.java
 
b/wicket-util/src/main/java/org/apache/wicket/util/resource/XSLTResourceStream.java
index 5fe6250d01..8d28463cc4 100644
--- 
a/wicket-util/src/main/java/org/apache/wicket/util/resource/XSLTResourceStream.java
+++ 
b/wicket-util/src/main/java/org/apache/wicket/util/resource/XSLTResourceStream.java
@@ -26,6 +26,15 @@ import java.util.Map.Entry;
 import org.apache.wicket.util.io.IOUtils;
 import org.apache.wicket.util.lang.Bytes;
 
+import javax.xml.XMLConstants;
+import javax.xml.transform.Result;
+import javax.xml.transform.Source;
+import javax.xml.transform.Transformer;
+import javax.xml.transform.TransformerConfigurationException;
+import javax.xml.transform.TransformerFactory;
+import javax.xml.transform.stream.StreamResult;
+import javax.xml.transform.stream.StreamSource;
+
 /**
  * {@link IResourceStream} that applies XSLT on an input {@link 
IResourceStream}. The XSL stylesheet
  * itself is also an {@link IResourceStream}. Override {@link 
#getParameters()} to pass parameters
@@ -42,9 +51,6 @@ import org.apache.wicket.util.lang.Bytes;
  */
 public class XSLTResourceStream extends AbstractResourceStream
 {
-   /**
-* 
-*/
private static final long serialVersionUID = 1L;
private final transient ByteArrayOutputStream out;
 
@@ -59,27 +65,55 @@ public class XSLTResourceStream extends 
AbstractResourceStream
 
/**
 * Construct.
-* 
+*
 * @param xsltResource
 *the XSL stylesheet as an {@link IResourceStream}
 * @param xmlResource
 *the input XML document as an {@link IResourceStream}
 */
public XSLTResourceStream(final IResourceStream xsltResource, final 
IResourceStream xmlResource)
+   {
+   this(xsltResource, xmlResource, defaultTransformerFactory());
+   }
+
+   /**
+* Creates a default transformer factory with 
XMLConstants.FEATURE_SECURE_PROCESSING set to true
+*
+* @return a default transformer factory
+*/
+   private static TransformerFactory defaultTransformerFactory()
+   {
+   TransformerFactory factory = TransformerFactory.newInstance();
+   try
+   {
+   
factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
+   } catch (TransformerConfigurationException e) {
+   throw new RuntimeException(e);
+   }
+   return factory;
+   }
+
+   /**
+* Construct.
+* 
+* @param xsltResource
+*the XSL stylesheet as an {@link IResourceStream}
+* @param xmlResource
+*the input XML document as an {@link IResourceStream}
+* @param transformerFactory
+*the transformer factory used to transform the 
xmlResource
+*/
+   public XSLTResourceStream(final IResourceStream xsltResource, final 
IResourceStream xmlResource, TransformerFactory transformerFactory)
{
try
{
-   javax.xml.transform.Source xmlSource = new 
javax.xml.transform.stream.StreamSource(
-   xmlResource.getInputStream());
-   javax.xml.transform.Source xsltSource = new 
javax.xml.transform.stream.StreamSource(
-   xsltResource.getInputStream());
+   Source xmlSource = new 
StreamSource(xmlResource.getInputStream());
+   Source xsltSource = new 
StreamSource(xsltResource.getInputStream());
out = new ByteArrayOutputStream();
-   javax.xml.transform.Result result = new 
javax.xml.transform.stream.StreamResult(out);
+   Result result = new StreamResult(out);
 
-   // create an instance of TransformerFactory
-   javax.xml.transform.TransformerFactory transFact = 
javax.xml.transform.TransformerFactory.newInstance();
+   Transformer trans = 
transformerFactory.newTransformer(xsltSource);
 
-   javax.xml.transform.Transformer trans

(wicket) branch master updated: Bump org.mockito:mockito-core from 5.11.0 to 5.12.0 (#863)

2024-05-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 8e76ad2853 Bump org.mockito:mockito-core from 5.11.0 to 5.12.0 (#863)
8e76ad2853 is described below

commit 8e76ad2853fec908a5e030542506d1c5e448fd50
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon May 13 09:55:40 2024 +0300

Bump org.mockito:mockito-core from 5.11.0 to 5.12.0 (#863)

Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 
5.11.0 to 5.12.0.
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](https://github.com/mockito/mockito/compare/v5.11.0...v5.12.0)

---
updated-dependencies:
- dependency-name: org.mockito:mockito-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 138915f823..f281ad0d36 100644
--- a/pom.xml
+++ b/pom.xml
@@ -173,7 +173,7 @@

8.0.1.Final
1.7.3
4.2.25
-   5.11.0
+   5.12.0
3.4
1.0.13
2.0.13



(wicket) branch master updated: Remove declaration of maven-site-plugin that is not used.

2024-05-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new c28b75a443 Remove declaration of maven-site-plugin that is not used.
c28b75a443 is described below

commit c28b75a443cb8567e523fff1b99d1cdfde5534c4
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon May 13 09:54:09 2024 +0300

Remove declaration of maven-site-plugin that is not used.

Signed-off-by: Martin Tzvetanov Grigorov 
---
 pom.xml | 6 --
 1 file changed, 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index beaa89ef53..138915f823 100644
--- a/pom.xml
+++ b/pom.xml
@@ -200,7 +200,6 @@

3.0.1

3.2.0

3.3.1
-   4.0.0-M13

3.2.5
3.3.1

3.2.0
@@ -1099,11 +1098,6 @@

${project.build.sourceEncoding}


-   
-   
org.apache.maven.plugins
-   
maven-site-plugin
-   
${maven-site-plugin.version}
-   

true

org.apache.maven.plugins



(wicket) branch master updated: Bump org.jboss.logging:jboss-logging from 3.5.3.Final to 3.6.0.Final (#865)

2024-05-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new dc867a134e Bump org.jboss.logging:jboss-logging from 3.5.3.Final to 
3.6.0.Final (#865)
dc867a134e is described below

commit dc867a134ed2e7ba28e0103822fbb314229be8b2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon May 13 09:41:13 2024 +0300

Bump org.jboss.logging:jboss-logging from 3.5.3.Final to 3.6.0.Final (#865)

Bumps 
[org.jboss.logging:jboss-logging](https://github.com/jboss-logging/jboss-logging)
 from 3.5.3.Final to 3.6.0.Final.
- [Release notes](https://github.com/jboss-logging/jboss-logging/releases)
- 
[Commits](https://github.com/jboss-logging/jboss-logging/compare/3.5.3.Final...3.6.0.Final)

---
updated-dependencies:
- dependency-name: org.jboss.logging:jboss-logging
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 testing/wicket-common-tests/pom.xml | 2 +-
 wicket-bean-validation/pom.xml  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testing/wicket-common-tests/pom.xml 
b/testing/wicket-common-tests/pom.xml
index 3404cdb020..bad1edbbab 100644
--- a/testing/wicket-common-tests/pom.xml
+++ b/testing/wicket-common-tests/pom.xml
@@ -49,7 +49,7 @@

org.jboss.logging
jboss-logging
-   3.5.3.Final
+   3.6.0.Final
test


diff --git a/wicket-bean-validation/pom.xml b/wicket-bean-validation/pom.xml
index c1dee4fe74..b6da2b2e85 100644
--- a/wicket-bean-validation/pom.xml
+++ b/wicket-bean-validation/pom.xml
@@ -35,7 +35,7 @@

org.jboss.logging
jboss-logging
-   3.5.3.Final
+   3.6.0.Final
test





(wicket) branch master updated: Bump net.bytebuddy:byte-buddy from 1.14.14 to 1.14.15 (#867)

2024-05-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 67d487c1d5 Bump net.bytebuddy:byte-buddy from 1.14.14 to 1.14.15 (#867)
67d487c1d5 is described below

commit 67d487c1d52993306c8c88e2f0832a52905231c4
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon May 13 09:40:49 2024 +0300

Bump net.bytebuddy:byte-buddy from 1.14.14 to 1.14.15 (#867)

Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 
1.14.14 to 1.14.15.
- [Release notes](https://github.com/raphw/byte-buddy/releases)
- 
[Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)
- 
[Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.14...byte-buddy-1.14.15)

---
updated-dependencies:
- dependency-name: net.bytebuddy:byte-buddy
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f502b78a21..beaa89ef53 100644
--- a/pom.xml
+++ b/pom.xml
@@ -144,7 +144,7 @@
1.9.22.1
3.25.3
1.78.1
-   1.14.14
+   1.14.15
4.1.0
4.4

2.0.0-M2



(wicket) branch master updated (0ec6943c96 -> c972191973)

2024-05-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 0ec6943c96 Bump org.aspectj:aspectjrt from 1.9.22 to 1.9.22.1 (#869)
 add c972191973 Bump org.objenesis:objenesis from 3.3 to 3.4 (#868)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (41efc27c06 -> 0ec6943c96)

2024-05-13 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 41efc27c06 [WICKET-7109] port tests that were not cherry-picked 
correctly
 add 0ec6943c96 Bump org.aspectj:aspectjrt from 1.9.22 to 1.9.22.1 (#869)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch reiern70/WICKET-7098-write-to-a-buffer deleted (was 6c485cb938)

2024-05-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch reiern70/WICKET-7098-write-to-a-buffer
in repository https://gitbox.apache.org/repos/asf/wicket.git


 was 6c485cb938 [WICKET-7098] avoid the creation malformed XML if a runtime 
exception happen during rendering phase of a web socket push request: writing 
to a buffer allows to generate a proper XML as request's buffer will not be 
polluted

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(wicket) branch master updated: Bump ejs from 3.1.9 to 3.1.10 in /testing/wicket-js-tests (#853)

2024-05-05 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 52956f26b9 Bump ejs from 3.1.9 to 3.1.10 in /testing/wicket-js-tests 
(#853)
52956f26b9 is described below

commit 52956f26b9fafc69e5bc2eb25e7ab8ecca53cf5c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun May 5 18:20:27 2024 +0300

Bump ejs from 3.1.9 to 3.1.10 in /testing/wicket-js-tests (#853)
---
 testing/wicket-js-tests/package-lock.json | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/testing/wicket-js-tests/package-lock.json 
b/testing/wicket-js-tests/package-lock.json
index 72ea797b75..7ea159dc8e 100644
--- a/testing/wicket-js-tests/package-lock.json
+++ b/testing/wicket-js-tests/package-lock.json
@@ -1598,9 +1598,9 @@
   "dev": true
 },
 "node_modules/ejs": {
-  "version": "3.1.9",
-  "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz;,
-  "integrity": 
"sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==",
+  "version": "3.1.10",
+  "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz;,
+  "integrity": 
"sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
   "dev": true,
   "dependencies": {
 "jake": "^10.8.5"



(wicket) branch master updated (f4ad051b14 -> d1c91a1981)

2024-05-05 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from f4ad051b14 Bump com.google.errorprone:error_prone_annotations from 
2.27.0 to 2.27.1 (#855)
 add d1c91a1981 Bump org.apache.maven.plugins:maven-deploy-plugin from 
3.1.1 to 3.1.2 (#854)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (754ccf0a06 -> f4ad051b14)

2024-05-05 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 754ccf0a06 Bump com.github.siom79.japicmp:japicmp-maven-plugin (#856)
 add f4ad051b14 Bump com.google.errorprone:error_prone_annotations from 
2.27.0 to 2.27.1 (#855)

No new revisions were added by this update.

Summary of changes:
 wicket-guice/pom.xml | 2 +-
 wicket-migration/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



(wicket) branch master updated (a2f986f1eb -> 754ccf0a06)

2024-05-05 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from a2f986f1eb Bump org.checkerframework:checker-qual from 3.42.0 to 
3.43.0 (#857)
 add 754ccf0a06 Bump com.github.siom79.japicmp:japicmp-maven-plugin (#856)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-install-plugin from 3.1.1 to 3.1.2 (#858)

2024-05-05 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 3852a5ef40 Bump org.apache.maven.plugins:maven-install-plugin from 
3.1.1 to 3.1.2 (#858)
3852a5ef40 is described below

commit 3852a5ef40d7d1dbde99b9a584a0bb1217fbde82
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun May 5 18:19:20 2024 +0300

Bump org.apache.maven.plugins:maven-install-plugin from 3.1.1 to 3.1.2 
(#858)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b88e12aecb..337b8bb087 100644
--- a/pom.xml
+++ b/pom.xml
@@ -193,7 +193,7 @@

2.10

3.1.0
3.2.4
-   
3.1.1
+   
3.1.2
3.4.1

3.6.3

3.5.0



(wicket) branch master updated (3852a5ef40 -> a2f986f1eb)

2024-05-05 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 3852a5ef40 Bump org.apache.maven.plugins:maven-install-plugin from 
3.1.1 to 3.1.2 (#858)
 add a2f986f1eb Bump org.checkerframework:checker-qual from 3.42.0 to 
3.43.0 (#857)

No new revisions were added by this update.

Summary of changes:
 wicket-migration/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch ci-for-jdk-22-and-23-ea deleted (was 9f0a550c54)

2024-04-29 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch ci-for-jdk-22-and-23-ea
in repository https://gitbox.apache.org/repos/asf/wicket.git


 was 9f0a550c54 Disable testing on JDK 23

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(wicket) branch master updated: Enable testing for JDK 22 and 23-ea (#852)

2024-04-29 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new b94298bdd1 Enable testing for JDK 22 and 23-ea (#852)
b94298bdd1 is described below

commit b94298bdd164aa8a0e7d5be78c392a828a80bff8
Author: Martin Grigorov 
AuthorDate: Mon Apr 29 09:18:12 2024 +0300

Enable testing for JDK 22 and 23-ea (#852)

* Enable testing for JDK 22 and 23-ea

Signed-off-by: Martin Tzvetanov Grigorov 

* Add a Maven profile for JDK 22

JDK 23 is the Early Access release at the moment

Signed-off-by: Martin Tzvetanov Grigorov 

* Remove Maven profiles for JDK 18, 19 & 20

These JDKs are no more supported

Signed-off-by: Martin Tzvetanov Grigorov 

* Disable testing on JDK 23

ByteBuddy does not support it yet:
```
Caused by: java.lang.IllegalArgumentException: Java 23 (67) is not 
supported by the current version of Byte Buddy which officially supports Java 
22 (66) - update Byte Buddy or set net.bytebuddy.experimental as a VM property
```

Signed-off-by: Martin Tzvetanov Grigorov 

-

Signed-off-by: Martin Tzvetanov Grigorov 
---
 .github/workflows/maven.yml |  1 +
 pom.xml | 62 -
 2 files changed, 6 insertions(+), 57 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 1c320fc93f..82b1e2216d 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -18,6 +18,7 @@ jobs:
 java:
 - '17'
 - '21'
+- '22'
 #- '23-ea'
 
 steps:
diff --git a/pom.xml b/pom.xml
index 229fc27115..b88e12aecb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1415,59 +1415,7 @@



-   java18
-   
-   
-   
-   
org.apache.maven.plugins
-   
maven-toolchains-plugin
-   
${maven-toolchains-plugin.version}
-   
-   
-   
-   
toolchain
-   
-   
-   
-   
-   
-   
-   
18
-   
-   
-   
-   
-   
-   
-   
-   
-   java19
-   
-   
-   
-   
org.apache.maven.plugins
-   
maven-toolchains-plugin
-   
${maven-toolchains-plugin.version}
-   
-   
-   
-   
toolchain
-   
-   
-   
-   
-   
-   
-   
19
-   
-   
-   
-   
-   
-   
-   
-   
-   java20
+   java21



@@ -1484,7 +14

(wicket) branch ci-for-jdk-22-and-23-ea updated (0042d3aaec -> 9f0a550c54)

2024-04-29 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch ci-for-jdk-22-and-23-ea
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 0042d3aaec Remove Maven profiles for JDK 18, 19 & 20
 add 9f0a550c54 Disable testing on JDK 23

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch ci-for-jdk-22-and-23-ea updated (4059eacef4 -> 0042d3aaec)

2024-04-29 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch ci-for-jdk-22-and-23-ea
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 4059eacef4 Enable testing for JDK 22 and 23-ea
 add 8d89ce3a82 Add a Maven profile for JDK 22
 add 0042d3aaec Remove Maven profiles for JDK 18, 19 & 20

No new revisions were added by this update.

Summary of changes:
 pom.xml | 62 +-
 1 file changed, 5 insertions(+), 57 deletions(-)



(wicket) 01/01: Enable testing for JDK 22 and 23-ea

2024-04-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch ci-for-jdk-22-and-23-ea
in repository https://gitbox.apache.org/repos/asf/wicket.git

commit 4059eacef420d569fd7b58bf0ced1e57627e936d
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Apr 29 08:55:24 2024 +0300

Enable testing for JDK 22 and 23-ea

Signed-off-by: Martin Tzvetanov Grigorov 
---
 .github/workflows/maven.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 1c320fc93f..4ceeaad2b7 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -18,7 +18,8 @@ jobs:
 java:
 - '17'
 - '21'
-#- '23-ea'
+- '22'
+- '23-ea'
 
 steps:
 - uses: actions/checkout@v4



(wicket) branch ci-for-jdk-22-and-23-ea created (now 4059eacef4)

2024-04-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch ci-for-jdk-22-and-23-ea
in repository https://gitbox.apache.org/repos/asf/wicket.git


  at 4059eacef4 Enable testing for JDK 22 and 23-ea

This branch includes the following new commits:

 new 4059eacef4 Enable testing for JDK 22 and 23-ea

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.




(wicket) branch master updated (a468b82e80 -> e4013895a7)

2024-04-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from a468b82e80 Bump net.bytebuddy:byte-buddy from 1.14.13 to 1.14.14 (#849)
 add e4013895a7 Bump com.github.siom79.japicmp:japicmp-maven-plugin (#847)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (5da935be57 -> a468b82e80)

2024-04-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 5da935be57 Bump org.apache.maven.plugins:maven-toolchains-plugin (#850)
 add a468b82e80 Bump net.bytebuddy:byte-buddy from 1.14.13 to 1.14.14 (#849)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (1fb5b91981 -> 5da935be57)

2024-04-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 1fb5b91981 Bump com.google.errorprone:error_prone_annotations from 
2.26.1 to 2.27.0 (#851)
 add 5da935be57 Bump org.apache.maven.plugins:maven-toolchains-plugin (#850)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump com.google.errorprone:error_prone_annotations from 2.26.1 to 2.27.0 (#851)

2024-04-28 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 1fb5b91981 Bump com.google.errorprone:error_prone_annotations from 
2.26.1 to 2.27.0 (#851)
1fb5b91981 is described below

commit 1fb5b919811d13642a1c023ed556b83bdddf1320
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 29 08:50:16 2024 +0300

Bump com.google.errorprone:error_prone_annotations from 2.26.1 to 2.27.0 
(#851)

Bumps 
[com.google.errorprone:error_prone_annotations](https://github.com/google/error-prone)
 from 2.26.1 to 2.27.0.
- [Release notes](https://github.com/google/error-prone/releases)
- [Commits](https://github.com/google/error-prone/compare/v2.26.1...v2.27.0)

---
updated-dependencies:
- dependency-name: com.google.errorprone:error_prone_annotations
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 wicket-guice/pom.xml | 2 +-
 wicket-migration/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/wicket-guice/pom.xml b/wicket-guice/pom.xml
index 8e948cc50e..abb0f95731 100644
--- a/wicket-guice/pom.xml
+++ b/wicket-guice/pom.xml
@@ -39,7 +39,7 @@

com.google.errorprone
error_prone_annotations
-   2.26.1
+   2.27.0



diff --git a/wicket-migration/pom.xml b/wicket-migration/pom.xml
index c3acc57df0..5b14f2bbd9 100644
--- a/wicket-migration/pom.xml
+++ b/wicket-migration/pom.xml
@@ -19,7 +19,7 @@
 
 com.google.errorprone
 error_prone_annotations
-2.26.1
+2.27.0
 test
 
 



(wicket) branch master updated: WICKET-7105: Remove 'final' from AbstractPartialPageRequestHandler#add(Component...)

2024-04-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 3a881e01a4 WICKET-7105: Remove 'final' from 
AbstractPartialPageRequestHandler#add(Component...)
3a881e01a4 is described below

commit 3a881e01a42eb5840189cb78b7cb3d4b488ffaf2
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Apr 22 09:19:30 2024 +0300

WICKET-7105: Remove 'final' from 
AbstractPartialPageRequestHandler#add(Component...)

Signed-off-by: Martin Tzvetanov Grigorov 
---
 .../wicket/core/request/handler/AbstractPartialPageRequestHandler.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/wicket-core/src/main/java/org/apache/wicket/core/request/handler/AbstractPartialPageRequestHandler.java
 
b/wicket-core/src/main/java/org/apache/wicket/core/request/handler/AbstractPartialPageRequestHandler.java
index ef60aab061..accada33ff 100644
--- 
a/wicket-core/src/main/java/org/apache/wicket/core/request/handler/AbstractPartialPageRequestHandler.java
+++ 
b/wicket-core/src/main/java/org/apache/wicket/core/request/handler/AbstractPartialPageRequestHandler.java
@@ -58,7 +58,7 @@ public abstract class AbstractPartialPageRequestHandler 
implements IPartialPageR
 }
 
 @Override
-public final void add(Component... components)
+public void add(Component... components)
 {
 for (final Component component : components)
 {



(wicket) branch master updated: WICKET-7104: Use JavaScript dynamic resolution of the first function parameter

2024-04-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 1c15e83c34 WICKET-7104: Use JavaScript dynamic resolution of the first 
function parameter
1c15e83c34 is described below

commit 1c15e83c348d5001414a0aaa64da114ca1692007
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Apr 22 09:12:54 2024 +0300

WICKET-7104: Use JavaScript dynamic resolution of the first function 
parameter

Using the parameter name (i.e. 'input') does not work after JS
minification.
Using `arguments[0]` does not depend on the parameter name and should
work in both minified and non-minified JavaScript.

Signed-off-by: Martin Tzvetanov Grigorov 
---
 .../markup/html/autocomplete/AbstractAutoCompleteRenderer.java| 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AbstractAutoCompleteRenderer.java
 
b/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AbstractAutoCompleteRenderer.java
index ea182f6804..51186a5460 100644
--- 
a/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AbstractAutoCompleteRenderer.java
+++ 
b/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AbstractAutoCompleteRenderer.java
@@ -107,10 +107,10 @@ public abstract class AbstractAutoCompleteRenderer 
implements IAutoCompleteRe
 * protected CharSequence getOnSelectJavaScript(Address address)
 * {
 *  final StringBuilder js = new StringBuilder();
-*  js.append(wicketGet('street').value =' + 
address.getStreet() + ';);
-*  js.append(wicketGet('zipcode').value =' + 
address.getZipCode() + ';);
-*  js.append(wicketGet('city').value =' + 
address.getCity() + ';);
-*  js.append(input); // -- do not use return 
statement here!
+*  js.append(Wicket.DOM.get('street').value =' + 
address.getStreet() + ';);
+*  js.append(Wicket.DOM.get('zipcode').value =' + 
address.getZipCode() + ';);
+*  js.append(Wicket.DOM.get('city').value =' + 
address.getCity() + ';);
+*  js.append(arguments[0]); // -- do not use 
return statement here!
 *  return js.toString();
 * }
 * 



(wicket) branch wicket-9.x updated: WICKET-7104: Use JavaScript dynamic resolution of the first function parameter

2024-04-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-9.x by this push:
 new bd03775a3d WICKET-7104: Use JavaScript dynamic resolution of the first 
function parameter
bd03775a3d is described below

commit bd03775a3dc3678b63fce36ae8976311297a7114
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Apr 22 09:12:54 2024 +0300

WICKET-7104: Use JavaScript dynamic resolution of the first function 
parameter

Using the parameter name (i.e. 'input') does not work after JS
minification.
Using `arguments[0]` does not depend on the parameter name and should
work in both minified and non-minified JavaScript.

Signed-off-by: Martin Tzvetanov Grigorov 
(cherry picked from commit 1c15e83c348d5001414a0aaa64da114ca1692007)
---
 .../markup/html/autocomplete/AbstractAutoCompleteRenderer.java| 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AbstractAutoCompleteRenderer.java
 
b/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AbstractAutoCompleteRenderer.java
index ea182f6804..51186a5460 100644
--- 
a/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AbstractAutoCompleteRenderer.java
+++ 
b/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AbstractAutoCompleteRenderer.java
@@ -107,10 +107,10 @@ public abstract class AbstractAutoCompleteRenderer 
implements IAutoCompleteRe
 * protected CharSequence getOnSelectJavaScript(Address address)
 * {
 *  final StringBuilder js = new StringBuilder();
-*  js.append(wicketGet('street').value =' + 
address.getStreet() + ';);
-*  js.append(wicketGet('zipcode').value =' + 
address.getZipCode() + ';);
-*  js.append(wicketGet('city').value =' + 
address.getCity() + ';);
-*  js.append(input); // -- do not use return 
statement here!
+*  js.append(Wicket.DOM.get('street').value =' + 
address.getStreet() + ';);
+*  js.append(Wicket.DOM.get('zipcode').value =' + 
address.getZipCode() + ';);
+*  js.append(Wicket.DOM.get('city').value =' + 
address.getCity() + ';);
+*  js.append(arguments[0]); // -- do not use 
return statement here!
 *  return js.toString();
 * }
 * 



(wicket) branch master updated: Bump org.apache:apache from 31 to 32 (#844)

2024-04-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new b606815704 Bump org.apache:apache from 31 to 32 (#844)
b606815704 is described below

commit b6068157040519cfb3e258052edc405e5ab464b1
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 22 09:05:52 2024 +0300

Bump org.apache:apache from 31 to 32 (#844)

Bumps [org.apache:apache](https://github.com/apache/maven-apache-parent) 
from 31 to 32.
- [Release notes](https://github.com/apache/maven-apache-parent/releases)
- [Commits](https://github.com/apache/maven-apache-parent/commits)

---
updated-dependencies:
- dependency-name: org.apache:apache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a6a4e26bbc..93df585a2c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@

org.apache
apache
-   31
+   32

org.apache.wicket
wicket-parent



(wicket) branch master updated (87011ae3ca -> f7380c04d1)

2024-04-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 87011ae3ca Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 
to 3.2.4 (#842)
 add f7380c04d1 Bump org.bouncycastle:bcprov-jdk18on from 1.78 to 1.78.1 
(#841)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 to 3.2.4 (#842)

2024-04-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 87011ae3ca Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 
to 3.2.4 (#842)
87011ae3ca is described below

commit 87011ae3ca6e03bfe7394fee4ed3bf715046b8bf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 22 09:05:31 2024 +0300

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 to 3.2.4 (#842)

Bumps 
[org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin)
 from 3.2.3 to 3.2.4.
- [Release notes](https://github.com/apache/maven-gpg-plugin/releases)
- 
[Commits](https://github.com/apache/maven-gpg-plugin/compare/maven-gpg-plugin-3.2.3...maven-gpg-plugin-3.2.4)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-gpg-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f1a644e1d5..36eec105ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -192,7 +192,7 @@
3.1.1

2.10

3.1.0
-   3.2.3
+   3.2.4

3.1.1
3.4.1

3.6.3



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.0 to 3.4.1 (#845)

2024-04-22 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 9c14e12b28 Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.0 
to 3.4.1 (#845)
9c14e12b28 is described below

commit 9c14e12b28abd26c79e8e70bea655b168b2c2131
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 22 09:05:20 2024 +0300

Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.0 to 3.4.1 (#845)

Bumps 
[org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin)
 from 3.4.0 to 3.4.1.
- [Release notes](https://github.com/apache/maven-jar-plugin/releases)
- 
[Commits](https://github.com/apache/maven-jar-plugin/compare/maven-jar-plugin-3.4.0...maven-jar-plugin-3.4.1)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-jar-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c2734660e5..f1a644e1d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -194,7 +194,7 @@

3.1.0
3.2.3

3.1.1
-   3.4.0
+   3.4.1

3.6.3

3.5.0

3.0.1



(wicket) branch master updated: WICKET-7103 (#833)

2024-04-16 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 550858b77c WICKET-7103 (#833)
550858b77c is described below

commit 550858b77c2209529517a07fe4b6f61372871e29
Author: Johannes Renoth 
AuthorDate: Tue Apr 16 09:27:24 2024 +0200

WICKET-7103 (#833)

* WICKET-7103 Make it possible to post process the Ajax attributes for 
ModalDialog

-

Co-authored-by: renoth 
---
 .../ajax/markup/html/modal/ModalDialog.java| 63 +-
 .../ajax/markup/html/modal/ModalDialogTest.java| 60 +
 2 files changed, 97 insertions(+), 26 deletions(-)

diff --git 
a/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalDialog.java
 
b/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalDialog.java
index 3b99248df2..22ac209a2c 100644
--- 
a/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalDialog.java
+++ 
b/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalDialog.java
@@ -41,7 +41,7 @@ import org.apache.wicket.markup.html.panel.Panel;
  * modal-dialog-content
  * any additional styling for the content of this dialog
  * 
- * 
+ *
  * @author Igor Vaynberg (ivaynberg)
  * @author svenmeier
  */
@@ -56,7 +56,7 @@ public class ModalDialog extends Panel
 
/**
 * The id for the content of this dialoh.
-* 
+*
 * @see #setContent(Component)
 * @see #open(Component, AjaxRequestTarget)
 */
@@ -84,9 +84,9 @@ public class ModalDialog extends Panel
 
/**
 * Factory method for the overlay markup around the dialog.
-* 
+*
 * @param overlayId
-*id
+*  id
 * @return overlay
 */
protected WebMarkupContainer newOverlay(String overlayId)
@@ -96,9 +96,9 @@ public class ModalDialog extends Panel
 
/**
 * Factory method for the dialog markup around the content.
-* 
+*
 * @param dialogId
-*id
+*  id
 * @return overlay
 */
protected WebMarkupContainer newDialog(String dialogId)
@@ -108,9 +108,8 @@ public class ModalDialog extends Panel
 
/**
 * Set a content.
-* 
+*
 * @param content
-* 
 * @see #open(AjaxRequestTarget)
 */
public void setContent(Component content)
@@ -130,13 +129,12 @@ public class ModalDialog extends Panel
 * Open the dialog with a content.
 * 
 * The content will be removed on close of the dialog.
-* 
+*
 * @param content
-*the content
+*  the content
 * @param target
-*an optional Ajax target
+*  an optional Ajax target
 * @return this
-* 
 * @see #setContent(Component)
 * @see #close(AjaxRequestTarget)
 */
@@ -157,18 +155,18 @@ public class ModalDialog extends Panel
 
/**
 * Open the dialog.
-* 
+*
 * @param target
-*an optional Ajax target
+*  an optional Ajax target
 * @return this
-* 
 * @see #setContent(Component)
 */
public ModalDialog open(AjaxRequestTarget target)
{
if (overlay.size() == 0)
{
-   throw new 
WicketRuntimeException(String.format("ModalDialog with id '%s' has no content 
set!", getId()));
+   throw new WicketRuntimeException(
+   String.format("ModalDialog with id '%s' has no 
content set!", getId()));
}
 
overlay.setVisible(true);
@@ -183,7 +181,7 @@ public class ModalDialog extends Panel
 
/**
 * Is this dialog open.
-* 
+*
 * @return true if open
 */
public boolean isOpen()
@@ -196,11 +194,10 @@ public class ModalDialog extends Panel
 * 
 * If opened via {@link #open(Component, AjaxRequestTarget)}, the 
content is removed from the
 * component tree
-* 
+*
 * @param target
-*an optional Ajax target
+*  an optional Ajax target
 * @return this
-* 
 * @see #open(Component, AjaxRequestTarget)
 */
public ModalDialog close(AjaxRequestTarget target)
@@ -221,7 +218,7 @@ public class ModalDialog extends Panel
 
/**
 * Close this dialog on press of escape key.
-* 
+*
 * @return this
 */
public ModalDialog closeOnEscape()
@@ -23

(wicket) branch master updated: Bump slf4j.version from 2.0.12 to 2.0.13 (#836)

2024-04-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new a64a6c81cb Bump slf4j.version from 2.0.12 to 2.0.13 (#836)
a64a6c81cb is described below

commit a64a6c81cb7b93007cd3b2d27f9ba609ec2e032f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 15 10:54:44 2024 +0300

Bump slf4j.version from 2.0.12 to 2.0.13 (#836)

Bumps `slf4j.version` from 2.0.12 to 2.0.13.

Updates `org.slf4j:jcl-over-slf4j` from 2.0.12 to 2.0.13

Updates `org.slf4j:slf4j-api` from 2.0.12 to 2.0.13

Updates `org.slf4j:slf4j-ext` from 2.0.12 to 2.0.13

Updates `org.slf4j:slf4j-simple` from 2.0.12 to 2.0.13

---
updated-dependencies:
- dependency-name: org.slf4j:jcl-over-slf4j
  dependency-type: direct:development
  update-type: version-update:semver-patch
- dependency-name: org.slf4j:slf4j-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.slf4j:slf4j-ext
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.slf4j:slf4j-simple
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 53cb4e555f..c2734660e5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -176,7 +176,7 @@
5.11.0
3.3
1.0.13
-   2.0.12
+   2.0.13
6.1.6
3.5.3
4.0.3.Final



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.3 (#834)

2024-04-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new c76d083a6f Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 
to 3.2.3 (#834)
c76d083a6f is described below

commit c76d083a6f932514a79568a7f17c8eecf19f7538
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 15 10:37:24 2024 +0300

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.3 (#834)

Bumps 
[org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin)
 from 3.2.2 to 3.2.3.
- [Release notes](https://github.com/apache/maven-gpg-plugin/releases)
- 
[Commits](https://github.com/apache/maven-gpg-plugin/compare/maven-gpg-plugin-3.2.2...maven-gpg-plugin-3.2.3)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-gpg-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 74121d3acc..53cb4e555f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -192,7 +192,7 @@
3.1.1

2.10

3.1.0
-   3.2.2
+   3.2.3

3.1.1
3.4.0

3.6.3



(wicket) branch master updated: Bump jakarta.interceptor:jakarta.interceptor-api from 2.1.0 to 2.2.0 (#835)

2024-04-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new bebe3fe1ec Bump jakarta.interceptor:jakarta.interceptor-api from 2.1.0 
to 2.2.0 (#835)
bebe3fe1ec is described below

commit bebe3fe1ec095169240ce2d031d4c27b5b340920
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 15 10:37:40 2024 +0300

Bump jakarta.interceptor:jakarta.interceptor-api from 2.1.0 to 2.2.0 (#835)

Bumps 
[jakarta.interceptor:jakarta.interceptor-api](https://github.com/jakartaee/interceptors)
 from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/jakartaee/interceptors/releases)
- [Commits](https://github.com/jakartaee/interceptors/commits)

---
updated-dependencies:
- dependency-name: jakarta.interceptor:jakarta.interceptor-api
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 testing/wicket-common-tests/pom.xml   | 2 +-
 wicket-native-websocket/wicket-native-websocket-javax/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testing/wicket-common-tests/pom.xml 
b/testing/wicket-common-tests/pom.xml
index 0ddcb26f9c..3404cdb020 100644
--- a/testing/wicket-common-tests/pom.xml
+++ b/testing/wicket-common-tests/pom.xml
@@ -37,7 +37,7 @@

jakarta.interceptor
jakarta.interceptor-api
-   2.1.0
+   2.2.0
test


diff --git a/wicket-native-websocket/wicket-native-websocket-javax/pom.xml 
b/wicket-native-websocket/wicket-native-websocket-javax/pom.xml
index 6ea13c4419..0dae5702e3 100644
--- a/wicket-native-websocket/wicket-native-websocket-javax/pom.xml
+++ b/wicket-native-websocket/wicket-native-websocket-javax/pom.xml
@@ -36,7 +36,7 @@

jakarta.interceptor
jakarta.interceptor-api
-   2.1.0
+   2.2.0
provided





(wicket) branch master updated (47b296541d -> 5dd37925ff)

2024-04-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 47b296541d Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#839)
 add 5dd37925ff Bump spring.version from 6.1.5 to 6.1.6 (#837)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (4dea4793c6 -> 47b296541d)

2024-04-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 4dea4793c6 Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 
to 3.4.0 (#840)
 add 47b296541d Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#839)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.0 (#840)

2024-04-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 4dea4793c6 Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 
to 3.4.0 (#840)
4dea4793c6 is described below

commit 4dea4793c6042a59f83ebdc3bd75be3e6f46c076
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 15 10:36:26 2024 +0300

Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.0 (#840)

Bumps 
[org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin)
 from 3.3.0 to 3.4.0.
- [Release notes](https://github.com/apache/maven-jar-plugin/releases)
- 
[Commits](https://github.com/apache/maven-jar-plugin/compare/maven-jar-plugin-3.3.0...maven-jar-plugin-3.4.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-jar-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8f570fd929..fbf3b889ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -194,7 +194,7 @@

3.1.0
3.2.2

3.1.1
-   3.3.0
+   3.4.0

3.6.3

3.5.0

3.0.1



(wicket) branch master updated: Disable Japicmp for wicket-core-tests

2024-04-15 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 3a880413d9 Disable Japicmp for wicket-core-tests
3a880413d9 is described below

commit 3a880413d96e57fc1905f7e82096c4d846cbb4ad
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Apr 15 09:57:14 2024 +0300

Disable Japicmp for wicket-core-tests

Signed-off-by: Martin Tzvetanov Grigorov 
---
 wicket-core-tests/pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/wicket-core-tests/pom.xml b/wicket-core-tests/pom.xml
index 9a7664fc63..19821f6069 100644
--- a/wicket-core-tests/pom.xml
+++ b/wicket-core-tests/pom.xml
@@ -33,6 +33,7 @@

org.apache.wicket.core.tests*;-noimport:=true

!java*,!kotlin*,!sun.nio.ch,org.slf4j*;version="[1.7,3)",*
true
+   true 






(wicket) branch master updated (8475b3a29a -> fde44808e6)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 8475b3a29a Bump org.bouncycastle:bcprov-jdk18on from 1.77 to 1.78 
(#829)
 add fde44808e6 Enable Japicmp for Wicket 10.x

No new revisions were added by this update.

Summary of changes:
 pom.xml | 1 -
 1 file changed, 1 deletion(-)



(wicket) branch dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.4.1 updated (2188fb1321 -> 78b8818045)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch 
dependabot/maven/org.apache.maven.plugins-maven-enforcer-plugin-3.4.1
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 2188fb1321 Bump org.apache.maven.plugins:maven-enforcer-plugin from 
3.1.0 to 3.4.1
 add 19934218e1 Bump org.apache.maven.wagon:wagon-ssh-external from 3.4.3 
to 3.5.3 (#724)
 add a26b8a9b81 Bump commons-io:commons-io from 2.13.0 to 2.15.1 (#719)
 add dd22deb768 Bump metrics.version from 4.2.22 to 4.2.23 (#718)
 add be93695465 Bump org.apache.felix:maven-bundle-plugin from 5.1.8 to 
5.1.9 (#723)
 add 868aafd9ca Bump org.apache.maven.archetype:archetype-packaging from 
2.4 to 3.2.1 (#731)
 add c7dc3cf52d Bump 
org.apache.maven.plugins:maven-project-info-reports-plugin (#729)
 add d5595fae4d Bump org.apache.maven.plugins:maven-site-plugin (#727)
 add 8a1eb72568 WICKET-7091: FilePageStore throws NPE
 add b91e0a05c7 Bump org.checkerframework:checker-qual from 3.41.0 to 
3.42.0 (#748)
 add e97b2fd169 Bump jakarta.enterprise:jakarta.enterprise.cdi-api from 
3.0.0 to 3.0.1 (#747)
 add 5b365b79df Bump spring.version from 6.1.1 to 6.1.2 (#746)
 add 4791d04551 Bump maven-surefire-plugin.version from 3.2.2 to 3.2.3 
(#745)
 add 63ac16cb74 Bump org.aspectj:aspectjrt from 1.9.20.1 to 1.9.21 (#744)
 add 17dc3f81ab WICKET-7089: Fix setting SameSite cookie attribute on 
Servlet 5 (#749)
 add e7bd778dcd Bump org.apache.maven.plugins:maven-site-plugin (#754)
 add ee114a7400 Bump com.google.errorprone:error_prone_annotations from 
2.23.0 to 2.24.0 (#753)
 add 475ed7dce5 Bump org.openrewrite.recipe:rewrite-recipe-bom from 2.5.3 
to 2.5.4 (#751)
 add e9461b0d11 Bump net.bytebuddy:byte-buddy from 1.14.10 to 1.14.11 (#750)
 add f93c72a01c Bump slf4j.version from 2.0.9 to 2.0.10 (#755)
 add 3d13a3785e Bump org.apache.maven.plugins:maven-compiler-plugin (#757)
 add d034dc7613 Bump org.asciidoctor:asciidoctorj-diagram from 2.2.13 to 
2.2.14 (#756)
 add 9c827a6b7b Bump com.google.errorprone:error_prone_annotations from 
2.24.0 to 2.24.1 (#760)
 add c4a77c4ee7 Bump org.assertj:assertj-core from 3.24.2 to 3.25.1 (#759)
 add 04347ba4da WICKET-7094: Add missing scheme values of CSP (#761)
 add e3296fdb23 WICKET-6882 Migrate to Jakarta EE
 add eadd734259 Re-enable SpringWebApplicationFactoryTest
 add 83fc5fedfb WICKET-7090: add outputTimestamp property to enable 
reproducible builds
 add 7652239b31 WICKET-7090: use manifest from maven-bundle-plugin but use 
maven-jar-plugin for packaging
 add 07d457bd4d Merge pull request #758 from apache/wicket-7090
 add ccd9541b7b Bump org.asciidoctor:asciidoctor-maven-plugin from 2.2.4 to 
2.2.5 (#765)
 add ff6357ac2e Bump org.openrewrite.recipe:rewrite-recipe-bom from 2.5.4 
to 2.6.1 (#766)
 add aa109f6372 Bump spring.version from 6.1.2 to 6.1.3 (#763)
 add 425bcd3f04 Bump slf4j.version from 2.0.10 to 2.0.11 (#764)
 add fd4836947c Bump maven-surefire-plugin.version from 3.2.3 to 3.2.5 
(#767)
 add 3683374ae4 WICKET-7096: add missing nonce to auto linked resources 
(#768)
 add fb112cfcfe Bump org.mockito:mockito-core from 5.8.0 to 5.9.0 (#772)
 add 04c0d946d7 Bump actions/cache from 3 to 4 (#771)
 add d8a9ce4521 Bump org.openrewrite.recipe:rewrite-recipe-bom from 2.6.1 
to 2.6.2 (#769)
 add 559928a9f9 Bump metrics.version from 4.2.23 to 4.2.24 (#770)
 add 58aa0e2058 WICKET-7029 Add wicket-tester dependency during migration 
(#773)
 add f1e4327ef8 Bump @babel/traverse from 7.22.8 to 7.23.2 in 
/testing/wicket-js-tests (#774)
 add a37ab3a6c9 Update transitive dependencies with `npm update`
 add 97fe7ae12f Bump org.openrewrite.recipe:rewrite-recipe-bom from 2.6.2 
to 2.6.3 (#779)
 add d909e8574f Bump 
org.primefaces.extensions:resources-optimizer-maven-plugin (#778)
 add e7b4c2b1f4 Bump org.mockito:mockito-core from 5.9.0 to 5.10.0 (#777)
 add 3222817bd8 Bump org.assertj:assertj-core from 3.25.1 to 3.25.2 (#775)
 add 6a98962c8f Bump metrics.version from 4.2.24 to 4.2.25 (#776)
 add 10b06b85ad Bump org.asciidoctor:asciidoctorj-diagram from 2.2.14 to 
2.2.17 (#780)
 add db6136e1b6 WICKET-7099 Validate FormTester constructor parameter 
workingForm
 add f12687d0e4 Bump org.assertj:assertj-core from 3.25.2 to 3.25.3 (#786)
 add 9ef5a40a3f Bump org.asciidoctor:asciidoctor-maven-plugin from 2.2.5 to 
2.2.6 (#785)
 add a186724d63 Bump slf4j.version from 2.0.11 to 2.0.12 (#784)
 add 0fe4e9d556 Bump org.openrewrite.recipe:rewrite-recipe-bom from 2.6.3 
to 2.6.4 (#783)
 add 64adc6468c Bump junit.version from 5.10.1 to 5.10.2 (#782)
 add ca108088ff WICKET-7100: Update commons-fileupload2 to 2.0.0-M2
 add 6772763341 Added wicket-tester as test dependency for quickstart
 add b1baeb666a Bump org.aspectj:aspectjrt from 1.9.21 to 1.9.21.1 (#793

(wicket) branch master updated: Bump org.bouncycastle:bcprov-jdk18on from 1.77 to 1.78 (#829)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 8475b3a29a Bump org.bouncycastle:bcprov-jdk18on from 1.77 to 1.78 
(#829)
8475b3a29a is described below

commit 8475b3a29a1452758d3cda795bcf4d9060dc3685
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 10:20:29 2024 +0300

Bump org.bouncycastle:bcprov-jdk18on from 1.77 to 1.78 (#829)

Bumps [org.bouncycastle:bcprov-jdk18on](https://github.com/bcgit/bc-java) 
from 1.77 to 1.78.
- 
[Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)
- [Commits](https://github.com/bcgit/bc-java/commits)

---
updated-dependencies:
- dependency-name: org.bouncycastle:bcprov-jdk18on
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 77e12ccf7d..5ad9a8a074 100644
--- a/pom.xml
+++ b/pom.xml
@@ -143,7 +143,7 @@
9.7
1.9.22
3.25.3
-   1.77
+   1.78
1.14.13
4.1.0
4.4



(wicket) branch master updated: Bump commons-io:commons-io from 2.15.1 to 2.16.0 (#827)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 599472e056 Bump commons-io:commons-io from 2.15.1 to 2.16.0 (#827)
599472e056 is described below

commit 599472e0568d3e4740c315a316e64dc19d49ef9a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 10:19:54 2024 +0300

Bump commons-io:commons-io from 2.15.1 to 2.16.0 (#827)

Bumps commons-io:commons-io from 2.15.1 to 2.16.0.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 29e1b21ea7..77e12ccf7d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -148,7 +148,7 @@
4.1.0
4.4

2.0.0-M2
-   2.15.1
+   2.16.0
3.14.0
7.0.0
2.2.1-b05



(wicket) branch master updated (9e94f8e475 -> 9f08e793b5)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 9e94f8e475 Bump net.bytebuddy:byte-buddy from 1.14.12 to 1.14.13 (#826)
 add 9f08e793b5 Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.1 
to 3.2.2 (#825)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (fa629b515e -> 6fc3663397)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from fa629b515e Bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12 
(#830)
 add 6fc3663397 Bump org.openrewrite.recipe:rewrite-recipe-bom from 2.8.1 
to 2.9.0 (#828)

No new revisions were added by this update.

Summary of changes:
 wicket-migration/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (6fc3663397 -> 9e94f8e475)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 6fc3663397 Bump org.openrewrite.recipe:rewrite-recipe-bom from 2.8.1 
to 2.9.0 (#828)
 add 9e94f8e475 Bump net.bytebuddy:byte-buddy from 1.14.12 to 1.14.13 (#826)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated (20579402ff -> fa629b515e)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


from 20579402ff Bump org.apache.maven.plugins:maven-source-plugin from 
3.3.0 to 3.3.1 (#831)
 add fa629b515e Bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12 
(#830)

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(wicket) branch master updated: Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 (#831)

2024-04-08 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new 20579402ff Bump org.apache.maven.plugins:maven-source-plugin from 
3.3.0 to 3.3.1 (#831)
20579402ff is described below

commit 20579402ff7ff012f7e99f022a7db3525e7846bb
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 8 10:18:22 2024 +0300

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 (#831)

Bumps 
[org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin)
 from 3.3.0 to 3.3.1.
- 
[Commits](https://github.com/apache/maven-source-plugin/compare/maven-source-plugin-3.3.0...maven-source-plugin-3.3.1)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-source-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b24b86630a..2dae1948eb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -203,7 +203,7 @@

3.3.1
4.0.0-M13

3.2.5
-   3.3.0
+   3.3.1

3.1.0
3.4.0

2.6.3



(wicket) branch master updated: Bump asm.version from 9.6 to 9.7 (#819)

2024-03-25 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new c51f75cbe2 Bump asm.version from 9.6 to 9.7 (#819)
c51f75cbe2 is described below

commit c51f75cbe2c3b03ce053a190329ca8b706f26e5f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Mar 25 13:12:22 2024 +0200

Bump asm.version from 9.6 to 9.7 (#819)

Bumps `asm.version` from 9.6 to 9.7.

Updates `org.ow2.asm:asm` from 9.6 to 9.7

Updates `org.ow2.asm:asm-commons` from 9.6 to 9.7

Updates `org.ow2.asm:asm-util` from 9.6 to 9.7

---
updated-dependencies:
- dependency-name: org.ow2.asm:asm
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.ow2.asm:asm-commons
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.ow2.asm:asm-util
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 51eaf238a9..b24b86630a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -140,7 +140,7 @@
17
 

-   9.6
+   9.7
1.9.22
3.25.3
1.77



(wicket) branch master updated: Remove dependency management for obsolete experimental modules

2024-03-25 Thread mgrigorov
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
 new ab1168eb9d Remove dependency management for obsolete experimental 
modules
ab1168eb9d is described below

commit ab1168eb9d980e693224cb4d9822362bea8dd2c4
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Mar 25 12:08:29 2024 +0200

Remove dependency management for obsolete experimental modules

Update the Maven groupId for wicket-metrics from wicket9 to wicket10

Signed-off-by: Martin Tzvetanov Grigorov 
---
 pom.xml| 32 +-
 wicket-experimental/pom.xml|  2 +-
 wicket-experimental/wicket-metrics/pom.xml |  2 +-
 3 files changed, 3 insertions(+), 33 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6f3823b944..51eaf238a9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -469,37 +469,7 @@
jar


-   
org.apache.wicket.experimental.wicket9
-   wicket-http2-core
-   0.25-SNAPSHOT
-   jar
-   
-   
-   
org.apache.wicket.experimental.wicket9
-   wicket-http2-jetty
-   0.25-SNAPSHOT
-   jar
-   
-   
-   
org.apache.wicket.experimental.wicket9
-   wicket-http2-servlet4
-   0.25-SNAPSHOT
-   jar
-   
-   
-   
org.apache.wicket.experimental.wicket9
-   wicket-http2-tomcat
-   0.25-SNAPSHOT
-   jar
-   
-   
-   
org.apache.wicket.experimental.wicket9
-   wicket-http2-undertow
-   0.25-SNAPSHOT
-   jar
-   
-   
-   
org.apache.wicket.experimental.wicket9
+   
org.apache.wicket.experimental.wicket10
wicket-metrics
0.19-SNAPSHOT
jar
diff --git a/wicket-experimental/pom.xml b/wicket-experimental/pom.xml
index a96f66c9d9..c1d2cde812 100644
--- a/wicket-experimental/pom.xml
+++ b/wicket-experimental/pom.xml
@@ -23,7 +23,7 @@
10.1.0-SNAPSHOT
../pom.xml

-   org.apache.wicket.experimental.wicket9
+   org.apache.wicket.experimental.wicket10
wicket-experimental
pom
Wicket-Experimental
diff --git a/wicket-experimental/wicket-metrics/pom.xml 
b/wicket-experimental/wicket-metrics/pom.xml
index 8409f410cb..69ccee20b6 100644
--- a/wicket-experimental/wicket-metrics/pom.xml
+++ b/wicket-experimental/wicket-metrics/pom.xml
@@ -18,7 +18,7 @@
 http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
4.0.0

-   org.apache.wicket.experimental.wicket9
+   org.apache.wicket.experimental.wicket10
wicket-experimental
10.1.0-SNAPSHOT
../pom.xml



  1   2   3   4   5   6   7   8   9   10   >