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

   Bumps [net.sourceforge.pmd:pmd-java](https://github.com/pmd/pmd) from 7.18.0 
to 7.19.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.19.0 (28-November-2025)</h2>
   <h2>28-November-2025 - 7.19.0</h2>
   <p>The PMD team is pleased to announce PMD 7.19.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-and-noteworthy";>🚀️ 
New and noteworthy</a>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/blob/HEAD/#updated-pmd-designer";>Updated PMD 
Designer</a></li>
   </ul>
   </li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#new-and-changed-rules";>🌟️ 
New and Changed Rules</a>
   <ul>
   <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/#deprecated-rules";>Deprecated 
Rules</a></li>
   </ul>
   </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>
   </ul>
   </li>
   <li><a href="https://github.com/pmd/pmd/blob/HEAD/#merged-pull-requests";>✨️ 
Merged pull requests</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 and noteworthy</h3>
   <h4>Updated PMD Designer</h4>
   <p>This PMD release ships a new version of the pmd-designer.
   For the changes, see <a 
href="https://github.com/pmd/pmd-designer/releases/tag/7.19.0";>PMD Designer 
Changelog (7.19.0)</a>
   and <a href="https://github.com/pmd/pmd-designer/releases/tag/7.19.1";>PMD 
Designer Changelog (7.19.1)</a>.</p>
   <h3>🌟️ New and Changed Rules</h3>
   <h4>New Rules</h4>
   <ul>
   <li>The new Apex rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.19.0/pmd_rules_apex_bestpractices.html#avoidfutureannotation";><code>AvoidFutureAnnotation</code></a>
 finds usages of the <code>@Future</code>
   annotation. It is a legacy way to execute asynchronous Apex code. New code 
should implement
   the <code>Queueable</code> interface instead.</li>
   <li>The new Java rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.19.0/pmd_rules_java_bestpractices.html#enumcomparison";><code>EnumComparison</code></a>
 finds usages of <code>equals()</code> on
   enum constants or values. Enums should be compared directly with 
<code>==</code> instead of <code>equals()</code> which
   has some advantages (e.g. static type checking at compile time).</li>
   <li>The new Apex rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.19.0/pmd_rules_apex_design.html#ncsscount";><code>NcssCount</code></a>
 replaces the four rules &quot;ExcessiveClassLength&quot;,
   &quot;NcssConstructorCount&quot;, &quot;NcssMethodCount&quot;, and 
&quot;NcssTypeCount&quot;. The new rule uses the metrics framework
   to achieve the same. It has two properties, to define the report level for 
method and class sizes separately.
   Constructors and methods are considered the same.<br />
   The rule has been added to the quickstart ruleset.<br />
   Note: The new metric is implemented more correct than in the old rules. E.g. 
it considers now also
   switch statements and correctly counts if-statements only once and ignores 
method calls that are
   part of an expression and not a statement on their own. This leads to 
different numbers. Keep in mind,
   that NCSS counts statements and not lines of code. Statements that are split 
on multiple lines are
   still counted as one.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/commit/2373452e01460c91bc575220e1b22941bbb75a49";><code>2373452</code></a>
 [release] prepare release pmd_releases/7.19.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/e0f52d2a092082eabc538e74cc5d17b195593852";><code>e0f52d2</code></a>
 Prepare pmd release 7.19.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/1b792a64087da0606b4c41dc15b74ab950515ef2";><code>1b792a6</code></a>
 Update all contributors</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/bf27bece5457a785aae021032560a75469f720fb";><code>bf27bec</code></a>
 Bump PMD Designer from 7.10.0 to 7.19.1 (<a 
href="https://redirect.github.com/pmd/pmd/issues/6283";>#6283</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/fe31314e35c2f1068a9740d9b3073303e7f613b1";><code>fe31314</code></a>
 [java] Fix <a 
href="https://redirect.github.com/pmd/pmd/issues/6256";>#6256</a>: ignore 
invalid annotation type (<a 
href="https://redirect.github.com/pmd/pmd/issues/6282";>#6282</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/ff6d32a6b639ac000967a7f28e39eff14c2adab4";><code>ff6d32a</code></a>
 [doc] Update release notes (<a 
href="https://redirect.github.com/pmd/pmd/issues/6282";>#6282</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/a9085893822261380718bf67797a8821e2671362";><code>a908589</code></a>
 [ci] Exclude build resources from spring-framework for regression tester (<a 
href="https://redirect.github.com/pmd/pmd/issues/6280";>#6280</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/c191161f63c1b27ff92084192453a38b10f6e001";><code>c191161</code></a>
 [doc] Update release notes (<a 
href="https://redirect.github.com/pmd/pmd/issues/6280";>#6280</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/91cdc8dd9a7497214aa2009bac11091abdb4aa6c";><code>91cdc8d</code></a>
 [java] Fix <a 
href="https://redirect.github.com/pmd/pmd/issues/6256";>#6256</a>: ignore 
invalid annotation type</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/1a043fc0310781d6e014f3f65bccef470c9d9e5b";><code>1a043fc</code></a>
 [doc] TestClassWithoutTestCases: Mention test prefixes (<a 
href="https://redirect.github.com/pmd/pmd/issues/6278";>#6278</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/pmd/pmd/compare/pmd_releases/7.18.0...pmd_releases/7.19.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.sourceforge.pmd:pmd-java&package-manager=maven&previous-version=7.18.0&new-version=7.19.0)](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)
   
   ---
   
   <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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to