Skip to content

Commit 9b7df40

Browse files
chore(deps): update dependency apple/swift-argument-parser to from: "1.6.2" (#27)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [apple/swift-argument-parser](https://redirect.github.com/apple/swift-argument-parser) | minor | `from: "1.5.1"` -> `from: "1.6.2"` | --- ### Release Notes <details> <summary>apple/swift-argument-parser (apple/swift-argument-parser)</summary> ### [`v1.6.2`](https://redirect.github.com/apple/swift-argument-parser/blob/HEAD/CHANGELOG.md#162---2025-10-01) [Compare Source](https://redirect.github.com/apple/swift-argument-parser/compare/1.6.1...1.6.2) ##### Fixes - Fixes an ArgumentParser build failure for WASI. (\[[#&#8203;794](https://redirect.github.com/apple/swift-argument-parser/issues/794)]) ### [`v1.6.1`](https://redirect.github.com/apple/swift-argument-parser/blob/HEAD/CHANGELOG.md#161---2025-07-01) [Compare Source](https://redirect.github.com/apple/swift-argument-parser/compare/1.6.0...1.6.1) ##### Fixes - Resolves a source break for clients that have conditional conformances to `ExpressibleByArgument` or `ParsableArguments`. (\[[#&#8203;792](https://redirect.github.com/apple/swift-argument-parser/issues/792)]) ### [`v1.6.0`](https://redirect.github.com/apple/swift-argument-parser/blob/HEAD/CHANGELOG.md#160---2025-06-30) [Compare Source](https://redirect.github.com/apple/swift-argument-parser/compare/1.5.1...1.6.0) ##### Additions - Options with `CaseIterable` types can now provide help descriptions on a per-value basis. (\[[#&#8203;647](https://redirect.github.com/apple/swift-argument-parser/issues/647)]) - New API for accessing the shell and shell version while generating completions. (\[[#&#8203;680](https://redirect.github.com/apple/swift-argument-parser/issues/680)], \[[#&#8203;690](https://redirect.github.com/apple/swift-argument-parser/issues/690)]) - The `generate-docc-reference` plugin generates a DocC reference folder for your CLI tool. (\[[#&#8203;694](https://redirect.github.com/apple/swift-argument-parser/issues/694)], \[[#&#8203;754](https://redirect.github.com/apple/swift-argument-parser/issues/754)], \[[#&#8203;773](https://redirect.github.com/apple/swift-argument-parser/issues/773)]) ##### Changes - Testing and continuous integration improvements, including migrating to GitHub workflows. (\[[#&#8203;692](https://redirect.github.com/apple/swift-argument-parser/issues/692)], \[[#&#8203;693](https://redirect.github.com/apple/swift-argument-parser/issues/693)], \[[#&#8203;696](https://redirect.github.com/apple/swift-argument-parser/issues/696)], \[[#&#8203;698](https://redirect.github.com/apple/swift-argument-parser/issues/698)], \[[#&#8203;699](https://redirect.github.com/apple/swift-argument-parser/issues/699)], \[[#&#8203;700](https://redirect.github.com/apple/swift-argument-parser/issues/700)], \[[#&#8203;701](https://redirect.github.com/apple/swift-argument-parser/issues/701)], \[[#&#8203;708](https://redirect.github.com/apple/swift-argument-parser/issues/708)], \[[#&#8203;711](https://redirect.github.com/apple/swift-argument-parser/issues/711)], \[[#&#8203;718](https://redirect.github.com/apple/swift-argument-parser/issues/718)], \[[#&#8203;716](https://redirect.github.com/apple/swift-argument-parser/issues/716)], \[[#&#8203;714](https://redirect.github.com/apple/swift-argument-parser/issues/714)], \[[#&#8203;712](https://redirect.github.com/apple/swift-argument-parser/issues/712)], \[[#&#8203;732](https://redirect.github.com/apple/swift-argument-parser/issues/732)], \[[#&#8203;730](https://redirect.github.com/apple/swift-argument-parser/issues/730)], \[[#&#8203;746](https://redirect.github.com/apple/swift-argument-parser/issues/746)], \[[#&#8203;747](https://redirect.github.com/apple/swift-argument-parser/issues/747)], \[[#&#8203;760](https://redirect.github.com/apple/swift-argument-parser/issues/760)]) - The associated closure for `CompletionKind.custom` now takes three parameters: the array of shell words currently in use for the completion request, the offset in that array for the word that completions are being requested for, and the prefix of that word that precedes the cursor. In addition, the associated closure can be `async`. The single-argument closure version of `CompletionKind.custom` is deprecated with this release. (\[[#&#8203;763](https://redirect.github.com/apple/swift-argument-parser/issues/763)], \[[#&#8203;770](https://redirect.github.com/apple/swift-argument-parser/issues/770)], \[[#&#8203;782](https://redirect.github.com/apple/swift-argument-parser/issues/782)]) - `ParsableArguments` and `ExpressibleByArgument` now conform to `SendableMetatype` when builing with a minimum Swift 6.2 compiler. (\[[#&#8203;789](https://redirect.github.com/apple/swift-argument-parser/issues/789)]) ##### Fixes - Significant fixes and improvements across the entire completion script generation system, too numerous to mention here. Please note: numerous longstanding issues still remain in the completion scripts (mainly involving quoting/escaping); they will be fixed over time. A special thanks to [@&#8203;rgoldberg](https://redirect.github.com/rgoldberg) for the investment in completion script quality! (\[[#&#8203;727](https://redirect.github.com/apple/swift-argument-parser/issues/727)], \[[#&#8203;735](https://redirect.github.com/apple/swift-argument-parser/issues/735)], \[[#&#8203;738](https://redirect.github.com/apple/swift-argument-parser/issues/738)], \[[#&#8203;740](https://redirect.github.com/apple/swift-argument-parser/issues/740)], \[[#&#8203;762](https://redirect.github.com/apple/swift-argument-parser/issues/762)], \[[#&#8203;763](https://redirect.github.com/apple/swift-argument-parser/issues/763)], \[[#&#8203;775](https://redirect.github.com/apple/swift-argument-parser/issues/775)], \[[#&#8203;770](https://redirect.github.com/apple/swift-argument-parser/issues/770)], \[[#&#8203;777](https://redirect.github.com/apple/swift-argument-parser/issues/777)], \[[#&#8203;767](https://redirect.github.com/apple/swift-argument-parser/issues/767)]) - Improvements to `generate-manual` plugin. (\[[#&#8203;663](https://redirect.github.com/apple/swift-argument-parser/issues/663)], \[[#&#8203;667](https://redirect.github.com/apple/swift-argument-parser/issues/667)]) - Error messaging when a user provides a single-dash option is now improved, along with other error reporting improvements. (\[[#&#8203;728](https://redirect.github.com/apple/swift-argument-parser/issues/728)], \[[#&#8203;744](https://redirect.github.com/apple/swift-argument-parser/issues/744)]) - Implementation improvements and fixes for both older and newer versions of Swift. (\[[#&#8203;676](https://redirect.github.com/apple/swift-argument-parser/issues/676)], \[[#&#8203;707](https://redirect.github.com/apple/swift-argument-parser/issues/707)], \[[#&#8203;705](https://redirect.github.com/apple/swift-argument-parser/issues/705)], \[[#&#8203;720](https://redirect.github.com/apple/swift-argument-parser/issues/720)], \[[#&#8203;666](https://redirect.github.com/apple/swift-argument-parser/issues/666)], \[[#&#8203;724](https://redirect.github.com/apple/swift-argument-parser/issues/724)], \[[#&#8203;731](https://redirect.github.com/apple/swift-argument-parser/issues/731)], \[[#&#8203;766](https://redirect.github.com/apple/swift-argument-parser/issues/766)], \[[#&#8203;685](https://redirect.github.com/apple/swift-argument-parser/issues/685)], \[[#&#8203;729](https://redirect.github.com/apple/swift-argument-parser/issues/729)], \[[#&#8203;736](https://redirect.github.com/apple/swift-argument-parser/issues/736)], \[[#&#8203;741](https://redirect.github.com/apple/swift-argument-parser/issues/741)]) - Better capturing of tool configuration in `ToolInfo`. (\[[#&#8203;669](https://redirect.github.com/apple/swift-argument-parser/issues/669)], \[[#&#8203;697](https://redirect.github.com/apple/swift-argument-parser/issues/697)]) - Documentation improvements. (\[[#&#8203;657](https://redirect.github.com/apple/swift-argument-parser/issues/657)], \[[#&#8203;678](https://redirect.github.com/apple/swift-argument-parser/issues/678)], \[[#&#8203;743](https://redirect.github.com/apple/swift-argument-parser/issues/743)]) The 1.6.0 release includes contributions from \[bripeticca], \[cg-soft], \[compnerd], \[dshan4585], \[heckj], \[natecook1000], \[rauhul], \[rgoldberg], and \[Steelskin]. Thank you! *** </details> --- ### 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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/ionic-team/capacitor-plugin-converter). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41NC4yIiwidXBkYXRlZEluVmVyIjoiNDIuNTQuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 03dd169 commit 9b7df40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let package = Package(
77
name: "capacitor-plugin-converter",
88
platforms: [.macOS(.v15)],
99
dependencies: [
10-
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.1"),
10+
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.6.2"),
1111
.package(url: "https://github.com/apple/swift-syntax.git", from: "601.0.1"),
1212
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", from: "5.0.0"),
1313
],

0 commit comments

Comments
 (0)