The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of NavigationKit, reference 1.0.0-alpha.5 (5b93ec), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 21:15:29 UTC.

Swift 6 data race errors: 4

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/o-nnerb/navigation-kit.git
Reference: 1.0.0-alpha.5
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/o-nnerb/navigation-kit
 * tag               1.0.0-alpha.5 -> FETCH_HEAD
HEAD is now at 5b93ec8 fix: navigation consistency
Cloned https://github.com/o-nnerb/navigation-kit.git
Revision (git rev-parse @):
5b93ec89f36dc0e75a9426bc9705507f7384a67b
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/o-nnerb/navigation-kit.git at 1.0.0-alpha.5
Fetching https://github.com/apple/swift-docc-symbolkit
Fetching https://github.com/apple/swift-docc-plugin.git
[1/2038] Fetching swift-docc-plugin
[226/5191] Fetching swift-docc-plugin, swift-docc-symbolkit
Fetched https://github.com/apple/swift-docc-symbolkit from cache (1.33s)
Fetched https://github.com/apple/swift-docc-plugin.git from cache (1.33s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.2.0 (0.72s)
Computing version for https://github.com/apple/swift-docc-symbolkit
Computed https://github.com/apple/swift-docc-symbolkit at 1.0.0 (0.68s)
Creating working copy for https://github.com/apple/swift-docc-symbolkit
Working copy of https://github.com/apple/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.2.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "navigation-kit",
      "name": "NavigationKit",
      "url": "https://github.com/o-nnerb/navigation-kit.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/navigation-kit",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/o-nnerb/navigation-kit.git
[1/674] Fetching navigation-kit
Fetched https://github.com/o-nnerb/navigation-kit.git from cache (0.79s)
Creating working copy for https://github.com/o-nnerb/navigation-kit.git
Working copy of https://github.com/o-nnerb/navigation-kit.git resolved at 1.0.0-alpha.5 (5b93ec8)
warning: '.resolve-product-dependencies': dependency 'navigation-kit' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/o-nnerb/navigation-kit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version--7754E27361AE5C74.txt
[5/35] Emitting module NavigationKit
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/NavigationActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | private struct NavigationActionKey: EnvironmentKey {
 8 |     static var defaultValue: NavigationAction?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/SceneActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | struct SceneActionKey: EnvironmentKey {
 8 |     static var defaultValue = SceneAction()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/ViewResolverKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | struct ViewResolverKey: EnvironmentKey {
10 |     static var defaultValue: _ViewResolver?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Modifiers/NavigationDestinationTransformerModifier.swift:26:30: warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  5 | import SwiftUI
  6 |
  7 | struct NavigationDestinationTransformerModifier<Item: Hashable>: ViewModifier {
    |                                                 `- note: 'Item' previously declared here
  8 |
  9 |     @Environment(\.navigationAction) var navigationAction
    :
 24 |         let closure: (NavigationDestinationTransformer, Item) -> Void
 25 |
 26 |         private func perform<Item>(
    |                              `- warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 27 |             _ type: Item.Type,
 28 |             with transformer: NavigationDestinationTransformer
[6/38] Compiling NavigationKit NavigationDestinationModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Modifiers/NavigationDestinationTransformerModifier.swift:26:30: warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  5 | import SwiftUI
  6 |
  7 | struct NavigationDestinationTransformerModifier<Item: Hashable>: ViewModifier {
    |                                                 `- note: 'Item' previously declared here
  8 |
  9 |     @Environment(\.navigationAction) var navigationAction
    :
 24 |         let closure: (NavigationDestinationTransformer, Item) -> Void
 25 |
 26 |         private func perform<Item>(
    |                              `- warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 27 |             _ type: Item.Type,
 28 |             with transformer: NavigationDestinationTransformer
[7/38] Compiling NavigationKit NavigationDestinationTransformerModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Modifiers/NavigationDestinationTransformerModifier.swift:26:30: warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  5 | import SwiftUI
  6 |
  7 | struct NavigationDestinationTransformerModifier<Item: Hashable>: ViewModifier {
    |                                                 `- note: 'Item' previously declared here
  8 |
  9 |     @Environment(\.navigationAction) var navigationAction
    :
 24 |         let closure: (NavigationDestinationTransformer, Item) -> Void
 25 |
 26 |         private func perform<Item>(
    |                              `- warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 27 |             _ type: Item.Type,
 28 |             with transformer: NavigationDestinationTransformer
[8/38] Compiling NavigationKit ResolverModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Modifiers/NavigationDestinationTransformerModifier.swift:26:30: warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  5 | import SwiftUI
  6 |
  7 | struct NavigationDestinationTransformerModifier<Item: Hashable>: ViewModifier {
    |                                                 `- note: 'Item' previously declared here
  8 |
  9 |     @Environment(\.navigationAction) var navigationAction
    :
 24 |         let closure: (NavigationDestinationTransformer, Item) -> Void
 25 |
 26 |         private func perform<Item>(
    |                              `- warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 27 |             _ type: Item.Type,
 28 |             with transformer: NavigationDestinationTransformer
[9/38] Compiling NavigationKit NKNavigationStack.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Views/_NavigationStack.swift:24:47: warning: cannot form key path that captures non-sendable type 'PendingNavigationItems?'; this is an error in the Swift 6 language mode
22 |
23 |     var body: some View {
24 |         NavigationStack(path: $navigationState[pendingItems]) {
   |                                               `- warning: cannot form key path that captures non-sendable type 'PendingNavigationItems?'; this is an error in the Swift 6 language mode
25 |             content
26 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Models/PendingNavigationItems.swift:8:8: note: consider making struct 'PendingNavigationItems' conform to the 'Sendable' protocol
 6 | import Combine
 7 |
 8 | struct PendingNavigationItems: Hashable {
   |        `- note: consider making struct 'PendingNavigationItems' conform to the 'Sendable' protocol
 9 |     let path: NavigationPath
10 |     let hashes: [Int]
[10/38] Compiling NavigationKit ObjectConnection.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Views/_NavigationStack.swift:24:47: warning: cannot form key path that captures non-sendable type 'PendingNavigationItems?'; this is an error in the Swift 6 language mode
22 |
23 |     var body: some View {
24 |         NavigationStack(path: $navigationState[pendingItems]) {
   |                                               `- warning: cannot form key path that captures non-sendable type 'PendingNavigationItems?'; this is an error in the Swift 6 language mode
25 |             content
26 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Models/PendingNavigationItems.swift:8:8: note: consider making struct 'PendingNavigationItems' conform to the 'Sendable' protocol
 6 | import Combine
 7 |
 8 | struct PendingNavigationItems: Hashable {
   |        `- note: consider making struct 'PendingNavigationItems' conform to the 'Sendable' protocol
 9 |     let path: NavigationPath
10 |     let hashes: [Int]
[11/38] Compiling NavigationKit _NavigationStack.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Views/_NavigationStack.swift:24:47: warning: cannot form key path that captures non-sendable type 'PendingNavigationItems?'; this is an error in the Swift 6 language mode
22 |
23 |     var body: some View {
24 |         NavigationStack(path: $navigationState[pendingItems]) {
   |                                               `- warning: cannot form key path that captures non-sendable type 'PendingNavigationItems?'; this is an error in the Swift 6 language mode
25 |             content
26 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Models/PendingNavigationItems.swift:8:8: note: consider making struct 'PendingNavigationItems' conform to the 'Sendable' protocol
 6 | import Combine
 7 |
 8 | struct PendingNavigationItems: Hashable {
   |        `- note: consider making struct 'PendingNavigationItems' conform to the 'Sendable' protocol
 9 |     let path: NavigationPath
10 |     let hashes: [Int]
[12/38] Compiling NavigationKit SceneAction.swift
[13/38] Compiling NavigationKit SceneActionTransformer.swift
[14/38] Compiling NavigationKit SceneTransaction.swift
[15/38] Compiling NavigationKit SceneActionSheet.swift
[16/38] Compiling NavigationKit SceneActionTransformerModifier.swift
[17/38] Compiling NavigationKit ViewStateModifier.swift
[18/38] Compiling NavigationKit Factory.swift
[19/38] Compiling NavigationKit Identified.swift
[20/38] Compiling NavigationKit NavigationAction.CodableRepresentation.swift
[21/38] Compiling NavigationKit NavigationAction.swift
[22/38] Compiling NavigationKit NavigationState.swift
[23/38] Compiling NavigationKit Resolver.swift
[24/38] Compiling NavigationKit NKNavigationSplitView.swift
[25/38] Compiling NavigationKit NavigationActionKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/NavigationActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | private struct NavigationActionKey: EnvironmentKey {
 8 |     static var defaultValue: NavigationAction?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/SceneActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | struct SceneActionKey: EnvironmentKey {
 8 |     static var defaultValue = SceneAction()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/ViewResolverKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | struct ViewResolverKey: EnvironmentKey {
10 |     static var defaultValue: _ViewResolver?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[26/38] Compiling NavigationKit SceneActionKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/NavigationActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | private struct NavigationActionKey: EnvironmentKey {
 8 |     static var defaultValue: NavigationAction?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/SceneActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | struct SceneActionKey: EnvironmentKey {
 8 |     static var defaultValue = SceneAction()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/ViewResolverKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | struct ViewResolverKey: EnvironmentKey {
10 |     static var defaultValue: _ViewResolver?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[27/38] Compiling NavigationKit ViewResolverKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/NavigationActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | private struct NavigationActionKey: EnvironmentKey {
 8 |     static var defaultValue: NavigationAction?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/SceneActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | struct SceneActionKey: EnvironmentKey {
 8 |     static var defaultValue = SceneAction()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/ViewResolverKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | struct ViewResolverKey: EnvironmentKey {
10 |     static var defaultValue: _ViewResolver?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[28/38] Compiling NavigationKit Closure.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/NavigationActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | private struct NavigationActionKey: EnvironmentKey {
 8 |     static var defaultValue: NavigationAction?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/SceneActionKey.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 | struct SceneActionKey: EnvironmentKey {
 8 |     static var defaultValue = SceneAction()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Keys/ViewResolverKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | struct ViewResolverKey: EnvironmentKey {
10 |     static var defaultValue: _ViewResolver?
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[29/38] Compiling NavigationKit NavigationDestinationTransformer.swift
[30/38] Compiling NavigationKit NavigationPerform.swift
[31/38] Compiling NavigationKit NavigationStateProtocol.swift
[32/38] Compiling NavigationKit PendingNavigationItems.swift
[33/38] Compiling NavigationKit SceneActionFullScreenCover.swift
[34/38] Compiling NavigationKit SceneActionModifier.swift
[35/38] Compiling NavigationKit SceneActionPopover.swift
[36/38] Compiling NavigationKit Seed.swift
[37/38] Compiling NavigationKit ViewResolver.swift
[38/38] Compiling NavigationKit ViewState.swift
Build complete! (46.00s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin.git"
    }
  ],
  "manifest_display_name" : "NavigationKit",
  "name" : "NavigationKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "NavigationKit",
      "targets" : [
        "NavigationKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NavigationKitTests",
      "module_type" : "SwiftTarget",
      "name" : "NavigationKitTests",
      "path" : "Tests/NavigationKitTests",
      "sources" : [
        "Mocks/NavigationStateMock.swift",
        "Models/ClosureTests.swift",
        "Models/FactoryTests.swift",
        "Models/IdentifiedTests.swift",
        "Models/NavigationActionCodableRepresentationTests.swift",
        "Models/NavigationActionTests.swift",
        "Models/NavigationDestinationTransformerTests.swift",
        "Models/PendingNavigationItemsTests.swift",
        "Models/SceneActionTests.swift",
        "Models/SceneActionTransformerTests.swift",
        "Models/SceneTransactionTests.swift",
        "Models/SeedTests.swift",
        "Modifiers/NavigationDestinationTransformerModifierTests.swift",
        "NavigationStateTests.swift",
        "Resolvers/ResolverTests.swift"
      ],
      "target_dependencies" : [
        "NavigationKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "NavigationKit",
      "module_type" : "SwiftTarget",
      "name" : "NavigationKit",
      "path" : "Sources/NavigationKit",
      "product_memberships" : [
        "NavigationKit"
      ],
      "sources" : [
        "Keys/NavigationActionKey.swift",
        "Keys/SceneActionKey.swift",
        "Keys/ViewResolverKey.swift",
        "Models/Closure.swift",
        "Models/Factory.swift",
        "Models/Identified.swift",
        "Models/NavigationAction.CodableRepresentation.swift",
        "Models/NavigationAction.swift",
        "Models/NavigationDestinationTransformer.swift",
        "Models/NavigationPerform.swift",
        "Models/NavigationStateProtocol.swift",
        "Models/PendingNavigationItems.swift",
        "Models/SceneAction.swift",
        "Models/SceneActionTransformer.swift",
        "Models/SceneTransaction.swift",
        "Models/Seed.swift",
        "Models/ViewResolver.swift",
        "Models/ViewState.swift",
        "Modifiers/NavigationDestinationModifier.swift",
        "Modifiers/NavigationDestinationTransformerModifier.swift",
        "Modifiers/ResolverModifier.swift",
        "Modifiers/SceneActionFullScreenCover.swift",
        "Modifiers/SceneActionModifier.swift",
        "Modifiers/SceneActionPopover.swift",
        "Modifiers/SceneActionSheet.swift",
        "Modifiers/SceneActionTransformerModifier.swift",
        "Modifiers/ViewStateModifier.swift",
        "NavigationState.swift",
        "Resolvers/Resolver.swift",
        "Views/NKNavigationSplitView.swift",
        "Views/NKNavigationStack.swift",
        "Views/ObjectConnection.swift",
        "Views/_NavigationStack.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/o-nnerb/navigation-kit/1.0.0-alpha.5
Repository:               o-nnerb/navigation-kit
Swift version used:       6.0
            url: "https://github.com/apple/swift-docc-plugin.git",
Target:                   NavigationKit
Generating documentation for 'NavigationKit'...
Converting documentation...
Conversion complete! (1.44s)
Generated DocC archive at '/Users/admin/builder/spi-builder-workspace/.docs/o-nnerb/navigation-kit/1.0.0-alpha.5'
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Compiling Snippets Snippet.swift
[8/53] Emitting module Snippets
[9/53] Compiling SymbolKit GenericConstraint.swift
[10/53] Compiling SymbolKit GenericParameter.swift
[11/53] Compiling SymbolKit Generics.swift
[12/53] Compiling SymbolKit Namespace.swift
[13/53] Compiling SymbolKit Relationship.swift
[14/53] Compiling SymbolKit RelationshipKind.swift
[15/53] Compiling SymbolKit SourceOrigin.swift
[16/53] Compiling SymbolKit GenericConstraints.swift
[17/53] Compiling SymbolKit Swift.swift
[18/57] Compiling SymbolKit SemanticVersion.swift
[19/57] Compiling SymbolKit AccessControl.swift
[20/57] Compiling SymbolKit Availability.swift
[21/57] Compiling SymbolKit AvailabilityItem.swift
[22/57] Compiling SymbolKit Domain.swift
[23/57] Compiling SymbolKit Names.swift
[24/57] Compiling SymbolKit SPI.swift
[25/57] Compiling SymbolKit Snippet.swift
[26/57] Compiling SymbolKit Extension.swift
[27/57] Compiling SymbolKit Symbol.swift
[28/57] Compiling SymbolKit SymbolKind.swift
[29/57] Compiling SymbolKit SymbolGraph.swift
[30/57] Compiling SymbolKit GraphCollector.swift
[31/57] Compiling SymbolKit Mixin+Equals.swift
[32/57] Compiling SymbolKit Mixin+Hash.swift
[33/57] Compiling SymbolKit Mixin.swift
[34/57] Compiling SymbolKit LineList.swift
[35/57] Compiling SymbolKit Position.swift
[36/57] Compiling SymbolKit DeclarationFragments.swift
[37/57] Compiling SymbolKit Fragment.swift
[38/57] Compiling SymbolKit FragmentKind.swift
[39/57] Compiling SymbolKit FunctionParameter.swift
[40/57] Compiling SymbolKit FunctionSignature.swift
[41/57] Emitting module SymbolKit
[42/57] Compiling SymbolKit Identifier.swift
[43/57] Compiling SymbolKit KindIdentifier.swift
[44/57] Compiling SymbolKit Location.swift
[45/57] Compiling SymbolKit Mutability.swift
[46/57] Compiling SymbolKit SourceRange.swift
[47/57] Compiling SymbolKit Metadata.swift
[48/57] Compiling SymbolKit Module.swift
[49/57] Compiling SymbolKit OperatingSystem.swift
[50/57] Compiling SymbolKit Platform.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.52s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/32] Emitting module NavigationKit
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Modifiers/NavigationDestinationTransformerModifier.swift:26:30: warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  5 | import SwiftUI
  6 |
  7 | struct NavigationDestinationTransformerModifier<Item: Hashable>: ViewModifier {
    |                                                 `- note: 'Item' previously declared here
  8 |
  9 |     @Environment(\.navigationAction) var navigationAction
    :
 24 |         let closure: (NavigationDestinationTransformer, Item) -> Void
 25 |
 26 |         private func perform<Item>(
    |                              `- warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 27 |             _ type: Item.Type,
 28 |             with transformer: NavigationDestinationTransformer
[3/35] Compiling NavigationKit Seed.swift
[4/35] Compiling NavigationKit ViewResolver.swift
[5/35] Compiling NavigationKit ViewState.swift
[6/35] Compiling NavigationKit SceneActionSheet.swift
[7/35] Compiling NavigationKit SceneActionTransformerModifier.swift
[8/35] Compiling NavigationKit ViewStateModifier.swift
[9/35] Compiling NavigationKit Factory.swift
[10/35] Compiling NavigationKit Identified.swift
[11/35] Compiling NavigationKit NavigationAction.CodableRepresentation.swift
[12/35] Compiling NavigationKit NavigationAction.swift
[13/35] Compiling NavigationKit SceneAction.swift
[14/35] Compiling NavigationKit SceneActionTransformer.swift
[15/35] Compiling NavigationKit SceneTransaction.swift
[16/35] Compiling NavigationKit NavigationActionKey.swift
[17/35] Compiling NavigationKit SceneActionKey.swift
[18/35] Compiling NavigationKit ViewResolverKey.swift
[19/35] Compiling NavigationKit Closure.swift
[20/35] Compiling NavigationKit NavigationDestinationModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Modifiers/NavigationDestinationTransformerModifier.swift:26:30: warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  5 | import SwiftUI
  6 |
  7 | struct NavigationDestinationTransformerModifier<Item: Hashable>: ViewModifier {
    |                                                 `- note: 'Item' previously declared here
  8 |
  9 |     @Environment(\.navigationAction) var navigationAction
    :
 24 |         let closure: (NavigationDestinationTransformer, Item) -> Void
 25 |
 26 |         private func perform<Item>(
    |                              `- warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 27 |             _ type: Item.Type,
 28 |             with transformer: NavigationDestinationTransformer
[21/35] Compiling NavigationKit NavigationDestinationTransformerModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Modifiers/NavigationDestinationTransformerModifier.swift:26:30: warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  5 | import SwiftUI
  6 |
  7 | struct NavigationDestinationTransformerModifier<Item: Hashable>: ViewModifier {
    |                                                 `- note: 'Item' previously declared here
  8 |
  9 |     @Environment(\.navigationAction) var navigationAction
    :
 24 |         let closure: (NavigationDestinationTransformer, Item) -> Void
 25 |
 26 |         private func perform<Item>(
    |                              `- warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 27 |             _ type: Item.Type,
 28 |             with transformer: NavigationDestinationTransformer
[22/35] Compiling NavigationKit ResolverModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigationKit/Modifiers/NavigationDestinationTransformerModifier.swift:26:30: warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  5 | import SwiftUI
  6 |
  7 | struct NavigationDestinationTransformerModifier<Item: Hashable>: ViewModifier {
    |                                                 `- note: 'Item' previously declared here
  8 |
  9 |     @Environment(\.navigationAction) var navigationAction
    :
 24 |         let closure: (NavigationDestinationTransformer, Item) -> Void
 25 |
 26 |         private func perform<Item>(
    |                              `- warning: generic parameter 'Item' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 27 |             _ type: Item.Type,
 28 |             with transformer: NavigationDestinationTransformer
[23/35] Compiling NavigationKit SceneActionFullScreenCover.swift
[24/35] Compiling NavigationKit SceneActionModifier.swift
[25/35] Compiling NavigationKit SceneActionPopover.swift
[26/35] Compiling NavigationKit NavigationDestinationTransformer.swift
[27/35] Compiling NavigationKit NavigationPerform.swift
[28/35] Compiling NavigationKit NavigationStateProtocol.swift
[29/35] Compiling NavigationKit PendingNavigationItems.swift
[30/35] Compiling NavigationKit NavigationState.swift
[31/35] Compiling NavigationKit Resolver.swift
[32/35] Compiling NavigationKit NKNavigationSplitView.swift
[33/35] Compiling NavigationKit NKNavigationStack.swift
[34/35] Compiling NavigationKit ObjectConnection.swift
[35/35] Compiling NavigationKit _NavigationStack.swift
Build of target: 'NavigationKit' complete! (2.59s)
    4438
32	/Users/admin/builder/spi-builder-workspace/.docs/o-nnerb/navigation-kit/1.0.0-alpha.5
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/o-nnerb/navigation-kit/1.0.0-alpha.5
File count: 4438
Doc size:   32.0MB
Preparing doc bundle ...
Uploading prod-o-nnerb-navigation-kit-1.0.0-alpha.5-db40de2f.zip to s3://spi-docs-inbox/prod-o-nnerb-navigation-kit-1.0.0-alpha.5-db40de2f.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [61%]
Copying... [71%]
Copying... [81%]
Copying... [91%]
Copying... [100%]
Done.