This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 WhatsNewKit with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 4

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SvenTiigi/WhatsNewKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/SvenTiigi/WhatsNewKit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 6157c77 Added PrivacyInfo.xcprivacy
Cloned https://github.com/SvenTiigi/WhatsNewKit.git
Revision (git rev-parse @):
6157c77e8be9b3d2310bc680681b61a8d9e290ac
SUCCESS checkout https://github.com/SvenTiigi/WhatsNewKit.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/SvenTiigi/WhatsNewKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[1/3] Copying PrivacyInfo.xcprivacy
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/32] Emitting module WhatsNewKit
/Users/admin/builder/spi-builder-workspace/Sources/Environment/WhatsNewEnvironment+Key.swift:11:27: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 |         /// The default value for the environment key
11 |         public static var defaultValue = WhatsNewEnvironment()
   |                           |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated 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
12 |
13 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+SecondaryAction+Action.swift:38:16: warning: static property 'dismiss' is not concurrency-safe because non-'Sendable' type 'WhatsNew.SecondaryAction.Action' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 |     /// A WhatsNew Secondary Action
 8 |     enum Action {
   |          `- note: consider making enum 'Action' conform to the 'Sendable' protocol
 9 |         /// Present View
10 |         case present(AnyView)
   :
36 |
37 |     /// Dismiss WhatsNewView
38 |     static let dismiss: Self = .custom { presentationMode in
   |                |- warning: static property 'dismiss' is not concurrency-safe because non-'Sendable' type 'WhatsNew.SecondaryAction.Action' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'dismiss' 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
39 |         presentationMode.wrappedValue.dismiss()
40 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Store/InMemoryWhatsNewVersionStore.swift:11:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'InMemoryWhatsNewVersionStore' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// The InMemoryWhatsNewVersionStore
 6 | public final class InMemoryWhatsNewVersionStore {
   |                    `- note: class 'InMemoryWhatsNewVersionStore' does not conform to the 'Sendable' protocol
 7 |
 8 |     // MARK: Static-Properties
 9 |
10 |     /// The shared `InMemoryWhatsNewVersionStore` instance
11 |     public static let shared = InMemoryWhatsNewVersionStore()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'InMemoryWhatsNewVersionStore' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' 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
12 |
13 |     // MARK: Properties
[5/35] Compiling WhatsNewKit WhatsNew+Version.swift
/Users/admin/builder/spi-builder-workspace/Sources/Store/InMemoryWhatsNewVersionStore.swift:11:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'InMemoryWhatsNewVersionStore' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// The InMemoryWhatsNewVersionStore
 6 | public final class InMemoryWhatsNewVersionStore {
   |                    `- note: class 'InMemoryWhatsNewVersionStore' does not conform to the 'Sendable' protocol
 7 |
 8 |     // MARK: Static-Properties
 9 |
10 |     /// The shared `InMemoryWhatsNewVersionStore` instance
11 |     public static let shared = InMemoryWhatsNewVersionStore()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'InMemoryWhatsNewVersionStore' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' 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
12 |
13 |     // MARK: Properties
[6/35] Compiling WhatsNewKit WhatsNew.swift
/Users/admin/builder/spi-builder-workspace/Sources/Store/InMemoryWhatsNewVersionStore.swift:11:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'InMemoryWhatsNewVersionStore' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// The InMemoryWhatsNewVersionStore
 6 | public final class InMemoryWhatsNewVersionStore {
   |                    `- note: class 'InMemoryWhatsNewVersionStore' does not conform to the 'Sendable' protocol
 7 |
 8 |     // MARK: Static-Properties
 9 |
10 |     /// The shared `InMemoryWhatsNewVersionStore` instance
11 |     public static let shared = InMemoryWhatsNewVersionStore()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'InMemoryWhatsNewVersionStore' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' 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
12 |
13 |     // MARK: Properties
[7/35] Compiling WhatsNewKit InMemoryWhatsNewVersionStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/Store/InMemoryWhatsNewVersionStore.swift:11:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'InMemoryWhatsNewVersionStore' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// The InMemoryWhatsNewVersionStore
 6 | public final class InMemoryWhatsNewVersionStore {
   |                    `- note: class 'InMemoryWhatsNewVersionStore' does not conform to the 'Sendable' protocol
 7 |
 8 |     // MARK: Static-Properties
 9 |
10 |     /// The shared `InMemoryWhatsNewVersionStore` instance
11 |     public static let shared = InMemoryWhatsNewVersionStore()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'InMemoryWhatsNewVersionStore' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' 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
12 |
13 |     // MARK: Properties
[8/35] Compiling WhatsNewKit WhatsNew+Feature+Image.swift
[9/35] Compiling WhatsNewKit WhatsNew+Feature.swift
[10/35] Compiling WhatsNewKit WhatsNew+HapticFeedback.swift
[11/35] Compiling WhatsNewKit WhatsNew+SecondaryAction.swift
[12/35] Compiling WhatsNewKit WhatsNew+Text.swift
[13/35] Compiling WhatsNewKit WhatsNew+Title.swift
[14/35] Compiling WhatsNewKit WhatsNewEnvironment.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[15/35] Compiling WhatsNewKit ScrollView+alwaysBounceVertical.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[16/35] Compiling WhatsNewKit Text+WhatsNewText.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[17/35] Compiling WhatsNewKit WhatsNewCollection.swift
/Users/admin/builder/spi-builder-workspace/Sources/Environment/WhatsNewEnvironment+Key.swift:11:27: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 |         /// The default value for the environment key
11 |         public static var defaultValue = WhatsNewEnvironment()
   |                           |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated 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
12 |
13 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[18/35] Compiling WhatsNewKit WhatsNewCollectionBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Environment/WhatsNewEnvironment+Key.swift:11:27: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 |         /// The default value for the environment key
11 |         public static var defaultValue = WhatsNewEnvironment()
   |                           |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated 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
12 |
13 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[19/35] Compiling WhatsNewKit WhatsNewCollectionProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Environment/WhatsNewEnvironment+Key.swift:11:27: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 |         /// The default value for the environment key
11 |         public static var defaultValue = WhatsNewEnvironment()
   |                           |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated 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
12 |
13 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[20/35] Compiling WhatsNewKit WhatsNewEnvironment+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Environment/WhatsNewEnvironment+Key.swift:11:27: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 |         /// The default value for the environment key
11 |         public static var defaultValue = WhatsNewEnvironment()
   |                           |- warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated 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
12 |
13 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[21/35] Compiling WhatsNewKit WhatsNewView+FeaturesPadding.swift
[22/35] Compiling WhatsNewKit WhatsNewView+FooterPadding.swift
[23/35] Compiling WhatsNewKit WhatsNewView+PrimaryButtonStyle.swift
[24/35] Compiling WhatsNewKit WhatsNew+Layout.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+SecondaryAction+Action.swift:38:16: warning: static property 'dismiss' is not concurrency-safe because non-'Sendable' type 'WhatsNew.SecondaryAction.Action' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 |     /// A WhatsNew Secondary Action
 8 |     enum Action {
   |          `- note: consider making enum 'Action' conform to the 'Sendable' protocol
 9 |         /// Present View
10 |         case present(AnyView)
   :
36 |
37 |     /// Dismiss WhatsNewView
38 |     static let dismiss: Self = .custom { presentationMode in
   |                |- warning: static property 'dismiss' is not concurrency-safe because non-'Sendable' type 'WhatsNew.SecondaryAction.Action' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'dismiss' 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
39 |         presentationMode.wrappedValue.dismiss()
40 |     }
[25/35] Compiling WhatsNewKit WhatsNew+PrimaryAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+SecondaryAction+Action.swift:38:16: warning: static property 'dismiss' is not concurrency-safe because non-'Sendable' type 'WhatsNew.SecondaryAction.Action' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 |     /// A WhatsNew Secondary Action
 8 |     enum Action {
   |          `- note: consider making enum 'Action' conform to the 'Sendable' protocol
 9 |         /// Present View
10 |         case present(AnyView)
   :
36 |
37 |     /// Dismiss WhatsNewView
38 |     static let dismiss: Self = .custom { presentationMode in
   |                |- warning: static property 'dismiss' is not concurrency-safe because non-'Sendable' type 'WhatsNew.SecondaryAction.Action' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'dismiss' 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
39 |         presentationMode.wrappedValue.dismiss()
40 |     }
[26/35] Compiling WhatsNewKit WhatsNew+SecondaryAction+Action.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+SecondaryAction+Action.swift:38:16: warning: static property 'dismiss' is not concurrency-safe because non-'Sendable' type 'WhatsNew.SecondaryAction.Action' may have shared mutable state; this is an error in the Swift 6 language mode
 6 |
 7 |     /// A WhatsNew Secondary Action
 8 |     enum Action {
   |          `- note: consider making enum 'Action' conform to the 'Sendable' protocol
 9 |         /// Present View
10 |         case present(AnyView)
   :
36 |
37 |     /// Dismiss WhatsNewView
38 |     static let dismiss: Self = .custom { presentationMode in
   |                |- warning: static property 'dismiss' is not concurrency-safe because non-'Sendable' type 'WhatsNew.SecondaryAction.Action' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'dismiss' 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
39 |         presentationMode.wrappedValue.dismiss()
40 |     }
[27/35] Compiling WhatsNewKit NSUbiquitousKeyValueWhatsNewVersionStore.swift
[28/35] Compiling WhatsNewKit UserDefaultsWhatsNewVersionStore.swift
[29/35] Compiling WhatsNewKit WhatsNewVersionStore.swift
[30/35] Compiling WhatsNewKit UIVisualEffectView+Representable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[31/35] Compiling WhatsNewKit View+WhatsNewSheet.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[32/35] Compiling WhatsNewKit WhatsNew+Version+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[33/35] Compiling WhatsNewKit WhatsNewView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[34/35] Compiling WhatsNewKit WhatsNewViewController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
[35/35] Compiling WhatsNewKit resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/WhatsNew+Layout.swift:106:16: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |     /// The mutable default Layout
106 |     static var `default` = Self()
    |                |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'default' 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
107 |
108 | }
Build complete! (40.09s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "WhatsNewKit",
  "name" : "WhatsNewKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "WhatsNewKit",
      "targets" : [
        "WhatsNewKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "WhatsNewKitTests",
      "module_type" : "SwiftTarget",
      "name" : "WhatsNewKitTests",
      "path" : "Tests",
      "sources" : [
        "WhatsNewEnvironmentTests.swift",
        "WhatsNewKitTestCase.swift",
        "WhatsNewVersionStoreTests.swift",
        "WhatsNewVersionTests.swift",
        "WhatsNewViewControllerTests.swift"
      ],
      "target_dependencies" : [
        "WhatsNewKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WhatsNewKit",
      "module_type" : "SwiftTarget",
      "name" : "WhatsNewKit",
      "path" : "Sources",
      "product_memberships" : [
        "WhatsNewKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Collection/WhatsNewCollection.swift",
        "Collection/WhatsNewCollectionBuilder.swift",
        "Collection/WhatsNewCollectionProvider.swift",
        "Environment/WhatsNewEnvironment+Key.swift",
        "Environment/WhatsNewEnvironment.swift",
        "Extensions/ScrollView+alwaysBounceVertical.swift",
        "Extensions/Text+WhatsNewText.swift",
        "Extensions/UIVisualEffectView+Representable.swift",
        "Extensions/View+WhatsNewSheet.swift",
        "Extensions/WhatsNew+Version+Key.swift",
        "Models/WhatsNew+Feature+Image.swift",
        "Models/WhatsNew+Feature.swift",
        "Models/WhatsNew+HapticFeedback.swift",
        "Models/WhatsNew+Layout.swift",
        "Models/WhatsNew+PrimaryAction.swift",
        "Models/WhatsNew+SecondaryAction+Action.swift",
        "Models/WhatsNew+SecondaryAction.swift",
        "Models/WhatsNew+Text.swift",
        "Models/WhatsNew+Title.swift",
        "Models/WhatsNew+Version.swift",
        "Models/WhatsNew.swift",
        "Store/InMemoryWhatsNewVersionStore.swift",
        "Store/NSUbiquitousKeyValueWhatsNewVersionStore.swift",
        "Store/UserDefaultsWhatsNewVersionStore.swift",
        "Store/WhatsNewVersionStore.swift",
        "View/WhatsNewView+FeaturesPadding.swift",
        "View/WhatsNewView+FooterPadding.swift",
        "View/WhatsNewView+PrimaryButtonStyle.swift",
        "View/WhatsNewView.swift",
        "ViewController/WhatsNewViewController.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.