(struts) branch master updated (d1bdc83f1 -> a60842af7)

2023-11-26 Thread kusal
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 d1bdc83f1 Merge pull request #796 from 
apache/dependabot/maven/jackson.version-2.16.0
 add 79ffc86b6 WW-5343 Delete unused code and consolidate constructors
 add 082532995 WW-5343 Extract ConfigParseUtil
 add b0b80bac7 WW-5343 Extract deprecated methods as default interface 
methods
 add 9e556e9ed WW-5343 Deprecate unnecessary setter
 add 90344b381 WW-5343 Make SecurityMemberAccess a prototype bean
 add 7e92a8d7b WW-5343 Refactor OgnlValueStackFactory to utilise 
SecurityMemberAccess bean
 add b518635e2 WW-5343 Update OgnlUtil#createDefaultContext to utilise 
SecurityMemberAccess bean
 add 4490d9d77 WW-5343 Move configuration injection from OgnlUtil to 
SecurityMemberAccess
 add 8bf47b367 WW-5343 Fix OgnlUtilTest#testBeanMapExpressions
 add 62988f783 WW-5343 Fix unit test compilation errors
 add ceff6cde0 WW-5343 Remove unnecessary method
 add f87d7d734 WW-5343 Add missing license
 add a402e5c80 WW-5343 Revert and fix serializability
 add d0d10d938 WW-5343 Fix MemberAccess access blocked tests
 add 68f5584d9 WW-5343 Remove defunct test now that constant is required
 add 05a99733f Merge branch 'master' into WW-5343-sec-extend
 add 9640f5bde WW-5343 Migrate tests to SecurityMemberAccessTest
 add eba79a784 WW-5343 Fix final test
 add 85d2c742c WW-5343 Clean up bootstrap constants
 add 7929d8634 WW-5343 Address SonarCloud code smells
 add a60842af7 Merge pull request #791 from apache/WW-5343-sec-extend

No new revisions were added by this update.

Summary of changes:
 .../xwork2/config/impl/DefaultConfiguration.java   |   7 +-
 .../xwork2/config/impl/MockConfiguration.java  |   2 -
 .../StrutsDefaultConfigurationProvider.java|   6 +-
 .../com/opensymphony/xwork2/ognl/OgnlUtil.java | 225 ++---
 .../opensymphony/xwork2/ognl/OgnlValueStack.java   | 109 +---
 .../xwork2/ognl/OgnlValueStackFactory.java |  23 +-
 .../xwork2/ognl/SecurityMemberAccess.java  | 130 --
 .../opensymphony/xwork2/util/ConfigParseUtil.java  |  98 
 .../xwork2/util/MemberAccessValueStack.java|   8 +-
 .../xwork2/util/location/LocationImpl.java |  40 +--
 .../java/org/apache/struts2/StrutsConstants.java   |   2 +
 .../config/StrutsBeanSelectionProvider.java|   2 +
 .../org/apache/struts2/default.properties  |   7 -
 core/src/main/resources/struts-beans.xml   |   3 +-
 .../xwork2/ognl/OgnlUtilStrutsTest.java|  27 --
 .../com/opensymphony/xwork2/ognl/OgnlUtilTest.java | 279 ++---
 .../xwork2/ognl/OgnlValueStackTest.java|  73 ++
 .../xwork2/ognl/SecurityMemberAccessTest.java  | 250 ++
 .../util/SecurityMemberAccessInServletsTest.java   |  11 +-
 .../xwork2/ognl/SecurityMemberAccessProxyTest.java |   2 +-
 .../com/test/SecurityMemberAccessProxyTest.java|  49 +---
 21 files changed, 528 insertions(+), 825 deletions(-)
 create mode 100644 
core/src/main/java/com/opensymphony/xwork2/util/ConfigParseUtil.java



(struts) branch WW-5343-sec-extend deleted (was 7929d8634)

2023-11-26 Thread kusal
This is an automated email from the ASF dual-hosted git repository.

kusal pushed a change to branch WW-5343-sec-extend
in repository https://gitbox.apache.org/repos/asf/struts.git


 was 7929d8634 WW-5343 Address SonarCloud code smells

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) 01/02: WW-5343 Collect bootstrap factories

2023-11-26 Thread kusal
This is an automated email from the ASF dual-hosted git repository.

kusal pushed a commit to branch WW-5364-populate-allowlist
in repository https://gitbox.apache.org/repos/asf/struts.git

commit d030532d613ae694fcc03fae3a5577bedd039b27
Author: Kusal Kithul-Godage 
AuthorDate: Sun Nov 26 22:03:34 2023 +1100

WW-5343 Collect bootstrap factories
---
 .../xwork2/config/impl/DefaultConfiguration.java   | 101 ++--
 .../StrutsDefaultConfigurationProvider.java| 169 +
 2 files changed, 98 insertions(+), 172 deletions(-)

diff --git 
a/core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java
 
b/core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java
index bca7b515b..2d2a4a2b1 100644
--- 
a/core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java
+++ 
b/core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java
@@ -68,10 +68,12 @@ import com.opensymphony.xwork2.factory.DefaultActionFactory;
 import com.opensymphony.xwork2.factory.DefaultInterceptorFactory;
 import com.opensymphony.xwork2.factory.DefaultResultFactory;
 import com.opensymphony.xwork2.factory.DefaultUnknownHandlerFactory;
+import com.opensymphony.xwork2.factory.DefaultValidatorFactory;
 import com.opensymphony.xwork2.factory.InterceptorFactory;
 import com.opensymphony.xwork2.factory.ResultFactory;
 import com.opensymphony.xwork2.factory.StrutsConverterFactory;
 import com.opensymphony.xwork2.factory.UnknownHandlerFactory;
+import com.opensymphony.xwork2.factory.ValidatorFactory;
 import com.opensymphony.xwork2.inject.Container;
 import com.opensymphony.xwork2.inject.ContainerBuilder;
 import com.opensymphony.xwork2.inject.Context;
@@ -342,53 +344,13 @@ public class DefaultConfiguration implements 
Configuration {
 fmFactoryRegistered = true;
 }
 }
-builder.factory(ObjectFactory.class, Scope.SINGLETON);
-builder.factory(ActionFactory.class, DefaultActionFactory.class, 
Scope.SINGLETON);
-builder.factory(ResultFactory.class, DefaultResultFactory.class, 
Scope.SINGLETON);
-builder.factory(InterceptorFactory.class, 
DefaultInterceptorFactory.class, Scope.SINGLETON);
-
builder.factory(com.opensymphony.xwork2.factory.ValidatorFactory.class, 
com.opensymphony.xwork2.factory.DefaultValidatorFactory.class, Scope.SINGLETON);
-builder.factory(ConverterFactory.class, StrutsConverterFactory.class, 
Scope.SINGLETON);
-builder.factory(UnknownHandlerFactory.class, 
DefaultUnknownHandlerFactory.class, Scope.SINGLETON);
-
-builder.factory(FileManager.class, "system", DefaultFileManager.class, 
Scope.SINGLETON);
+
+bootstrapFactories(builder);
+bootstrapTypeConverters(builder);
+
 if (!fmFactoryRegistered) {
 builder.factory(FileManagerFactory.class, 
DefaultFileManagerFactory.class, Scope.SINGLETON);
 }
-builder.factory(ReflectionProvider.class, 
OgnlReflectionProvider.class, Scope.SINGLETON);
-builder.factory(ValueStackFactory.class, OgnlValueStackFactory.class, 
Scope.SINGLETON);
-
-builder.factory(XWorkConverter.class, Scope.SINGLETON);
-builder.factory(ConversionPropertiesProcessor.class, 
StrutsConversionPropertiesProcessor.class, Scope.SINGLETON);
-builder.factory(ConversionFileProcessor.class, 
DefaultConversionFileProcessor.class, Scope.SINGLETON);
-builder.factory(ConversionAnnotationProcessor.class, 
DefaultConversionAnnotationProcessor.class, Scope.SINGLETON);
-builder.factory(TypeConverterCreator.class, 
StrutsTypeConverterCreator.class, Scope.SINGLETON);
-builder.factory(TypeConverterHolder.class, 
StrutsTypeConverterHolder.class, Scope.SINGLETON);
-
-builder.factory(XWorkBasicConverter.class, Scope.SINGLETON);
-builder.factory(TypeConverter.class, 
StrutsConstants.STRUTS_CONVERTER_COLLECTION,  CollectionConverter.class, 
Scope.SINGLETON);
-builder.factory(TypeConverter.class, 
StrutsConstants.STRUTS_CONVERTER_ARRAY, ArrayConverter.class, Scope.SINGLETON);
-builder.factory(TypeConverter.class, 
StrutsConstants.STRUTS_CONVERTER_DATE, DateConverter.class, Scope.SINGLETON);
-builder.factory(TypeConverter.class, 
StrutsConstants.STRUTS_CONVERTER_NUMBER,  NumberConverter.class, 
Scope.SINGLETON);
-builder.factory(TypeConverter.class, 
StrutsConstants.STRUTS_CONVERTER_STRING, StringConverter.class, 
Scope.SINGLETON);
-
-builder.factory(TextProvider.class, "system", 
DefaultTextProvider.class, Scope.SINGLETON);
-
-builder.factory(LocalizedTextProvider.class, 
StrutsLocalizedTextProvider.class, Scope.SINGLETON);
-builder.factory(TextProviderFactory.class, 
StrutsTextProviderFactory.class, Scope.SINGLETON);
-builder.factory(LocaleProviderFactory.class, 
DefaultLocaleProviderFactory.class, Scope.SINGLETON);
-
-builder.factory(TextParser.clas

(struts) 02/02: Merge branch 'master' into WW-5364-populate-allowlist

2023-11-26 Thread kusal
This is an automated email from the ASF dual-hosted git repository.

kusal pushed a commit to branch WW-5364-populate-allowlist
in repository https://gitbox.apache.org/repos/asf/struts.git

commit 9aff37a83b8beb7dffc22a5e67c43b57cd4187db
Merge: d030532d6 a60842af7
Author: Kusal Kithul-Godage 
AuthorDate: Sun Nov 26 23:46:44 2023 +1100

Merge branch 'master' into WW-5364-populate-allowlist

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(struts) branch WW-5364-populate-allowlist updated (0566a207f -> 9aff37a83)

2023-11-26 Thread kusal
This is an automated email from the ASF dual-hosted git repository.

kusal pushed a change to branch WW-5364-populate-allowlist
in repository https://gitbox.apache.org/repos/asf/struts.git


from 0566a207f Merge branch 'WW-5343-sec-extend' into 
WW-5364-populate-allowlist
 new d030532d6 WW-5343 Collect bootstrap factories
 add 3674d49ab Bump jackson.version from 2.15.3 to 2.16.0
 add d1bdc83f1 Merge pull request #796 from 
apache/dependabot/maven/jackson.version-2.16.0
 add a60842af7 Merge pull request #791 from apache/WW-5343-sec-extend
 new 9aff37a83 Merge branch 'master' into WW-5364-populate-allowlist

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


Summary of changes:
 .../xwork2/config/impl/DefaultConfiguration.java   | 101 ++--
 .../StrutsDefaultConfigurationProvider.java| 169 +
 pom.xml|   2 +-
 3 files changed, 99 insertions(+), 173 deletions(-)



(struts-site) 01/01: Uses the new notifications@ list to inform about PR specific statuses

2023-11-26 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch feature/notifications-list
in repository https://gitbox.apache.org/repos/asf/struts-site.git

commit 0d824904ffc506d58c4c9ad69d0d1ba4746d25ca
Author: Lukasz Lenart 
AuthorDate: Sun Nov 26 17:21:34 2023 +0100

Uses the new notifications@ list to inform about PR specific statuses
---
 .asf.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 4d26e0d02..13633f138 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -4,9 +4,9 @@ notifications:
   # Send all issue emails (new, closed, comments) to issues@
   issues: iss...@struts.apache.org
   # Send new/closed PR notifications to commits@
-  pullrequests_status: commits@struts.apache.org
+  pullrequests_status: notificati...@struts.apache.org
   # Send individual PR comments/reviews to issues@
-  pullrequests_comment: iss...@struts.apache.org
+  pullrequests_comment: notificati...@struts.apache.org
   # Link opened PRs with JIRA
   jira_options: link label worklog
 



(struts-site) branch feature/notifications-list created (now 0d824904f)

2023-11-26 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch feature/notifications-list
in repository https://gitbox.apache.org/repos/asf/struts-site.git


  at 0d824904f Uses the new notifications@ list to inform about PR specific 
statuses

This branch includes the following new commits:

 new 0d824904f Uses the new notifications@ list to inform about PR specific 
statuses

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) branch asf-staging updated: Updates stage by Jenkins

2023-11-26 Thread git-site-role
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 fc029c728 Updates stage by Jenkins
fc029c728 is described below

commit fc029c7281ccab13fbb8afe19115e5025cf33cc5
Author: jenkins 
AuthorDate: Sun Nov 26 16:28:50 2023 +

Updates stage by Jenkins
---
 content/core-developers/default-properties.html | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/content/core-developers/default-properties.html 
b/content/core-developers/default-properties.html
index b05405508..82e08be14 100644
--- a/content/core-developers/default-properties.html
+++ b/content/core-developers/default-properties.html
@@ -382,9 +382,6 @@ struts.mapper.alwaysSelectFullNamespace=false
 ### Whether to allow static field access in OGNL expressions or not
 struts.ognl.allowStaticFieldAccess=true
 
-### Whether to allow static method access in OGNL expressions or not
-struts.ognl.allowStaticMethodAccess=false
-
 ### Whether to throw a RuntimeException when a property is not found
 ### in an expression, or when the expression evaluation fails
 struts.el.throwExceptionOnFailure=false
@@ -392,10 +389,6 @@ struts.el.throwExceptionOnFailure=false
 ### Logs as Warnings properties that are not found (very verbose)
 struts.ognl.logMissingProperties=false
 
-### Caches parsed OGNL expressions, but can lead to memory leaks
-### if the application generates a lot of different expressions
-struts.ognl.enableExpressionCache=true
-
 ### Specify the OGNL expression cache factory and BeanInfo cache factory to 
use.
 ### Currently, the default implementations are used, but can be replaced with 
custom ones if desired.
 # struts.ognl.expressionCacheFactory=customOgnlExpressionCacheFactory



[PR] Bump org.springframework:spring-web from 5.3.23 to 6.1.1 [struts-examples]

2023-11-26 Thread via GitHub


dependabot[bot] opened a new pull request, #288:
URL: https://github.com/apache/struts-examples/pull/288

   Bumps 
[org.springframework:spring-web](https://github.com/spring-projects/spring-framework)
 from 5.3.23 to 6.1.1.
   
   Release notes
   Sourced from https://github.com/spring-projects/spring-framework/releases";>org.springframework:spring-web's
 releases.
   
   v6.1.1
   :star: New Features
   
   Skip buffer allocation in StreamUtils.copy(String) https://redirect.github.com/spring-projects/spring-framework/pull/31621";>#31621
   Caching and Event Listening support do not reuse internal delegates for 
their evaluation contexts https://redirect.github.com/spring-projects/spring-framework/issues/31617";>#31617
   Java 17: resource.isReadable() with concurrency leaks large amounts of 
non-heap memory https://redirect.github.com/spring-projects/spring-framework/issues/30955";>#30955
   
   :lady_beetle: Bug Fixes
   
   Spring MVC: Unexpected bytes added to the HTTP response for kotlin.Unit 
return type in controller methods https://redirect.github.com/spring-projects/spring-framework/issues/31648";>#31648
   Spring Data Redis Cache implementation is not compatible with 
Cache.retrieve(key) semantics https://redirect.github.com/spring-projects/spring-framework/issues/31637";>#31637
   GeneratedFiles#addSourceFile should not allow to add a source in the 
default package https://redirect.github.com/spring-projects/spring-framework/issues/31628";>#31628
    no longer works with a 
business-interface attribute https://redirect.github.com/spring-projects/spring-framework/issues/31627";>#31627
   Non-blocking @Cacheable method does not support condition 
with #result https://redirect.github.com/spring-projects/spring-framework/issues/31626";>#31626
   PathResourceResolver.getResource() does not log warning if 
Resource#getURL() throws exception https://redirect.github.com/spring-projects/spring-framework/issues/31623";>#31623
   Jackson encoder releases resources in wrong order https://redirect.github.com/spring-projects/spring-framework/issues/30493";>#30493
   WebSocketMessageBrokerStats has null stats for stompSubProtocolHandler 
since 5.3.2 https://redirect.github.com/spring-projects/spring-framework/issues/26536";>#26536
   
   :notebook_with_decorative_cover: Documentation
   
   Fix links related to Spring WebFlux https://redirect.github.com/spring-projects/spring-framework/pull/31632";>#31632
   Extract recurring asciidoc links to attributes https://redirect.github.com/spring-projects/spring-framework/pull/31619";>#31619
   Improve STOMP WebSocket documentation for input message buffer size https://redirect.github.com/spring-projects/spring-framework/issues/31616";>#31616
   Document support for AppCDS https://redirect.github.com/spring-projects/spring-framework/issues/31497";>#31497
   
   :heart: Contributors
   Thank you to all the contributors who worked on this release:
   https://github.com/7fantasy7";>@​7fantasy7, https://github.com/Star-ho";>@​Star-ho, and https://github.com/quaff";>@​quaff
   v6.1.0
   :star: New Features
   
   When using Oracle, JdbcClient.update(KeyHolder) does not 
work without explicit key column names https://redirect.github.com/spring-projects/spring-framework/issues/31607";>#31607
   Introduce way to convert ClientHttpResponse to desired type https://redirect.github.com/spring-projects/spring-framework/issues/31597";>#31597
   Property-driven onRefresh exit for AppCDS purpose https://redirect.github.com/spring-projects/spring-framework/issues/31595";>#31595
   No Micrometer traceId in JMS listener container errorHandler https://redirect.github.com/spring-projects/spring-framework/issues/31559";>#31559
   Register Hibernate @EmbeddableInstantiators registered on 
JPA embeddables for reflection https://redirect.github.com/spring-projects/spring-framework/issues/31534";>#31534
   Improve method validation support for errors on elements within a 
container https://redirect.github.com/spring-projects/spring-framework/pull/31530";>#31530
   Support pattern matching for method names in 
ControlFlowPointcut https://redirect.github.com/spring-projects/spring-framework/issues/31435";>#31435
   Review reachability metadata contributions after GraalVM changes https://redirect.github.com/spring-projects/spring-framework/issues/31213";>#31213
   handleEmptyBody of RequestBodyAdvice should apply also when content-type 
is not set https://redirect.github.com/spring-projects/spring-framework/issues/30522";>#30522
   
   :lady_beetle: Bug Fixes
   
   Regression with @EnableJpaAuditing using Spring Boot 
3.2-RC2 in native image https://redirect.github.com/spring-projects/spring-framework/issues/31575";>#31575
   Retrieving the response body as a List of POJOs fails with 
RestClient but passes with WebTestClient https://redirect.github.com/spring-projects/spring-framework/issues/31574";>#31574
   ExecutorLifecycleDelegate should call 
ExecutorService.isTerminated(

(struts-examples) branch dependabot/maven/org.springframework-spring-web-6.1.1 created (now 00d7958)

2023-11-26 Thread github-bot
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.1.1
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


  at 00d7958  Bump org.springframework:spring-web from 5.3.23 to 6.1.1

No new revisions were added by this update.



(struts-examples) branch dependabot/maven/org.springframework-spring-web-6.1.0 deleted (was 1b33641)

2023-11-26 Thread github-bot
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.1.0
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 1b33641  Bump org.springframework:spring-web from 5.3.23 to 6.1.0

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-examples) branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.5.3 created (now c7b726a)

2023-11-26 Thread github-bot
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.5.3
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


  at c7b726a  Bump io.quarkus:quarkus-universe-bom from 3.5.0 to 3.5.3

No new revisions were added by this update.



(struts-examples) branch dependabot/maven/io.quarkus-quarkus-universe-bom-3.5.2 deleted (was 2129b0a)

2023-11-26 Thread github-bot
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.5.2
in repository https://gitbox.apache.org/repos/asf/struts-examples.git


 was 2129b0a  Bump io.quarkus:quarkus-universe-bom from 3.5.0 to 3.5.2

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



Re: [PR] Bump org.springframework:spring-web from 5.3.23 to 6.1.0 [struts-examples]

2023-11-26 Thread via GitHub


dependabot[bot] closed pull request #286: Bump org.springframework:spring-web 
from 5.3.23 to 6.1.0
URL: https://github.com/apache/struts-examples/pull/286


-- 
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



[PR] Bump io.quarkus:quarkus-universe-bom from 3.5.0 to 3.5.3 [struts-examples]

2023-11-26 Thread via GitHub


dependabot[bot] opened a new pull request, #289:
URL: https://github.com/apache/struts-examples/pull/289

   Bumps 
[io.quarkus:quarkus-universe-bom](https://github.com/quarkusio/quarkus-platform)
 from 3.5.0 to 3.5.3.
   
   Commits
   
   https://github.com/quarkusio/quarkus-platform/commit/ca9fee0e35e0ffca956e59a6b31a45bbf52abb73";>ca9fee0
 [maven-release-plugin] prepare release 3.5.3
   https://github.com/quarkusio/quarkus-platform/commit/e3a0d0a5f978a6adc2fdeadf3bccd4c2e372341c";>e3a0d0a
 Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1036";>#1036
 from gsmet/quarkus-3.5.3
   https://github.com/quarkusio/quarkus-platform/commit/da5388ba000380ce3bfa450a11945a0d86d3e8e0";>da5388b
 Upgrade to Quarkus 3.5.3
   https://github.com/quarkusio/quarkus-platform/commit/dc4127e1ba9f545d745496d189d925d786ddad59";>dc4127e
 [maven-release-plugin] prepare for next development iteration
   https://github.com/quarkusio/quarkus-platform/commit/88b7e4f0ba14da5607192e7a83c8519a1acc26f6";>88b7e4f
 [maven-release-plugin] prepare release 3.5.2
   https://github.com/quarkusio/quarkus-platform/commit/aa63183235550298ffa9307ce3ea32411c788b23";>aa63183
 Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1029";>#1029
 from gsmet/quarkus-3.5.2
   https://github.com/quarkusio/quarkus-platform/commit/4099041a20f410e2023544ea3623792ba612448c";>4099041
 Update to Quarkus 3.5.2
   https://github.com/quarkusio/quarkus-platform/commit/64662640b37f7439e6fdf16d3df006bdbdad8f4e";>6466264
 Merge pull request https://redirect.github.com/quarkusio/quarkus-platform/issues/1027";>#1027
 from gsmet/various-updates-3.5
   https://github.com/quarkusio/quarkus-platform/commit/8693c3a08248e792d39bec1bbd31211713db3d8c";>8693c3a
 Upgrade Amazon Services to 2.5.3 and Config Consul to 2.2.2
   https://github.com/quarkusio/quarkus-platform/commit/52b0072b328ff0e67a033d5da1e798afbb1f9401";>52b0072
 [maven-release-plugin] prepare for next development iteration
   Additional commits viewable in https://github.com/quarkusio/quarkus-platform/compare/3.5.0...3.5.3";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.quarkus:quarkus-universe-bom&package-manager=maven&previous-version=3.5.0&new-version=3.5.3)](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



Re: [PR] Bump io.quarkus:quarkus-universe-bom from 3.5.0 to 3.5.2 [struts-examples]

2023-11-26 Thread via GitHub


dependabot[bot] closed pull request #287: Bump io.quarkus:quarkus-universe-bom 
from 3.5.0 to 3.5.2
URL: https://github.com/apache/struts-examples/pull/287


-- 
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.1.0 deleted (was 9faf09e01)

2023-11-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/spring.platformVersion-6.1.0
in repository https://gitbox.apache.org/repos/asf/struts.git


 was 9faf09e01 Bump spring.platformVersion from 5.3.27 to 6.1.0

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.1.1 created (now f3cd67a94)

2023-11-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/spring.platformVersion-6.1.1
in repository https://gitbox.apache.org/repos/asf/struts.git


  at f3cd67a94 Bump spring.platformVersion from 5.3.27 to 6.1.1

No new revisions were added by this update.



(struts) branch dependabot/maven/org.hibernate.validator-hibernate-validator-8.0.1.Final created (now 908cde545)

2023-11-26 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.hibernate.validator-hibernate-validator-8.0.1.Final
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 908cde545 Bump org.hibernate.validator:hibernate-validator

No new revisions were added by this update.