dependabot[bot] opened a new pull request, #17812: URL: https://github.com/apache/camel/pull/17812
Bumps `picocli-version` from 4.7.6 to 4.7.7. Updates `info.picocli:picocli` from 4.7.6 to 4.7.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remkop/picocli/releases">info.picocli:picocli's releases</a>.</em></p> <blockquote> <h2>Picocli 4.7.7</h2> <h1><!-- raw HTML omitted --><!-- raw HTML omitted --> Picocli 4.7.7</h1> <p>The picocli community is pleased to announce picocli 4.7.7.</p> <p>This release includes bugfixes and enhancements.</p> <p>Many thanks to the picocli community for raising these issues and providing the pull requests to address them!</p> <p>This is the eighty-sixth public release. Picocli follows <a href="https://semver.org/">semantic versioning</a>. Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).</p> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> Table of Contents</h2> <ul> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-new">New and noteworthy</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-fixes">Fixed issues</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-deprecated">Deprecations</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-breaking-changes">Potential breaking changes</a></li> </ul> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> New and Noteworthy</h2> <p>This release fixes a problem that was introduced in the previous release (4.7.6), where using an <code>ArgGroup</code> in a <code>Mixin</code> would result in options being added twice, or <code>DuplicateOptionAnnotationsException</code>.</p> <p>The built-in <code>picocli.CommandLine.HelpCommand</code> subcommand now implements <code>Callable<Integer></code> and returns the exit code of the subcommand's <code>exitCodeOnUsageHelp</code> value for the subcommand whose help was requested.</p> <p>From this release, if a command implements both <code>Callable</code> and <code>Runnable</code>, then the default execution strategy will invoke the <code>call</code> method instead of the <code>run</code> method.</p> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> Fixed issues</h2> <ul> <li><a href="https://redirect.github.com/remkop/picocli/issues/2353">#2353</a> Enhancement: <code>picocli.shell.jline3.PicocliCommands::invoke</code> now returns <code>ParseResult</code> instead of null. Thanks to <a href="https://github.com/pford19">Paul</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2336">#2336</a> Enhancement: Avoid syntax error in auto-completion script for invalid option names and <code>paramLabel</code> values starting with a digit. Thanks to <a href="https://github.com/rsenden">Ruud Senden</a> and <a href="https://github.com/tordanik">Tobias Knerr</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2281">#2281</a> Enhancement: Variable interpolation should work for <code>ArgGroup.heading</code> attribute. Thanks to <a href="https://github.com/marcphilipp">Marc Philipp</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2355">#2355</a> Bugfix: The built-in <code>help</code> subcommand should return the exit code of the subcommand's <code>exitCodeOnUsageHelp</code> value for the subcommand whose help was requested. Thanks to <a href="https://github.com/marco-brandizi">marco-brandizi</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2335">#2335</a> Bugfix: Module info missing in all jars except the main picocli jar file. Thanks to <a href="https://github.com/obfischer">Oliver B. Fischer</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2331">#2331</a> Bugfix: AutoComplete with jline3 was showing hidden commands. Thanks to <a href="https://github.com/clebertsuconic">clebertsuconic</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2291">#2291</a> Bugfix: NullPointerException when using PropertiesDefaultProvider. Thanks to <a href="https://github.com/JessHolle">JessHolle</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2344">#2344</a> Bugfix: <code>negatable=true</code> option in an <code>ArgGroup</code> should not add negated option twice. Thanks to <a href="https://github.com/DevSnobo">Robin Fritz</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2309">#2309</a> Bugfix: Duplicate help output for <code>ArgGroup</code> from a <code>Mixin</code>. Thanks to <a href="https://github.com/s-falke">s-falke</a> for raising this. Thanks to <a href="https://github.com/simschla">Simon Gamma</a> for providing a pull request for this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2341">#2341</a> Bugfix: Options get doubled in non validating <code>ArgGroup</code> when used in <code>Mixin</code>. Thanks to <a href="https://github.com/sfeigl">Selene Feigl</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2349">#2349</a> Bugfix: Incorrect results when using <code>ArgGroup</code> + defaultValue + split + List/Set. Thanks to <a href="https://github.com/mithungonsalvez">Mithun Josalyn Gonsalvez</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2292">#2292</a> Bugfix: <code>DuplicateOptionAnnotationsException</code> on using negatable option in <code>ArgGroup</code>. Thanks to <a href="https://github.com/bhavikp19">Bhavik Patel</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2380">#2380</a> Bugfix: boolean with <code>arity=0</code> and <code>defaultValue=false</code> behaved unexpectedly. Thanks to <a href="https://github.com/leonard84">Leonard Brünings</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2290">#2290</a> DOC: User guide, CDI 2.0 (JSR 365) section: fix example and add warning about dynamic proxies. Thanks to <a href="https://github.com/Mert-Z">Mert Zeybekler</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2347">#2347</a> DOC: Fix line-endings in generated asciidoc HTML. Thanks to <a href="https://github.com/fridrich">Fridrich Štrba</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2367">#2367</a> DOC: Fix broken link. Thanks to <a href="https://github.com/yeoleobun">yeoleobun</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2370">#2370</a> DOC: Add at least a link to how to use the CodeGen APT under Bazel. Thanks to <a href="https://github.com/vorburger">Michael Vorburger</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2302">#2302</a> DEP: Bump actions/checkout from 4.1.4 to 4.1.7</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2391">#2391</a> DEP: Bump actions/checkout from 4.1.7 to 4.2.2</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2388">#2388</a> DEP: Bump actions/setup-java from 4.2.1 to 4.7.1</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/remkop/picocli/blob/main/RELEASE-NOTES.md">info.picocli:picocli's changelog</a>.</em></p> <blockquote> <h1><!-- raw HTML omitted --><!-- raw HTML omitted --> Picocli 4.7.7</h1> <p>The picocli community is pleased to announce picocli 4.7.7.</p> <p>This release includes bugfixes and enhancements.</p> <p>Many thanks to the picocli community for raising these issues and providing the pull requests to address them!</p> <p>This is the eighty-sixth public release. Picocli follows <a href="https://semver.org/">semantic versioning</a>. Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).</p> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> Table of Contents</h2> <ul> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-new">New and noteworthy</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-fixes">Fixed issues</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-deprecated">Deprecations</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-breaking-changes">Potential breaking changes</a></li> </ul> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> New and Noteworthy</h2> <p>This release fixes a problem that was introduced in the previous release (4.7.6), where using an <code>ArgGroup</code> in a <code>Mixin</code> would result in options being added twice, or <code>DuplicateOptionAnnotationsException</code>.</p> <p>The built-in <code>picocli.CommandLine.HelpCommand</code> subcommand now implements <code>Callable<Integer></code> and returns the exit code of the subcommand's <code>exitCodeOnUsageHelp</code> value for the subcommand whose help was requested.</p> <p>From this release, if a command implements both <code>Callable</code> and <code>Runnable</code>, then the default execution strategy will invoke the <code>call</code> method instead of the <code>run</code> method.</p> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> Fixed issues</h2> <ul> <li><a href="https://redirect.github.com/remkop/picocli/issues/2353">#2353</a> Enhancement: <code>picocli.shell.jline3.PicocliCommands::invoke</code> now returns <code>ParseResult</code> instead of null. Thanks to <a href="https://github.com/pford19">Paul</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2336">#2336</a> Enhancement: Avoid syntax error in auto-completion script for invalid option names and <code>paramLabel</code> values starting with a digit. Thanks to <a href="https://github.com/rsenden">Ruud Senden</a> and <a href="https://github.com/tordanik">Tobias Knerr</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2281">#2281</a> Enhancement: Variable interpolation should work for <code>ArgGroup.heading</code> attribute. Thanks to <a href="https://github.com/marcphilipp">Marc Philipp</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2355">#2355</a> Bugfix: The built-in <code>help</code> subcommand should return the exit code of the subcommand's <code>exitCodeOnUsageHelp</code> value for the subcommand whose help was requested. Thanks to <a href="https://github.com/marco-brandizi">marco-brandizi</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2335">#2335</a> Bugfix: Module info missing in all jars except the main picocli jar file. Thanks to <a href="https://github.com/obfischer">Oliver B. Fischer</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2331">#2331</a> Bugfix: AutoComplete with jline3 was showing hidden commands. Thanks to <a href="https://github.com/clebertsuconic">clebertsuconic</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2291">#2291</a> Bugfix: NullPointerException when using PropertiesDefaultProvider. Thanks to <a href="https://github.com/JessHolle">JessHolle</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2344">#2344</a> Bugfix: <code>negatable=true</code> option in an <code>ArgGroup</code> should not add negated option twice. Thanks to <a href="https://github.com/DevSnobo">Robin Fritz</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2309">#2309</a> Bugfix: Duplicate help output for <code>ArgGroup</code> from a <code>Mixin</code>. Thanks to <a href="https://github.com/s-falke">s-falke</a> for raising this. Thanks to <a href="https://github.com/simschla">Simon Gamma</a> for providing a pull request for this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2341">#2341</a> Bugfix: Options get doubled in non validating <code>ArgGroup</code> when used in <code>Mixin</code>. Thanks to <a href="https://github.com/sfeigl">Selene Feigl</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2349">#2349</a> Bugfix: Incorrect results when using <code>ArgGroup</code> + defaultValue + split + List/Set. Thanks to <a href="https://github.com/mithungonsalvez">Mithun Josalyn Gonsalvez</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2292">#2292</a> Bugfix: <code>DuplicateOptionAnnotationsException</code> on using negatable option in <code>ArgGroup</code>. Thanks to <a href="https://github.com/bhavikp19">Bhavik Patel</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2380">#2380</a> Bugfix: boolean with <code>arity=0</code> and <code>defaultValue=false</code> behaved unexpectedly. Thanks to <a href="https://github.com/leonard84">Leonard Brünings</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2290">#2290</a> DOC: User guide, CDI 2.0 (JSR 365) section: fix example and add warning about dynamic proxies. Thanks to <a href="https://github.com/Mert-Z">Mert Zeybekler</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2347">#2347</a> DOC: Fix line-endings in generated asciidoc HTML. Thanks to <a href="https://github.com/fridrich">Fridrich Štrba</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2367">#2367</a> DOC: Fix broken link. Thanks to <a href="https://github.com/yeoleobun">yeoleobun</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2370">#2370</a> DOC: Add at least a link to how to use the CodeGen APT under Bazel. Thanks to <a href="https://github.com/vorburger">Michael Vorburger</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2302">#2302</a> DEP: Bump actions/checkout from 4.1.4 to 4.1.7</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2391">#2391</a> DEP: Bump actions/checkout from 4.1.7 to 4.2.2</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2388">#2388</a> DEP: Bump actions/setup-java from 4.2.1 to 4.7.1</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2390">#2390</a> DEP: Bump actions/upload-artifact from 4.3.3 to 4.6.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remkop/picocli/commit/5fcd4415a2cf834a12b4cb1e262a007beaa6b4af"><code>5fcd441</code></a> BUILD: use JReleaser for publishing to Maven Central</li> <li><a href="https://github.com/remkop/picocli/commit/7f14deb5662e856a6adf77b9765f3bf7125fd43f"><code>7f14deb</code></a> Release picocli version 4.7.7</li> <li><a href="https://github.com/remkop/picocli/commit/feae94e3fc2f3ed81851b51996812f159669c7ea"><code>feae94e</code></a> Bump net.ltgt.gradle:gradle-errorprone-plugin from 4.1.0 to 4.2.0</li> <li><a href="https://github.com/remkop/picocli/commit/cacb0e77166d46810f8db145e7aebcb5f4a207bb"><code>cacb0e7</code></a> Bump org.jetbrains.kotlin:kotlin-script-runtime from 2.0.0 to 2.1.20</li> <li><a href="https://github.com/remkop/picocli/commit/44de141c50354600f15a1c97e93237ca3839117a"><code>44de141</code></a> Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 2.0.0 to 2.1.20</li> <li><a href="https://github.com/remkop/picocli/commit/8440061a1384e1ecf8ec274c1bf620180d8fb348"><code>8440061</code></a> Bump jakarta.validation:jakarta.validation-api from 3.1.0 to 3.1.1</li> <li><a href="https://github.com/remkop/picocli/commit/f5b95900dc966902a1742f107dea392fcb0e7437"><code>f5b9590</code></a> Bump org.jline:jline from 3.26.1 to 3.29.0</li> <li><a href="https://github.com/remkop/picocli/commit/9d94fa689170cb1042be851e9a00892b02591473"><code>9d94fa6</code></a> DOC update RELEASE-NOTES for dependency updates</li> <li><a href="https://github.com/remkop/picocli/commit/5bfb673e0605ed43714bdd836756418c45a7bf14"><code>5bfb673</code></a> Revert "Bump org.hamcrest:hamcrest-core from 2.2 to 3.0"</li> <li><a href="https://github.com/remkop/picocli/commit/1afa344c3936ef6b3d0f842c2194409da6fee5d7"><code>1afa344</code></a> Bump org.hibernate.validator:hibernate-validator</li> <li>Additional commits viewable in <a href="https://github.com/remkop/picocli/compare/v4.7.6...v4.7.7">compare view</a></li> </ul> </details> <br /> Updates `info.picocli:picocli-shell-jline3` from 4.7.6 to 4.7.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remkop/picocli/releases">info.picocli:picocli-shell-jline3's releases</a>.</em></p> <blockquote> <h2>Picocli 4.7.7</h2> <h1><!-- raw HTML omitted --><!-- raw HTML omitted --> Picocli 4.7.7</h1> <p>The picocli community is pleased to announce picocli 4.7.7.</p> <p>This release includes bugfixes and enhancements.</p> <p>Many thanks to the picocli community for raising these issues and providing the pull requests to address them!</p> <p>This is the eighty-sixth public release. Picocli follows <a href="https://semver.org/">semantic versioning</a>. Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).</p> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> Table of Contents</h2> <ul> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-new">New and noteworthy</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-fixes">Fixed issues</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-deprecated">Deprecations</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-breaking-changes">Potential breaking changes</a></li> </ul> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> New and Noteworthy</h2> <p>This release fixes a problem that was introduced in the previous release (4.7.6), where using an <code>ArgGroup</code> in a <code>Mixin</code> would result in options being added twice, or <code>DuplicateOptionAnnotationsException</code>.</p> <p>The built-in <code>picocli.CommandLine.HelpCommand</code> subcommand now implements <code>Callable<Integer></code> and returns the exit code of the subcommand's <code>exitCodeOnUsageHelp</code> value for the subcommand whose help was requested.</p> <p>From this release, if a command implements both <code>Callable</code> and <code>Runnable</code>, then the default execution strategy will invoke the <code>call</code> method instead of the <code>run</code> method.</p> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> Fixed issues</h2> <ul> <li><a href="https://redirect.github.com/remkop/picocli/issues/2353">#2353</a> Enhancement: <code>picocli.shell.jline3.PicocliCommands::invoke</code> now returns <code>ParseResult</code> instead of null. Thanks to <a href="https://github.com/pford19">Paul</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2336">#2336</a> Enhancement: Avoid syntax error in auto-completion script for invalid option names and <code>paramLabel</code> values starting with a digit. Thanks to <a href="https://github.com/rsenden">Ruud Senden</a> and <a href="https://github.com/tordanik">Tobias Knerr</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2281">#2281</a> Enhancement: Variable interpolation should work for <code>ArgGroup.heading</code> attribute. Thanks to <a href="https://github.com/marcphilipp">Marc Philipp</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2355">#2355</a> Bugfix: The built-in <code>help</code> subcommand should return the exit code of the subcommand's <code>exitCodeOnUsageHelp</code> value for the subcommand whose help was requested. Thanks to <a href="https://github.com/marco-brandizi">marco-brandizi</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2335">#2335</a> Bugfix: Module info missing in all jars except the main picocli jar file. Thanks to <a href="https://github.com/obfischer">Oliver B. Fischer</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2331">#2331</a> Bugfix: AutoComplete with jline3 was showing hidden commands. Thanks to <a href="https://github.com/clebertsuconic">clebertsuconic</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2291">#2291</a> Bugfix: NullPointerException when using PropertiesDefaultProvider. Thanks to <a href="https://github.com/JessHolle">JessHolle</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2344">#2344</a> Bugfix: <code>negatable=true</code> option in an <code>ArgGroup</code> should not add negated option twice. Thanks to <a href="https://github.com/DevSnobo">Robin Fritz</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2309">#2309</a> Bugfix: Duplicate help output for <code>ArgGroup</code> from a <code>Mixin</code>. Thanks to <a href="https://github.com/s-falke">s-falke</a> for raising this. Thanks to <a href="https://github.com/simschla">Simon Gamma</a> for providing a pull request for this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2341">#2341</a> Bugfix: Options get doubled in non validating <code>ArgGroup</code> when used in <code>Mixin</code>. Thanks to <a href="https://github.com/sfeigl">Selene Feigl</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2349">#2349</a> Bugfix: Incorrect results when using <code>ArgGroup</code> + defaultValue + split + List/Set. Thanks to <a href="https://github.com/mithungonsalvez">Mithun Josalyn Gonsalvez</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2292">#2292</a> Bugfix: <code>DuplicateOptionAnnotationsException</code> on using negatable option in <code>ArgGroup</code>. Thanks to <a href="https://github.com/bhavikp19">Bhavik Patel</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2380">#2380</a> Bugfix: boolean with <code>arity=0</code> and <code>defaultValue=false</code> behaved unexpectedly. Thanks to <a href="https://github.com/leonard84">Leonard Brünings</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2290">#2290</a> DOC: User guide, CDI 2.0 (JSR 365) section: fix example and add warning about dynamic proxies. Thanks to <a href="https://github.com/Mert-Z">Mert Zeybekler</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2347">#2347</a> DOC: Fix line-endings in generated asciidoc HTML. Thanks to <a href="https://github.com/fridrich">Fridrich Štrba</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2367">#2367</a> DOC: Fix broken link. Thanks to <a href="https://github.com/yeoleobun">yeoleobun</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2370">#2370</a> DOC: Add at least a link to how to use the CodeGen APT under Bazel. Thanks to <a href="https://github.com/vorburger">Michael Vorburger</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2302">#2302</a> DEP: Bump actions/checkout from 4.1.4 to 4.1.7</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2391">#2391</a> DEP: Bump actions/checkout from 4.1.7 to 4.2.2</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2388">#2388</a> DEP: Bump actions/setup-java from 4.2.1 to 4.7.1</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/remkop/picocli/blob/main/RELEASE-NOTES.md">info.picocli:picocli-shell-jline3's changelog</a>.</em></p> <blockquote> <h1><!-- raw HTML omitted --><!-- raw HTML omitted --> Picocli 4.7.7</h1> <p>The picocli community is pleased to announce picocli 4.7.7.</p> <p>This release includes bugfixes and enhancements.</p> <p>Many thanks to the picocli community for raising these issues and providing the pull requests to address them!</p> <p>This is the eighty-sixth public release. Picocli follows <a href="https://semver.org/">semantic versioning</a>. Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).</p> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> Table of Contents</h2> <ul> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-new">New and noteworthy</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-fixes">Fixed issues</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-deprecated">Deprecations</a></li> <li><a href="%5B#4%5D(https://redirect.github.com/remkop/picocli/issues/4).7.7-breaking-changes">Potential breaking changes</a></li> </ul> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> New and Noteworthy</h2> <p>This release fixes a problem that was introduced in the previous release (4.7.6), where using an <code>ArgGroup</code> in a <code>Mixin</code> would result in options being added twice, or <code>DuplicateOptionAnnotationsException</code>.</p> <p>The built-in <code>picocli.CommandLine.HelpCommand</code> subcommand now implements <code>Callable<Integer></code> and returns the exit code of the subcommand's <code>exitCodeOnUsageHelp</code> value for the subcommand whose help was requested.</p> <p>From this release, if a command implements both <code>Callable</code> and <code>Runnable</code>, then the default execution strategy will invoke the <code>call</code> method instead of the <code>run</code> method.</p> <h2><!-- raw HTML omitted --><!-- raw HTML omitted --> Fixed issues</h2> <ul> <li><a href="https://redirect.github.com/remkop/picocli/issues/2353">#2353</a> Enhancement: <code>picocli.shell.jline3.PicocliCommands::invoke</code> now returns <code>ParseResult</code> instead of null. Thanks to <a href="https://github.com/pford19">Paul</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2336">#2336</a> Enhancement: Avoid syntax error in auto-completion script for invalid option names and <code>paramLabel</code> values starting with a digit. Thanks to <a href="https://github.com/rsenden">Ruud Senden</a> and <a href="https://github.com/tordanik">Tobias Knerr</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2281">#2281</a> Enhancement: Variable interpolation should work for <code>ArgGroup.heading</code> attribute. Thanks to <a href="https://github.com/marcphilipp">Marc Philipp</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2355">#2355</a> Bugfix: The built-in <code>help</code> subcommand should return the exit code of the subcommand's <code>exitCodeOnUsageHelp</code> value for the subcommand whose help was requested. Thanks to <a href="https://github.com/marco-brandizi">marco-brandizi</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2335">#2335</a> Bugfix: Module info missing in all jars except the main picocli jar file. Thanks to <a href="https://github.com/obfischer">Oliver B. Fischer</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2331">#2331</a> Bugfix: AutoComplete with jline3 was showing hidden commands. Thanks to <a href="https://github.com/clebertsuconic">clebertsuconic</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2291">#2291</a> Bugfix: NullPointerException when using PropertiesDefaultProvider. Thanks to <a href="https://github.com/JessHolle">JessHolle</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2344">#2344</a> Bugfix: <code>negatable=true</code> option in an <code>ArgGroup</code> should not add negated option twice. Thanks to <a href="https://github.com/DevSnobo">Robin Fritz</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2309">#2309</a> Bugfix: Duplicate help output for <code>ArgGroup</code> from a <code>Mixin</code>. Thanks to <a href="https://github.com/s-falke">s-falke</a> for raising this. Thanks to <a href="https://github.com/simschla">Simon Gamma</a> for providing a pull request for this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2341">#2341</a> Bugfix: Options get doubled in non validating <code>ArgGroup</code> when used in <code>Mixin</code>. Thanks to <a href="https://github.com/sfeigl">Selene Feigl</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2349">#2349</a> Bugfix: Incorrect results when using <code>ArgGroup</code> + defaultValue + split + List/Set. Thanks to <a href="https://github.com/mithungonsalvez">Mithun Josalyn Gonsalvez</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2292">#2292</a> Bugfix: <code>DuplicateOptionAnnotationsException</code> on using negatable option in <code>ArgGroup</code>. Thanks to <a href="https://github.com/bhavikp19">Bhavik Patel</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2380">#2380</a> Bugfix: boolean with <code>arity=0</code> and <code>defaultValue=false</code> behaved unexpectedly. Thanks to <a href="https://github.com/leonard84">Leonard Brünings</a> for raising this.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2290">#2290</a> DOC: User guide, CDI 2.0 (JSR 365) section: fix example and add warning about dynamic proxies. Thanks to <a href="https://github.com/Mert-Z">Mert Zeybekler</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2347">#2347</a> DOC: Fix line-endings in generated asciidoc HTML. Thanks to <a href="https://github.com/fridrich">Fridrich Štrba</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2367">#2367</a> DOC: Fix broken link. Thanks to <a href="https://github.com/yeoleobun">yeoleobun</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2370">#2370</a> DOC: Add at least a link to how to use the CodeGen APT under Bazel. Thanks to <a href="https://github.com/vorburger">Michael Vorburger</a> for the pull request.</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2302">#2302</a> DEP: Bump actions/checkout from 4.1.4 to 4.1.7</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2391">#2391</a> DEP: Bump actions/checkout from 4.1.7 to 4.2.2</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2388">#2388</a> DEP: Bump actions/setup-java from 4.2.1 to 4.7.1</li> <li><a href="https://redirect.github.com/remkop/picocli/issues/2390">#2390</a> DEP: Bump actions/upload-artifact from 4.3.3 to 4.6.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remkop/picocli/commit/5fcd4415a2cf834a12b4cb1e262a007beaa6b4af"><code>5fcd441</code></a> BUILD: use JReleaser for publishing to Maven Central</li> <li><a href="https://github.com/remkop/picocli/commit/7f14deb5662e856a6adf77b9765f3bf7125fd43f"><code>7f14deb</code></a> Release picocli version 4.7.7</li> <li><a href="https://github.com/remkop/picocli/commit/feae94e3fc2f3ed81851b51996812f159669c7ea"><code>feae94e</code></a> Bump net.ltgt.gradle:gradle-errorprone-plugin from 4.1.0 to 4.2.0</li> <li><a href="https://github.com/remkop/picocli/commit/cacb0e77166d46810f8db145e7aebcb5f4a207bb"><code>cacb0e7</code></a> Bump org.jetbrains.kotlin:kotlin-script-runtime from 2.0.0 to 2.1.20</li> <li><a href="https://github.com/remkop/picocli/commit/44de141c50354600f15a1c97e93237ca3839117a"><code>44de141</code></a> Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 2.0.0 to 2.1.20</li> <li><a href="https://github.com/remkop/picocli/commit/8440061a1384e1ecf8ec274c1bf620180d8fb348"><code>8440061</code></a> Bump jakarta.validation:jakarta.validation-api from 3.1.0 to 3.1.1</li> <li><a href="https://github.com/remkop/picocli/commit/f5b95900dc966902a1742f107dea392fcb0e7437"><code>f5b9590</code></a> Bump org.jline:jline from 3.26.1 to 3.29.0</li> <li><a href="https://github.com/remkop/picocli/commit/9d94fa689170cb1042be851e9a00892b02591473"><code>9d94fa6</code></a> DOC update RELEASE-NOTES for dependency updates</li> <li><a href="https://github.com/remkop/picocli/commit/5bfb673e0605ed43714bdd836756418c45a7bf14"><code>5bfb673</code></a> Revert "Bump org.hamcrest:hamcrest-core from 2.2 to 3.0"</li> <li><a href="https://github.com/remkop/picocli/commit/1afa344c3936ef6b3d0f842c2194409da6fee5d7"><code>1afa344</code></a> Bump org.hibernate.validator:hibernate-validator</li> <li>Additional commits viewable in <a href="https://github.com/remkop/picocli/compare/v4.7.6...v4.7.7">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: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org