ASSERT-KTH / sorald

Automatic repair system for static analysis warnings from SonarQube's SonarJava, TDSC 2022 http://arxiv.org/pdf/2103.12033
MIT License
89 stars 27 forks source link

fix(deps): update picocli.version to v4.7.4 - autoclosed #1044

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
info.picocli:picocli-codegen (source) 4.7.2 -> 4.7.4 age adoption passing confidence
info.picocli:picocli (source) 4.7.2 -> 4.7.4 age adoption passing confidence

Release Notes

remkop/picocli (info.picocli:picocli-codegen) ### [`v4.7.4`](https://togithub.com/remkop/picocli/blob/HEAD/RELEASE-NOTES.md#a-name474a-Picocli-474) [Compare Source](https://togithub.com/remkop/picocli/compare/v4.7.3...v4.7.4) The picocli community is pleased to announce picocli 4.7.4. This release includes bugfixes and enhancements. Many thanks to the picocli community for raising these issues and providing the pull requests to address them! This is the eighty-third public release. Picocli follows [semantic versioning](https://semver.org/). Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96). #### Table of Contents - [New and noteworthy](#​4.7.4-new) - [Fixed issues](#​4.7.4-fixes) - [Deprecations](#​4.7.4-deprecated) - [Potential breaking changes](#​4.7.4-breaking-changes) #### New and Noteworthy See fixed items below. I cheated on the semantic versioning in this release: a public setter method was added in a class in the `picocli.shell.jline3` module. In spite of that, the version number went from 4.7.3 to 4.7.4 (not 4.8.0). My apologies. #### Fixed issues - \[[#​2028](https://togithub.com/remkop/picocli/issues/2028)]\[[#​2031](https://togithub.com/remkop/picocli/issues/2031)] API: Add setter for name in `picocli.shell.jline3.PicocliCommands`. Thanks to [Irina Leontyuk](https://togithub.com/irinaleo) for raising this. - \[[#​2026](https://togithub.com/remkop/picocli/issues/2026)]\[[#​2027](https://togithub.com/remkop/picocli/issues/2027)] Enhancement: Improved feedback on mistyped subcommands. Thanks to [David Pond](https://togithub.com/mauvo) for the pull request. - \[[#​2029](https://togithub.com/remkop/picocli/issues/2029)]\[[#​2034](https://togithub.com/remkop/picocli/issues/2034)] Enhancement: prevent `java.nio.charset.UnsupportedCharsetException: cp0` on windows, and fall back to the default charset if the charset provided by System property `sun.stdout.encoding` is invalid. Thanks to [ Bartosz Spyrko-Smietanko](https://togithub.com/spyrkob) for the pull request. - \[[#​2035](https://togithub.com/remkop/picocli/issues/2035)]\[[#​2036](https://togithub.com/remkop/picocli/issues/2036)] Bugfix: Option "mapFallbackValue" ignored when inherited to subcommand. Thanks to [Dan Ziemba](https://togithub.com/zman0900) for the pull request. - \[[#​1848](https://togithub.com/remkop/picocli/issues/1848)]\[[#​2030](https://togithub.com/remkop/picocli/issues/2030)] Bugfix: fix issue with required options in `ArgGroup` becoming optional when combined with `DefaultValueProvider`. Thanks to [Ruud Senden](https://togithub.com/rsenden) and [Mike Snowden](https://togithub.com/wtfacoconut) for the pull request. - \[[#​2020](https://togithub.com/remkop/picocli/issues/2020)] DEP: Bump step-security/harden-runner from 2.3.0 to 2.4.0 - \[[#​2033](https://togithub.com/remkop/picocli/issues/2033)] DEP: Bump github/codeql-action from 2.2.12 to 2.3.5 - \[[#​2015](https://togithub.com/remkop/picocli/issues/2015)] DEP: Bump junit5Version from 5.9.2 to 5.9.3 - \[[#​2014](https://togithub.com/remkop/picocli/issues/2014)] DEP: Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.8.20 to 1.8.21 - \[[#​2013](https://togithub.com/remkop/picocli/issues/2013)] DEP: Bump org.jetbrains.kotlin:kotlin-script-runtime from 1.8.20 to 1.8.21 - \[[#​2008](https://togithub.com/remkop/picocli/issues/2008)] DEP: Bump springBootVersion from 2.7.10 to 2.7.11 - \[[#​2007](https://togithub.com/remkop/picocli/issues/2007)] DEP: Bump org.asciidoctor:asciidoctorj-pdf from 2.3.6 to 2.3.7 #### Deprecations No features were deprecated in this release. #### Potential breaking changes This release has no breaking changes. ### [`v4.7.3`](https://togithub.com/remkop/picocli/blob/HEAD/RELEASE-NOTES.md#a-name473a-Picocli-473) [Compare Source](https://togithub.com/remkop/picocli/compare/v4.7.2...v4.7.3) The picocli community is pleased to announce picocli 4.7.3. This release includes bugfixes and enhancements. This is the eighty-second public release. Picocli follows [semantic versioning](https://semver.org/). Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96). #### Table of Contents - [New and noteworthy](#​4.7.3-new) - [Fixed issues](#​4.7.3-fixes) - [Deprecations](#​4.7.3-deprecated) - [Potential breaking changes](#​4.7.3-breaking-changes) #### New and Noteworthy Fixed a regression introduced in picocli 4.7.2. Multi-value options whose `fallbackValue` is set to `CommandLine.Option.NULL_VALUE`, may see a `NullPointerException` if the option is specified on the command line without a parameter but with a `=` attached, like `--option=`. Also, this release fixes broken links in the Javadoc. #### Fixed issues - \[[#​1998](https://togithub.com/remkop/picocli/issues/1998)] Bugfix: ParameterException: NullPointerException: null while processing argument at or before arg\[0]. Thanks to [Jiri Daněk](https://togithub.com/jiridanek) for raising this. - \[[#​1957](https://togithub.com/remkop/picocli/issues/1957)] DOC: Fixed broken links in the javadoc. Thanks to [Andreas Deininger](https://togithub.com/deining) for raising this. - \[[#​2002](https://togithub.com/remkop/picocli/issues/2002)] DEP: Bump actions/checkout from 3.5.0 to 3.5.2 - \[[#​2005](https://togithub.com/remkop/picocli/issues/2005)] DEP: Bump gradle/gradle-build-action from 2.4.0 to 2.4.2 - \[[#​2003](https://togithub.com/remkop/picocli/issues/2003)] DEP: Bump github/codeql-action from 2.2.11 to 2.2.12 - \[[#​1997](https://togithub.com/remkop/picocli/issues/1997)] DEP: Bump org.asciidoctor:asciidoctorj-pdf from 2.3.4 to 2.3.6 #### Deprecations No features were deprecated in this release. #### Potential breaking changes This release has no breaking changes.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.



This PR has been generated by Mend Renovate. View repository job log here.