[struts-site] branch feature/matomo created (now f668115c3)
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch feature/matomo in repository https://gitbox.apache.org/repos/asf/struts-site.git at f668115c3 Adds script to track visitors with Matomo This branch includes the following new commits: new f668115c3 Adds script to track visitors with Matomo 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.
[struts-site] 01/01: Adds script to track visitors with Matomo
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch feature/matomo in repository https://gitbox.apache.org/repos/asf/struts-site.git commit f668115c37c156cb2a70967880e9ca1835108b4b Author: Lukasz Lenart AuthorDate: Sun Oct 15 12:04:49 2023 +0200 Adds script to track visitors with Matomo --- source/_layouts/core-developers.html | 18 ++ source/_layouts/default.html | 18 ++ source/_layouts/main-page.html| 18 ++ source/_layouts/maven-archetypes.html | 18 ++ source/_layouts/plugin.html | 18 ++ 5 files changed, 90 insertions(+) diff --git a/source/_layouts/core-developers.html b/source/_layouts/core-developers.html index 1263bbf05..83fa23509 100644 --- a/source/_layouts/core-developers.html +++ b/source/_layouts/core-developers.html @@ -18,6 +18,24 @@ + + + +var _paq = window._paq = window._paq || []; +/* tracker methods like "setCustomDimension" should be called before "trackPageView" */ +/* We explicitly disable cookie tracking to avoid privacy issues */ +_paq.push(['disableCookies']); +_paq.push(['trackPageView']); +_paq.push(['enableLinkTracking']); +(function() { + var u="//analytics.apache.org/"; + _paq.push(['setTrackerUrl', u+'matomo.php']); + _paq.push(['setSiteId', '41']); + var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; + g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); +})(); + + diff --git a/source/_layouts/default.html b/source/_layouts/default.html index 2cfdc1e48..f5cd55043 100644 --- a/source/_layouts/default.html +++ b/source/_layouts/default.html @@ -18,6 +18,24 @@ + + + +var _paq = window._paq = window._paq || []; +/* tracker methods like "setCustomDimension" should be called before "trackPageView" */ +/* We explicitly disable cookie tracking to avoid privacy issues */ +_paq.push(['disableCookies']); +_paq.push(['trackPageView']); +_paq.push(['enableLinkTracking']); +(function() { + var u="//analytics.apache.org/"; + _paq.push(['setTrackerUrl', u+'matomo.php']); + _paq.push(['setSiteId', '41']); + var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; + g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); +})(); + + diff --git a/source/_layouts/main-page.html b/source/_layouts/main-page.html index a129664d2..e360dabf1 100644 --- a/source/_layouts/main-page.html +++ b/source/_layouts/main-page.html @@ -18,6 +18,24 @@ https://buttons.github.io/buttons.js";> + + + +var _paq = window._paq = window._paq || []; +/* tracker methods like "setCustomDimension" should be called before "trackPageView" */ +/* We explicitly disable cookie tracking to avoid privacy issues */ +_paq.push(['disableCookies']); +_paq.push(['trackPageView']); +_paq.push(['enableLinkTracking']); +(function() { + var u="//analytics.apache.org/"; + _paq.push(['setTrackerUrl', u+'matomo.php']); + _paq.push(['setSiteId', '41']); + var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; + g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); +})(); + + diff --git a/source/_layouts/maven-archetypes.html b/source/_layouts/maven-archetypes.html index ed349c5e7..ff7f7f1ad 100644 --- a/source/_layouts/maven-archetypes.html +++ b/source/_layouts/maven-archetypes.html @@ -18,6 +18,24 @@ + + + +var _paq = window._paq = window._paq || []; +/* tracker methods like "setCustomDimension" should be called before "trackPageView" */ +/* We explicitly disable cookie tracking to avoid privacy issues */ +_paq.push(['disableCookies']); +_paq.push(['trackPageView']); +_paq.push(['enableLinkTracking']); +(function() { + var u="//analytics.apache.org/"; + _paq.push(['setTrackerUrl', u+'matomo.php']); + _paq.push(['setSiteId', '41']); + var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; + g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); +})(); + + diff --git a/source/_layouts/plugin.html b/source/_layouts/plugin.html index d25b36d27..b7ecc649e 100644 --- a/source/_layouts/plugin.html +++ b/source/_layouts/plugin.html @@ -18,6 +18,24 @@ + + + +var _paq = window._paq = window._paq || []; +/* tracker methods like "setCustomDimension" should be called before "trackPageView" */ +/* We explicitly disable cookie tracking to avoid privacy issues */ +_paq.push(['disableCookies']); +_paq.push(['trackPageView']); +_paq.push(['enableLinkTracking']); +(function() { + var u="//analytics.apache.org/"; + _paq.push(['setTrac
[PR] Adds script to track visitors with Matomo [struts-site]
lukaszlenart opened a new pull request, #208: URL: https://github.com/apache/struts-site/pull/208 (no comment) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Adds script to track visitors with Matomo [struts-site]
lukaszlenart merged PR #208: URL: https://github.com/apache/struts-site/pull/208 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[struts-site] branch feature/matomo deleted (was f668115c3)
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch feature/matomo in repository https://gitbox.apache.org/repos/asf/struts-site.git was f668115c3 Adds script to track visitors with Matomo The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
[struts-site] branch master updated (97811c52b -> 4a63d1c62)
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/struts-site.git from 97811c52b Merge pull request #206 from apache/fix/static-content-mapping add f668115c3 Adds script to track visitors with Matomo new 4a63d1c62 Merge pull request #208 from apache/feature/matomo The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: source/_layouts/core-developers.html | 18 ++ source/_layouts/default.html | 18 ++ source/_layouts/main-page.html| 18 ++ source/_layouts/maven-archetypes.html | 18 ++ source/_layouts/plugin.html | 18 ++ 5 files changed, 90 insertions(+)
[struts-site] 01/01: Merge pull request #208 from apache/feature/matomo
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-site.git commit 4a63d1c622d36b4012a3c7c124eb432f4d4d15d3 Merge: 97811c52b f668115c3 Author: Lukasz Lenart AuthorDate: Sun Oct 15 12:12:34 2023 +0200 Merge pull request #208 from apache/feature/matomo Adds script to track visitors with Matomo source/_layouts/core-developers.html | 18 ++ source/_layouts/default.html | 18 ++ source/_layouts/main-page.html| 18 ++ source/_layouts/maven-archetypes.html | 18 ++ source/_layouts/plugin.html | 18 ++ 5 files changed, 90 insertions(+)
[struts-site] branch asf-staging updated: Updates stage by Jenkins
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-staging in repository https://gitbox.apache.org/repos/asf/struts-site.git The following commit(s) were added to refs/heads/asf-staging by this push: new 25d4d53a8 Updates stage by Jenkins 25d4d53a8 is described below commit 25d4d53a8b12caf3adf37719c4fc3a1cf61f814a Author: jenkins AuthorDate: Sun Oct 15 10:14:53 2023 + Updates stage by Jenkins
[struts] branch WW-5355-cache-lru updated (74d2fdcc6 -> d245dc551)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from 74d2fdcc6 WW-5355 Use LRU cache by default add 5011a7977 WW-5355 Prevent AtomicInteger being initialised to zero add 9527da5d3 WW-5355 Initial Caffeine cache implementation add 1573207ee WW-5355 Fix eviction limit in LRU cache not being enforced add 6ff7e15bf WW-5355 Update JavaDoc for basic and LRU cache add 9c932f203 WW-5355 Introduce new Struts constants and their defaults add bfb4df13e WW-5355 Unify bootstrap constant declaration add d245dc551 WW-5355 Introduce new cache type selection methods and deprecate problematic setter injection No new revisions were added by this update. Summary of changes: core/pom.xml | 5 ++ .../xwork2/config/impl/DefaultConfiguration.java | 29 +--- .../xwork2/config/impl/MockConfiguration.java | 18 +++-- .../StrutsDefaultConfigurationProvider.java| 15 ++-- .../ognl/DefaultOgnlBeanInfoCacheFactory.java | 19 ++--- .../xwork2/ognl/DefaultOgnlCacheFactory.java | 68 +- .../ognl/DefaultOgnlExpressionCacheFactory.java| 25 +++ .../opensymphony/xwork2/ognl/OgnlCacheFactory.java | 52 -- .../xwork2/ognl/OgnlCaffeineCache.java | 82 ++ .../opensymphony/xwork2/ognl/OgnlDefaultCache.java | 15 ++-- .../com/opensymphony/xwork2/ognl/OgnlLRUCache.java | 26 +++ .../com/opensymphony/xwork2/ognl/OgnlUtil.java | 10 ++- .../java/org/apache/struts2/StrutsConstants.java | 54 +++--- .../org/apache/struts2/default.properties | 34 +++-- .../com/opensymphony/xwork2/ognl/OgnlUtilTest.java | 12 +++- pom.xml| 6 ++ 16 files changed, 331 insertions(+), 139 deletions(-) create mode 100644 core/src/main/java/com/opensymphony/xwork2/ognl/OgnlCaffeineCache.java
[struts] 01/03: Upgrade Jackson and remove unnecessary transitive override
This is an automated email from the ASF dual-hosted git repository. kusal pushed a commit to branch fix-conflict-deps in repository https://gitbox.apache.org/repos/asf/struts.git commit 39f81575f9c18784d0ae90edb6daed45b6a0fb84 Author: Kusal Kithul-Godage AuthorDate: Sun Oct 15 13:48:23 2023 +1100 Upgrade Jackson and remove unnecessary transitive override --- pom.xml | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index d0a5aed20..7865fb7af 100644 --- a/pom.xml +++ b/pom.xml @@ -110,7 +110,7 @@ 9.5 -2.15.2 +2.15.3 2.20.0 3.3.4 2.0.7 @@ -1102,14 +1102,6 @@ ${jackson.version} - - - -org.codehaus.woodstox -stax2-api -4.2.1 - - org.apache.juneau juneau-marshall
[struts] branch fix-conflict-deps created (now a750917fb)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch fix-conflict-deps in repository https://gitbox.apache.org/repos/asf/struts.git at a750917fb Upgrade ASM and exclude conflicting artifact This branch includes the following new commits: new 39f81575f Upgrade Jackson and remove unnecessary transitive override new 403c3c4a1 Unify HtmlUnit versions new a750917fb Upgrade ASM and exclude conflicting artifact The 3 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.
[struts] 02/03: Unify HtmlUnit versions
This is an automated email from the ASF dual-hosted git repository. kusal pushed a commit to branch fix-conflict-deps in repository https://gitbox.apache.org/repos/asf/struts.git commit 403c3c4a10b270e97090dbb113ff146c3d200855 Author: Kusal Kithul-Godage AuthorDate: Sun Oct 15 23:37:13 2023 +1100 Unify HtmlUnit versions --- apps/rest-showcase/pom.xml | 1 - apps/showcase/pom.xml | 1 - pom.xml| 7 +++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index e891f704d..7c6f16051 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -78,7 +78,6 @@ net.sourceforge.htmlunit htmlunit -2.39.0 test diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 87b524ac1..263c029f8 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -140,7 +140,6 @@ net.sourceforge.htmlunit htmlunit -2.61.0 test diff --git a/pom.xml b/pom.xml index 7865fb7af..e006c2365 100644 --- a/pom.xml +++ b/pom.xml @@ -968,6 +968,13 @@ test + +net.sourceforge.htmlunit +htmlunit +2.70.0 +test + + jmock jmock
[struts] 03/03: Upgrade ASM and exclude conflicting artifact
This is an automated email from the ASF dual-hosted git repository. kusal pushed a commit to branch fix-conflict-deps in repository https://gitbox.apache.org/repos/asf/struts.git commit a750917fb42604bca903983a7d4477bdf39fa2b7 Author: Kusal Kithul-Godage AuthorDate: Sun Oct 15 23:37:36 2023 +1100 Upgrade ASM and exclude conflicting artifact --- plugins/portlet/pom.xml | 9 - pom.xml | 6 +- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 451f7786e..8aed31c0b 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -80,15 +80,6 @@ test - - -asm -asm -3.3.1 -test - - mockobjects mockobjects-core diff --git a/pom.xml b/pom.xml index e006c2365..615d67bd3 100644 --- a/pom.xml +++ b/pom.xml @@ -109,7 +109,7 @@ 1.8 -9.5 +9.6 2.15.3 2.20.0 3.3.4 @@ -765,6 +765,10 @@ commons-logging commons-logging + +asm +asm +
[PR] Fix conflicting dependencies [struts]
kusalk opened a new pull request, #767: URL: https://github.com/apache/struts/pull/767 I'm unable to build the project locally due to `asm:asm` being on the classpath. I've cleaned up some other stuff in the process. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[struts] branch WW-5355-cache-lru updated (d245dc551 -> 4700dca18)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from d245dc551 WW-5355 Introduce new cache type selection methods and deprecate problematic setter injection add 4700dca18 WW-5355 Downgrade Caffeine version No new revisions were added by this update. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Jenkins job Struts/Struts Core/PR-766#2 failed
There is a build failure in Struts/Struts Core/PR-766. Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-766/2/ Logs: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-766/2/console Changes: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-766/2/changes -- Mr. Jenkins Director of Continuous Integration
[struts] branch WW-5355-cache-lru updated (4700dca18 -> 7463e1de1)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from 4700dca18 WW-5355 Downgrade Caffeine version add 7463e1de1 WW-5355 Fix interface and unit test bug No new revisions were added by this update. Summary of changes: .../java/com/opensymphony/xwork2/ognl/OgnlCacheFactory.java | 12 .../test/java/com/opensymphony/xwork2/ognl/OgnlUtilTest.java | 2 +- 2 files changed, 5 insertions(+), 9 deletions(-)
Re: [PR] Fix conflicting dependencies [struts]
kusalk merged PR #767: URL: https://github.com/apache/struts/pull/767 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[struts] branch master updated (67da669f0 -> 43fb80e17)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/struts.git from 67da669f0 Merge pull request #765 from apache/WW-5354-block-params add 39f81575f Upgrade Jackson and remove unnecessary transitive override add 403c3c4a1 Unify HtmlUnit versions add a750917fb Upgrade ASM and exclude conflicting artifact add 43fb80e17 Merge pull request #767 from apache/fix-conflict-deps No new revisions were added by this update. Summary of changes: apps/rest-showcase/pom.xml | 1 - apps/showcase/pom.xml | 1 - plugins/portlet/pom.xml| 9 - pom.xml| 23 +-- 4 files changed, 13 insertions(+), 21 deletions(-)
[struts] branch fix-conflict-deps deleted (was a750917fb)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch fix-conflict-deps in repository https://gitbox.apache.org/repos/asf/struts.git was a750917fb Upgrade ASM and exclude conflicting artifact The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
Jenkins job Struts/Struts Core/master#284 failed
There is a build failure in Struts/Struts Core/master. Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/284/ Logs: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/284/console Changes: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/284/changes -- Mr. Jenkins Director of Continuous Integration
[struts] branch WW-5355-cache-lru updated (7463e1de1 -> 28cc6459b)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from 7463e1de1 WW-5355 Fix interface and unit test bug add 28cc6459b WW-5355 Address code smells No new revisions were added by this update. Summary of changes: .../xwork2/ognl/DefaultOgnlCacheFactory.java | 2 +- .../opensymphony/xwork2/ognl/OgnlCaffeineCache.java| 16 .../com/opensymphony/xwork2/ognl/OgnlDefaultCache.java | 14 +++--- .../com/opensymphony/xwork2/ognl/OgnlLRUCache.java | 18 +- .../main/java/org/apache/struts2/StrutsConstants.java | 1 + 5 files changed, 26 insertions(+), 25 deletions(-)
Jenkins job Struts/Struts Core/PR-766#3 back to normal
The build for Struts/Struts Core/PR-766 completed successfully and is back to normal. Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-766/3/ Logs: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-766/3/console Changes: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-766/3/changes -- Mr. Jenkins Director of Continuous Integration
[struts] branch WW-5355-cache-lru updated (28cc6459b -> 793d38371)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from 28cc6459b WW-5355 Address code smells add 793d38371 WW-5355 Delegate deprecated constructor No new revisions were added by this update. Summary of changes: .../java/com/opensymphony/xwork2/ognl/DefaultOgnlCacheFactory.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
Jenkins job Struts/Struts Core/PR-761#5 failed
There is a build failure in Struts/Struts Core/PR-761. Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/5/ Logs: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/5/console Changes: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/5/changes -- Mr. Jenkins Director of Continuous Integration
[struts] branch WW-5355-cache-lru updated (793d38371 -> 9be23d7a0)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from 793d38371 WW-5355 Delegate deprecated constructor add 9be23d7a0 WW-5355 Extract constants into static final fields No new revisions were added by this update. Summary of changes: .../java/com/opensymphony/xwork2/ognl/DefaultOgnlCacheFactory.java | 5 - 1 file changed, 4 insertions(+), 1 deletion(-)
[struts] branch WW-5355-cache-lru updated (9be23d7a0 -> 3d5beae36)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from 9be23d7a0 WW-5355 Extract constants into static final fields add 3d5beae36 WW-5355 Declare bootstrap constants as final field instead No new revisions were added by this update. Summary of changes: .../xwork2/config/impl/DefaultConfiguration.java | 36 -- .../xwork2/config/impl/MockConfiguration.java | 2 +- .../StrutsDefaultConfigurationProvider.java| 2 +- 3 files changed, 21 insertions(+), 19 deletions(-)
[struts] branch WW-5355-cache-lru updated (3d5beae36 -> f314b455f)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from 3d5beae36 WW-5355 Declare bootstrap constants as final field instead add f314b455f WW-5355 Add since tags to StrutsConstants JavaDoc No new revisions were added by this update. Summary of changes: core/src/main/java/org/apache/struts2/StrutsConstants.java | 2 ++ 1 file changed, 2 insertions(+)
[PR] Bump io.quarkus:quarkus-universe-bom from 3.4.2 to 3.4.3 [struts-examples]
dependabot[bot] opened a new pull request, #271: URL: https://github.com/apache/struts-examples/pull/271 Bumps [io.quarkus:quarkus-universe-bom](https://github.com/quarkusio/quarkus-platform) from 3.4.2 to 3.4.3. Commits https://github.com/quarkusio/quarkus-platform/commit/90f7f8fa5386b8903fab746357497594034cdd98";>90f7f8f [maven-release-plugin] prepare release 3.4.3 https://github.com/quarkusio/quarkus-platform/commit/d1f2f5b97f953f652dc87bcfdc4599bfaf446e67";>d1f2f5b Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1005";>#1005 from gsmet/quarkus-3.4.3 https://github.com/quarkusio/quarkus-platform/commit/4bda8cd0d484d698c970b32b7c2c246bce4c30f5";>4bda8cd Upgrade Quarkus to 3.4.3 https://github.com/quarkusio/quarkus-platform/commit/949309a22d39f48a8d4e4c6d5a2330d625e7dbb5";>949309a [maven-release-plugin] prepare for next development iteration See full diff in https://github.com/quarkusio/quarkus-platform/compare/3.4.2...3.4.3";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[struts-examples] branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.3 created (now b13322e)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.3 in repository https://gitbox.apache.org/repos/asf/struts-examples.git at b13322e Bump io.quarkus:quarkus-universe-bom from 3.4.2 to 3.4.3 No new revisions were added by this update.
[PR] Bump org.springframework:spring-web from 5.3.23 to 6.0.13 [struts-examples]
dependabot[bot] opened a new pull request, #272: URL: https://github.com/apache/struts-examples/pull/272 Bumps [org.springframework:spring-web](https://github.com/spring-projects/spring-framework) from 5.3.23 to 6.0.13. Release notes Sourced from https://github.com/spring-projects/spring-framework/releases";>org.springframework:spring-web's releases. v6.0.13 :star: New Features Improve diagnostics for negative repeated text count in SpEL https://redirect.github.com/spring-projects/spring-framework/issues/31342";>#31342 Improve diagnostics when repeated text size calculation results in overflow in SpEL https://redirect.github.com/spring-projects/spring-framework/issues/31341";>#31341 UnknownContentTypeException is not Serializable https://redirect.github.com/spring-projects/spring-framework/issues/31283";>#31283 Reintroduce FastClass in CGLIB class names for @Configuration classes https://redirect.github.com/spring-projects/spring-framework/issues/31272";>#31272 :lady_beetle: Bug Fixes HibernateJpaDialect and HibernateExceptionTranslator throw SQLExceptionTranslator-provided exception instead of returning it https://redirect.github.com/spring-projects/spring-framework/issues/31409";>#31409 AnnotationScanner scanning leads to StackOverflowError with recursive annotation https://redirect.github.com/spring-projects/spring-framework/issues/31400";>#31400 NamedParameterJdbcTemplate throws unexpected exception for null query https://redirect.github.com/spring-projects/spring-framework/issues/31391";>#31391 HTTP server exchange observations have incorrect UNKNOWN status tag if the client disconnected https://redirect.github.com/spring-projects/spring-framework/issues/31388";>#31388 Breaking change from 6.0.11 to 6.0.12 if you expect query parameters in @RequestBody https://redirect.github.com/spring-projects/spring-framework/issues/31327";>#31327 SpEL's CompoundExpression.toStringAST() omits ? for null-safe navigation https://redirect.github.com/spring-projects/spring-framework/issues/31326";>#31326 ConcurrentLruCache no longer supports capacity = 0 https://redirect.github.com/spring-projects/spring-framework/issues/31317";>#31317 Using R2dbc transactional and non transactional on a database connection pool will fail for Oracle. https://redirect.github.com/spring-projects/spring-framework/issues/31268";>#31268 AOT-generated code no longer set bean class for beans created from a @Bean method https://redirect.github.com/spring-projects/spring-framework/issues/31242";>#31242 CGLIB proxy classes are no longer cached properly https://redirect.github.com/spring-projects/spring-framework/issues/31238";>#31238 Illegal reflective access in ContextOverridingClassLoader.isEligibleForOverriding https://redirect.github.com/spring-projects/spring-framework/issues/31232";>#31232 Fix RuntimeHintsPredicates matching rules for public/declared elements https://redirect.github.com/spring-projects/spring-framework/issues/31224";>#31224 MultipartParser should respect read position https://redirect.github.com/spring-projects/spring-framework/issues/31110";>#31110 WebClient reports 'Host is not specified' for URI with hostname and port, but without scheme https://redirect.github.com/spring-projects/spring-framework/issues/31033";>#31033 R2DBC Connection is closed during transaction when using TransactionAwareConnectionFactoryProxy https://redirect.github.com/spring-projects/spring-framework/issues/28133";>#28133 SpEL cannot evaluate or compile expression with null-safe void method invocation https://redirect.github.com/spring-projects/spring-framework/issues/27421";>#27421 LazyResolutionMessage does not implement proper toString https://redirect.github.com/spring-projects/spring-framework/issues/21265";>#21265 :notebook_with_decorative_cover: Documentation Document Kotlin declaration site variance subtleties https://redirect.github.com/spring-projects/spring-framework/issues/31370";>#31370 Add missing conversionService field in doc example https://redirect.github.com/spring-projects/spring-framework/pull/31330";>#31330 Clarify documentation on Spring Web MVC pattern comparison https://redirect.github.com/spring-projects/spring-framework/issues/31294";>#31294 Improved documentation for MethodParameter#getAnnotatedElement https://redirect.github.com/spring-projects/spring-framework/issues/30397";>#30397 Javadoc for BeanPropertyRowMapper.getColumnValue(ResultSet, int, Class) is inconsistent with code https://redirect.github.com/spring-projects/spring-framework/issues/29285";>#29285 Referencing a @Bean method in a @Configuration class' @PostConstruct method leads to circular reference https://redirect.github.com/spring-projects/spring-framework/issues/27876";>#27876 Incorrect reference information about CGLIB supported method visibility https://redirect.github.com/spring-projects/spr
[struts-examples] branch dependabot/maven/org.springframework-spring-web-6.0.13 created (now cfc6ac4)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.springframework-spring-web-6.0.13 in repository https://gitbox.apache.org/repos/asf/struts-examples.git at cfc6ac4 Bump org.springframework:spring-web from 5.3.23 to 6.0.13 No new revisions were added by this update.
Re: [PR] Bump org.springframework:spring-web from 5.3.23 to 6.0.12 [struts-examples]
dependabot[bot] closed pull request #263: Bump org.springframework:spring-web from 5.3.23 to 6.0.12 URL: https://github.com/apache/struts-examples/pull/263 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[struts-examples] branch dependabot/maven/org.springframework-spring-web-6.0.12 deleted (was 5f1d8b0)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.springframework-spring-web-6.0.12 in repository https://gitbox.apache.org/repos/asf/struts-examples.git was 5f1d8b0 Bump org.springframework:spring-web from 5.3.23 to 6.0.12 The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
[struts] branch dependabot/maven/spring.platformVersion-6.0.13 created (now c820b5ddf)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/spring.platformVersion-6.0.13 in repository https://gitbox.apache.org/repos/asf/struts.git at c820b5ddf Bump spring.platformVersion from 5.3.27 to 6.0.13 No new revisions were added by this update.
[struts] branch dependabot/maven/org.codehaus.mojo-versions-maven-plugin-2.16.1 created (now fb710f9ca)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.codehaus.mojo-versions-maven-plugin-2.16.1 in repository https://gitbox.apache.org/repos/asf/struts.git at fb710f9ca Bump org.codehaus.mojo:versions-maven-plugin from 2.7 to 2.16.1 No new revisions were added by this update.
[PR] Bump org.codehaus.mojo:versions-maven-plugin from 2.7 to 2.16.1 [struts]
dependabot[bot] opened a new pull request, #768: URL: https://github.com/apache/struts/pull/768 Bumps [org.codehaus.mojo:versions-maven-plugin](https://github.com/mojohaus/versions) from 2.7 to 2.16.1. Release notes Sourced from https://github.com/mojohaus/versions/releases";>org.codehaus.mojo:versions-maven-plugin's releases. 2.16.1 Changes 🐛 Bug Fixes Resolves https://redirect.github.com/mojohaus/versions/issues/978";>#978 - use-releases does not update parent (https://redirect.github.com/mojohaus/versions/pull/1007";>#1007) https://github.com/ajarmoniuk";>@ajarmoniuk Correct message if the latest version of parent is used for update-parent (https://redirect.github.com/mojohaus/versions/pull/1000";>#1000) https://github.com/slawekjaranowski";>@slawekjaranowski Resolves https://redirect.github.com/mojohaus/versions/issues/995";>#995: Minimum version required for Versions Maven Plugin should is not the minimum version for the project (https://redirect.github.com/mojohaus/versions/pull/996";>#996) https://github.com/ajarmoniuk";>@ajarmoniuk Resolves https://redirect.github.com/mojohaus/versions/issues/990";>#990: Check prerequisites if required enforcer Maven version is empty (https://redirect.github.com/mojohaus/versions/pull/994";>#994) https://github.com/ajarmoniuk";>@ajarmoniuk Fix links for XSD in report models (https://redirect.github.com/mojohaus/versions/pull/992";>#992) https://github.com/slawekjaranowski";>@slawekjaranowski Use versions of dummy artifacts in IT assertions (https://redirect.github.com/mojohaus/versions/pull/988";>#988) https://github.com/slawekjaranowski";>@slawekjaranowski Resolves https://redirect.github.com/mojohaus/versions/issues/973";>#973: NPE if actual version is null for a dependency (https://redirect.github.com/mojohaus/versions/pull/974";>#974) https://github.com/ajarmoniuk";>@ajarmoniuk 📦 Dependency updates Bump org.springframework:spring-framework-bom from 3.2.17.RELEASE to 4.3.30.RELEASE in /versions-maven-plugin/src/it/it-property-updates-report-002-slow (https://redirect.github.com/mojohaus/versions/pull/999";>#999) https://github.com/dependabot";>@dependabot Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.13.0 (https://redirect.github.com/mojohaus/versions/pull/993";>#993) https://github.com/dependabot";>@dependabot Bump org.codehaus.plexus:plexus-archiver from 4.7.1 to 4.8.0 (https://redirect.github.com/mojohaus/versions/pull/989";>#989) https://github.com/dependabot";>@dependabot Bump org.junit:junit-bom from 5.9.3 to 5.10.0 (https://redirect.github.com/mojohaus/versions/pull/987";>#987) https://github.com/dependabot";>@dependabot Bump mojo-parent from 75 to 76 (https://redirect.github.com/mojohaus/versions/pull/986";>#986) https://github.com/dependabot";>@dependabot Bump commons-codec from 1.15 to 1.16.0 (https://redirect.github.com/mojohaus/versions/pull/977";>#977) https://github.com/dependabot";>@dependabot Bump commons-io from 2.12.0 to 2.13.0 (https://redirect.github.com/mojohaus/versions/pull/972";>#972) https://github.com/dependabot";>@dependabot 👻 Maintenance Cleanup pluginManagement from mock artifacts (https://redirect.github.com/mojohaus/versions/pull/1008";>#1008) https://github.com/slawekjaranowski";>@slawekjaranowski https://redirect.github.com/mojohaus/versions/issues/1001";>#1001: added a test case for the issue (https://redirect.github.com/mojohaus/versions/pull/1003";>#1003) https://github.com/ajarmoniuk";>@ajarmoniuk 2.16.0 Changes 🚀 New features and improvements Use update policy DAILY instead of NEVER for remote repositories (https://redirect.github.com/mojohaus/versions/pull/957";>#957) https://github.com/slawekjaranowski";>@slawekjaranowski Issue https://redirect.github.com/mojohaus/versions/issues/74";>#74: Add display-extension-updates (https://redirect.github.com/mojohaus/versions/pull/908";>#908) https://github.com/ajarmoniuk";>@ajarmoniuk 🐛 Bug Fixes Resolves: display-dependency-updates only shows updates from the most major allowed segment (https://redirect.github.com/mojohaus/versions/pull/966";>#966) https://github.com/ajarmoniuk";>@ajarmoniuk Resolves https://redirect.github.com/mojohaus/versions/issues/931";>#931: Fixing problems with encoding in UseDepVersion and PomHelper (https://redirect.github.com/mojohaus/versions/pull/932";>#932) https://github.com/ajarmoniuk";>@ajarmoniuk Resolves https://redirect.github.com/mojohaus/versions/issues/916";>#916: Partially reverted https://redirect.github.com/mojohaus/versions/issues/799";>#799. (https://redirect.github.com/mojohaus/versions/pull/924";>#924) https://github.com/ajarmoniuk";>@ajarmoniuk Resolves https://redirect.github.com/mojohaus/versions/issues/954";>#954: Excluded plexus-container-default (https://redirect.github.com/mojohaus/versions/pull/955";>#955) https://github.com/ajarmoniuk"
[PR] Bump spring.platformVersion from 5.3.27 to 6.0.13 [struts]
dependabot[bot] opened a new pull request, #769: URL: https://github.com/apache/struts/pull/769 Bumps `spring.platformVersion` from 5.3.27 to 6.0.13. Updates `org.springframework:spring-core` from 5.3.27 to 6.0.13 Release notes Sourced from https://github.com/spring-projects/spring-framework/releases";>org.springframework:spring-core's releases. v6.0.13 :star: New Features Improve diagnostics for negative repeated text count in SpEL https://redirect.github.com/spring-projects/spring-framework/issues/31342";>#31342 Improve diagnostics when repeated text size calculation results in overflow in SpEL https://redirect.github.com/spring-projects/spring-framework/issues/31341";>#31341 UnknownContentTypeException is not Serializable https://redirect.github.com/spring-projects/spring-framework/issues/31283";>#31283 Reintroduce FastClass in CGLIB class names for @Configuration classes https://redirect.github.com/spring-projects/spring-framework/issues/31272";>#31272 :lady_beetle: Bug Fixes HibernateJpaDialect and HibernateExceptionTranslator throw SQLExceptionTranslator-provided exception instead of returning it https://redirect.github.com/spring-projects/spring-framework/issues/31409";>#31409 AnnotationScanner scanning leads to StackOverflowError with recursive annotation https://redirect.github.com/spring-projects/spring-framework/issues/31400";>#31400 NamedParameterJdbcTemplate throws unexpected exception for null query https://redirect.github.com/spring-projects/spring-framework/issues/31391";>#31391 HTTP server exchange observations have incorrect UNKNOWN status tag if the client disconnected https://redirect.github.com/spring-projects/spring-framework/issues/31388";>#31388 Breaking change from 6.0.11 to 6.0.12 if you expect query parameters in @RequestBody https://redirect.github.com/spring-projects/spring-framework/issues/31327";>#31327 SpEL's CompoundExpression.toStringAST() omits ? for null-safe navigation https://redirect.github.com/spring-projects/spring-framework/issues/31326";>#31326 ConcurrentLruCache no longer supports capacity = 0 https://redirect.github.com/spring-projects/spring-framework/issues/31317";>#31317 Using R2dbc transactional and non transactional on a database connection pool will fail for Oracle. https://redirect.github.com/spring-projects/spring-framework/issues/31268";>#31268 AOT-generated code no longer set bean class for beans created from a @Bean method https://redirect.github.com/spring-projects/spring-framework/issues/31242";>#31242 CGLIB proxy classes are no longer cached properly https://redirect.github.com/spring-projects/spring-framework/issues/31238";>#31238 Illegal reflective access in ContextOverridingClassLoader.isEligibleForOverriding https://redirect.github.com/spring-projects/spring-framework/issues/31232";>#31232 Fix RuntimeHintsPredicates matching rules for public/declared elements https://redirect.github.com/spring-projects/spring-framework/issues/31224";>#31224 MultipartParser should respect read position https://redirect.github.com/spring-projects/spring-framework/issues/31110";>#31110 WebClient reports 'Host is not specified' for URI with hostname and port, but without scheme https://redirect.github.com/spring-projects/spring-framework/issues/31033";>#31033 R2DBC Connection is closed during transaction when using TransactionAwareConnectionFactoryProxy https://redirect.github.com/spring-projects/spring-framework/issues/28133";>#28133 SpEL cannot evaluate or compile expression with null-safe void method invocation https://redirect.github.com/spring-projects/spring-framework/issues/27421";>#27421 LazyResolutionMessage does not implement proper toString https://redirect.github.com/spring-projects/spring-framework/issues/21265";>#21265 :notebook_with_decorative_cover: Documentation Document Kotlin declaration site variance subtleties https://redirect.github.com/spring-projects/spring-framework/issues/31370";>#31370 Add missing conversionService field in doc example https://redirect.github.com/spring-projects/spring-framework/pull/31330";>#31330 Clarify documentation on Spring Web MVC pattern comparison https://redirect.github.com/spring-projects/spring-framework/issues/31294";>#31294 Improved documentation for MethodParameter#getAnnotatedElement https://redirect.github.com/spring-projects/spring-framework/issues/30397";>#30397 Javadoc for BeanPropertyRowMapper.getColumnValue(ResultSet, int, Class) is inconsistent with code https://redirect.github.com/spring-projects/spring-framework/issues/29285";>#29285 Referencing a @Bean method in a @Configuration class' @PostConstruct method leads to circular reference https://redirect.github.com/spring-projects/spring-framework/issues/27876";>#27876 Incorrect reference information about CGLIB supported method visibility https://redirect.github.com/spring-projects/spring-
Jenkins job Struts/Struts Core/PR-769#1 failed
There is a build failure in Struts/Struts Core/PR-769. Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-769/1/ Logs: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-769/1/console Changes: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-769/1/changes -- Mr. Jenkins Director of Continuous Integration
Re: [PR] Bump io.quarkus:quarkus-universe-bom from 3.4.2 to 3.4.3 [struts-examples]
github-actions[bot] merged PR #271: URL: https://github.com/apache/struts-examples/pull/271 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[struts-examples] branch master updated (675c50d -> 62e3bf6)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/struts-examples.git from 675c50d Merge pull request #270 from apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.2 add b13322e Bump io.quarkus:quarkus-universe-bom from 3.4.2 to 3.4.3 add 62e3bf6 Merge pull request #271 from apache/dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.3 No new revisions were added by this update. Summary of changes: quarkus/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[struts-examples] branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.3 deleted (was b13322e)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.4.3 in repository https://gitbox.apache.org/repos/asf/struts-examples.git was b13322e Bump io.quarkus:quarkus-universe-bom from 3.4.2 to 3.4.3 The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
[struts] branch WW-5355-cache-lru updated (f314b455f -> 9dbea66f9)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5355-cache-lru in repository https://gitbox.apache.org/repos/asf/struts.git from f314b455f WW-5355 Add since tags to StrutsConstants JavaDoc add 9dbea66f9 WW-5355 Amend Caffeine cache implementation No new revisions were added by this update. Summary of changes: .../java/com/opensymphony/xwork2/ognl/OgnlCaffeineCache.java | 12 .../src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java | 4 ++-- 2 files changed, 6 insertions(+), 10 deletions(-)
Re: [PR] Bump org.codehaus.mojo:versions-maven-plugin from 2.7 to 2.16.1 [struts]
lukaszlenart merged PR #768: URL: https://github.com/apache/struts/pull/768 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[struts] branch master updated (43fb80e17 -> 84c1b1d0e)
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/struts.git from 43fb80e17 Merge pull request #767 from apache/fix-conflict-deps add fb710f9ca Bump org.codehaus.mojo:versions-maven-plugin from 2.7 to 2.16.1 add 84c1b1d0e Merge pull request #768 from apache/dependabot/maven/org.codehaus.mojo-versions-maven-plugin-2.16.1 No new revisions were added by this update. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[struts] branch dependabot/maven/org.codehaus.mojo-versions-maven-plugin-2.16.1 deleted (was fb710f9ca)
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch dependabot/maven/org.codehaus.mojo-versions-maven-plugin-2.16.1 in repository https://gitbox.apache.org/repos/asf/struts.git was fb710f9ca Bump org.codehaus.mojo:versions-maven-plugin from 2.7 to 2.16.1 The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
Jenkins job Struts/Struts Core/master#285 failed
There is a build failure in Struts/Struts Core/master. Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/285/ Logs: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/285/console Changes: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/master/285/changes -- Mr. Jenkins Director of Continuous Integration
Re: [PR] Bump spring.platformVersion from 5.3.27 to 6.0.13 [struts]
lukaszlenart closed pull request #769: Bump spring.platformVersion from 5.3.27 to 6.0.13 URL: https://github.com/apache/struts/pull/769 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@struts.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[struts] branch dependabot/maven/spring.platformVersion-6.0.13 deleted (was c820b5ddf)
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch dependabot/maven/spring.platformVersion-6.0.13 in repository https://gitbox.apache.org/repos/asf/struts.git was c820b5ddf Bump spring.platformVersion from 5.3.27 to 6.0.13 The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
Jenkins job Struts/Struts Core/PR-717#33 failed
There is a build failure in Struts/Struts Core/PR-717. Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-717/33/ Logs: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-717/33/console Changes: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-717/33/changes -- Mr. Jenkins Director of Continuous Integration
Jenkins job Struts/Struts Core/PR-761#6 failed
There is a build failure in Struts/Struts Core/PR-761. Build: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/6/ Logs: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/6/console Changes: https://ci-builds.apache.org/job/Struts/job/Struts%20Core/job/PR-761/6/changes -- Mr. Jenkins Director of Continuous Integration