dependabot[bot] opened a new pull request, #605:
URL: https://github.com/apache/mina-sshd/pull/605

   Bumps `pmd.version` from 7.4.0 to 7.5.0.
   Updates `net.sourceforge.pmd:pmd-core` from 7.4.0 to 7.5.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/pmd/pmd/releases";>net.sourceforge.pmd:pmd-core's 
releases</a>.</em></p>
   <blockquote>
   <h2>PMD 7.5.0 (30-August-2024)</h2>
   <h2>30-August-2024 - 7.5.0</h2>
   <p>The PMD team is pleased to announce PMD 7.5.0.</p>
   <p>This is a minor release.</p>
   <h3>Table Of Contents</h3>
   <ul>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-java-23-support";>🚀 
New: Java 23 Support</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-rules";>🌟 New 
Rules</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#fixed-issues";>🐛 Fixed 
Issues</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#api-changes";>🚨 API 
Changes</a>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#deprecations";>Deprecations</a></li>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#experimental";>Experimental</a></li>
   </ul>
   </li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#external-contributions";>✨ 
External Contributions</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#dependency-updates";>📦 
Dependency updates</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#stats";>📈 Stats</a></li>
   </ul>
   <h3>🚀 New: Java 23 Support</h3>
   <p>This release of PMD brings support for Java 23. There are no new standard 
language features,
   but a couple of preview language features:</p>
   <ul>
   <li><a href="https://openjdk.org/jeps/455";>JEP 455: Primitive Types in 
Patterns, instanceof, and switch (Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/476";>JEP 476: Module Import 
Declarations (Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/477";>JEP 477: Implicitly Declared 
Classes and Instance Main Methods (Third Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/482";>JEP 482: Flexible Constructor 
Bodies (Second Preview)</a></li>
   </ul>
   <p>Note that String Templates (introduced as preview in Java 21 and 22) are 
not supported anymore in Java 23,
   see <a href="https://bugs.openjdk.org/browse/JDK-8329949";>JDK-8329949</a> 
for details.</p>
   <p>In order to analyze a project with PMD that uses these preview language 
features,
   you'll need to enable it via the environment variable 
<code>PMD_JAVA_OPTS</code> and select the new language
   version <code>23-preview</code>:</p>
   <pre><code>export PMD_JAVA_OPTS=--enable-preview
   pmd check --use-version java-23-preview ...
   </code></pre>
   <p>Note: Support for Java 21 preview language features have been removed. 
The version &quot;21-preview&quot;
   are no longer available.</p>
   <h3>🌟 New Rules</h3>
   <ul>
   <li>The new Java rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.5.0/pmd_rules_java_multithreading.html#avoidsynchronizedstatement";><code>AvoidSynchronizedStatement</code></a>
 finds synchronization blocks that
   could cause performance issues with virtual threads due to pinning.</li>
   <li>The new JavaScript rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.5.0/pmd_rules_ecmascript_performance.html#avoidconsolestatements";><code>AvoidConsoleStatements</code></a>
 finds any function calls
   on the Console API (e.g. <code>console.log</code>). Using these in 
production code might negatively impact performance.</li>
   </ul>
   <h3>🐛 Fixed Issues</h3>
   <ul>
   <li>apex-performance</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/commit/74ada426afd47d7e3748317047d2ad5fee4a35c8";><code>74ada42</code></a>
 [release] prepare release pmd_releases/7.5.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/453f6690b0db734c9625bd152cade54362302765";><code>453f669</code></a>
 Prepare pmd release 7.5.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/bff14449b2673d382290317c756decc2b33f75db";><code>bff1444</code></a>
 [doc] Update pmd_sidebar.yml</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/8b44d2f374948dc8f93bc23978431e6436bb1ad3";><code>8b44d2f</code></a>
 [javascript] New rule AvoidConsoleStatements (<a 
href="https://redirect.github.com/pmd/pmd/issues/5126";>#5126</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/537dab95e4451bfa045d6428e551e1261f97476c";><code>537dab9</code></a>
 [java] Support Java 23 (<a 
href="https://redirect.github.com/pmd/pmd/issues/5112";>#5112</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/819b6bc5fb4eb2ca62b29067d4296c8546eafd82";><code>819b6bc</code></a>
 [java] Fix <a href="https://redirect.github.com/pmd/pmd/issues/5084";>#5084</a> 
- crash in LUB with raw types (<a 
href="https://redirect.github.com/pmd/pmd/issues/5179";>#5179</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/ada303de8390e5c2297e8d48c0fd5149f8998396";><code>ada303d</code></a>
 [doc] Document new java language prop xStrictTypeRes</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/a44a5ca4ef6c621a9453d608bed28452bb3bd46e";><code>a44a5ca</code></a>
 [doc] Update release notes (<a 
href="https://redirect.github.com/pmd/pmd/issues/5048";>#5048</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/c6ef54326c8058c193414f61fdb9ad41da1d10d4";><code>c6ef543</code></a>
 Add <a href="https://github.com/AB-xdev";><code>@​AB-xdev</code></a> as a 
contributor</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/488807ff906305d68cbd290a40ef25dbf62831f5";><code>488807f</code></a>
 [java] Add testcase for <a 
href="https://redirect.github.com/pmd/pmd/issues/5048";>#5048</a></li>
   <li>Additional commits viewable in <a 
href="https://github.com/pmd/pmd/compare/pmd_releases/7.4.0...pmd_releases/7.5.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `net.sourceforge.pmd:pmd-java` from 7.4.0 to 7.5.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/pmd/pmd/releases";>net.sourceforge.pmd:pmd-java's 
releases</a>.</em></p>
   <blockquote>
   <h2>PMD 7.5.0 (30-August-2024)</h2>
   <h2>30-August-2024 - 7.5.0</h2>
   <p>The PMD team is pleased to announce PMD 7.5.0.</p>
   <p>This is a minor release.</p>
   <h3>Table Of Contents</h3>
   <ul>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-java-23-support";>🚀 
New: Java 23 Support</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-rules";>🌟 New 
Rules</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#fixed-issues";>🐛 Fixed 
Issues</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#api-changes";>🚨 API 
Changes</a>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#deprecations";>Deprecations</a></li>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#experimental";>Experimental</a></li>
   </ul>
   </li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#external-contributions";>✨ 
External Contributions</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#dependency-updates";>📦 
Dependency updates</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#stats";>📈 Stats</a></li>
   </ul>
   <h3>🚀 New: Java 23 Support</h3>
   <p>This release of PMD brings support for Java 23. There are no new standard 
language features,
   but a couple of preview language features:</p>
   <ul>
   <li><a href="https://openjdk.org/jeps/455";>JEP 455: Primitive Types in 
Patterns, instanceof, and switch (Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/476";>JEP 476: Module Import 
Declarations (Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/477";>JEP 477: Implicitly Declared 
Classes and Instance Main Methods (Third Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/482";>JEP 482: Flexible Constructor 
Bodies (Second Preview)</a></li>
   </ul>
   <p>Note that String Templates (introduced as preview in Java 21 and 22) are 
not supported anymore in Java 23,
   see <a href="https://bugs.openjdk.org/browse/JDK-8329949";>JDK-8329949</a> 
for details.</p>
   <p>In order to analyze a project with PMD that uses these preview language 
features,
   you'll need to enable it via the environment variable 
<code>PMD_JAVA_OPTS</code> and select the new language
   version <code>23-preview</code>:</p>
   <pre><code>export PMD_JAVA_OPTS=--enable-preview
   pmd check --use-version java-23-preview ...
   </code></pre>
   <p>Note: Support for Java 21 preview language features have been removed. 
The version &quot;21-preview&quot;
   are no longer available.</p>
   <h3>🌟 New Rules</h3>
   <ul>
   <li>The new Java rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.5.0/pmd_rules_java_multithreading.html#avoidsynchronizedstatement";><code>AvoidSynchronizedStatement</code></a>
 finds synchronization blocks that
   could cause performance issues with virtual threads due to pinning.</li>
   <li>The new JavaScript rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.5.0/pmd_rules_ecmascript_performance.html#avoidconsolestatements";><code>AvoidConsoleStatements</code></a>
 finds any function calls
   on the Console API (e.g. <code>console.log</code>). Using these in 
production code might negatively impact performance.</li>
   </ul>
   <h3>🐛 Fixed Issues</h3>
   <ul>
   <li>apex-performance</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/commit/74ada426afd47d7e3748317047d2ad5fee4a35c8";><code>74ada42</code></a>
 [release] prepare release pmd_releases/7.5.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/453f6690b0db734c9625bd152cade54362302765";><code>453f669</code></a>
 Prepare pmd release 7.5.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/bff14449b2673d382290317c756decc2b33f75db";><code>bff1444</code></a>
 [doc] Update pmd_sidebar.yml</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/8b44d2f374948dc8f93bc23978431e6436bb1ad3";><code>8b44d2f</code></a>
 [javascript] New rule AvoidConsoleStatements (<a 
href="https://redirect.github.com/pmd/pmd/issues/5126";>#5126</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/537dab95e4451bfa045d6428e551e1261f97476c";><code>537dab9</code></a>
 [java] Support Java 23 (<a 
href="https://redirect.github.com/pmd/pmd/issues/5112";>#5112</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/819b6bc5fb4eb2ca62b29067d4296c8546eafd82";><code>819b6bc</code></a>
 [java] Fix <a href="https://redirect.github.com/pmd/pmd/issues/5084";>#5084</a> 
- crash in LUB with raw types (<a 
href="https://redirect.github.com/pmd/pmd/issues/5179";>#5179</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/ada303de8390e5c2297e8d48c0fd5149f8998396";><code>ada303d</code></a>
 [doc] Document new java language prop xStrictTypeRes</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/a44a5ca4ef6c621a9453d608bed28452bb3bd46e";><code>a44a5ca</code></a>
 [doc] Update release notes (<a 
href="https://redirect.github.com/pmd/pmd/issues/5048";>#5048</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/c6ef54326c8058c193414f61fdb9ad41da1d10d4";><code>c6ef543</code></a>
 Add <a href="https://github.com/AB-xdev";><code>@​AB-xdev</code></a> as a 
contributor</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/488807ff906305d68cbd290a40ef25dbf62831f5";><code>488807f</code></a>
 [java] Add testcase for <a 
href="https://redirect.github.com/pmd/pmd/issues/5048";>#5048</a></li>
   <li>Additional commits viewable in <a 
href="https://github.com/pmd/pmd/compare/pmd_releases/7.4.0...pmd_releases/7.5.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `net.sourceforge.pmd:pmd-javascript` from 7.4.0 to 7.5.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/pmd/pmd/releases";>net.sourceforge.pmd:pmd-javascript's 
releases</a>.</em></p>
   <blockquote>
   <h2>PMD 7.5.0 (30-August-2024)</h2>
   <h2>30-August-2024 - 7.5.0</h2>
   <p>The PMD team is pleased to announce PMD 7.5.0.</p>
   <p>This is a minor release.</p>
   <h3>Table Of Contents</h3>
   <ul>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-java-23-support";>🚀 
New: Java 23 Support</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-rules";>🌟 New 
Rules</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#fixed-issues";>🐛 Fixed 
Issues</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#api-changes";>🚨 API 
Changes</a>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#deprecations";>Deprecations</a></li>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#experimental";>Experimental</a></li>
   </ul>
   </li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#external-contributions";>✨ 
External Contributions</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#dependency-updates";>📦 
Dependency updates</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#stats";>📈 Stats</a></li>
   </ul>
   <h3>🚀 New: Java 23 Support</h3>
   <p>This release of PMD brings support for Java 23. There are no new standard 
language features,
   but a couple of preview language features:</p>
   <ul>
   <li><a href="https://openjdk.org/jeps/455";>JEP 455: Primitive Types in 
Patterns, instanceof, and switch (Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/476";>JEP 476: Module Import 
Declarations (Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/477";>JEP 477: Implicitly Declared 
Classes and Instance Main Methods (Third Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/482";>JEP 482: Flexible Constructor 
Bodies (Second Preview)</a></li>
   </ul>
   <p>Note that String Templates (introduced as preview in Java 21 and 22) are 
not supported anymore in Java 23,
   see <a href="https://bugs.openjdk.org/browse/JDK-8329949";>JDK-8329949</a> 
for details.</p>
   <p>In order to analyze a project with PMD that uses these preview language 
features,
   you'll need to enable it via the environment variable 
<code>PMD_JAVA_OPTS</code> and select the new language
   version <code>23-preview</code>:</p>
   <pre><code>export PMD_JAVA_OPTS=--enable-preview
   pmd check --use-version java-23-preview ...
   </code></pre>
   <p>Note: Support for Java 21 preview language features have been removed. 
The version &quot;21-preview&quot;
   are no longer available.</p>
   <h3>🌟 New Rules</h3>
   <ul>
   <li>The new Java rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.5.0/pmd_rules_java_multithreading.html#avoidsynchronizedstatement";><code>AvoidSynchronizedStatement</code></a>
 finds synchronization blocks that
   could cause performance issues with virtual threads due to pinning.</li>
   <li>The new JavaScript rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.5.0/pmd_rules_ecmascript_performance.html#avoidconsolestatements";><code>AvoidConsoleStatements</code></a>
 finds any function calls
   on the Console API (e.g. <code>console.log</code>). Using these in 
production code might negatively impact performance.</li>
   </ul>
   <h3>🐛 Fixed Issues</h3>
   <ul>
   <li>apex-performance</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/commit/74ada426afd47d7e3748317047d2ad5fee4a35c8";><code>74ada42</code></a>
 [release] prepare release pmd_releases/7.5.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/453f6690b0db734c9625bd152cade54362302765";><code>453f669</code></a>
 Prepare pmd release 7.5.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/bff14449b2673d382290317c756decc2b33f75db";><code>bff1444</code></a>
 [doc] Update pmd_sidebar.yml</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/8b44d2f374948dc8f93bc23978431e6436bb1ad3";><code>8b44d2f</code></a>
 [javascript] New rule AvoidConsoleStatements (<a 
href="https://redirect.github.com/pmd/pmd/issues/5126";>#5126</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/537dab95e4451bfa045d6428e551e1261f97476c";><code>537dab9</code></a>
 [java] Support Java 23 (<a 
href="https://redirect.github.com/pmd/pmd/issues/5112";>#5112</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/819b6bc5fb4eb2ca62b29067d4296c8546eafd82";><code>819b6bc</code></a>
 [java] Fix <a href="https://redirect.github.com/pmd/pmd/issues/5084";>#5084</a> 
- crash in LUB with raw types (<a 
href="https://redirect.github.com/pmd/pmd/issues/5179";>#5179</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/ada303de8390e5c2297e8d48c0fd5149f8998396";><code>ada303d</code></a>
 [doc] Document new java language prop xStrictTypeRes</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/a44a5ca4ef6c621a9453d608bed28452bb3bd46e";><code>a44a5ca</code></a>
 [doc] Update release notes (<a 
href="https://redirect.github.com/pmd/pmd/issues/5048";>#5048</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/c6ef54326c8058c193414f61fdb9ad41da1d10d4";><code>c6ef543</code></a>
 Add <a href="https://github.com/AB-xdev";><code>@​AB-xdev</code></a> as a 
contributor</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/488807ff906305d68cbd290a40ef25dbf62831f5";><code>488807f</code></a>
 [java] Add testcase for <a 
href="https://redirect.github.com/pmd/pmd/issues/5048";>#5048</a></li>
   <li>Additional commits viewable in <a 
href="https://github.com/pmd/pmd/compare/pmd_releases/7.4.0...pmd_releases/7.5.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `net.sourceforge.pmd:pmd-jsp` from 7.4.0 to 7.5.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/pmd/pmd/releases";>net.sourceforge.pmd:pmd-jsp's 
releases</a>.</em></p>
   <blockquote>
   <h2>PMD 7.5.0 (30-August-2024)</h2>
   <h2>30-August-2024 - 7.5.0</h2>
   <p>The PMD team is pleased to announce PMD 7.5.0.</p>
   <p>This is a minor release.</p>
   <h3>Table Of Contents</h3>
   <ul>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-java-23-support";>🚀 
New: Java 23 Support</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-rules";>🌟 New 
Rules</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#fixed-issues";>🐛 Fixed 
Issues</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#api-changes";>🚨 API 
Changes</a>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#deprecations";>Deprecations</a></li>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#experimental";>Experimental</a></li>
   </ul>
   </li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#external-contributions";>✨ 
External Contributions</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#dependency-updates";>📦 
Dependency updates</a></li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#stats";>📈 Stats</a></li>
   </ul>
   <h3>🚀 New: Java 23 Support</h3>
   <p>This release of PMD brings support for Java 23. There are no new standard 
language features,
   but a couple of preview language features:</p>
   <ul>
   <li><a href="https://openjdk.org/jeps/455";>JEP 455: Primitive Types in 
Patterns, instanceof, and switch (Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/476";>JEP 476: Module Import 
Declarations (Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/477";>JEP 477: Implicitly Declared 
Classes and Instance Main Methods (Third Preview)</a></li>
   <li><a href="https://openjdk.org/jeps/482";>JEP 482: Flexible Constructor 
Bodies (Second Preview)</a></li>
   </ul>
   <p>Note that String Templates (introduced as preview in Java 21 and 22) are 
not supported anymore in Java 23,
   see <a href="https://bugs.openjdk.org/browse/JDK-8329949";>JDK-8329949</a> 
for details.</p>
   <p>In order to analyze a project with PMD that uses these preview language 
features,
   you'll need to enable it via the environment variable 
<code>PMD_JAVA_OPTS</code> and select the new language
   version <code>23-preview</code>:</p>
   <pre><code>export PMD_JAVA_OPTS=--enable-preview
   pmd check --use-version java-23-preview ...
   </code></pre>
   <p>Note: Support for Java 21 preview language features have been removed. 
The version &quot;21-preview&quot;
   are no longer available.</p>
   <h3>🌟 New Rules</h3>
   <ul>
   <li>The new Java rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.5.0/pmd_rules_java_multithreading.html#avoidsynchronizedstatement";><code>AvoidSynchronizedStatement</code></a>
 finds synchronization blocks that
   could cause performance issues with virtual threads due to pinning.</li>
   <li>The new JavaScript rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.5.0/pmd_rules_ecmascript_performance.html#avoidconsolestatements";><code>AvoidConsoleStatements</code></a>
 finds any function calls
   on the Console API (e.g. <code>console.log</code>). Using these in 
production code might negatively impact performance.</li>
   </ul>
   <h3>🐛 Fixed Issues</h3>
   <ul>
   <li>apex-performance</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/commit/74ada426afd47d7e3748317047d2ad5fee4a35c8";><code>74ada42</code></a>
 [release] prepare release pmd_releases/7.5.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/453f6690b0db734c9625bd152cade54362302765";><code>453f669</code></a>
 Prepare pmd release 7.5.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/bff14449b2673d382290317c756decc2b33f75db";><code>bff1444</code></a>
 [doc] Update pmd_sidebar.yml</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/8b44d2f374948dc8f93bc23978431e6436bb1ad3";><code>8b44d2f</code></a>
 [javascript] New rule AvoidConsoleStatements (<a 
href="https://redirect.github.com/pmd/pmd/issues/5126";>#5126</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/537dab95e4451bfa045d6428e551e1261f97476c";><code>537dab9</code></a>
 [java] Support Java 23 (<a 
href="https://redirect.github.com/pmd/pmd/issues/5112";>#5112</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/819b6bc5fb4eb2ca62b29067d4296c8546eafd82";><code>819b6bc</code></a>
 [java] Fix <a href="https://redirect.github.com/pmd/pmd/issues/5084";>#5084</a> 
- crash in LUB with raw types (<a 
href="https://redirect.github.com/pmd/pmd/issues/5179";>#5179</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/ada303de8390e5c2297e8d48c0fd5149f8998396";><code>ada303d</code></a>
 [doc] Document new java language prop xStrictTypeRes</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/a44a5ca4ef6c621a9453d608bed28452bb3bd46e";><code>a44a5ca</code></a>
 [doc] Update release notes (<a 
href="https://redirect.github.com/pmd/pmd/issues/5048";>#5048</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/c6ef54326c8058c193414f61fdb9ad41da1d10d4";><code>c6ef543</code></a>
 Add <a href="https://github.com/AB-xdev";><code>@​AB-xdev</code></a> as a 
contributor</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/488807ff906305d68cbd290a40ef25dbf62831f5";><code>488807f</code></a>
 [java] Add testcase for <a 
href="https://redirect.github.com/pmd/pmd/issues/5048";>#5048</a></li>
   <li>Additional commits viewable in <a 
href="https://github.com/pmd/pmd/compare/pmd_releases/7.4.0...pmd_releases/7.5.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...@mina.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org
For additional commands, e-mail: dev-h...@mina.apache.org

Reply via email to