dependabot[bot] opened a new pull request, #1812:
URL: https://github.com/apache/cxf/pull/1812

   Bumps `cxf.hazelcast.version` from 5.3.7 to 5.4.0.
   Updates `com.hazelcast:hazelcast` from 5.3.7 to 5.4.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/hazelcast/hazelcast/releases";>com.hazelcast:hazelcast's
 releases</a>.</em></p>
   <blockquote>
   <h2>v5.4.0</h2>
   <p>This document lists the new features, enhancements, fixed issues and, 
removed or deprecated features for Hazelcast Platform 5.4.0 release. The 
numbers in the square brackets refer to the issues and pull requests in 
Hazelcast's GitHub repository.</p>
   <p>CAUTION: Starting with this release of Hazelcast Platform, the minimum 
supported Java version is 17.</p>
   <h2>New Features</h2>
   <ul>
   <li>User Code Namespaces: Enable deployment and redeployment of your custom 
classes. See the User Code Namespaces documentation.</li>
   <li>CPMap: Added CPMap as a minimal key-value CP data structure. See CPMap 
documentation. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25802";>#25802</a></li>
   <li>Thread-Per-Core (TPC): TPC is now generally available. You can enable 
this feature on the clients and cluster members for improved performance. See 
the Thread-Per-Core (TPC) documentation.</li>
   </ul>
   <h2>Breaking Changes</h2>
   <ul>
   <li>The <code>MergingValue</code> interface within the SPI package now 
requires the <code>getDeserializedValue()</code> method to be defined within 
implementations, replacing the <code>getValue()</code> definition. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25942";>#25942</a></li>
   <li>Moved the MongoDB connector to the extensions module, that is, its 
classes and related dependencies relocated;
   if you are using Maven to install the connector, you must add 
<code>&lt;classifier&gt;jar-with-dependencies&lt;/classifier&gt;</code> to your 
<code>pom.xml</code>.
   Also removed the permissions for MongoDB connector. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25744";>#25744</a>, 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25701";>#25701</a></li>
   <li>Method names used as parameters in <a 
href="https://docs.hazelcast.org/docs/latest/javadoc/com/hazelcast/security/SecurityInterceptor.html%5B%60SecurityInterceptor%60%5D";>https://docs.hazelcast.org/docs/latest/javadoc/com/hazelcast/security/SecurityInterceptor.html[`SecurityInterceptor`]</a>
 checks were reviewed and unified into a single place  - class 
<code>com.hazelcast.security.SecurityInterceptorConstants</code>. Some client 
messages have the method name changed to reflect their purpose better. Some 
client messages are newly covered by <code>SecurityInterceptor</code> checks 
now. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25020";>#25020</a></li>
   <li>Renamed the service port for Hazelcast clusters deployed in Kubernetes 
environments to <code>hazelcast</code>.
   The previous name, <code>hazelcast-service-port</code>, caused member 
auto-discovery for embedded deployments to fail. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24834";>#24834</a>, 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24705";>#24705</a>, 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24688";>#24688</a></li>
   <li>Fixed an issue where Hazelcast was not failing fast when a member is 
started with a blank public address. This has been fixed by introducing a 
configuration validation
   that might break any existing, but invalid, configuration. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24729";>#24729</a></li>
   </ul>
   <h2>Enhancements</h2>
   <h3>SQL/Jet Engine</h3>
   <ul>
   <li>Removed the beta annotations from the data connection classes. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/26000";>#26000</a></li>
   <li>Replaced the user-defined types (UDTs) feature flag with the cyclic UDT 
feature flag, to prevent querying such type data. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25977";>#25977</a></li>
   <li>Added support for loading and storing a single column as the value using 
the <code>GenericMapStore</code>. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25878";>#25878</a></li>
   <li>Each Jet engine job was creating a client for connecting to the remote 
cluster, resulting in an excessive number of clients. This has been fixed by 
introducing a single data connection, which can be reused for all job 
instances. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25754";>#25754</a>, 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25731";>#25731</a></li>
   <li>Added support for resolving fields from Avro schemas in Kafka mappings. 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25935";>#25935</a></li>
   <li>Changed the exception type from <code>CancellationException</code> to 
<code>CancellationByUserException</code> when the user cancels a job before it 
is initialized. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25383";>#25383</a></li>
   <li>Added nested field support for Avro serialization format. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25269";>#25269</a></li>
   <li>Removed the redundant sort and merge operations in sorted index scans, 
for the computations where the index order is not needed, for example, 
aggregations. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25180";>#25180</a></li>
   <li>Updated the data comparator to improve the performance of sorted index 
operations. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25196";>#25196</a></li>
   <li>Added support for partition pruning for the <code>__key</code> filters. 
[25105]</li>
   <li>Added support for partitioned edges in Jet engine's partition pruning. 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25062";>#25062</a></li>
   <li>Added a new mechanism to compute the required partitions to be scanned, 
if attribute partitioning strategy is applied. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25006";>#25006</a></li>
   <li>Added the condition type to the <code>EXPLAIN PLAN</code> statement 
outputs for all physical joins. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24899";>#24899</a></li>
   <li>Added support for nullable types when reading Avro files. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24840";>#24840</a></li>
   <li>Added the ability to pass parameters for JDBC configuration, such as the 
fetch size for large tables. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24835";>#24835</a></li>
   <li>Added support for partition pruning for SQL queries that have trivial 
filter predicates. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24813";>#24813</a></li>
   <li>Reflected the <a 
href="https://blogs.oracle.com/javamagazine/post/transition-from-java-ee-to-jakarta-ee%5Bchange%5E%5D";>https://blogs.oracle.com/javamagazine/post/transition-from-java-ee-to-jakarta-ee[change^]</a>
 of <code>javax.jms</code> to <code>jakarta.jms</code> in Hazelcast 
distributions. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24804";>#24804</a></li>
   <li>Added support for member pruning for Platform jobs to optimize a job's 
performance by picking up only the members required for the job. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24689";>#24689</a></li>
   <li>Added the <code>stream()</code> method to the SQL service to return the 
stream of result rows. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24525";>#24525</a></li>
   <li>Introduced a new configuration object to control the exact initial 
partition offsets when consuming records from Kafka via the Jet engine. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/21546";>#21546</a></li>
   <li>Aligned the behavior of <code>hashCode()</code> method of 
<code>KeyedWindowResult</code> with that of <code>Map.Entry</code>. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/697";>#697</a></li>
   <li>Boxing of partitionId is now avoided in the 
<code>getPartitionAssignment()</code> method when the partition pruning is not 
used. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/486";>#486</a></li>
   <li>Added the ability to limit the creation of objects through reflection. 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/296";>#296</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/3175d2c38b47a3de824c0072c1769a6fba22ff78";><code>3175d2c</code></a>
 Upgrade version to 5.4.0</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/7f4448ba8ddd3d259767353e6f725fb156c8641c";><code>7f4448b</code></a>
 Adding RN for 5.4.0 OS RN (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1084";>#1084</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/a76e44fda732b6fad19b892704b68e9b68a51872";><code>a76e44f</code></a>
 Remove todo from javadoc [5.4.0] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1081";>#1081</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/571876686d6f7b3bcc057f2edfaf50d9656514b7";><code>5718766</code></a>
 Fix NPE from SecurityContext startup order, add tests [5.4.0] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1070";>#1070</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/d6f8ef07628803e5502029c10cbcc8104bdccf35";><code>d6f8ef0</code></a>
 Fix processorOrder doubled when members without local parallelism [HZ-4562] 
[...</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/27f90d3f45c856f538988d580456e20ec52031fa";><code>27f90d3</code></a>
 Revert exclusion of META-INF/THIRD-PARTY.txt [HZ-4561] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1048";>#1048</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/de5b1f4cf9ff98531dc01a53c1d99a9ccc5f3a98";><code>de5b1f4</code></a>
 Replace mysql license [5.4.0] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1008";>#1008</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/f0f8f0727a6a9cbeb47ae6aa44ce9456383b781e";><code>f0f8f07</code></a>
 Fix republishing logic in WanPutBackupOperation [5.4.0] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1014";>#1014</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/62dad916c0e1bfdf80ec72fda66aedad689e525f";><code>62dad91</code></a>
 NLCModeLicenseTest Mockito + Azul fix [HZ-4483] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/943";>#943</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/eee9541bd0cc67c16ff75a250576c4f7dad3c1c7";><code>eee9541</code></a>
 Bump software.amazon.awssdk:bom from 2.24.12 to 2.24.13 (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/952";>#952</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/hazelcast/hazelcast/compare/v5.3.7...v5.4.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `com.hazelcast:hazelcast-spring` from 5.3.7 to 5.4.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/hazelcast/hazelcast/releases";>com.hazelcast:hazelcast-spring's
 releases</a>.</em></p>
   <blockquote>
   <h2>v5.4.0</h2>
   <p>This document lists the new features, enhancements, fixed issues and, 
removed or deprecated features for Hazelcast Platform 5.4.0 release. The 
numbers in the square brackets refer to the issues and pull requests in 
Hazelcast's GitHub repository.</p>
   <p>CAUTION: Starting with this release of Hazelcast Platform, the minimum 
supported Java version is 17.</p>
   <h2>New Features</h2>
   <ul>
   <li>User Code Namespaces: Enable deployment and redeployment of your custom 
classes. See the User Code Namespaces documentation.</li>
   <li>CPMap: Added CPMap as a minimal key-value CP data structure. See CPMap 
documentation. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25802";>#25802</a></li>
   <li>Thread-Per-Core (TPC): TPC is now generally available. You can enable 
this feature on the clients and cluster members for improved performance. See 
the Thread-Per-Core (TPC) documentation.</li>
   </ul>
   <h2>Breaking Changes</h2>
   <ul>
   <li>The <code>MergingValue</code> interface within the SPI package now 
requires the <code>getDeserializedValue()</code> method to be defined within 
implementations, replacing the <code>getValue()</code> definition. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25942";>#25942</a></li>
   <li>Moved the MongoDB connector to the extensions module, that is, its 
classes and related dependencies relocated;
   if you are using Maven to install the connector, you must add 
<code>&lt;classifier&gt;jar-with-dependencies&lt;/classifier&gt;</code> to your 
<code>pom.xml</code>.
   Also removed the permissions for MongoDB connector. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25744";>#25744</a>, 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25701";>#25701</a></li>
   <li>Method names used as parameters in <a 
href="https://docs.hazelcast.org/docs/latest/javadoc/com/hazelcast/security/SecurityInterceptor.html%5B%60SecurityInterceptor%60%5D";>https://docs.hazelcast.org/docs/latest/javadoc/com/hazelcast/security/SecurityInterceptor.html[`SecurityInterceptor`]</a>
 checks were reviewed and unified into a single place  - class 
<code>com.hazelcast.security.SecurityInterceptorConstants</code>. Some client 
messages have the method name changed to reflect their purpose better. Some 
client messages are newly covered by <code>SecurityInterceptor</code> checks 
now. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25020";>#25020</a></li>
   <li>Renamed the service port for Hazelcast clusters deployed in Kubernetes 
environments to <code>hazelcast</code>.
   The previous name, <code>hazelcast-service-port</code>, caused member 
auto-discovery for embedded deployments to fail. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24834";>#24834</a>, 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24705";>#24705</a>, 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24688";>#24688</a></li>
   <li>Fixed an issue where Hazelcast was not failing fast when a member is 
started with a blank public address. This has been fixed by introducing a 
configuration validation
   that might break any existing, but invalid, configuration. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24729";>#24729</a></li>
   </ul>
   <h2>Enhancements</h2>
   <h3>SQL/Jet Engine</h3>
   <ul>
   <li>Removed the beta annotations from the data connection classes. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/26000";>#26000</a></li>
   <li>Replaced the user-defined types (UDTs) feature flag with the cyclic UDT 
feature flag, to prevent querying such type data. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25977";>#25977</a></li>
   <li>Added support for loading and storing a single column as the value using 
the <code>GenericMapStore</code>. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25878";>#25878</a></li>
   <li>Each Jet engine job was creating a client for connecting to the remote 
cluster, resulting in an excessive number of clients. This has been fixed by 
introducing a single data connection, which can be reused for all job 
instances. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25754";>#25754</a>, 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25731";>#25731</a></li>
   <li>Added support for resolving fields from Avro schemas in Kafka mappings. 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25935";>#25935</a></li>
   <li>Changed the exception type from <code>CancellationException</code> to 
<code>CancellationByUserException</code> when the user cancels a job before it 
is initialized. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25383";>#25383</a></li>
   <li>Added nested field support for Avro serialization format. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25269";>#25269</a></li>
   <li>Removed the redundant sort and merge operations in sorted index scans, 
for the computations where the index order is not needed, for example, 
aggregations. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25180";>#25180</a></li>
   <li>Updated the data comparator to improve the performance of sorted index 
operations. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25196";>#25196</a></li>
   <li>Added support for partition pruning for the <code>__key</code> filters. 
[25105]</li>
   <li>Added support for partitioned edges in Jet engine's partition pruning. 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25062";>#25062</a></li>
   <li>Added a new mechanism to compute the required partitions to be scanned, 
if attribute partitioning strategy is applied. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/25006";>#25006</a></li>
   <li>Added the condition type to the <code>EXPLAIN PLAN</code> statement 
outputs for all physical joins. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24899";>#24899</a></li>
   <li>Added support for nullable types when reading Avro files. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24840";>#24840</a></li>
   <li>Added the ability to pass parameters for JDBC configuration, such as the 
fetch size for large tables. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24835";>#24835</a></li>
   <li>Added support for partition pruning for SQL queries that have trivial 
filter predicates. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24813";>#24813</a></li>
   <li>Reflected the <a 
href="https://blogs.oracle.com/javamagazine/post/transition-from-java-ee-to-jakarta-ee%5Bchange%5E%5D";>https://blogs.oracle.com/javamagazine/post/transition-from-java-ee-to-jakarta-ee[change^]</a>
 of <code>javax.jms</code> to <code>jakarta.jms</code> in Hazelcast 
distributions. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24804";>#24804</a></li>
   <li>Added support for member pruning for Platform jobs to optimize a job's 
performance by picking up only the members required for the job. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24689";>#24689</a></li>
   <li>Added the <code>stream()</code> method to the SQL service to return the 
stream of result rows. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/24525";>#24525</a></li>
   <li>Introduced a new configuration object to control the exact initial 
partition offsets when consuming records from Kafka via the Jet engine. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/21546";>#21546</a></li>
   <li>Aligned the behavior of <code>hashCode()</code> method of 
<code>KeyedWindowResult</code> with that of <code>Map.Entry</code>. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/697";>#697</a></li>
   <li>Boxing of partitionId is now avoided in the 
<code>getPartitionAssignment()</code> method when the partition pruning is not 
used. <a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/486";>#486</a></li>
   <li>Added the ability to limit the creation of objects through reflection. 
<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/296";>#296</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/3175d2c38b47a3de824c0072c1769a6fba22ff78";><code>3175d2c</code></a>
 Upgrade version to 5.4.0</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/7f4448ba8ddd3d259767353e6f725fb156c8641c";><code>7f4448b</code></a>
 Adding RN for 5.4.0 OS RN (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1084";>#1084</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/a76e44fda732b6fad19b892704b68e9b68a51872";><code>a76e44f</code></a>
 Remove todo from javadoc [5.4.0] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1081";>#1081</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/571876686d6f7b3bcc057f2edfaf50d9656514b7";><code>5718766</code></a>
 Fix NPE from SecurityContext startup order, add tests [5.4.0] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1070";>#1070</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/d6f8ef07628803e5502029c10cbcc8104bdccf35";><code>d6f8ef0</code></a>
 Fix processorOrder doubled when members without local parallelism [HZ-4562] 
[...</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/27f90d3f45c856f538988d580456e20ec52031fa";><code>27f90d3</code></a>
 Revert exclusion of META-INF/THIRD-PARTY.txt [HZ-4561] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1048";>#1048</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/de5b1f4cf9ff98531dc01a53c1d99a9ccc5f3a98";><code>de5b1f4</code></a>
 Replace mysql license [5.4.0] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1008";>#1008</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/f0f8f0727a6a9cbeb47ae6aa44ce9456383b781e";><code>f0f8f07</code></a>
 Fix republishing logic in WanPutBackupOperation [5.4.0] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/1014";>#1014</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/62dad916c0e1bfdf80ec72fda66aedad689e525f";><code>62dad91</code></a>
 NLCModeLicenseTest Mockito + Azul fix [HZ-4483] (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/943";>#943</a>)</li>
   <li><a 
href="https://github.com/hazelcast/hazelcast/commit/eee9541bd0cc67c16ff75a250576c4f7dad3c1c7";><code>eee9541</code></a>
 Bump software.amazon.awssdk:bom from 2.24.12 to 2.24.13 (<a 
href="https://redirect.github.com/hazelcast/hazelcast/issues/952";>#952</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/hazelcast/hazelcast/compare/v5.3.7...v5.4.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   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)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   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 <dependency name> 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)
   
   
   </details>


-- 
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: dev-unsubscr...@cxf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to