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 main (121b7b), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 21:15:34 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: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/o-nnerb/navigation-kit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 121b7b9 Bump actions/configure-pages from 3.0.6 to 4.0.0 (#15)
Cloned https://github.com/o-nnerb/navigation-kit.git
Revision (git rev-parse @):
121b7b95dfabe73e6c28838a5f72f10a22a3bd2d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/o-nnerb/navigation-kit.git at main
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.34s)
Fetched https://github.com/apple/swift-docc-plugin.git from cache (1.34s)
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.75s)
Computing version for https://github.com/apple/swift-docc-symbolkit
Computed https://github.com/apple/swift-docc-symbolkit at 1.0.0 (0.77s)
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
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
========================================
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.85s)
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 main (121b7b9)
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 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]
[7/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]
[8/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]
[9/38] Compiling NavigationKit SceneAction.swift
[10/38] Compiling NavigationKit SceneActionTransformer.swift
[11/38] Compiling NavigationKit SceneTransaction.swift
[12/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 |
[13/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 |
[14/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 |
[15/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 |
[16/38] Compiling NavigationKit NavigationState.swift
[17/38] Compiling NavigationKit Resolver.swift
[18/38] Compiling NavigationKit NKNavigationSplitView.swift
[19/38] Compiling NavigationKit NavigationDestinationTransformer.swift
[20/38] Compiling NavigationKit NavigationPerform.swift
[21/38] Compiling NavigationKit NavigationStateProtocol.swift
[22/38] Compiling NavigationKit PendingNavigationItems.swift
[23/38] Compiling NavigationKit SceneActionFullScreenCover.swift
[24/38] Compiling NavigationKit SceneActionModifier.swift
[25/38] Compiling NavigationKit SceneActionPopover.swift
[26/38] Compiling NavigationKit Seed.swift
[27/38] Compiling NavigationKit ViewResolver.swift
[28/38] Compiling NavigationKit ViewState.swift
[29/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
[30/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
[31/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
[32/38] Compiling NavigationKit Factory.swift
[33/38] Compiling NavigationKit Identified.swift
[34/38] Compiling NavigationKit NavigationAction.CodableRepresentation.swift
[35/38] Compiling NavigationKit NavigationAction.swift
[36/38] Compiling NavigationKit SceneActionSheet.swift
[37/38] Compiling NavigationKit SceneActionTransformerModifier.swift
[38/38] Compiling NavigationKit ViewStateModifier.swift
Build complete! (45.53s)
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/main
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.62s)
Generated DocC archive at '/Users/admin/builder/spi-builder-workspace/.docs/o-nnerb/navigation-kit/main'
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 Snippet.swift
[7/53] Emitting module Snippets
[8/53] Compiling Snippets SnippetParser.swift
[9/53] Compiling SymbolKit SourceRange.swift
[10/53] Compiling SymbolKit Metadata.swift
[11/53] Compiling SymbolKit Module.swift
[12/53] Compiling SymbolKit OperatingSystem.swift
[13/53] Compiling SymbolKit Platform.swift
[14/53] Compiling SymbolKit DeclarationFragments.swift
[15/53] Compiling SymbolKit Fragment.swift
[16/53] Compiling SymbolKit FragmentKind.swift
[17/53] Compiling SymbolKit FunctionParameter.swift
[18/53] Compiling SymbolKit FunctionSignature.swift
[19/53] Emitting module SymbolKit
[20/57] Compiling SymbolKit Mixin+Equals.swift
[21/57] Compiling SymbolKit Mixin+Hash.swift
[22/57] Compiling SymbolKit Mixin.swift
[23/57] Compiling SymbolKit LineList.swift
[24/57] Compiling SymbolKit Position.swift
[25/57] Compiling SymbolKit Relationship.swift
[26/57] Compiling SymbolKit RelationshipKind.swift
[27/57] Compiling SymbolKit SourceOrigin.swift
[28/57] Compiling SymbolKit GenericConstraints.swift
[29/57] Compiling SymbolKit Swift.swift
[30/57] Compiling SymbolKit SemanticVersion.swift
[31/57] Compiling SymbolKit AccessControl.swift
[32/57] Compiling SymbolKit Availability.swift
[33/57] Compiling SymbolKit AvailabilityItem.swift
[34/57] Compiling SymbolKit Domain.swift
[35/57] Compiling SymbolKit Identifier.swift
[36/57] Compiling SymbolKit KindIdentifier.swift
[37/57] Compiling SymbolKit Location.swift
[38/57] Compiling SymbolKit Mutability.swift
[39/57] Compiling SymbolKit GenericConstraint.swift
[40/57] Compiling SymbolKit GenericParameter.swift
[41/57] Compiling SymbolKit Generics.swift
[42/57] Compiling SymbolKit Namespace.swift
[43/57] Compiling SymbolKit Names.swift
[44/57] Compiling SymbolKit SPI.swift
[45/57] Compiling SymbolKit Snippet.swift
[46/57] Compiling SymbolKit Extension.swift
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.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] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.37s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/32] Compiling NavigationKit NavigationActionKey.swift
[3/32] Compiling NavigationKit SceneActionKey.swift
[4/32] Compiling NavigationKit ViewResolverKey.swift
[5/32] Compiling NavigationKit Closure.swift
[6/35] Compiling NavigationKit SceneActionFullScreenCover.swift
[7/35] Compiling NavigationKit SceneActionModifier.swift
[8/35] Compiling NavigationKit SceneActionPopover.swift
[9/35] 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
[10/35] Compiling NavigationKit NavigationDestinationTransformer.swift
[11/35] Compiling NavigationKit NavigationPerform.swift
[12/35] Compiling NavigationKit NavigationStateProtocol.swift
[13/35] Compiling NavigationKit PendingNavigationItems.swift
[14/35] Compiling NavigationKit SceneAction.swift
[15/35] Compiling NavigationKit SceneActionTransformer.swift
[16/35] Compiling NavigationKit SceneTransaction.swift
[17/35] Compiling NavigationKit SceneActionSheet.swift
[18/35] Compiling NavigationKit SceneActionTransformerModifier.swift
[19/35] Compiling NavigationKit ViewStateModifier.swift
[20/35] Compiling NavigationKit Factory.swift
[21/35] Compiling NavigationKit Identified.swift
[22/35] Compiling NavigationKit NavigationAction.CodableRepresentation.swift
[23/35] Compiling NavigationKit NavigationAction.swift
[24/35] Compiling NavigationKit Seed.swift
[25/35] Compiling NavigationKit ViewResolver.swift
[26/35] Compiling NavigationKit ViewState.swift
[27/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
[28/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
[29/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
[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! (1.25s)
    4438
32	/Users/admin/builder/spi-builder-workspace/.docs/o-nnerb/navigation-kit/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/o-nnerb/navigation-kit/main
File count: 4438
Doc size:   32.0MB
Preparing doc bundle ...
Uploading prod-o-nnerb-navigation-kit-main-836bfa08.zip to s3://spi-docs-inbox/prod-o-nnerb-navigation-kit-main-836bfa08.zip
Copying... [10%]
Copying... [20%]
Copying... [31%]
Copying... [41%]
Copying... [50%]
Copying... [60%]
Copying... [71%]
Copying... [81%]
Copying... [91%]
Copying... [100%]
Done.