-
Notifications
You must be signed in to change notification settings - Fork 2
Comparing changes
Open a pull request
base repository: cloudquery/plugin-sdk-java
base: v0.0.40
head repository: cloudquery/plugin-sdk-java
compare: v0.0.41
- 6 commits
- 4 files changed
- 1 contributor
Commits on May 1, 2025
-
fix(deps): Update dependency com.google.guava:guava to v33.4.8-jre (#331
) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [com.google.guava:guava](https://redirect.github.com/google/guava) | dependencies | patch | `33.4.5-jre` -> `33.4.8-jre` | --- ### Configuration π **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined). π¦ **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. π **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
Configuration menu - View commit details
-
Copy full SHA for becd515 - Browse repository at this point
Copy the full SHA becd515View commit details -
fix(deps): Update dependency info.picocli:picocli to v4.7.7 (#332)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [info.picocli:picocli](https://picocli.info) ([source](https://redirect.github.com/remkop/picocli)) | dependencies | patch | `4.7.6` -> `4.7.7` | --- ### Release Notes <details> <summary>remkop/picocli (info.picocli:picocli)</summary> ### [`v4.7.7`](https://redirect.github.com/remkop/picocli/blob/HEAD/RELEASE-NOTES.md#a-name477a-Picocli-477) The picocli community is pleased to announce picocli 4.7.7. 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-sixth public release. Picocli follows [semantic versioning](https://semver.org/). Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96). #### <a name="4.7.7-toc"></a> Table of Contents - [New and noteworthy](#​4.7.7-new) - [Fixed issues](#​4.7.7-fixes) - [Deprecations](#​4.7.7-deprecated) - [Potential breaking changes](#​4.7.7-breaking-changes) #### <a name="4.7.7-new"></a> New and Noteworthy This release fixes a problem that was introduced in the previous release (4.7.6), where using an `ArgGroup` in a `Mixin` would result in options being added twice, or `DuplicateOptionAnnotationsException`. The built-in `picocli.CommandLine.HelpCommand` subcommand now implements `Callable<Integer>` and returns the exit code of the subcommand's `exitCodeOnUsageHelp` value for the subcommand whose help was requested. From this release, if a command implements both `Callable` and `Runnable`, then the default execution strategy will invoke the `call` method instead of the `run` method. #### <a name="4.7.7-fixes"></a> Fixed issues - \[[#​2353](https://redirect.github.com/remkop/picocli/issues/2353)] Enhancement: `picocli.shell.jline3.PicocliCommands::invoke` now returns `ParseResult` instead of null. Thanks to [Paul](https://redirect.github.com/pford19) for raising this. - \[[#​2336](https://redirect.github.com/remkop/picocli/issues/2336)] Enhancement: Avoid syntax error in auto-completion script for invalid option names and `paramLabel` values starting with a digit. Thanks to [Ruud Senden](https://redirect.github.com/rsenden) and [Tobias Knerr](https://redirect.github.com/tordanik) for raising this. - \[[#​2281](https://redirect.github.com/remkop/picocli/issues/2281)] Enhancement: Variable interpolation should work for `ArgGroup.heading` attribute. Thanks to [Marc Philipp](https://redirect.github.com/marcphilipp) for raising this. - \[[#​2355](https://redirect.github.com/remkop/picocli/issues/2355)] Bugfix: The built-in `help` subcommand should return the exit code of the subcommand's `exitCodeOnUsageHelp` value for the subcommand whose help was requested. Thanks to [marco-brandizi](https://redirect.github.com/marco-brandizi) for raising this. - \[[#​2335](https://redirect.github.com/remkop/picocli/issues/2335)] Bugfix: Module info missing in all jars except the main picocli jar file. Thanks to [Oliver B. Fischer](https://redirect.github.com/obfischer) for raising this. - \[[#​2331](https://redirect.github.com/remkop/picocli/issues/2331)] Bugfix: AutoComplete with jline3 was showing hidden commands. Thanks to [clebertsuconic](https://redirect.github.com/clebertsuconic) for raising this. - \[[#​2291](https://redirect.github.com/remkop/picocli/issues/2291)] Bugfix: NullPointerException when using PropertiesDefaultProvider. Thanks to [JessHolle](https://redirect.github.com/JessHolle) for raising this. - \[[#​2344](https://redirect.github.com/remkop/picocli/issues/2344)] Bugfix: `negatable=true` option in an `ArgGroup` should not add negated option twice. Thanks to [Robin Fritz](https://redirect.github.com/DevSnobo) for raising this. - \[[#​2309](https://redirect.github.com/remkop/picocli/issues/2309)] Bugfix: Duplicate help output for `ArgGroup` from a `Mixin`. Thanks to [s-falke](https://redirect.github.com/s-falke) for raising this. Thanks to [Simon Gamma](https://redirect.github.com/simschla) for providing a pull request for this. - \[[#​2341](https://redirect.github.com/remkop/picocli/issues/2341)] Bugfix: Options get doubled in non validating `ArgGroup` when used in `Mixin`. Thanks to [Selene Feigl](https://redirect.github.com/sfeigl) for raising this. - \[[#​2349](https://redirect.github.com/remkop/picocli/issues/2349)] Bugfix: Incorrect results when using `ArgGroup` + defaultValue + split + List/Set. Thanks to [Mithun Josalyn Gonsalvez](https://redirect.github.com/mithungonsalvez) for raising this. - \[[#​2292](https://redirect.github.com/remkop/picocli/issues/2292)] Bugfix: `DuplicateOptionAnnotationsException` on using negatable option in `ArgGroup`. Thanks to [Bhavik Patel](https://redirect.github.com/bhavikp19) for raising this. - \[[#​2380](https://redirect.github.com/remkop/picocli/issues/2380)] Bugfix: boolean with `arity=0` and `defaultValue=false` behaved unexpectedly. Thanks to [Leonard BrΓΌnings](https://redirect.github.com/leonard84) for raising this. - \[[#​2290](https://redirect.github.com/remkop/picocli/issues/2290)] DOC: User guide, CDI 2.0 (JSR 365) section: fix example and add warning about dynamic proxies. Thanks to [Mert Zeybekler](https://redirect.github.com/Mert-Z) for the pull request. - \[[#​2347](https://redirect.github.com/remkop/picocli/issues/2347)] DOC: Fix line-endings in generated asciidoc HTML. Thanks to [Fridrich Ε trba](https://redirect.github.com/fridrich) for the pull request. - \[[#​2367](https://redirect.github.com/remkop/picocli/issues/2367)] DOC: Fix broken link. Thanks to [yeoleobun](https://redirect.github.com/yeoleobun) for the pull request. - \[[#​2370](https://redirect.github.com/remkop/picocli/issues/2370)] DOC: Add at least a link to how to use the CodeGen APT under Bazel. Thanks to [Michael Vorburger](https://redirect.github.com/vorburger) for the pull request. - \[[#​2302](https://redirect.github.com/remkop/picocli/issues/2302)] DEP: Bump actions/checkout from 4.1.4 to 4.1.7 - \[[#​2391](https://redirect.github.com/remkop/picocli/issues/2391)] DEP: Bump actions/checkout from 4.1.7 to 4.2.2 - \[[#​2388](https://redirect.github.com/remkop/picocli/issues/2388)] DEP: Bump actions/setup-java from 4.2.1 to 4.7.1 - \[[#​2390](https://redirect.github.com/remkop/picocli/issues/2390)] DEP: Bump actions/upload-artifact from 4.3.3 to 4.6.2 - \[[#​2317](https://redirect.github.com/remkop/picocli/issues/2317)] DEP: Bump gradle/wrapper-validation-action from 3.3.2 to 3.5.0 - \[[#​2321](https://redirect.github.com/remkop/picocli/issues/2321)] DEP: Bump com.google.errorprone:error_prone_core from 2.27.1 to 2.29.2 - \[[#​2382](https://redirect.github.com/remkop/picocli/issues/2382)] DEP: Bump com.google.errorprone:error_prone_core from 2.29.2 to 2.37.0 - \[[#​2329](https://redirect.github.com/remkop/picocli/issues/2329)] DEP: Bump github/codeql-action from 3.25.3 to 3.25.15 - \[[#​2387](https://redirect.github.com/remkop/picocli/issues/2387)] DEP: Bump github/codeql-action from 3.25.15 to 3.28.15 \[[#​2399](https://redirect.github.com/remkop/picocli/issues/2399)] DEP: Bump jakarta.validation:jakarta.validation-api from 3.1.0 to 3.1.1 - \[[#​2384](https://redirect.github.com/remkop/picocli/issues/2384)] DEP: Bump junit5Version from 5.10.2 to 5.12.2 - \[[#​2392](https://redirect.github.com/remkop/picocli/issues/2392)] DEP: Bump log4j2Version from 2.23.1 to 2.24.3 - \[[#​2308](https://redirect.github.com/remkop/picocli/issues/2308)] DEP: Bump net.ltgt.gradle:gradle-errorprone-plugin from 3.1.0 to 4.0.1 \[[#​2403](https://redirect.github.com/remkop/picocli/issues/2403)] DEP: Bump net.ltgt.gradle:gradle-errorprone-plugin from 4.1.0 to 4.2.0 - \[[#​2393](https://redirect.github.com/remkop/picocli/issues/2393)] DEP: Bump org.apache.ivy:ivy from 2.5.2 to 2.5.3 - \[[#​2385](https://redirect.github.com/remkop/picocli/issues/2385)] DEP: Bump org.asciidoctor:asciidoctor-gradle-jvm from 4.0.2 to 4.0.4 - \[[#​2386](https://redirect.github.com/remkop/picocli/issues/2386)] DEP: Bump org.asciidoctor:asciidoctorj-pdf from 2.3.15 to 2.3.19 - \[[#​2394](https://redirect.github.com/remkop/picocli/issues/2394)] DEP: Bump org.hamcrest:hamcrest-core from 2.2 to 3.0 (REVERTED) - \[[#​2396](https://redirect.github.com/remkop/picocli/issues/2396)] DEP: Bump org.hibernate.validator:hibernate-validator from 8.0.1.Final to 8.0.2.Final - \[[#​2395](https://redirect.github.com/remkop/picocli/issues/2395)] DEP: Bump org.hibernate.validator:hibernate-validator-annotation-processor from 8.0.1.Final to 8.0.2.Final \[[#​2400](https://redirect.github.com/remkop/picocli/issues/2400)] DEP: Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 2.0.0 to 2.1.20 \[[#​2401](https://redirect.github.com/remkop/picocli/issues/2401)] DEP: Bump org.jetbrains.kotlin:kotlin-script-runtime from 2.0.0 to 2.1.20 \[[#​2402](https://redirect.github.com/remkop/picocli/issues/2402)] DEP: Bump org.jline:jline from 3.26.1 to 3.29.0 - \[[#​2383](https://redirect.github.com/remkop/picocli/issues/2383)] DEP: Bump org.scala-lang:scala-library from 2.13.14 to 2.13.16 - \[[#​2330](https://redirect.github.com/remkop/picocli/issues/2330)] DEP: Bump ossf/scorecard-action from 2.3.1 to 2.4.0 - \[[#​2389](https://redirect.github.com/remkop/picocli/issues/2389)] DEP: Bump ossf/scorecard-action from 2.4.0 to 2.4.1 - \[[#​2320](https://redirect.github.com/remkop/picocli/issues/2320)] DEP: Bump step-security/harden-runner from 2.7.1 to 2.9.0 - \[[#​2397](https://redirect.github.com/remkop/picocli/issues/2397)] DEP: Bump step-security/harden-runner from 2.9.0 to 2.11.1 #### <a name="4.7.7-deprecated"></a> Deprecations No features were deprecated in this release. #### <a name="4.7.7-breaking-changes"></a> Potential breaking changes This release has no breaking changes. </details> --- ### Configuration π **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined). π¦ **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. π **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
Configuration menu - View commit details
-
Copy full SHA for 0e12831 - Browse repository at this point
Copy the full SHA 0e12831View commit details -
fix(deps): Update dependency nl.jqno.equalsverifier:equalsverifier toβ¦
β¦ v3.19.3 (#334) This PR contains the following updates: | Package | Type | Update | Change | Pending | |---|---|---|---|---| | [nl.jqno.equalsverifier:equalsverifier](https://www.jqno.nl/equalsverifier) ([source](https://redirect.github.com/jqno/equalsverifier)) | dependencies | patch | `3.19.2` -> `3.19.3` | `3.19.4` | --- ### Release Notes <details> <summary>jqno/equalsverifier (nl.jqno.equalsverifier:equalsverifier)</summary> ### [`v3.19.3`](https://redirect.github.com/jqno/equalsverifier/blob/HEAD/CHANGELOG.md#3193---2025-04-04) ##### Fixed - StackOverflowError when a field has type with a generic type bound that recurses into itself with a wildcard: `interface X<T extends X<?>>`. ([Issue 1062](https://redirect.github.com/jqno/equalsverifier/issues/1062)) </details> --- ### Configuration π **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined). π¦ **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. π **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
Configuration menu - View commit details
-
Copy full SHA for a541e73 - Browse repository at this point
Copy the full SHA a541e73View commit details -
fix(deps): Update eclipse-temurin Docker tag to v21.0.7_6-jre (#335)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | eclipse-temurin | final | patch | `21.0.6_7-jre` -> `21.0.7_6-jre` | --- ### Configuration π **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined). π¦ **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. π **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
Configuration menu - View commit details
-
Copy full SHA for 97b296b - Browse repository at this point
Copy the full SHA 97b296bView commit details
Commits on May 9, 2025
-
fix(deps): Update dependency io.cloudquery:plugin-pb-java to v0.0.32 (#β¦
β¦336) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | io.cloudquery:plugin-pb-java | dependencies | patch | `0.0.31` -> `0.0.32` | --- ### Configuration π **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). π¦ **Automerge**: Disabled by config. Please merge this manually once you are satisfied. β» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. π **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
Configuration menu - View commit details
-
Copy full SHA for 24ef423 - Browse repository at this point
Copy the full SHA 24ef423View commit details -
chore(main): Release v0.0.41 (#333)
π€ I have created a release *beep* *boop* --- ## [0.0.41](v0.0.40...v0.0.41) (2025-05-09) ### Bug Fixes * **deps:** Update dependency com.google.guava:guava to v33.4.8-jre ([#331](#331)) ([becd515](becd515)) * **deps:** Update dependency info.picocli:picocli to v4.7.7 ([#332](#332)) ([0e12831](0e12831)) * **deps:** Update dependency io.cloudquery:plugin-pb-java to v0.0.32 ([#336](#336)) ([24ef423](24ef423)) * **deps:** Update dependency nl.jqno.equalsverifier:equalsverifier to v3.19.3 ([#334](#334)) ([a541e73](a541e73)) * **deps:** Update eclipse-temurin Docker tag to v21.0.7_6-jre ([#335](#335)) ([97b296b](97b296b)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Configuration menu - View commit details
-
Copy full SHA for 430df9b - Browse repository at this point
Copy the full SHA 430df9bView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we canβt render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.0.40...v0.0.41