Build Information
Failed to build ValueTransformerKit, reference master (8f40b1
), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 10:00:18 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/phimage/ValueTransformerKit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/phimage/ValueTransformerKit
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 8f40b14 Fix some warnings
Cloned https://github.com/phimage/ValueTransformerKit.git
Revision (git rev-parse @):
8f40b14dd2d243898970141bb7d3d97d0026951d
SUCCESS checkout https://github.com/phimage/ValueTransformerKit.git at master
========================================
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": "valuetransformerkit",
"name": "ValueTransformerKit",
"url": "https://github.com/phimage/ValueTransformerKit.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ValueTransformerKit",
"dependencies": [
]
}
]
}
Fetching https://github.com/phimage/ValueTransformerKit.git
[1/284] Fetching valuetransformerkit
Fetched https://github.com/phimage/ValueTransformerKit.git from cache (0.81s)
Creating working copy for https://github.com/phimage/ValueTransformerKit.git
Working copy of https://github.com/phimage/ValueTransformerKit.git resolved at master (8f40b14)
warning: '.resolve-product-dependencies': dependency 'valuetransformerkit' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/phimage/ValueTransformerKit.git
https://github.com/phimage/ValueTransformerKit.git
{
"dependencies" : [
],
"manifest_display_name" : "ValueTransformerKit",
"name" : "ValueTransformerKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.11"
},
{
"name" : "ios",
"version" : "9.0"
},
{
"name" : "tvos",
"version" : "9.0"
},
{
"name" : "watchos",
"version" : "3.0"
}
],
"products" : [
{
"name" : "ValueTransformerKit",
"targets" : [
"ValueTransformerKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "ValueTransformerKitTests",
"module_type" : "SwiftTarget",
"name" : "ValueTransformerKitTests",
"path" : "Tests",
"sources" : [
"Tests.swift"
],
"target_dependencies" : [
"ValueTransformerKit"
],
"type" : "test"
},
{
"c99name" : "ValueTransformerKit",
"module_type" : "SwiftTarget",
"name" : "ValueTransformerKit",
"path" : "Sources",
"product_memberships" : [
"ValueTransformerKit"
],
"sources" : [
"ArchiveValueTransformer.swift",
"ArrayToStringTransformer.swift",
"Base64Transformer.swift",
"ClosureValueTransformer.swift",
"DateTransformers.swift",
"EmptyTransformer.swift",
"IdentityTransformer.swift",
"ImageTransformers.swift",
"IsEmptyTransformer.swift",
"JSONValueTransformer.swift",
"LocalKeyTransformers.swift",
"NumberToBoolTransformer.swift",
"NumberTransformers.swift",
"Operators.swift",
"OrderedSetToArrayValueTransformer.swift",
"PropertyListTransformer.swift",
"ReverseValueTransformer.swift",
"SecondsToHoursValueTransformer.swift",
"StringToDataTransformer.swift",
"StringTransformers.swift",
"TimeTransformers.swift",
"UIColorToString.swift",
"URLStringToImageTransformer.swift",
"URLToStringTransformer.swift",
"ValueTransformerRegisterable.swift",
"ValueTransformerType.swift",
"ValueTransformers.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/28] Emitting module ValueTransformerKit
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 | @objc(ArchiveValueTransformer)
11 | public final class ArchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'ArchiveValueTransformer' does not conform to the 'Sendable' protocol
12 |
13 | public var name = NSValueTransformerName(rawValue: "Archive")
14 | public static let instance = ArchiveValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | @objc(UnarchiveValueTransformer)
50 | public final class UnarchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'UnarchiveValueTransformer' does not conform to the 'Sendable' protocol
51 |
52 | public var name = NSValueTransformerName(rawValue: "Unarchive")
53 | public static let instance = UnarchiveValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
9 |
10 | public static var namePrefix = "ArrayToString"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static var reversableNamePrefix = "StringToArray"
12 |
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 |
10 | public static var namePrefix = "ArrayToString"
11 | public static var reversableNamePrefix = "StringToArray"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | public var name = NSValueTransformerName(rawValue: ArrayToStringTransformer.namePrefix)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
| `- note: class 'ArrayToStringTransformer' does not conform to the 'Sendable' protocol
9 |
10 | public static var namePrefix = "ArrayToString"
:
12 |
13 | public var name = NSValueTransformerName(rawValue: ArrayToStringTransformer.namePrefix)
14 | public static let instance = ArrayToStringTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | let separator: String
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public enum DateTransformers: ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'DateTransformers' conform to the 'Sendable' protocol
9 |
10 | case rfc822
:
16 | case dateFormat(String)
17 |
18 | public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public static var namePrefix = "Date"
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
19 |
20 | public static var namePrefix = "Date"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static var reversableNamePrefix = "StringToDate"
22 |
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | public static var namePrefix = "Date"
21 | public static var reversableNamePrefix = "StringToDate"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public var formatter: DateFormatter {
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// Identity transformer do return the value without applying any transformation
9 | @objc(IdentityTransformer)
10 | final public class IdentityTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IdentityTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public var name = NSValueTransformerName(rawValue: "Identity")
13 | public static let instance = IdentityTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
49 | #endif
50 |
51 | public enum ImageRepresentationTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'ImageRepresentationTransformers' conform to the 'Sendable' protocol
52 |
53 | case png
54 | case jpeg
55 |
56 | public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
56 | public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
57 |
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
| |- warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kJPEGRepresentationCompressionQuality' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'kJPEGRepresentationCompressionQuality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | public static var namePrefix = "ImageRepresentation"
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
59 |
60 | public static var namePrefix = "ImageRepresentation"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | public static var reversableNamePrefix = "RepresentationToImage"
62 |
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |
60 | public static var namePrefix = "ImageRepresentation"
61 | public static var reversableNamePrefix = "RepresentationToImage"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// Transform to Boolean by checking if empty
9 | @objc(IsEmptyTransformer)
10 | final public class IsEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IsEmptyTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public var name = NSValueTransformerName(rawValue: "IsEmpty")
13 | public static let instance = IsEmptyTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
36 | /// Transform to Boolean by checking if not empty
37 | @objc(IsNotEmptyTransformer)
38 | final public class IsNotEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IsNotEmptyTransformer' does not conform to the 'Sendable' protocol
39 |
40 | public var name = NSValueTransformerName(rawValue: "IsNotEmpty")
41 | public static let instance = IsNotEmptyTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | ]
16 |
17 | public static var namePrefix = "Locale"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | public enum NumberTransformers: ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'NumberTransformers' conform to the 'Sendable' protocol
12 |
13 | case numberStyle(NumberFormatter.Style)
:
15 | case numberFormat(String)
16 |
17 | public static let transformers: [NumberTransformers] = {
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | let styles: [NumberFormatter.Style] = [.none, .decimal, .percent, .scientific, .spellOut, .ordinal,
19 | .currency, .currencyISOCode, .currencyPlural, .currencyAccounting]
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 | }()
22 |
23 | public static var namePrefix = "Number"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static var reversableNamePrefix = "StringToNumber"
25 |
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | public static var namePrefix = "Number"
24 | public static var reversableNamePrefix = "StringToNumber"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | public var formatter: NumberFormatter {
/Users/admin/builder/spi-builder-workspace/Sources/Operators.swift:85:24: error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
83 | }
84 | extension ValueTransformerType {
85 | public static func + (left: ValueTransformerType, right: ValueTransformerType) -> ValueTransformer {
| `- error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
86 | return CompoundValueTransformer(transformers: [left.transformer, right.transformer])
87 | }
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
11 |
12 | public static var namePrefix = "OrderedSetToArray"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static var reversableNamePrefix = "ArrayToOrderedSet"
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | public static var namePrefix = "OrderedSetToArray"
13 | public static var reversableNamePrefix = "ArrayToOrderedSet"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var name = NSValueTransformerName(rawValue: OrderedSetToArrayValueTransformer.namePrefix)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | // allow to bind with nsarraycontroller
9 | @objc(OrderedSetToArrayValueTransformer)
10 | final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
| `- note: class 'OrderedSetToArrayValueTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public static var namePrefix = "OrderedSetToArray"
:
14 |
15 | public var name = NSValueTransformerName(rawValue: OrderedSetToArrayValueTransformer.namePrefix)
16 | public static let instance = OrderedSetToArrayValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public enum StringTransformers: ValueTransformers, ValueTransformerType {
| `- note: consider making enum 'StringTransformers' conform to the 'Sendable' protocol
9 |
10 | case capitalized
:
18 | }
19 |
20 | public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static var namePrefix = "String"
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
21 |
22 | public static var namePrefix = "String"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
69 | .utf32, .utf32BigEndian, .utf32LittleEndian]
70 |
71 | public static var namePrefix = "StringData"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | public enum TimeTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'TimeTransformers' conform to the 'Sendable' protocol
12 |
13 | case short
:
16 | case full
17 |
18 | public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public static var namePrefix = "Time"
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
19 |
20 | public static var namePrefix = "Time"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static var reversableNamePrefix = "StringToTime"
22 |
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | public static var namePrefix = "Time"
21 | public static var reversableNamePrefix = "StringToTime"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public var formatter: DateFormatter {
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | final class URLToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'URLToStringTransformer' does not conform to the 'Sendable' protocol
9 |
10 | public var name = NSValueTransformerName(rawValue: "URLToString")
11 | public static let instance = URLToStringTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | public override class func transformedValueClass() -> AnyClass {
[4/30] Compiling ValueTransformerKit ValueTransformerType.swift
[5/30] Compiling ValueTransformerKit ValueTransformers.swift
[6/30] Compiling ValueTransformerKit URLToStringTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | final class URLToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'URLToStringTransformer' does not conform to the 'Sendable' protocol
9 |
10 | public var name = NSValueTransformerName(rawValue: "URLToString")
11 | public static let instance = URLToStringTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | public override class func transformedValueClass() -> AnyClass {
[7/30] Compiling ValueTransformerKit ValueTransformerRegisterable.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLToStringTransformer.swift:11:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | final class URLToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'URLToStringTransformer' does not conform to the 'Sendable' protocol
9 |
10 | public var name = NSValueTransformerName(rawValue: "URLToString")
11 | public static let instance = URLToStringTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'URLToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | public override class func transformedValueClass() -> AnyClass {
[8/30] Compiling ValueTransformerKit NumberTransformers.swift
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | public enum NumberTransformers: ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'NumberTransformers' conform to the 'Sendable' protocol
12 |
13 | case numberStyle(NumberFormatter.Style)
:
15 | case numberFormat(String)
16 |
17 | public static let transformers: [NumberTransformers] = {
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | let styles: [NumberFormatter.Style] = [.none, .decimal, .percent, .scientific, .spellOut, .ordinal,
19 | .currency, .currencyISOCode, .currencyPlural, .currencyAccounting]
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 | }()
22 |
23 | public static var namePrefix = "Number"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static var reversableNamePrefix = "StringToNumber"
25 |
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | public static var namePrefix = "Number"
24 | public static var reversableNamePrefix = "StringToNumber"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | public var formatter: NumberFormatter {
/Users/admin/builder/spi-builder-workspace/Sources/Operators.swift:85:24: error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
83 | }
84 | extension ValueTransformerType {
85 | public static func + (left: ValueTransformerType, right: ValueTransformerType) -> ValueTransformer {
| `- error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
86 | return CompoundValueTransformer(transformers: [left.transformer, right.transformer])
87 | }
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
11 |
12 | public static var namePrefix = "OrderedSetToArray"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static var reversableNamePrefix = "ArrayToOrderedSet"
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | public static var namePrefix = "OrderedSetToArray"
13 | public static var reversableNamePrefix = "ArrayToOrderedSet"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var name = NSValueTransformerName(rawValue: OrderedSetToArrayValueTransformer.namePrefix)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | // allow to bind with nsarraycontroller
9 | @objc(OrderedSetToArrayValueTransformer)
10 | final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
| `- note: class 'OrderedSetToArrayValueTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public static var namePrefix = "OrderedSetToArray"
:
14 |
15 | public var name = NSValueTransformerName(rawValue: OrderedSetToArrayValueTransformer.namePrefix)
16 | public static let instance = OrderedSetToArrayValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | public override class func transformedValueClass() -> AnyClass {
[9/30] Compiling ValueTransformerKit Operators.swift
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | public enum NumberTransformers: ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'NumberTransformers' conform to the 'Sendable' protocol
12 |
13 | case numberStyle(NumberFormatter.Style)
:
15 | case numberFormat(String)
16 |
17 | public static let transformers: [NumberTransformers] = {
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | let styles: [NumberFormatter.Style] = [.none, .decimal, .percent, .scientific, .spellOut, .ordinal,
19 | .currency, .currencyISOCode, .currencyPlural, .currencyAccounting]
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 | }()
22 |
23 | public static var namePrefix = "Number"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static var reversableNamePrefix = "StringToNumber"
25 |
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | public static var namePrefix = "Number"
24 | public static var reversableNamePrefix = "StringToNumber"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | public var formatter: NumberFormatter {
/Users/admin/builder/spi-builder-workspace/Sources/Operators.swift:85:24: error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
83 | }
84 | extension ValueTransformerType {
85 | public static func + (left: ValueTransformerType, right: ValueTransformerType) -> ValueTransformer {
| `- error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
86 | return CompoundValueTransformer(transformers: [left.transformer, right.transformer])
87 | }
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
11 |
12 | public static var namePrefix = "OrderedSetToArray"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static var reversableNamePrefix = "ArrayToOrderedSet"
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | public static var namePrefix = "OrderedSetToArray"
13 | public static var reversableNamePrefix = "ArrayToOrderedSet"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var name = NSValueTransformerName(rawValue: OrderedSetToArrayValueTransformer.namePrefix)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | // allow to bind with nsarraycontroller
9 | @objc(OrderedSetToArrayValueTransformer)
10 | final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
| `- note: class 'OrderedSetToArrayValueTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public static var namePrefix = "OrderedSetToArray"
:
14 |
15 | public var name = NSValueTransformerName(rawValue: OrderedSetToArrayValueTransformer.namePrefix)
16 | public static let instance = OrderedSetToArrayValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | public override class func transformedValueClass() -> AnyClass {
[10/30] Compiling ValueTransformerKit OrderedSetToArrayValueTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:17:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | public enum NumberTransformers: ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'NumberTransformers' conform to the 'Sendable' protocol
12 |
13 | case numberStyle(NumberFormatter.Style)
:
15 | case numberFormat(String)
16 |
17 | public static let transformers: [NumberTransformers] = {
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[NumberTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | let styles: [NumberFormatter.Style] = [.none, .decimal, .percent, .scientific, .spellOut, .ordinal,
19 | .currency, .currencyISOCode, .currencyPlural, .currencyAccounting]
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:23:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 | }()
22 |
23 | public static var namePrefix = "Number"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static var reversableNamePrefix = "StringToNumber"
25 |
/Users/admin/builder/spi-builder-workspace/Sources/NumberTransformers.swift:24:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | public static var namePrefix = "Number"
24 | public static var reversableNamePrefix = "StringToNumber"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 | public var formatter: NumberFormatter {
/Users/admin/builder/spi-builder-workspace/Sources/Operators.swift:85:24: error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
83 | }
84 | extension ValueTransformerType {
85 | public static func + (left: ValueTransformerType, right: ValueTransformerType) -> ValueTransformer {
| `- error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
86 | return CompoundValueTransformer(transformers: [left.transformer, right.transformer])
87 | }
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:12:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
11 |
12 | public static var namePrefix = "OrderedSetToArray"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static var reversableNamePrefix = "ArrayToOrderedSet"
14 |
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:13:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | public static var namePrefix = "OrderedSetToArray"
13 | public static var reversableNamePrefix = "ArrayToOrderedSet"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public var name = NSValueTransformerName(rawValue: OrderedSetToArrayValueTransformer.namePrefix)
/Users/admin/builder/spi-builder-workspace/Sources/OrderedSetToArrayValueTransformer.swift:16:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | // allow to bind with nsarraycontroller
9 | @objc(OrderedSetToArrayValueTransformer)
10 | final public class OrderedSetToArrayValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
| `- note: class 'OrderedSetToArrayValueTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public static var namePrefix = "OrderedSetToArray"
:
14 |
15 | public var name = NSValueTransformerName(rawValue: OrderedSetToArrayValueTransformer.namePrefix)
16 | public static let instance = OrderedSetToArrayValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'OrderedSetToArrayValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | public override class func transformedValueClass() -> AnyClass {
[11/30] Compiling ValueTransformerKit ArchiveValueTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 | @objc(ArchiveValueTransformer)
11 | public final class ArchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'ArchiveValueTransformer' does not conform to the 'Sendable' protocol
12 |
13 | public var name = NSValueTransformerName(rawValue: "Archive")
14 | public static let instance = ArchiveValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | @objc(UnarchiveValueTransformer)
50 | public final class UnarchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'UnarchiveValueTransformer' does not conform to the 'Sendable' protocol
51 |
52 | public var name = NSValueTransformerName(rawValue: "Unarchive")
53 | public static let instance = UnarchiveValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
9 |
10 | public static var namePrefix = "ArrayToString"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static var reversableNamePrefix = "StringToArray"
12 |
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 |
10 | public static var namePrefix = "ArrayToString"
11 | public static var reversableNamePrefix = "StringToArray"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | public var name = NSValueTransformerName(rawValue: ArrayToStringTransformer.namePrefix)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
| `- note: class 'ArrayToStringTransformer' does not conform to the 'Sendable' protocol
9 |
10 | public static var namePrefix = "ArrayToString"
:
12 |
13 | public var name = NSValueTransformerName(rawValue: ArrayToStringTransformer.namePrefix)
14 | public static let instance = ArrayToStringTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | let separator: String
[12/30] Compiling ValueTransformerKit ArrayToStringTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 | @objc(ArchiveValueTransformer)
11 | public final class ArchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'ArchiveValueTransformer' does not conform to the 'Sendable' protocol
12 |
13 | public var name = NSValueTransformerName(rawValue: "Archive")
14 | public static let instance = ArchiveValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | @objc(UnarchiveValueTransformer)
50 | public final class UnarchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'UnarchiveValueTransformer' does not conform to the 'Sendable' protocol
51 |
52 | public var name = NSValueTransformerName(rawValue: "Unarchive")
53 | public static let instance = UnarchiveValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
9 |
10 | public static var namePrefix = "ArrayToString"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static var reversableNamePrefix = "StringToArray"
12 |
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 |
10 | public static var namePrefix = "ArrayToString"
11 | public static var reversableNamePrefix = "StringToArray"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | public var name = NSValueTransformerName(rawValue: ArrayToStringTransformer.namePrefix)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
| `- note: class 'ArrayToStringTransformer' does not conform to the 'Sendable' protocol
9 |
10 | public static var namePrefix = "ArrayToString"
:
12 |
13 | public var name = NSValueTransformerName(rawValue: ArrayToStringTransformer.namePrefix)
14 | public static let instance = ArrayToStringTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | let separator: String
[13/30] Compiling ValueTransformerKit Base64Transformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 | @objc(ArchiveValueTransformer)
11 | public final class ArchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'ArchiveValueTransformer' does not conform to the 'Sendable' protocol
12 |
13 | public var name = NSValueTransformerName(rawValue: "Archive")
14 | public static let instance = ArchiveValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ArchiveValueTransformer.swift:53:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | @objc(UnarchiveValueTransformer)
50 | public final class UnarchiveValueTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'UnarchiveValueTransformer' does not conform to the 'Sendable' protocol
51 |
52 | public var name = NSValueTransformerName(rawValue: "Unarchive")
53 | public static let instance = UnarchiveValueTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'UnarchiveValueTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:10:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
9 |
10 | public static var namePrefix = "ArrayToString"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static var reversableNamePrefix = "StringToArray"
12 |
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:11:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 |
10 | public static var namePrefix = "ArrayToString"
11 | public static var reversableNamePrefix = "StringToArray"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | public var name = NSValueTransformerName(rawValue: ArrayToStringTransformer.namePrefix)
/Users/admin/builder/spi-builder-workspace/Sources/ArrayToStringTransformer.swift:14:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | final public class ArrayToStringTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton, ReversableValueTransformers {
| `- note: class 'ArrayToStringTransformer' does not conform to the 'Sendable' protocol
9 |
10 | public static var namePrefix = "ArrayToString"
:
12 |
13 | public var name = NSValueTransformerName(rawValue: ArrayToStringTransformer.namePrefix)
14 | public static let instance = ArrayToStringTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'ArrayToStringTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | let separator: String
[14/30] Compiling ValueTransformerKit JSONValueTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | ]
16 |
17 | public static var namePrefix = "Locale"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var name: NSValueTransformerName {
[15/30] Compiling ValueTransformerKit LocalKeyTransformers.swift
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | ]
16 |
17 | public static var namePrefix = "Locale"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var name: NSValueTransformerName {
[16/30] Compiling ValueTransformerKit NumberToBoolTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/LocalKeyTransformers.swift:17:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | ]
16 |
17 | public static var namePrefix = "Locale"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var name: NSValueTransformerName {
[17/30] Compiling ValueTransformerKit StringToDataTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public enum StringTransformers: ValueTransformers, ValueTransformerType {
| `- note: consider making enum 'StringTransformers' conform to the 'Sendable' protocol
9 |
10 | case capitalized
:
18 | }
19 |
20 | public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static var namePrefix = "String"
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
21 |
22 | public static var namePrefix = "String"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
69 | .utf32, .utf32BigEndian, .utf32LittleEndian]
70 |
71 | public static var namePrefix = "StringData"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | public enum TimeTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'TimeTransformers' conform to the 'Sendable' protocol
12 |
13 | case short
:
16 | case full
17 |
18 | public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public static var namePrefix = "Time"
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
19 |
20 | public static var namePrefix = "Time"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static var reversableNamePrefix = "StringToTime"
22 |
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | public static var namePrefix = "Time"
21 | public static var reversableNamePrefix = "StringToTime"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public var formatter: DateFormatter {
[18/30] Compiling ValueTransformerKit StringTransformers.swift
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public enum StringTransformers: ValueTransformers, ValueTransformerType {
| `- note: consider making enum 'StringTransformers' conform to the 'Sendable' protocol
9 |
10 | case capitalized
:
18 | }
19 |
20 | public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static var namePrefix = "String"
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
21 |
22 | public static var namePrefix = "String"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
69 | .utf32, .utf32BigEndian, .utf32LittleEndian]
70 |
71 | public static var namePrefix = "StringData"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | public enum TimeTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'TimeTransformers' conform to the 'Sendable' protocol
12 |
13 | case short
:
16 | case full
17 |
18 | public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public static var namePrefix = "Time"
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
19 |
20 | public static var namePrefix = "Time"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static var reversableNamePrefix = "StringToTime"
22 |
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | public static var namePrefix = "Time"
21 | public static var reversableNamePrefix = "StringToTime"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public var formatter: DateFormatter {
[19/30] Compiling ValueTransformerKit TimeTransformers.swift
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:20:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public enum StringTransformers: ValueTransformers, ValueTransformerType {
| `- note: consider making enum 'StringTransformers' conform to the 'Sendable' protocol
9 |
10 | case capitalized
:
18 | }
19 |
20 | public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[StringTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static var namePrefix = "String"
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:22:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | public static let transformers: [StringTransformers] = [.capitalized, .lowercased, .uppercased, .localized(.main)]
21 |
22 | public static var namePrefix = "String"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/StringTransformers.swift:71:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
69 | .utf32, .utf32BigEndian, .utf32LittleEndian]
70 |
71 | public static var namePrefix = "StringData"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | public enum TimeTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'TimeTransformers' conform to the 'Sendable' protocol
12 |
13 | case short
:
16 | case full
17 |
18 | public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[TimeTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public static var namePrefix = "Time"
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public static let transformers: [TimeTransformers] = [.short, .medium, .long, .full]
19 |
20 | public static var namePrefix = "Time"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static var reversableNamePrefix = "StringToTime"
22 |
/Users/admin/builder/spi-builder-workspace/Sources/TimeTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | public static var namePrefix = "Time"
21 | public static var reversableNamePrefix = "StringToTime"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public var formatter: DateFormatter {
[20/30] Compiling ValueTransformerKit PropertyListTransformer.swift
[21/30] Compiling ValueTransformerKit ReverseValueTransformer.swift
[22/30] Compiling ValueTransformerKit SecondsToHoursValueTransformer.swift
[23/30] Compiling ValueTransformerKit UIColorToString.swift
[24/30] Compiling ValueTransformerKit URLStringToImageTransformer.swift
[25/30] Compiling ValueTransformerKit ClosureValueTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public enum DateTransformers: ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'DateTransformers' conform to the 'Sendable' protocol
9 |
10 | case rfc822
:
16 | case dateFormat(String)
17 |
18 | public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public static var namePrefix = "Date"
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
19 |
20 | public static var namePrefix = "Date"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static var reversableNamePrefix = "StringToDate"
22 |
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | public static var namePrefix = "Date"
21 | public static var reversableNamePrefix = "StringToDate"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public var formatter: DateFormatter {
[26/30] Compiling ValueTransformerKit DateTransformers.swift
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public enum DateTransformers: ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'DateTransformers' conform to the 'Sendable' protocol
9 |
10 | case rfc822
:
16 | case dateFormat(String)
17 |
18 | public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public static var namePrefix = "Date"
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
19 |
20 | public static var namePrefix = "Date"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static var reversableNamePrefix = "StringToDate"
22 |
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | public static var namePrefix = "Date"
21 | public static var reversableNamePrefix = "StringToDate"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public var formatter: DateFormatter {
[27/30] Compiling ValueTransformerKit EmptyTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:18:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public enum DateTransformers: ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'DateTransformers' conform to the 'Sendable' protocol
9 |
10 | case rfc822
:
16 | case dateFormat(String)
17 |
18 | public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[DateTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public static var namePrefix = "Date"
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:20:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public static let transformers: [DateTransformers] = [.rfc822, .short, .medium, .long, .full]
19 |
20 | public static var namePrefix = "Date"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static var reversableNamePrefix = "StringToDate"
22 |
/Users/admin/builder/spi-builder-workspace/Sources/DateTransformers.swift:21:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | public static var namePrefix = "Date"
21 | public static var reversableNamePrefix = "StringToDate"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public var formatter: DateFormatter {
[28/30] Compiling ValueTransformerKit IdentityTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// Identity transformer do return the value without applying any transformation
9 | @objc(IdentityTransformer)
10 | final public class IdentityTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IdentityTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public var name = NSValueTransformerName(rawValue: "Identity")
13 | public static let instance = IdentityTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
49 | #endif
50 |
51 | public enum ImageRepresentationTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'ImageRepresentationTransformers' conform to the 'Sendable' protocol
52 |
53 | case png
54 | case jpeg
55 |
56 | public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
56 | public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
57 |
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
| |- warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kJPEGRepresentationCompressionQuality' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'kJPEGRepresentationCompressionQuality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | public static var namePrefix = "ImageRepresentation"
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
59 |
60 | public static var namePrefix = "ImageRepresentation"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | public static var reversableNamePrefix = "RepresentationToImage"
62 |
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |
60 | public static var namePrefix = "ImageRepresentation"
61 | public static var reversableNamePrefix = "RepresentationToImage"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// Transform to Boolean by checking if empty
9 | @objc(IsEmptyTransformer)
10 | final public class IsEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IsEmptyTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public var name = NSValueTransformerName(rawValue: "IsEmpty")
13 | public static let instance = IsEmptyTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
36 | /// Transform to Boolean by checking if not empty
37 | @objc(IsNotEmptyTransformer)
38 | final public class IsNotEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IsNotEmptyTransformer' does not conform to the 'Sendable' protocol
39 |
40 | public var name = NSValueTransformerName(rawValue: "IsNotEmpty")
41 | public static let instance = IsNotEmptyTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | public override class func allowsReverseTransformation() -> Bool {
[29/30] Compiling ValueTransformerKit ImageTransformers.swift
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// Identity transformer do return the value without applying any transformation
9 | @objc(IdentityTransformer)
10 | final public class IdentityTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IdentityTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public var name = NSValueTransformerName(rawValue: "Identity")
13 | public static let instance = IdentityTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
49 | #endif
50 |
51 | public enum ImageRepresentationTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'ImageRepresentationTransformers' conform to the 'Sendable' protocol
52 |
53 | case png
54 | case jpeg
55 |
56 | public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
56 | public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
57 |
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
| |- warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kJPEGRepresentationCompressionQuality' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'kJPEGRepresentationCompressionQuality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | public static var namePrefix = "ImageRepresentation"
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
59 |
60 | public static var namePrefix = "ImageRepresentation"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | public static var reversableNamePrefix = "RepresentationToImage"
62 |
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |
60 | public static var namePrefix = "ImageRepresentation"
61 | public static var reversableNamePrefix = "RepresentationToImage"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// Transform to Boolean by checking if empty
9 | @objc(IsEmptyTransformer)
10 | final public class IsEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IsEmptyTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public var name = NSValueTransformerName(rawValue: "IsEmpty")
13 | public static let instance = IsEmptyTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
36 | /// Transform to Boolean by checking if not empty
37 | @objc(IsNotEmptyTransformer)
38 | final public class IsNotEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IsNotEmptyTransformer' does not conform to the 'Sendable' protocol
39 |
40 | public var name = NSValueTransformerName(rawValue: "IsNotEmpty")
41 | public static let instance = IsNotEmptyTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | public override class func allowsReverseTransformation() -> Bool {
[30/30] Compiling ValueTransformerKit IsEmptyTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/IdentityTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// Identity transformer do return the value without applying any transformation
9 | @objc(IdentityTransformer)
10 | final public class IdentityTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IdentityTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public var name = NSValueTransformerName(rawValue: "Identity")
13 | public static let instance = IdentityTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IdentityTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public override class func transformedValueClass() -> AnyClass {
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:56:23: warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
49 | #endif
50 |
51 | public enum ImageRepresentationTransformers: String, ReversableValueTransformers, ResersableValueTransformerType {
| `- note: consider making enum 'ImageRepresentationTransformers' conform to the 'Sendable' protocol
52 |
53 | case png
54 | case jpeg
55 |
56 | public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
| |- warning: static property 'transformers' is not concurrency-safe because non-'Sendable' type '[ImageRepresentationTransformers]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'transformers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:58:23: warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
56 | public static let transformers: [ImageRepresentationTransformers] = [.png, .jpeg]
57 |
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
| |- warning: static property 'kJPEGRepresentationCompressionQuality' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kJPEGRepresentationCompressionQuality' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'kJPEGRepresentationCompressionQuality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 | public static var namePrefix = "ImageRepresentation"
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:60:23: warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | public static var kJPEGRepresentationCompressionQuality: CGFloat = 0.85
59 |
60 | public static var namePrefix = "ImageRepresentation"
| |- warning: static property 'namePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'namePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'namePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | public static var reversableNamePrefix = "RepresentationToImage"
62 |
/Users/admin/builder/spi-builder-workspace/Sources/ImageTransformers.swift:61:23: warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |
60 | public static var namePrefix = "ImageRepresentation"
61 | public static var reversableNamePrefix = "RepresentationToImage"
| |- warning: static property 'reversableNamePrefix' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reversableNamePrefix' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reversableNamePrefix' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 | public var name: NSValueTransformerName {
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:13:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// Transform to Boolean by checking if empty
9 | @objc(IsEmptyTransformer)
10 | final public class IsEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IsEmptyTransformer' does not conform to the 'Sendable' protocol
11 |
12 | public var name = NSValueTransformerName(rawValue: "IsEmpty")
13 | public static let instance = IsEmptyTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | public override class func allowsReverseTransformation() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/IsEmptyTransformer.swift:41:23: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
36 | /// Transform to Boolean by checking if not empty
37 | @objc(IsNotEmptyTransformer)
38 | final public class IsNotEmptyTransformer: ValueTransformer, ValueTransformerRegisterable, ValueTransformerSingleton {
| `- note: class 'IsNotEmptyTransformer' does not conform to the 'Sendable' protocol
39 |
40 | public var name = NSValueTransformerName(rawValue: "IsNotEmpty")
41 | public static let instance = IsNotEmptyTransformer()
| |- warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'IsNotEmptyTransformer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | public override class func allowsReverseTransformation() -> Bool {
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/27] Emitting module ValueTransformerKit
/Users/admin/builder/spi-builder-workspace/Sources/Operators.swift:85:24: error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
83 | }
84 | extension ValueTransformerType {
85 | public static func + (left: ValueTransformerType, right: ValueTransformerType) -> ValueTransformer {
| `- error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
86 | return CompoundValueTransformer(transformers: [left.transformer, right.transformer])
87 | }
[3/29] Compiling ValueTransformerKit UIColorToString.swift
[4/29] Compiling ValueTransformerKit URLStringToImageTransformer.swift
[5/29] Compiling ValueTransformerKit PropertyListTransformer.swift
[6/29] Compiling ValueTransformerKit ReverseValueTransformer.swift
[7/29] Compiling ValueTransformerKit SecondsToHoursValueTransformer.swift
[8/29] Compiling ValueTransformerKit ArchiveValueTransformer.swift
[9/29] Compiling ValueTransformerKit ArrayToStringTransformer.swift
[10/29] Compiling ValueTransformerKit Base64Transformer.swift
[11/29] Compiling ValueTransformerKit URLToStringTransformer.swift
[12/29] Compiling ValueTransformerKit ValueTransformerRegisterable.swift
[13/29] Compiling ValueTransformerKit JSONValueTransformer.swift
[14/29] Compiling ValueTransformerKit LocalKeyTransformers.swift
[15/29] Compiling ValueTransformerKit NumberToBoolTransformer.swift
[16/29] Compiling ValueTransformerKit NumberTransformers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators.swift:85:24: error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
83 | }
84 | extension ValueTransformerType {
85 | public static func + (left: ValueTransformerType, right: ValueTransformerType) -> ValueTransformer {
| `- error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
86 | return CompoundValueTransformer(transformers: [left.transformer, right.transformer])
87 | }
[17/29] Compiling ValueTransformerKit Operators.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators.swift:85:24: error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
83 | }
84 | extension ValueTransformerType {
85 | public static func + (left: ValueTransformerType, right: ValueTransformerType) -> ValueTransformer {
| `- error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
86 | return CompoundValueTransformer(transformers: [left.transformer, right.transformer])
87 | }
[18/29] Compiling ValueTransformerKit OrderedSetToArrayValueTransformer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators.swift:85:24: error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
83 | }
84 | extension ValueTransformerType {
85 | public static func + (left: ValueTransformerType, right: ValueTransformerType) -> ValueTransformer {
| `- error: member operator '+' of protocol 'ValueTransformerType' must have at least one argument of type 'Self'
86 | return CompoundValueTransformer(transformers: [left.transformer, right.transformer])
87 | }
[19/29] Compiling ValueTransformerKit ClosureValueTransformer.swift
[20/29] Compiling ValueTransformerKit DateTransformers.swift
[21/29] Compiling ValueTransformerKit EmptyTransformer.swift
[22/29] Compiling ValueTransformerKit IdentityTransformer.swift
[23/29] Compiling ValueTransformerKit ImageTransformers.swift
[24/29] Compiling ValueTransformerKit IsEmptyTransformer.swift
[25/29] Compiling ValueTransformerKit StringToDataTransformer.swift
[26/29] Compiling ValueTransformerKit StringTransformers.swift
[27/29] Compiling ValueTransformerKit TimeTransformers.swift
[28/29] Compiling ValueTransformerKit ValueTransformerType.swift
[29/29] Compiling ValueTransformerKit ValueTransformers.swift
BUILD FAILURE 6.1 macosSpm