From 5d3e12744eb4e7f564c7c9447d83981df1d85066 Mon Sep 17 00:00:00 2001 From: "cgrindel-self-hosted-renovate[bot]" <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 15:38:39 +0000 Subject: [PATCH] chore(deps): update dependency apple/swift-argument-parser to from: "1.3.1" (#962) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [apple/swift-argument-parser](https://togithub.com/apple/swift-argument-parser) | patch | `from: "1.3.0"` -> `from: "1.3.1"` | --- ### Release Notes
apple/swift-argument-parser (apple/swift-argument-parser) ### [`v1.3.1`](https://togithub.com/apple/swift-argument-parser/blob/HEAD/CHANGELOG.md#131---2024-03-16) [Compare Source](https://togithub.com/apple/swift-argument-parser/compare/1.3.0...1.3.1) ##### Changes - The `CommandConfigration` type is now designated as `Sendable`. (\[[#​615](https://togithub.com/apple/swift-argument-parser/issues/615)]) - The library uses `internal` imports instead of \`\`@\_implementationOnly\` annotations in Swift versions where permitted. (\[[#​616](https://togithub.com/apple/swift-argument-parser/issues/616)]) ##### Fixes - `@Option`- and `@Argument`-annotated optional properties that use a `transform` closure for parsing can now be declared without ambiguity. (\[[#​619](https://togithub.com/apple/swift-argument-parser/issues/619)]) - The help flag is now recognized more consistently when a default subcommand has been specified. (\[[#​612](https://togithub.com/apple/swift-argument-parser/issues/612)]) - Options that use the `.upToNextOption` parsing strategy can now recognize an attached value (e.g. `--numbers=1 2 3`). (\[[#​610](https://togithub.com/apple/swift-argument-parser/issues/610)]) - Generated completion scripts for `zsh` handle repeatable options correctly. (\[[#​614](https://togithub.com/apple/swift-argument-parser/issues/614)]) - Documentation improvements and clarifications. (\[[#​607](https://togithub.com/apple/swift-argument-parser/issues/607)], \[[#​611](https://togithub.com/apple/swift-argument-parser/issues/611)], \[[#​617](https://togithub.com/apple/swift-argument-parser/issues/617)], \[[#​621](https://togithub.com/apple/swift-argument-parser/issues/621)]) - Build improvements for CMake builds. (\[[#​606](https://togithub.com/apple/swift-argument-parser/issues/606)], \[[#​608](https://togithub.com/apple/swift-argument-parser/issues/608)]) The 1.3.1 release includes contributions from \[Coeur], \[compnerd], \[keith], \[MaxDesiatov], \[mayoff], and \[natecook1000]. Thank you!
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com> --- bzlmod/workspace/Package.resolved | 4 ++-- bzlmod/workspace/Package.swift | 2 +- bzlmod/workspace/swift_deps_index.json | 4 ++-- examples/pkg_manifest_minimal/Package.swift | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bzlmod/workspace/Package.resolved b/bzlmod/workspace/Package.resolved index f952ff47e..2fd55617b 100644 --- a/bzlmod/workspace/Package.resolved +++ b/bzlmod/workspace/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-argument-parser", "state" : { - "revision" : "c8ed701b513cf5177118a175d85fbbbcd707ab41", - "version" : "1.3.0" + "revision" : "46989693916f56d1186bd59ac15124caef896560", + "version" : "1.3.1" } }, { diff --git a/bzlmod/workspace/Package.swift b/bzlmod/workspace/Package.swift index 0e94e6d2e..191bdc02d 100644 --- a/bzlmod/workspace/Package.swift +++ b/bzlmod/workspace/Package.swift @@ -8,7 +8,7 @@ let package = Package( .executable(name: "my-executable", targets: ["MyExecutable"]), ], dependencies: [ - .package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.0"), + .package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.1"), .package(url: "https://github.com/apple/swift-log", from: "1.5.4"), ], targets: [ diff --git a/bzlmod/workspace/swift_deps_index.json b/bzlmod/workspace/swift_deps_index.json index b5c605491..8bc34a111 100644 --- a/bzlmod/workspace/swift_deps_index.json +++ b/bzlmod/workspace/swift_deps_index.json @@ -82,9 +82,9 @@ "name": "swiftpkg_swift_argument_parser", "identity": "swift-argument-parser", "remote": { - "commit": "c8ed701b513cf5177118a175d85fbbbcd707ab41", + "commit": "46989693916f56d1186bd59ac15124caef896560", "remote": "https://github.com/apple/swift-argument-parser", - "version": "1.3.0" + "version": "1.3.1" } }, { diff --git a/examples/pkg_manifest_minimal/Package.swift b/examples/pkg_manifest_minimal/Package.swift index 9d5a232c1..9163727b8 100644 --- a/examples/pkg_manifest_minimal/Package.swift +++ b/examples/pkg_manifest_minimal/Package.swift @@ -5,7 +5,7 @@ import PackageDescription let package = Package( name: "MySwiftPackage", dependencies: [ - .package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.0"), + .package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.1"), .package(url: "https://github.com/apple/swift-log", from: "1.5.4"), .package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.53.5"), .package(path: "third_party/my_local_package"),