Build Information
Successful build of TranslationCatalog, reference 0.7.1 (fba598
), with Swift 6.1 for Linux on 1 May 2025 03:46:42 UTC.
Swift 6 data race errors: 44
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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 2>&1
Build Log
6 | extension Catalog {
7 | struct Insert: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "insert",
10 | abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:30:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | struct ProjectCommand: CatalogCommand {
29 |
30 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | commandName: "project",
32 | abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:30:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
28 | struct ProjectCommand: CatalogCommand {
29 |
30 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
31 | commandName: "project",
32 | abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:89:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
87 |
88 | @Option(help: "The default/development language code.")
89 | var defaultLanguage: LanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
90 |
91 | @Option(help: "Contextual information that guides translators.")
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:70:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
68 | struct ExpressionCommand: CatalogCommand {
69 |
70 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | commandName: "expression",
72 | abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:70:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
68 | struct ExpressionCommand: CatalogCommand {
69 |
70 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
71 | commandName: "expression",
72 | abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 | struct TranslationCommand: CatalogCommand {
132 |
133 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | commandName: "translation",
135 | abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
131 | struct TranslationCommand: CatalogCommand {
132 |
133 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
134 | commandName: "translation",
135 | abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
183 | struct KeyValueCommand: CatalogCommand {
184 |
185 | static var configuration: CommandConfiguration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 | commandName: "key-value",
187 | abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185:58: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
183 | struct KeyValueCommand: CatalogCommand {
184 |
185 | static var configuration: CommandConfiguration = CommandConfiguration(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
186 | commandName: "key-value",
187 | abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Query: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "query",
10 | abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Query: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "query",
10 | abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | struct ProjectCommand: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | commandName: "project",
30 | abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
26 | struct ProjectCommand: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
29 | commandName: "project",
30 | abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
81 | struct ExpressionCommand: CatalogCommand {
82 |
83 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | commandName: "expression",
85 | abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
81 | struct ExpressionCommand: CatalogCommand {
82 |
83 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
84 | commandName: "expression",
85 | abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Update: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "update",
10 | abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Update: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "update",
10 | abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | struct ProjectCommand: CatalogCommand {
28 |
29 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | commandName: "project",
31 | abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
27 | struct ProjectCommand: CatalogCommand {
28 |
29 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
30 | commandName: "project",
31 | abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
94 | struct ExpressionCommand: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | commandName: "expression",
98 | abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
94 | struct ExpressionCommand: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
97 | commandName: "expression",
98 | abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 | struct TranslationCommand: CatalogCommand {
195 |
196 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 | commandName: "translation",
198 | abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
194 | struct TranslationCommand: CatalogCommand {
195 |
196 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
197 | commandName: "translation",
198 | abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | case filesystem
12 |
13 | static var `default`: Storage = .sqlite
| |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | commandName: "catalog",
38 | abstract: "Interact with the translation catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
34 | }
35 |
36 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
37 | commandName: "catalog",
38 | abstract: "Interact with the translation catalog.",
/host/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
5 | struct Get: AsyncParsableCommand {
6 |
7 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "get",
9 | abstract: "Gets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
5 | struct Get: AsyncParsableCommand {
6 |
7 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | commandName: "get",
9 | abstract: "Gets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | struct Set: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "set",
10 | abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | struct Set: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "set",
10 | abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | struct Configure: AsyncParsableCommand {
5 |
6 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "configure",
8 | abstract: "Displays or alters the command configuration details.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
4 | struct Configure: AsyncParsableCommand {
5 |
6 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
7 | commandName: "configure",
8 | abstract: "Displays or alters the command configuration details.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | struct Preview: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "preview",
10 | abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | struct Preview: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "preview",
10 | abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/localizer.swift:5:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
3 |
4 | @main struct Command: AsyncParsableCommand {
5 | static var configuration: CommandConfiguration = {
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 | try? Configuration.load(.default)
7 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:8:17: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | try? Configuration.load(.default)
7 |
8 | return .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "localizer",
10 | abstract: "Utility for interacting with Android 'strings.xml', Apple 'Localizable.strings', and Web '*.json' localization files.",
/host/spi-builder-workspace/Sources/localizer/localizer.swift:13:51: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 | usage: nil,
12 | discussion: """
13 | Default Language Code: \(LanguageCode.default.rawValue)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 | Default Region Code: \(RegionCode.default.rawValue)
15 | Default Storage: \(Catalog.Storage.default.rawValue)
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:14:47: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 | discussion: """
13 | Default Language Code: \(LanguageCode.default.rawValue)
14 | Default Region Code: \(RegionCode.default.rawValue)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 | Default Storage: \(Catalog.Storage.default.rawValue)
16 | """,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
[360/380] Compiling localizer Preview.swift
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | struct Preview: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "preview",
10 | abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | struct Preview: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "preview",
10 | abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:35:117: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 | let url = try FileManager.default.url(for: input)
34 | let data = try Data(contentsOf: url)
35 | let expressions = try ExpressionDecoder.decodeExpressions(from: data, fileFormat: format, defaultLanguage: .default, languageCode: .default, scriptCode: nil, regionCode: nil)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | expressions.sorted(by: { $0.name < $1.name }).forEach { (expression) in
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Preview.swift:35:141: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 | let url = try FileManager.default.url(for: input)
34 | let data = try Data(contentsOf: url)
35 | let expressions = try ExpressionDecoder.decodeExpressions(from: data, fileFormat: format, defaultLanguage: .default, languageCode: .default, scriptCode: nil, regionCode: nil)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | expressions.sorted(by: { $0.name < $1.name }).forEach { (expression) in
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:5:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
3 |
4 | @main struct Command: AsyncParsableCommand {
5 | static var configuration: CommandConfiguration = {
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 | try? Configuration.load(.default)
7 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:8:17: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | try? Configuration.load(.default)
7 |
8 | return .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "localizer",
10 | abstract: "Utility for interacting with Android 'strings.xml', Apple 'Localizable.strings', and Web '*.json' localization files.",
/host/spi-builder-workspace/Sources/localizer/localizer.swift:13:51: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 | usage: nil,
12 | discussion: """
13 | Default Language Code: \(LanguageCode.default.rawValue)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 | Default Region Code: \(RegionCode.default.rawValue)
15 | Default Storage: \(Catalog.Storage.default.rawValue)
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:14:47: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 | discussion: """
13 | Default Language Code: \(LanguageCode.default.rawValue)
14 | Default Region Code: \(RegionCode.default.rawValue)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 | Default Storage: \(Catalog.Storage.default.rawValue)
16 | """,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
[361/380] Compiling localizer localizer.swift
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | struct Preview: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "preview",
10 | abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:8:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | struct Preview: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "preview",
10 | abstract: "Displays the localizations found in a translation file.",
/host/spi-builder-workspace/Sources/localizer/Preview.swift:35:117: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 | let url = try FileManager.default.url(for: input)
34 | let data = try Data(contentsOf: url)
35 | let expressions = try ExpressionDecoder.decodeExpressions(from: data, fileFormat: format, defaultLanguage: .default, languageCode: .default, scriptCode: nil, regionCode: nil)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | expressions.sorted(by: { $0.name < $1.name }).forEach { (expression) in
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Preview.swift:35:141: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 | let url = try FileManager.default.url(for: input)
34 | let data = try Data(contentsOf: url)
35 | let expressions = try ExpressionDecoder.decodeExpressions(from: data, fileFormat: format, defaultLanguage: .default, languageCode: .default, scriptCode: nil, regionCode: nil)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | expressions.sorted(by: { $0.name < $1.name }).forEach { (expression) in
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:5:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
3 |
4 | @main struct Command: AsyncParsableCommand {
5 | static var configuration: CommandConfiguration = {
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 | try? Configuration.load(.default)
7 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:8:17: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | try? Configuration.load(.default)
7 |
8 | return .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "localizer",
10 | abstract: "Utility for interacting with Android 'strings.xml', Apple 'Localizable.strings', and Web '*.json' localization files.",
/host/spi-builder-workspace/Sources/localizer/localizer.swift:13:51: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 | usage: nil,
12 | discussion: """
13 | Default Language Code: \(LanguageCode.default.rawValue)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 | Default Region Code: \(RegionCode.default.rawValue)
15 | Default Storage: \(Catalog.Storage.default.rawValue)
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/localizer.swift:14:47: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 | discussion: """
13 | Default Language Code: \(LanguageCode.default.rawValue)
14 | Default Region Code: \(RegionCode.default.rawValue)
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 | Default Storage: \(Catalog.Storage.default.rawValue)
16 | """,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
[362/380] Compiling localizer Catalog+Delete.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
5 | extension Catalog {
6 | struct Delete: AsyncParsableCommand {
7 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "delete",
9 | abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
5 | extension Catalog {
6 | struct Delete: AsyncParsableCommand {
7 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | commandName: "delete",
9 | abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | struct ProjectEntity: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | commandName: "project",
30 | abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
26 | struct ProjectEntity: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
29 | commandName: "project",
30 | abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
65 | struct ExpressionEntity: CatalogCommand {
66 |
67 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | commandName: "expression",
69 | abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
65 | struct ExpressionEntity: CatalogCommand {
66 |
67 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
68 | commandName: "expression",
69 | abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
94 | struct TranslationEntity: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | commandName: "translation",
98 | abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
94 | struct TranslationEntity: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
97 | commandName: "translation",
98 | abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct Export: CatalogCommand {
9 |
10 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | commandName: "export",
12 | abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | struct Export: CatalogCommand {
9 |
10 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
11 | commandName: "export",
12 | abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | struct Generate: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | commandName: "generate",
13 | abstract: "Generate a viewable document using the strings catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | struct Generate: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 | commandName: "generate",
13 | abstract: "Generate a viewable document using the strings catalog.",
[363/380] Compiling localizer Catalog+Export.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
5 | extension Catalog {
6 | struct Delete: AsyncParsableCommand {
7 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "delete",
9 | abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
5 | extension Catalog {
6 | struct Delete: AsyncParsableCommand {
7 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | commandName: "delete",
9 | abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | struct ProjectEntity: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | commandName: "project",
30 | abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
26 | struct ProjectEntity: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
29 | commandName: "project",
30 | abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
65 | struct ExpressionEntity: CatalogCommand {
66 |
67 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | commandName: "expression",
69 | abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
65 | struct ExpressionEntity: CatalogCommand {
66 |
67 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
68 | commandName: "expression",
69 | abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
94 | struct TranslationEntity: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | commandName: "translation",
98 | abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
94 | struct TranslationEntity: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
97 | commandName: "translation",
98 | abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct Export: CatalogCommand {
9 |
10 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | commandName: "export",
12 | abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | struct Export: CatalogCommand {
9 |
10 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
11 | commandName: "export",
12 | abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | struct Generate: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | commandName: "generate",
13 | abstract: "Generate a viewable document using the strings catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | struct Generate: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 | commandName: "generate",
13 | abstract: "Generate a viewable document using the strings catalog.",
[364/380] Compiling localizer Catalog+Generate.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
5 | extension Catalog {
6 | struct Delete: AsyncParsableCommand {
7 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "delete",
9 | abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
5 | extension Catalog {
6 | struct Delete: AsyncParsableCommand {
7 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | commandName: "delete",
9 | abstract: "Remove a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | struct ProjectEntity: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | commandName: "project",
30 | abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
26 | struct ProjectEntity: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
29 | commandName: "project",
30 | abstract: "Delete a Project from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
65 | struct ExpressionEntity: CatalogCommand {
66 |
67 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | commandName: "expression",
69 | abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:67:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
65 | struct ExpressionEntity: CatalogCommand {
66 |
67 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
68 | commandName: "expression",
69 | abstract: "Delete a Expression from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
94 | struct TranslationEntity: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | commandName: "translation",
98 | abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Delete.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
94 | struct TranslationEntity: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
97 | commandName: "translation",
98 | abstract: "Delete a Translation from the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct Export: CatalogCommand {
9 |
10 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | commandName: "export",
12 | abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Export.swift:10:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | struct Export: CatalogCommand {
9 |
10 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
11 | commandName: "export",
12 | abstract: "Export a translation file using the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | struct Generate: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | commandName: "generate",
13 | abstract: "Generate a viewable document using the strings catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Generate.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | struct Generate: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 | commandName: "generate",
13 | abstract: "Generate a viewable document using the strings catalog.",
[365/380] Compiling localizer Configuration.swift
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:10:32: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
8 |
9 | init() {
10 | defaultLanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 | defaultRegionCode = .default
12 | defaultStorage = .default
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:11:30: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
9 | init() {
10 | defaultLanguageCode = .default
11 | defaultRegionCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 | defaultStorage = .default
13 | }
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:17:114: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 | init(from decoder: Decoder) throws {
16 | let container = try decoder.container(keyedBy: CodingKeys.self)
17 | defaultLanguageCode = try container.decodeIfPresent(LanguageCode.self, forKey: .defaultLanguageCode) ?? .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 | defaultRegionCode = try container.decodeIfPresent(RegionCode.self, forKey: .defaultRegionCode) ?? .default
19 | defaultStorage = try container.decodeIfPresent(Catalog.Storage.self, forKey: .defaultStorage) ?? .default
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:18:108: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 | let container = try decoder.container(keyedBy: CodingKeys.self)
17 | defaultLanguageCode = try container.decodeIfPresent(LanguageCode.self, forKey: .defaultLanguageCode) ?? .default
18 | defaultRegionCode = try container.decodeIfPresent(RegionCode.self, forKey: .defaultRegionCode) ?? .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 | defaultStorage = try container.decodeIfPresent(Catalog.Storage.self, forKey: .defaultStorage) ?? .default
20 | }
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:43:22: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
41 |
42 | static func load(_ configuration: Configuration) throws {
43 | LanguageCode.default = configuration.defaultLanguageCode
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 | RegionCode.default = configuration.defaultRegionCode
45 | Catalog.Storage.default = configuration.defaultStorage
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:44:20: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 | static func load(_ configuration: Configuration) throws {
43 | LanguageCode.default = configuration.defaultLanguageCode
44 | RegionCode.default = configuration.defaultRegionCode
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
45 | Catalog.Storage.default = configuration.defaultStorage
46 | }
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
/host/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
5 | struct Get: AsyncParsableCommand {
6 |
7 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "get",
9 | abstract: "Gets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
5 | struct Get: AsyncParsableCommand {
6 |
7 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | commandName: "get",
9 | abstract: "Gets configuration parameters.",
[366/380] Compiling localizer Configure+Get.swift
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:10:32: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
8 |
9 | init() {
10 | defaultLanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 | defaultRegionCode = .default
12 | defaultStorage = .default
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:11:30: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
9 | init() {
10 | defaultLanguageCode = .default
11 | defaultRegionCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 | defaultStorage = .default
13 | }
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:17:114: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 | init(from decoder: Decoder) throws {
16 | let container = try decoder.container(keyedBy: CodingKeys.self)
17 | defaultLanguageCode = try container.decodeIfPresent(LanguageCode.self, forKey: .defaultLanguageCode) ?? .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 | defaultRegionCode = try container.decodeIfPresent(RegionCode.self, forKey: .defaultRegionCode) ?? .default
19 | defaultStorage = try container.decodeIfPresent(Catalog.Storage.self, forKey: .defaultStorage) ?? .default
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:18:108: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 | let container = try decoder.container(keyedBy: CodingKeys.self)
17 | defaultLanguageCode = try container.decodeIfPresent(LanguageCode.self, forKey: .defaultLanguageCode) ?? .default
18 | defaultRegionCode = try container.decodeIfPresent(RegionCode.self, forKey: .defaultRegionCode) ?? .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 | defaultStorage = try container.decodeIfPresent(Catalog.Storage.self, forKey: .defaultStorage) ?? .default
20 | }
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:43:22: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
41 |
42 | static func load(_ configuration: Configuration) throws {
43 | LanguageCode.default = configuration.defaultLanguageCode
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 | RegionCode.default = configuration.defaultRegionCode
45 | Catalog.Storage.default = configuration.defaultStorage
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Configuration.swift:44:20: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 | static func load(_ configuration: Configuration) throws {
43 | LanguageCode.default = configuration.defaultLanguageCode
44 | RegionCode.default = configuration.defaultRegionCode
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
45 | Catalog.Storage.default = configuration.defaultStorage
46 | }
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/RegionCode.swift:262:23: note: static property declared here
260 | case ZW
261 |
262 | public static var `default`: Self = .US
| `- note: static property declared here
263 | }
264 |
/host/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
5 | struct Get: AsyncParsableCommand {
6 |
7 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "get",
9 | abstract: "Gets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Get.swift:7:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
5 | struct Get: AsyncParsableCommand {
6 |
7 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
8 | commandName: "get",
9 | abstract: "Gets configuration parameters.",
[367/380] Compiling localizer FileManager+localizer.swift
[368/380] Compiling localizer RenderFormat+localizer.swift
[369/380] Compiling localizer Catalog+Update.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Update: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "update",
10 | abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Update: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "update",
10 | abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | struct ProjectCommand: CatalogCommand {
28 |
29 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | commandName: "project",
31 | abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
27 | struct ProjectCommand: CatalogCommand {
28 |
29 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
30 | commandName: "project",
31 | abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
94 | struct ExpressionCommand: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | commandName: "expression",
98 | abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
94 | struct ExpressionCommand: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
97 | commandName: "expression",
98 | abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 | struct TranslationCommand: CatalogCommand {
195 |
196 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 | commandName: "translation",
198 | abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
194 | struct TranslationCommand: CatalogCommand {
195 |
196 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
197 | commandName: "translation",
198 | abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | case filesystem
12 |
13 | static var `default`: Storage = .sqlite
| |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | commandName: "catalog",
38 | abstract: "Interact with the translation catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
34 | }
35 |
36 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
37 | commandName: "catalog",
38 | abstract: "Interact with the translation catalog.",
[370/380] Compiling localizer Catalog.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Update: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "update",
10 | abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Update: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "update",
10 | abstract: "Update a single entity in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | struct ProjectCommand: CatalogCommand {
28 |
29 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | commandName: "project",
31 | abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:29:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
27 | struct ProjectCommand: CatalogCommand {
28 |
29 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
30 | commandName: "project",
31 | abstract: "Update a Project in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
94 | struct ExpressionCommand: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | commandName: "expression",
98 | abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:96:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
94 | struct ExpressionCommand: CatalogCommand {
95 |
96 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
97 | commandName: "expression",
98 | abstract: "Update an Expression in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 | struct TranslationCommand: CatalogCommand {
195 |
196 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 | commandName: "translation",
198 | abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Update.swift:196:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
194 | struct TranslationCommand: CatalogCommand {
195 |
196 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
197 | commandName: "translation",
198 | abstract: "Update a Translation in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:13:20: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | case filesystem
12 |
13 | static var `default`: Storage = .sqlite
| |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | commandName: "catalog",
38 | abstract: "Interact with the translation catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog.swift:36:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
34 | }
35 |
36 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
37 | commandName: "catalog",
38 | abstract: "Interact with the translation catalog.",
[371/380] Compiling localizer Arguments.swift
[372/380] Compiling localizer FileFormat+localizer.swift
[373/380] Compiling localizer Catalog+Import.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:41:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |
40 | @Option(help: "The 'default' Language for the expressions being imported.")
41 | var defaultLanguage: LanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | @Option(help: "Storage mechanism used to persist the catalog. [sqlite, filesystem]")
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | struct Import: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | commandName: "import",
13 | abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | struct Import: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 | commandName: "import",
13 | abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Insert: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "insert",
10 | abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Insert: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "insert",
10 | abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:30:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | struct ProjectCommand: CatalogCommand {
29 |
30 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | commandName: "project",
32 | abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:30:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
28 | struct ProjectCommand: CatalogCommand {
29 |
30 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
31 | commandName: "project",
32 | abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:89:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
87 |
88 | @Option(help: "The default/development language code.")
89 | var defaultLanguage: LanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
90 |
91 | @Option(help: "Contextual information that guides translators.")
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:70:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
68 | struct ExpressionCommand: CatalogCommand {
69 |
70 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | commandName: "expression",
72 | abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:70:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
68 | struct ExpressionCommand: CatalogCommand {
69 |
70 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
71 | commandName: "expression",
72 | abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 | struct TranslationCommand: CatalogCommand {
132 |
133 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | commandName: "translation",
135 | abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
131 | struct TranslationCommand: CatalogCommand {
132 |
133 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
134 | commandName: "translation",
135 | abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
183 | struct KeyValueCommand: CatalogCommand {
184 |
185 | static var configuration: CommandConfiguration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 | commandName: "key-value",
187 | abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185:58: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
183 | struct KeyValueCommand: CatalogCommand {
184 |
185 | static var configuration: CommandConfiguration = CommandConfiguration(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
186 | commandName: "key-value",
187 | abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:216:35: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
214 | key: key,
215 | name: key,
216 | defaultLanguage: .default,
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
217 | context: nil,
218 | feature: nil,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:227:32: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
225 | id: .zero,
226 | expressionId: expressionId,
227 | languageCode: .default,
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
228 | scriptCode: nil,
229 | regionCode: nil,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Query: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "query",
10 | abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Query: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "query",
10 | abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | struct ProjectCommand: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | commandName: "project",
30 | abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
26 | struct ProjectCommand: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
29 | commandName: "project",
30 | abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
81 | struct ExpressionCommand: CatalogCommand {
82 |
83 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | commandName: "expression",
85 | abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
81 | struct ExpressionCommand: CatalogCommand {
82 |
83 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
84 | commandName: "expression",
85 | abstract: "Query for expressions in the catalog.",
[374/380] Compiling localizer Catalog+Insert.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:41:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |
40 | @Option(help: "The 'default' Language for the expressions being imported.")
41 | var defaultLanguage: LanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | @Option(help: "Storage mechanism used to persist the catalog. [sqlite, filesystem]")
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | struct Import: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | commandName: "import",
13 | abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | struct Import: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 | commandName: "import",
13 | abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Insert: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "insert",
10 | abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Insert: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "insert",
10 | abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:30:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | struct ProjectCommand: CatalogCommand {
29 |
30 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | commandName: "project",
32 | abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:30:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
28 | struct ProjectCommand: CatalogCommand {
29 |
30 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
31 | commandName: "project",
32 | abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:89:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
87 |
88 | @Option(help: "The default/development language code.")
89 | var defaultLanguage: LanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
90 |
91 | @Option(help: "Contextual information that guides translators.")
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:70:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
68 | struct ExpressionCommand: CatalogCommand {
69 |
70 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | commandName: "expression",
72 | abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:70:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
68 | struct ExpressionCommand: CatalogCommand {
69 |
70 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
71 | commandName: "expression",
72 | abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 | struct TranslationCommand: CatalogCommand {
132 |
133 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | commandName: "translation",
135 | abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
131 | struct TranslationCommand: CatalogCommand {
132 |
133 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
134 | commandName: "translation",
135 | abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
183 | struct KeyValueCommand: CatalogCommand {
184 |
185 | static var configuration: CommandConfiguration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 | commandName: "key-value",
187 | abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185:58: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
183 | struct KeyValueCommand: CatalogCommand {
184 |
185 | static var configuration: CommandConfiguration = CommandConfiguration(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
186 | commandName: "key-value",
187 | abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:216:35: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
214 | key: key,
215 | name: key,
216 | defaultLanguage: .default,
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
217 | context: nil,
218 | feature: nil,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:227:32: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
225 | id: .zero,
226 | expressionId: expressionId,
227 | languageCode: .default,
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
228 | scriptCode: nil,
229 | regionCode: nil,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Query: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "query",
10 | abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Query: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "query",
10 | abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | struct ProjectCommand: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | commandName: "project",
30 | abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
26 | struct ProjectCommand: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
29 | commandName: "project",
30 | abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
81 | struct ExpressionCommand: CatalogCommand {
82 |
83 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | commandName: "expression",
85 | abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
81 | struct ExpressionCommand: CatalogCommand {
82 |
83 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
84 | commandName: "expression",
85 | abstract: "Query for expressions in the catalog.",
[375/380] Compiling localizer Catalog+Query.swift
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:41:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |
40 | @Option(help: "The 'default' Language for the expressions being imported.")
41 | var defaultLanguage: LanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | @Option(help: "Storage mechanism used to persist the catalog. [sqlite, filesystem]")
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | struct Import: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | commandName: "import",
13 | abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Import.swift:11:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | struct Import: CatalogCommand {
10 |
11 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
12 | commandName: "import",
13 | abstract: "Imports a translation file into the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Insert: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "insert",
10 | abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Insert: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "insert",
10 | abstract: "Adds a single entity to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:30:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | struct ProjectCommand: CatalogCommand {
29 |
30 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | commandName: "project",
32 | abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:30:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
28 | struct ProjectCommand: CatalogCommand {
29 |
30 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
31 | commandName: "project",
32 | abstract: "Add a Project to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:89:46: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
87 |
88 | @Option(help: "The default/development language code.")
89 | var defaultLanguage: LanguageCode = .default
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
90 |
91 | @Option(help: "Contextual information that guides translators.")
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:70:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
68 | struct ExpressionCommand: CatalogCommand {
69 |
70 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | commandName: "expression",
72 | abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:70:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
68 | struct ExpressionCommand: CatalogCommand {
69 |
70 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
71 | commandName: "expression",
72 | abstract: "Add an Expression to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 | struct TranslationCommand: CatalogCommand {
132 |
133 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | commandName: "translation",
135 | abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:133:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
131 | struct TranslationCommand: CatalogCommand {
132 |
133 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
134 | commandName: "translation",
135 | abstract: "Add a Translation to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
183 | struct KeyValueCommand: CatalogCommand {
184 |
185 | static var configuration: CommandConfiguration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 | commandName: "key-value",
187 | abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:185:58: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
183 | struct KeyValueCommand: CatalogCommand {
184 |
185 | static var configuration: CommandConfiguration = CommandConfiguration(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
186 | commandName: "key-value",
187 | abstract: "Quickly add a Expression=Translation pairing to the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:216:35: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
214 | key: key,
215 | name: key,
216 | defaultLanguage: .default,
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
217 | context: nil,
218 | feature: nil,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Insert.swift:227:32: warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
225 | id: .zero,
226 | expressionId: expressionId,
227 | languageCode: .default,
| `- warning: reference to static property 'default' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
228 | scriptCode: nil,
229 | regionCode: nil,
/host/spi-builder-workspace/.build/checkouts/LocaleSupport/Sources/LocaleSupport/LanguageCode.swift:602:23: note: static property declared here
600 | case zza
601 |
602 | public static var `default`: Self = .en
| `- note: static property declared here
603 | }
604 |
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | extension Catalog {
7 | struct Query: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "query",
10 | abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | extension Catalog {
7 | struct Query: AsyncParsableCommand {
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "query",
10 | abstract: "Perform queries against the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 | struct ProjectCommand: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | commandName: "project",
30 | abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:28:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
26 | struct ProjectCommand: CatalogCommand {
27 |
28 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
29 | commandName: "project",
30 | abstract: "Query for projects in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
81 | struct ExpressionCommand: CatalogCommand {
82 |
83 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | commandName: "expression",
85 | abstract: "Query for expressions in the catalog.",
/host/spi-builder-workspace/Sources/localizer/Catalog+Query.swift:83:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
81 | struct ExpressionCommand: CatalogCommand {
82 |
83 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
84 | commandName: "expression",
85 | abstract: "Query for expressions in the catalog.",
[376/380] Compiling localizer Configure+Set.swift
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | struct Set: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "set",
10 | abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | struct Set: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "set",
10 | abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | struct Configure: AsyncParsableCommand {
5 |
6 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "configure",
8 | abstract: "Displays or alters the command configuration details.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
4 | struct Configure: AsyncParsableCommand {
5 |
6 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
7 | commandName: "configure",
8 | abstract: "Displays or alters the command configuration details.",
[377/380] Compiling localizer Configure.swift
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | struct Set: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | commandName: "set",
10 | abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure+Set.swift:8:59: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
6 | struct Set: AsyncParsableCommand {
7 |
8 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
9 | commandName: "set",
10 | abstract: "Sets configuration parameters.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | struct Configure: AsyncParsableCommand {
5 |
6 | static var configuration: CommandConfiguration = .init(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "configure",
8 | abstract: "Displays or alters the command configuration details.",
/host/spi-builder-workspace/Sources/localizer/Configure.swift:6:55: warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
4 | struct Configure: AsyncParsableCommand {
5 |
6 | static var configuration: CommandConfiguration = .init(
| `- warning: 'init(commandName:abstract:usage:discussion:version:shouldDisplay:subcommands:defaultSubcommand:helpNames:)' is deprecated: Use the memberwise initializer with the aliases parameter.
7 | commandName: "configure",
8 | abstract: "Displays or alters the command configuration details.",
[378/381] Wrapping AST for localizer for debugging
[379/381] Write Objects.LinkFileList
[380/381] Linking localizer
Build complete! (37.06s)
Build complete.
{
"default_localization" : "en",
"dependencies" : [
{
"identity" : "localesupport",
"requirement" : {
"range" : [
{
"lower_bound" : "0.6.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/richardpiazza/LocaleSupport.git"
},
{
"identity" : "asyncplus",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.2",
"upper_bound" : "0.4.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/richardpiazza/AsyncPlus.git"
},
{
"identity" : "statement",
"requirement" : {
"range" : [
{
"lower_bound" : "0.7.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/richardpiazza/Statement.git"
},
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser.git"
},
{
"identity" : "xmlcoder",
"requirement" : {
"range" : [
{
"lower_bound" : "0.15.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/CoreOffice/XMLCoder.git"
},
{
"identity" : "plot",
"requirement" : {
"range" : [
{
"lower_bound" : "0.11.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/JohnSundell/Plot.git"
},
{
"identity" : "htmlstring",
"requirement" : {
"range" : [
{
"lower_bound" : "6.0.0",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/alexisakers/HTMLString.git"
},
{
"identity" : "sqlite.swift",
"requirement" : {
"range" : [
{
"lower_bound" : "0.14.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/stephencelis/SQLite.swift.git"
}
],
"manifest_display_name" : "TranslationCatalog",
"name" : "TranslationCatalog",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "maccatalyst",
"version" : "15.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "TranslationCatalog",
"targets" : [
"TranslationCatalog",
"TranslationCatalogIO",
"TranslationCatalogSQLite",
"TranslationCatalogFilesystem"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "localizer",
"targets" : [
"localizer"
],
"type" : {
"executable" : null
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "localizer",
"module_type" : "SwiftTarget",
"name" : "localizer",
"path" : "Sources/localizer",
"product_dependencies" : [
"LocaleSupport",
"ArgumentParser"
],
"product_memberships" : [
"localizer"
],
"sources" : [
"Catalog+Delete.swift",
"Catalog+Export.swift",
"Catalog+Generate.swift",
"Catalog+Import.swift",
"Catalog+Insert.swift",
"Catalog+Query.swift",
"Catalog+Update.swift",
"Catalog.swift",
"Configuration.swift",
"Configure+Get.swift",
"Configure+Set.swift",
"Configure.swift",
"Extensions/Arguments.swift",
"Extensions/FileFormat+localizer.swift",
"Extensions/FileManager+localizer.swift",
"Extensions/RenderFormat+localizer.swift",
"Preview.swift",
"localizer.swift"
],
"target_dependencies" : [
"TranslationCatalog",
"TranslationCatalogIO",
"TranslationCatalogSQLite",
"TranslationCatalogFilesystem"
],
"type" : "executable"
},
{
"c99name" : "TranslationCatalogTests",
"module_type" : "SwiftTarget",
"name" : "TranslationCatalogTests",
"path" : "Tests/TranslationCatalogTests",
"product_dependencies" : [
"LocaleSupport"
],
"sources" : [
"Extensions/Catalog+DeleteAssertions.swift",
"Extensions/Catalog+InsertAssertions.swift",
"Extensions/Catalog+QueryAssertions.swift",
"Extensions/Catalog+UpdateAssertions.swift",
"FilesystemEmptyCatalogTests.swift",
"FilesystemQueryCatalogTests.swift",
"SQLiteEmptyCatalogTests.swift",
"SQLiteQueryCatalogTests.swift",
"XMLEscapingTests.swift"
],
"target_dependencies" : [
"TranslationCatalog",
"TranslationCatalogIO",
"TranslationCatalogFilesystem",
"TranslationCatalogSQLite"
],
"type" : "test"
},
{
"c99name" : "TranslationCatalogSQLite",
"module_type" : "SwiftTarget",
"name" : "TranslationCatalogSQLite",
"path" : "Sources/TranslationCatalogSQLite",
"product_dependencies" : [
"LocaleSupport",
"Statement",
"StatementSQLite",
"SQLite"
],
"product_memberships" : [
"TranslationCatalog",
"localizer"
],
"sources" : [
"Entities/ExpressionEntity.swift",
"Entities/ProjectEntity.swift",
"Entities/ProjectExpressionEntity.swift",
"Entities/TranslationEntity.swift",
"SQLite+Query.swift",
"SQLite+Schema.swift",
"SQLiteCatalog+AssociatedTypes.swift",
"SQLiteCatalog.swift",
"SQLiteStatement+Expression.swift",
"SQLiteStatement+Project.swift",
"SQLiteStatement+ProjectExpression.swift",
"SQLiteStatement+Translation.swift",
"SQLiteStmt+Entities.swift"
],
"target_dependencies" : [
"TranslationCatalog"
],
"type" : "library"
},
{
"c99name" : "TranslationCatalogIO",
"module_type" : "SwiftTarget",
"name" : "TranslationCatalogIO",
"path" : "Sources/TranslationCatalogIO",
"product_dependencies" : [
"AsyncPlus",
"XMLCoder",
"Plot",
"HTMLString"
],
"product_memberships" : [
"TranslationCatalog",
"localizer"
],
"sources" : [
"ExpressionDecoder.swift",
"ExpressionEncoder.swift",
"ExpressionImporter.swift",
"ExpressionRenderer.swift",
"Extensions/Dictionary+AppleStrings.swift",
"Extensions/Expression+IO.swift",
"Extensions/Plot+IO.swift",
"Extensions/Translation+IO.swift",
"Extensions/XML+Expression.swift",
"FileFormat.swift",
"Internal/Resource.swift",
"Internal/StringsXml.swift",
"MarkdownTable.swift",
"RenderFormat.swift"
],
"target_dependencies" : [
"TranslationCatalog"
],
"type" : "library"
},
{
"c99name" : "TranslationCatalogFilesystem",
"module_type" : "SwiftTarget",
"name" : "TranslationCatalogFilesystem",
"path" : "Sources/TranslationCatalogFilesystem",
"product_dependencies" : [
"LocaleSupport"
],
"product_memberships" : [
"TranslationCatalog",
"localizer"
],
"sources" : [
"Documents/Document.swift",
"Documents/ExpressionDocument.swift",
"Documents/ProjectDocument.swift",
"Documents/TranslationDocument.swift",
"FilesystemCatalog.swift"
],
"target_dependencies" : [
"TranslationCatalog"
],
"type" : "library"
},
{
"c99name" : "TranslationCatalog",
"module_type" : "SwiftTarget",
"name" : "TranslationCatalog",
"path" : "Sources/TranslationCatalog",
"product_dependencies" : [
"LocaleSupport"
],
"product_memberships" : [
"TranslationCatalog",
"localizer"
],
"sources" : [
"Catalog.swift",
"CatalogError.swift",
"CatalogQuery.swift",
"CatalogUpdate.swift",
"Expression.swift",
"LocaleRepresentable.swift",
"Project.swift",
"Translation.swift",
"UUID+TranslationCatalog.swift"
],
"type" : "library"
},
{
"c99name" : "LocalizerTests",
"module_type" : "SwiftTarget",
"name" : "LocalizerTests",
"path" : "Tests/LocalizerTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/File.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/Import1.strings",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/Import2.strings",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/Localizable.strings",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/Strings.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/test_multi_language.sqlite",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/LocalizerTests/Resources/test_single_project_entity.sqlite",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/LocalizerTests/StructuredResources",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"CatalogDeleteProjectTests.swift",
"CatalogExportTests.swift",
"CatalogGenerateTests.swift",
"Extensions/Process+LocalizerProcess.swift",
"FilesystemCatalogImportTests.swift",
"FilesystemTestCase.swift",
"LocalizerTests.swift",
"PreviewTests.swift",
"_LocalizerTestCase.swift"
],
"target_dependencies" : [
"localizer"
],
"type" : "test"
}
],
"tools_version" : "5.8"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.