From 70deb1ba1e32ffcb57ae334deccde5e90a126e08 Mon Sep 17 00:00:00 2001 From: Dmitry Kovba Date: Wed, 4 Jun 2025 13:37:50 -0700 Subject: [PATCH] Update `swift-docc-plugin` to fix a non-sendable warning (#8) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR resolves warnings: ``` …/.build/checkouts/swift-docc-plugin/Plugins/Swift-DocC Preview/Symbolic Links/SwiftDocCPluginUtilities/BuildGraph/DocumentationBuildGraph.swift:106:17: warning: capture of non-sendable type 'Target.Type' in an isolated closure 104 | // Copy the closure and the target into a block operation object 105 | let new = BlockOperation { [work, task] in 106 | work(task) | `- warning: capture of non-sendable type 'Target.Type' in an isolated closure 107 | } 108 | operationsByID[task.id] = new …/.build/checkouts/swift-docc-plugin/Plugins/Swift-DocC Preview/Symbolic Links/SwiftDocCPluginUtilities/BuildGraph/DocumentationBuildGraph.swift:105:41: warning: capture of non-sendable type 'Target.Type' in an isolated closure 103 | } 104 | // Copy the closure and the target into a block operation object 105 | let new = BlockOperation { [work, task] in | `- warning: capture of non-sendable type 'Target.Type' in an isolated closure 106 | work(task) 107 | } ``` --- Package.resolved | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.resolved b/Package.resolved index 24e0713c..096f2a12 100644 --- a/Package.resolved +++ b/Package.resolved @@ -123,8 +123,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/swiftlang/swift-docc-plugin", "state" : { - "revision" : "85e4bb4e1cd62cec64a4b8e769dcefdf0c5b9d64", - "version" : "1.4.3" + "revision" : "d1691545d53581400b1de9b0472d45eb25c19fed", + "version" : "1.4.4" } }, {