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

   Bumps [net.sourceforge.pmd:pmd-core](https://github.com/pmd/pmd) from 6.55.0 
to 7.1.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.1.0 (26-April-2024)</h2>
   <h2>26-April-2024 - 7.1.0</h2>
   <p>The PMD team is pleased to announce PMD 7.1.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/#more-robust-cpd-reports";>More 
robust CPD reports</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/#rule-changes";>🌟 Rule 
Changes</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/#deprecated-methods";>Deprecated 
methods</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/#stats";>📈 Stats</a></li>
   </ul>
   <h3>🚀 New and noteworthy</h3>
   <h4>More robust CPD reports</h4>
   <p>There were a number of circumstances, specially around (but not limited 
to) literal sequences, were CPD would
   report duplicate overlapping or partially overlapping matches. These have 
now been fixed, and CPD will report
   only the longest non-overlapping duplicate.</p>
   <p>These improvements apply to all supported languages, irrespective of 
supported flags.</p>
   <h4>✨ New Rules</h4>
   <ul>
   <li>The new Java rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.1.0/pmd_rules_java_bestpractices.html#unnecessaryvarargsarraycreation";><code>UnnecessaryVarargsArrayCreation</code></a>
 reports explicit array creation
   when a varargs is expected. This is more heavy to read and could be 
simplified.</li>
   <li>The new Java rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.1.0/pmd_rules_java_errorprone.html#confusingargumenttovarargsmethod";><code>ConfusingArgumentToVarargsMethod</code></a>
 reports some confusing situations
   where a varargs method is called with an inexact argument type. These may 
end up in a mismatch between the expected
   parameter type and the actual value.</li>
   <li>The new Java rule <a 
href="https://docs.pmd-code.org/pmd-doc-7.1.0/pmd_rules_java_codestyle.html#lambdacanbemethodreference";><code>LambdaCanBeMethodReference</code></a>
 reports lambda expressions that can be replaced
   with a method reference. Please read the documentation of the rule for more 
info. This rule is now part of the Quickstart
   ruleset.</li>
   </ul>
   <h4>🌟 Rule Changes</h4>
   <ul>
   <li><a 
href="https://docs.pmd-code.org/pmd-doc-7.1.0/pmd_rules_java_bestpractices.html#junittestsshouldincludeassert";><code>JUnitTestsShouldIncludeAssert</code></a>
 and <a 
href="https://docs.pmd-code.org/pmd-doc-7.1.0/pmd_rules_java_bestpractices.html#junittestcontainstoomanyasserts";><code>JUnitTestContainsTooManyAsserts</code></a>
   have a new property named <code>extraAssertMethodNames</code>. With this 
property, you can configure which additional static
   methods should be considered as valid verification methods. This allows to 
use custom mocking or assertion libraries.</li>
   </ul>
   <h3>🐛 Fixed Issues</h3>
   <ul>
   <li>core
   <ul>
   <li><a href="https://redirect.github.com/pmd/pmd/issues/494";>#494</a>: 
[core] Adopt JApiCmp to enforce control over API changes</li>
   <li><a href="https://redirect.github.com/pmd/pmd/issues/4942";>#4942</a>: 
[core] CPD: <code>--skip-duplicate-files</code> has no effect (7.0.0 
regression)</li>
   <li><a href="https://redirect.github.com/pmd/pmd/pull/4959";>#4959</a>: 
[core] Upgrade saxon to 12.4</li>
   </ul>
   </li>
   <li>cli</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pmd/pmd/commit/592e80d4a9e01b4294d10bcad8ead80291c6ffa7";><code>592e80d</code></a>
 [release] prepare release pmd_releases/7.1.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/7d0dfa0b13e96dbbe678b067853631429c61f02e";><code>7d0dfa0</code></a>
 Prepare pmd release 7.1.0</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/31585acc6f5f8aa396d3f1365df348da8e3ca076";><code>31585ac</code></a>
 Bump build-tools from 24-SNAPSHOT to 24</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/d0870f3aa3ddf8508bb172532bfa4a94a136a661";><code>d0870f3</code></a>
 [java] New rule ConfusingArgumentToVarargsMethod (<a 
href="https://redirect.github.com/pmd/pmd/issues/4971";>#4971</a>)</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/04206ecd80dca03495c85c196365579c299732af";><code>04206ec</code></a>
 Revert &quot;[ci] Disable auto-gen-config for regression tests&quot;</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/f5d47ac36e7975919bfafdd0c386f81da2038591";><code>f5d47ac</code></a>
 [ci] Disable auto-gen-config for regression tests</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/102ba1e9625400912548e3ab3a19c765bb2d6727";><code>102ba1e</code></a>
 [ci] Disable auto-gen-config for regression tests</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/a154f783bddf8f76ab9cd858eab0701c2e9ce1f8";><code>a154f78</code></a>
 [doc] Update all-contributors</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/16df3dd4469eae105c104deebfac951894f64e03";><code>16df3dd</code></a>
 [core] Make CPD report maximal, non-repeating and non-overlapping duplicates 
...</li>
   <li><a 
href="https://github.com/pmd/pmd/commit/202943e0cfc2e5dc4f3b24778460693c5aeb9443";><code>202943e</code></a>
 [java] Fix <a href="https://redirect.github.com/pmd/pmd/issues/4948";>#4948</a> 
- ImplicitSwitchFallthrough false positive with nested switc...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/pmd/pmd/compare/pmd_releases/6.55.0...pmd_releases/7.1.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-core&package-manager=maven&previous-version=6.55.0&new-version=7.1.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: dev-unsubscr...@cxf.apache.org

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

Reply via email to