Build Information
Successful build of TranslationCatalog, reference 0.7.1 (fba598
), with Swift 6.1 for macOS (SPM) on 1 May 2025 03:53:20 UTC.
Swift 6 data race errors: 48
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
[66/262] Compiling ArgumentParser CommandParser.swift
[67/262] Compiling ArgumentParser InputKey.swift
[68/262] Emitting module LocaleSupport
[69/262] Compiling Statement LogicalPredicate.swift
[70/262] Compiling Statement Segment.swift
[71/262] Compiling ArgumentParser MessageInfo.swift
[74/262] Compiling AsyncPlus PassthroughAsyncSequence.swift
[75/262] Compiling AsyncPlus PassthroughAsyncSubject.swift
[76/262] Compiling AsyncPlus CurrentValueAsyncThrowingSubject.swift
[77/262] Compiling AsyncPlus PassthroughAsyncThrowingSequence.swift
[78/262] Compiling AsyncPlus PassthroughAsyncThrowingSubject.swift
[79/262] Emitting module AsyncPlus
[80/262] Compiling AsyncPlus CurrentValueAsyncSubject.swift
[81/262] Compiling LocaleSupport LanguageCode.swift
[82/262] Compiling LocaleSupport Locale+LocaleSupport.swift
[83/262] Compiling LocaleSupport LocaleSupportError.swift
[84/262] Compiling LocaleSupport LocalizedStringConvertible.swift
[89/262] Compiling ArgumentParser HelpGenerator.swift
[111/265] Emitting module SQLite
[112/265] Compiling HTMLString Mappings.swift
[113/265] Emitting module HTMLString
[115/265] Compiling HTMLString NSString+HTMLString.swift
[122/265] Compiling HTMLString HTMLString.swift
[128/265] Compiling Plot PodcastMediaType.swift
[129/265] Compiling Plot PodcastType.swift
[130/265] Compiling Plot RSS.swift
[131/265] Compiling Plot RSSAttributes.swift
[132/265] Compiling XMLCoder XMLEncoderImplementation.swift
[133/265] Compiling XMLCoder XMLEncodingStorage.swift
[134/265] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[135/265] Compiling XMLCoder XMLReferencingEncoder.swift
[136/265] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[137/265] Compiling Plot TwitterCardType.swift
[138/265] Compiling Plot URLRepresentable.swift
[139/265] Compiling Plot XML.swift
[166/265] Compiling Plot ElementRenderingBuffer.swift
[168/265] Compiling Plot ElementWrapper.swift
[170/265] Compiling Plot Environment.swift
[172/265] Compiling Plot ModifiedComponent.swift
[173/265] Compiling Plot Renderer.swift
[174/265] Compiling Plot String+Escaping.swift
[175/265] Compiling ArgumentParser HelpCommand.swift
[176/265] Compiling ArgumentParser InputOrigin.swift
[177/265] Compiling ArgumentParser Name.swift
[178/265] Compiling ArgumentParser Parsed.swift
[179/265] Compiling SQLite Query.swift
[180/265] Compiling SQLite Schema.swift
[181/265] Compiling SQLite Setter.swift
[205/265] Compiling ArgumentParser DumpHelpGenerator.swift
[260/294] Compiling TranslationCatalog UUID+TranslationCatalog.swift
[261/294] Compiling TranslationCatalog LocaleRepresentable.swift
[262/294] Compiling TranslationCatalog Translation.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:22:39: 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
20 | id: UUID = .zero,
21 | expressionId: Expression.ID = .zero,
22 | languageCode: 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
23 | scriptCode: ScriptCode? = nil,
24 | regionCode: RegionCode? = nil,
/Users/admin/builder/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 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:61:39: 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
59 | uuid: UUID,
60 | expressionID: Expression.ID = .zero,
61 | languageCode: 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
62 | scriptCode: ScriptCode? = nil,
63 | regionCode: RegionCode? = nil,
/Users/admin/builder/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 |
[263/294] Compiling TranslationCatalog Project.swift
[264/294] Compiling TranslationCatalog CatalogUpdate.swift
[265/294] Compiling TranslationCatalog Catalog.swift
[266/294] Compiling TranslationCatalog CatalogQuery.swift
[267/294] Compiling TranslationCatalog CatalogError.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:2:10: warning: associated value 'badQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
1 | public enum CatalogError: Error {
2 | case badQuery(CatalogQuery)
| `- warning: associated value 'badQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
3 | case dataTypeConversion(String? = nil)
4 | case expressionExistingWithId(Expression.ID, Expression)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters for performing query operations
5 | public protocol CatalogQuery {}
| `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:12:10: warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
10 | case translationExistingWithValue(String, Translation)
11 | case translationId(Translation.ID)
12 | case unhandledQuery(CatalogQuery)
| `- warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
13 | case unhandledUpdate(CatalogUpdate)
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters for performing query operations
5 | public protocol CatalogQuery {}
| `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:13:10: warning: associated value 'unhandledUpdate' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
11 | case translationId(Translation.ID)
12 | case unhandledQuery(CatalogQuery)
13 | case unhandledUpdate(CatalogUpdate)
| `- warning: associated value 'unhandledUpdate' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters when performing update operations
5 | public protocol CatalogUpdate {}
| `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectUpdate: CatalogUpdate {
[268/294] Emitting module TranslationCatalog
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:2:10: warning: associated value 'badQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
1 | public enum CatalogError: Error {
2 | case badQuery(CatalogQuery)
| `- warning: associated value 'badQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
3 | case dataTypeConversion(String? = nil)
4 | case expressionExistingWithId(Expression.ID, Expression)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters for performing query operations
5 | public protocol CatalogQuery {}
| `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:12:10: warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
10 | case translationExistingWithValue(String, Translation)
11 | case translationId(Translation.ID)
12 | case unhandledQuery(CatalogQuery)
| `- warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
13 | case unhandledUpdate(CatalogUpdate)
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters for performing query operations
5 | public protocol CatalogQuery {}
| `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogError.swift:13:10: warning: associated value 'unhandledUpdate' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
11 | case translationId(Translation.ID)
12 | case unhandledQuery(CatalogQuery)
13 | case unhandledUpdate(CatalogUpdate)
| `- warning: associated value 'unhandledUpdate' of 'Sendable'-conforming enum 'CatalogError' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters when performing update operations
5 | public protocol CatalogUpdate {}
| `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:29:42: 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
27 | key: String = "",
28 | name: String = "",
29 | 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
30 | context: String? = nil,
31 | feature: String? = nil,
/Users/admin/builder/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 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:86:42: 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
84 | key: String = "",
85 | name: String = "",
86 | 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
87 | context: String? = nil,
88 | feature: String? = nil,
/Users/admin/builder/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 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:22:39: 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
20 | id: UUID = .zero,
21 | expressionId: Expression.ID = .zero,
22 | languageCode: 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
23 | scriptCode: ScriptCode? = nil,
24 | regionCode: RegionCode? = nil,
/Users/admin/builder/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 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Translation.swift:61:39: 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
59 | uuid: UUID,
60 | expressionID: Expression.ID = .zero,
61 | languageCode: 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
62 | scriptCode: ScriptCode? = nil,
63 | regionCode: RegionCode? = nil,
/Users/admin/builder/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 |
[269/294] Compiling TranslationCatalog Expression.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:29:42: 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
27 | key: String = "",
28 | name: String = "",
29 | 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
30 | context: String? = nil,
31 | feature: String? = nil,
/Users/admin/builder/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 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/Expression.swift:86:42: 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
84 | key: String = "",
85 | name: String = "",
86 | 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
87 | context: String? = nil,
88 | feature: String? = nil,
/Users/admin/builder/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 |
[270/294] Compiling StatementSQLite SelectContext.swift
[271/294] Compiling StatementSQLite SetContext.swift
[272/294] Compiling StatementSQLite UpdateContext.swift
[273/294] Compiling StatementSQLite ValuesContext.swift
[274/295] Compiling StatementSQLite SQLiteStatement.swift
[275/295] Compiling StatementSQLite Segment+SQLite.swift
[276/295] Compiling StatementSQLite FromContext.swift
[277/295] Compiling StatementSQLite HavingContext.swift
[278/295] Compiling StatementSQLite InsertContext.swift
[279/295] Compiling StatementSQLite JoinContext.swift
[280/295] Compiling StatementSQLite LimitContext.swift
[281/295] Compiling StatementSQLite OrderContext.swift
[282/295] Compiling StatementSQLite DeleteContext.swift
[283/295] Compiling StatementSQLite Field+SQLite.swift
[284/295] Compiling StatementSQLite DataType+SQLite.swift
[285/295] Compiling StatementSQLite DataTypeConvertible+SQLite.swift
[286/295] Emitting module StatementSQLite
[287/295] Compiling StatementSQLite AlterTableContext.swift
[288/295] Compiling StatementSQLite CreateContext.swift
[289/315] Compiling StatementSQLite WhereContext.swift
[290/315] Compiling TranslationCatalogFilesystem TranslationDocument.swift
[291/315] Compiling TranslationCatalogFilesystem ExpressionDocument.swift
[292/315] Emitting module TranslationCatalogFilesystem
[293/315] Compiling TranslationCatalogFilesystem Document.swift
[294/315] Compiling TranslationCatalogFilesystem ProjectDocument.swift
[298/315] Compiling TranslationCatalogIO StringsXml.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Internal/StringsXml.swift:28:55: 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
26 |
27 | extension StringsXml {
28 | func expressions(defaultLanguage: LanguageCode = .default, language: LanguageCode, script: ScriptCode?, region: RegionCode?) -> [TranslationCatalog.Expression] {
| `- 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
29 | return resources.map { $0.expression(uuid: .zero, defaultLanguage: defaultLanguage, language: language, script: script, region: region) }
30 | }
/Users/admin/builder/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 |
[299/315] Compiling TranslationCatalogIO Resource.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Internal/Resource.swift:29:42: 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
27 | func expression(
28 | uuid: Expression.ID,
29 | 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
30 | comment: String? = nil,
31 | feature: String? = nil,
/Users/admin/builder/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 |
[300/315] Compiling TranslationCatalogIO FileFormat.swift
[301/315] Compiling TranslationCatalogIO XML+Expression.swift
[302/315] Compiling TranslationCatalogIO MarkdownTable.swift
[303/316] Compiling TranslationCatalogIO Plot+IO.swift
[304/316] Compiling TranslationCatalogIO Translation+IO.swift
[305/316] Compiling TranslationCatalogIO ExpressionImporter.swift
[306/316] Compiling TranslationCatalogIO ExpressionRenderer.swift
[307/316] Compiling TranslationCatalogIO ExpressionDecoder.swift
[308/316] Compiling TranslationCatalogIO ExpressionEncoder.swift
[309/316] Emitting module TranslationCatalogIO
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Extensions/Dictionary+AppleStrings.swift:56:42: 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
54 |
55 | func expressions(
56 | 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
57 | comment: String? = nil,
58 | feature: String? = nil,
/Users/admin/builder/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 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Internal/Resource.swift:29:42: 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
27 | func expression(
28 | uuid: Expression.ID,
29 | 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
30 | comment: String? = nil,
31 | feature: String? = nil,
/Users/admin/builder/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 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Internal/StringsXml.swift:28:55: 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
26 |
27 | extension StringsXml {
28 | func expressions(defaultLanguage: LanguageCode = .default, language: LanguageCode, script: ScriptCode?, region: RegionCode?) -> [TranslationCatalog.Expression] {
| `- 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
29 | return resources.map { $0.expression(uuid: .zero, defaultLanguage: defaultLanguage, language: language, script: script, region: region) }
30 | }
/Users/admin/builder/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 |
[310/316] Compiling TranslationCatalogIO Dictionary+AppleStrings.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Extensions/Dictionary+AppleStrings.swift:56:42: 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
54 |
55 | func expressions(
56 | 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
57 | comment: String? = nil,
58 | feature: String? = nil,
/Users/admin/builder/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 |
[311/316] Compiling TranslationCatalogIO Expression+IO.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogIO/Extensions/Dictionary+AppleStrings.swift:56:42: 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
54 |
55 | func expressions(
56 | 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
57 | comment: String? = nil,
58 | feature: String? = nil,
/Users/admin/builder/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 |
[312/329] Compiling TranslationCatalogIO RenderFormat.swift
[313/329] Compiling TranslationCatalogFilesystem FilesystemCatalog.swift
[314/329] Compiling TranslationCatalogSQLite SQLiteStatement+Translation.swift
[315/330] Compiling TranslationCatalogSQLite ProjectExpressionEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectExpressionEntity.swift:15:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import TranslationCatalog
3 |
4 | struct ProjectExpressionEntity: Entity {
| `- note: consider making struct 'ProjectExpressionEntity' conform to the 'Sendable' protocol
5 |
6 | static let identifier: String = "project_expression"
:
13 |
14 | extension ProjectExpressionEntity {
15 | static let entity = ProjectExpressionEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static var projectID: Attribute { entity["project_id"]! }
17 | static var expressionID: Attribute { entity["expression_id"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/TranslationEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
4 | import Foundation
5 |
6 | struct TranslationEntity: Entity {
| `- note: consider making struct 'TranslationEntity' conform to the 'Sendable' protocol
7 |
8 | static let identifier: String = "translation"
:
25 |
26 | extension TranslationEntity {
27 | static let entity = TranslationEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | static var id: Attribute { entity["id"]! }
29 | static var uuid: Attribute { entity["uuid"]! }
[316/330] Compiling TranslationCatalogSQLite TranslationEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectExpressionEntity.swift:15:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import TranslationCatalog
3 |
4 | struct ProjectExpressionEntity: Entity {
| `- note: consider making struct 'ProjectExpressionEntity' conform to the 'Sendable' protocol
5 |
6 | static let identifier: String = "project_expression"
:
13 |
14 | extension ProjectExpressionEntity {
15 | static let entity = ProjectExpressionEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static var projectID: Attribute { entity["project_id"]! }
17 | static var expressionID: Attribute { entity["expression_id"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/TranslationEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
4 | import Foundation
5 |
6 | struct TranslationEntity: Entity {
| `- note: consider making struct 'TranslationEntity' conform to the 'Sendable' protocol
7 |
8 | static let identifier: String = "translation"
:
25 |
26 | extension TranslationEntity {
27 | static let entity = TranslationEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | static var id: Attribute { entity["id"]! }
29 | static var uuid: Attribute { entity["uuid"]! }
[317/330] Compiling TranslationCatalogSQLite SQLite+Query.swift
[318/330] Compiling TranslationCatalogSQLite SQLite+Schema.swift
[319/330] Compiling TranslationCatalogSQLite SQLiteStatement+ProjectExpression.swift
[320/330] Compiling TranslationCatalogSQLite SQLiteStatement+Project.swift
[321/330] Emitting module TranslationCatalogSQLite
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ExpressionEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
4 | import Foundation
5 |
6 | struct ExpressionEntity: Entity {
| `- note: consider making struct 'ExpressionEntity' conform to the 'Sendable' protocol
7 |
8 | static let identifier: String = "expression"
:
25 |
26 | extension ExpressionEntity {
27 | static let entity = ExpressionEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | static var id: Attribute { entity["id"]! }
29 | static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectEntity.swift:18:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
3 | import Foundation
4 |
5 | struct ProjectEntity: Entity, Identifiable {
| `- note: consider making struct 'ProjectEntity' conform to the 'Sendable' protocol
6 |
7 | static let identifier: String = "project"
:
16 |
17 | extension ProjectEntity {
18 | static let entity = ProjectEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static var id: Attribute { entity["id"]! }
20 | static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectExpressionEntity.swift:15:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import TranslationCatalog
3 |
4 | struct ProjectExpressionEntity: Entity {
| `- note: consider making struct 'ProjectExpressionEntity' conform to the 'Sendable' protocol
5 |
6 | static let identifier: String = "project_expression"
:
13 |
14 | extension ProjectExpressionEntity {
15 | static let entity = ProjectExpressionEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static var projectID: Attribute { entity["project_id"]! }
17 | static var expressionID: Attribute { entity["expression_id"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/TranslationEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
4 | import Foundation
5 |
6 | struct TranslationEntity: Entity {
| `- note: consider making struct 'TranslationEntity' conform to the 'Sendable' protocol
7 |
8 | static let identifier: String = "translation"
:
25 |
26 | extension TranslationEntity {
27 | static let entity = TranslationEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'TranslationEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | static var id: Attribute { entity["id"]! }
29 | static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:12:14: warning: associated value 'invalidAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
10 |
11 | @available(*, deprecated, renamed: "CatalogError.unhandledUpdate()")
12 | case invalidAction(CatalogUpdate)
| `- warning: associated value 'invalidAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
13 | @available(*, deprecated, renamed: "CatalogError.badQuery()")
14 | case invalidQuery(CatalogQuery)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters when performing update operations
5 | public protocol CatalogUpdate {}
| `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TranslationCatalog'
1 | import Foundation
2 | import LocaleSupport
3 | import TranslationCatalog
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TranslationCatalog'
4 |
5 | public extension SQLiteCatalog {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:14:14: warning: associated value 'invalidQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
12 | case invalidAction(CatalogUpdate)
13 | @available(*, deprecated, renamed: "CatalogError.badQuery()")
14 | case invalidQuery(CatalogQuery)
| `- warning: associated value 'invalidQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
15 | @available(*, deprecated, renamed: "CatalogError.projectID()")
16 | case invalidProjectID(Project.ID)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters for performing query operations
5 | public protocol CatalogQuery {}
| `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:28:14: warning: associated value 'unhandledAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
26 | case existingTranslationWithID(TranslationCatalog.Translation.ID)
27 | @available(*, deprecated, renamed: "CatalogError.unhandledUpdate()")
28 | case unhandledAction(CatalogUpdate)
| `- warning: associated value 'unhandledAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
29 | @available(*, deprecated, renamed: "CatalogError.dataTypeConversion()")
30 | case unhandledConversion
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters when performing update operations
5 | public protocol CatalogUpdate {}
| `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:32:14: warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
30 | case unhandledConversion
31 | @available(*, deprecated, renamed: "CatalogError.unhandledQuery()")
32 | case unhandledQuery(CatalogQuery)
| `- warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
33 | }
34 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters for performing query operations
5 | public protocol CatalogQuery {}
| `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectQuery: CatalogQuery {
[322/330] Compiling TranslationCatalogSQLite SQLiteStatement+Expression.swift
[323/330] Compiling TranslationCatalogSQLite SQLiteCatalog+AssociatedTypes.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:12:14: warning: associated value 'invalidAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
10 |
11 | @available(*, deprecated, renamed: "CatalogError.unhandledUpdate()")
12 | case invalidAction(CatalogUpdate)
| `- warning: associated value 'invalidAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
13 | @available(*, deprecated, renamed: "CatalogError.badQuery()")
14 | case invalidQuery(CatalogQuery)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters when performing update operations
5 | public protocol CatalogUpdate {}
| `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TranslationCatalog'
1 | import Foundation
2 | import LocaleSupport
3 | import TranslationCatalog
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TranslationCatalog'
4 |
5 | public extension SQLiteCatalog {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:14:14: warning: associated value 'invalidQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
12 | case invalidAction(CatalogUpdate)
13 | @available(*, deprecated, renamed: "CatalogError.badQuery()")
14 | case invalidQuery(CatalogQuery)
| `- warning: associated value 'invalidQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
15 | @available(*, deprecated, renamed: "CatalogError.projectID()")
16 | case invalidProjectID(Project.ID)
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters for performing query operations
5 | public protocol CatalogQuery {}
| `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectQuery: CatalogQuery {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:28:14: warning: associated value 'unhandledAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
26 | case existingTranslationWithID(TranslationCatalog.Translation.ID)
27 | @available(*, deprecated, renamed: "CatalogError.unhandledUpdate()")
28 | case unhandledAction(CatalogUpdate)
| `- warning: associated value 'unhandledAction' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogUpdate'; this is an error in the Swift 6 language mode
29 | @available(*, deprecated, renamed: "CatalogError.dataTypeConversion()")
30 | case unhandledConversion
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogUpdate.swift:5:17: note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters when performing update operations
5 | public protocol CatalogUpdate {}
| `- note: protocol 'CatalogUpdate' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectUpdate: CatalogUpdate {
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteCatalog+AssociatedTypes.swift:32:14: warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
30 | case unhandledConversion
31 | @available(*, deprecated, renamed: "CatalogError.unhandledQuery()")
32 | case unhandledQuery(CatalogQuery)
| `- warning: associated value 'unhandledQuery' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any CatalogQuery'; this is an error in the Swift 6 language mode
33 | }
34 |
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalog/CatalogQuery.swift:5:17: note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
3 |
4 | /// Associated parameters for performing query operations
5 | public protocol CatalogQuery {}
| `- note: protocol 'CatalogQuery' does not conform to the 'Sendable' protocol
6 |
7 | public enum GenericProjectQuery: CatalogQuery {
[324/330] Compiling TranslationCatalogSQLite ExpressionEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ExpressionEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
4 | import Foundation
5 |
6 | struct ExpressionEntity: Entity {
| `- note: consider making struct 'ExpressionEntity' conform to the 'Sendable' protocol
7 |
8 | static let identifier: String = "expression"
:
25 |
26 | extension ExpressionEntity {
27 | static let entity = ExpressionEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | static var id: Attribute { entity["id"]! }
29 | static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectEntity.swift:18:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
3 | import Foundation
4 |
5 | struct ProjectEntity: Entity, Identifiable {
| `- note: consider making struct 'ProjectEntity' conform to the 'Sendable' protocol
6 |
7 | static let identifier: String = "project"
:
16 |
17 | extension ProjectEntity {
18 | static let entity = ProjectEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static var id: Attribute { entity["id"]! }
20 | static var uuid: Attribute { entity["uuid"]! }
[325/330] Compiling TranslationCatalogSQLite ProjectEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ExpressionEntity.swift:27:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
4 | import Foundation
5 |
6 | struct ExpressionEntity: Entity {
| `- note: consider making struct 'ExpressionEntity' conform to the 'Sendable' protocol
7 |
8 | static let identifier: String = "expression"
:
25 |
26 | extension ExpressionEntity {
27 | static let entity = ExpressionEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ExpressionEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | static var id: Attribute { entity["id"]! }
29 | static var uuid: Attribute { entity["uuid"]! }
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/Entities/ProjectEntity.swift:18:16: warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
3 | import Foundation
4 |
5 | struct ProjectEntity: Entity, Identifiable {
| `- note: consider making struct 'ProjectEntity' conform to the 'Sendable' protocol
6 |
7 | static let identifier: String = "project"
:
16 |
17 | extension ProjectEntity {
18 | static let entity = ProjectEntity()
| |- warning: static property 'entity' is not concurrency-safe because non-'Sendable' type 'ProjectEntity' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'entity' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static var id: Attribute { entity["id"]! }
20 | static var uuid: Attribute { entity["uuid"]! }
[326/330] Compiling TranslationCatalogSQLite SQLiteCatalog.swift
[327/330] Compiling TranslationCatalogSQLite SQLiteStmt+Entities.swift
/Users/admin/builder/spi-builder-workspace/Sources/TranslationCatalogSQLite/SQLiteStmt+Entities.swift:51:75: 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
49 |
50 | func languageCode(position: Int) -> LanguageCode {
51 | return LanguageCode(rawValue: columnText(position: position)) ?? .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
52 | }
53 |
/Users/admin/builder/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 |
[328/348] Compiling localizer Preview.swift
/Users/admin/builder/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.",
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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 |
[329/349] Compiling localizer Arguments.swift
[330/349] Compiling localizer FileFormat+localizer.swift
[331/349] Compiling localizer FileManager+localizer.swift
[332/349] Compiling localizer RenderFormat+localizer.swift
[333/349] Compiling localizer Configure+Set.swift
/Users/admin/builder/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.",
/Users/admin/builder/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.",
[334/349] Compiling localizer Configure.swift
/Users/admin/builder/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.",
/Users/admin/builder/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.",
[335/349] Compiling localizer localizer.swift
/Users/admin/builder/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 |
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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 | """,
/Users/admin/builder/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 |
[336/349] Compiling localizer Configuration.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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.",
[337/349] Compiling localizer Configure+Get.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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.",
[338/349] Compiling localizer Catalog+Insert.swift
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.")
/Users/admin/builder/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 |
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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,
/Users/admin/builder/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 |
/Users/admin/builder/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,
/Users/admin/builder/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 |
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
[339/349] Compiling localizer Catalog+Query.swift
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.")
/Users/admin/builder/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 |
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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,
/Users/admin/builder/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 |
/Users/admin/builder/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,
/Users/admin/builder/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 |
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
[340/349] Compiling localizer Catalog+Generate.swift
/Users/admin/builder/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.",
/Users/admin/builder/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]")
/Users/admin/builder/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 |
/Users/admin/builder/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.",
[341/349] Compiling localizer Catalog+Import.swift
/Users/admin/builder/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.",
/Users/admin/builder/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]")
/Users/admin/builder/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 |
/Users/admin/builder/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.",
[342/349] Compiling localizer Catalog+Delete.swift
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
[343/349] Compiling localizer Catalog+Export.swift
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
[344/349] Compiling localizer Catalog+Update.swift
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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 |
/Users/admin/builder/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.",
[345/349] Compiling localizer Catalog.swift
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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 |
/Users/admin/builder/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.",
[346/349] Emitting module localizer
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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]")
/Users/admin/builder/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 |
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.")
/Users/admin/builder/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 |
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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 |
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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.",
/Users/admin/builder/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 |
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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 | """,
/Users/admin/builder/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 |
[346/349] Write Objects.LinkFileList
[347/349] Linking localizer
[348/349] Applying localizer
Build complete! (17.32s)
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" : "/Users/admin/builder/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" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/File.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/Import1.strings",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/Import2.strings",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/Localizable.strings",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/Strings.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/test_multi_language.sqlite",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/LocalizerTests/Resources/test_single_project_entity.sqlite",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/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"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/richardpiazza/translationcatalog/0.7.1
Repository: richardpiazza/TranslationCatalog
Swift version used: 6.1
Target: TranslationCatalog
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch release/6.2 -> FETCH_HEAD
* [new branch] release/6.2 -> origin/release/6.2
HEAD is now at 8799b69 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'TranslationCatalog'...
Finished extracting symbol information for 'TranslationCatalog'. (3.27s)
Building documentation for 'TranslationCatalog'...
Finished building documentation for 'TranslationCatalog' (0.16s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/0.7.1
Updating https://github.com/richardpiazza/Statement.git
Updating https://github.com/apple/swift-argument-parser
Updating https://github.com/richardpiazza/LocaleSupport.git
Updating https://github.com/richardpiazza/AsyncPlus.git
Updating https://github.com/CoreOffice/XMLCoder.git
Updating https://github.com/JohnSundell/Plot.git
Updating https://github.com/alexisakers/HTMLString.git
Updated https://github.com/richardpiazza/Statement.git (0.49s)
Updated https://github.com/richardpiazza/AsyncPlus.git (0.50s)
Updated https://github.com/JohnSundell/Plot.git (0.50s)
Updated https://github.com/alexisakers/HTMLString.git (0.50s)
Updated https://github.com/CoreOffice/XMLCoder.git (0.50s)
Updating https://github.com/stephencelis/SQLite.swift.git
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updated https://github.com/apple/swift-argument-parser (0.52s)
Updated https://github.com/richardpiazza/LocaleSupport.git (0.52s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.46s)
Updated https://github.com/stephencelis/SQLite.swift.git (0.55s)
Computing version for https://github.com/stephencelis/SQLite.swift.git
Computed https://github.com/stephencelis/SQLite.swift.git at 0.14.1 (1.67s)
Computing version for https://github.com/alexisakers/HTMLString.git
Computed https://github.com/alexisakers/HTMLString.git at 6.0.1 (0.57s)
Computing version for https://github.com/JohnSundell/Plot.git
Computed https://github.com/JohnSundell/Plot.git at 0.11.0 (0.56s)
Computing version for https://github.com/CoreOffice/XMLCoder.git
Computed https://github.com/CoreOffice/XMLCoder.git at 0.17.1 (0.58s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.2.0 (0.58s)
Computing version for https://github.com/richardpiazza/Statement.git
Computed https://github.com/richardpiazza/Statement.git at 0.7.2 (0.58s)
Computing version for https://github.com/richardpiazza/AsyncPlus.git
Computed https://github.com/richardpiazza/AsyncPlus.git at 0.3.2 (0.46s)
Computing version for https://github.com/richardpiazza/LocaleSupport.git
Computed https://github.com/richardpiazza/LocaleSupport.git at 0.6.0 (0.46s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.57s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.79s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.43s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/7] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit DeclarationFragments.swift
[7/53] Compiling SymbolKit Fragment.swift
[8/53] Compiling SymbolKit FragmentKind.swift
[9/53] Compiling SymbolKit FunctionParameter.swift
[10/53] Compiling SymbolKit FunctionSignature.swift
[11/57] Compiling SymbolKit Names.swift
[12/57] Compiling SymbolKit SPI.swift
[13/57] Compiling SymbolKit Snippet.swift
[14/57] Compiling SymbolKit Extension.swift
[15/57] Compiling SymbolKit GenericConstraint.swift
[16/57] Compiling SymbolKit GenericParameter.swift
[17/57] Compiling SymbolKit Generics.swift
[18/57] Compiling SymbolKit Namespace.swift
[19/57] Compiling SymbolKit SemanticVersion.swift
[20/57] Compiling SymbolKit AccessControl.swift
[21/57] Compiling SymbolKit Availability.swift
[22/57] Compiling SymbolKit AvailabilityItem.swift
[23/57] Compiling SymbolKit Domain.swift
[24/57] Compiling SymbolKit Identifier.swift
[25/57] Compiling SymbolKit KindIdentifier.swift
[26/57] Compiling SymbolKit Location.swift
[27/57] Compiling SymbolKit Mutability.swift
[28/57] Compiling SymbolKit Mixin+Equals.swift
[29/57] Compiling SymbolKit Mixin+Hash.swift
[30/57] Compiling SymbolKit Mixin.swift
[31/57] Compiling SymbolKit LineList.swift
[32/57] Compiling SymbolKit Position.swift
[33/57] Compiling SymbolKit SourceRange.swift
[34/57] Compiling SymbolKit Metadata.swift
[35/57] Compiling SymbolKit Module.swift
[36/57] Compiling SymbolKit OperatingSystem.swift
[37/57] Compiling SymbolKit Platform.swift
[38/57] Emitting module SymbolKit
[39/57] Compiling SymbolKit Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.91s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/9] Compiling LocaleSupport ScriptCode.swift
[3/9] Compiling LocaleSupport LocalizedStringConvertible.swift
[4/9] Compiling LocaleSupport RegionCode.swift
[5/9] Compiling LocaleSupport LocaleSupportConfiguration.swift
[6/9] Compiling LocaleSupport LocaleSupportError.swift
[7/9] Compiling LocaleSupport Locale+LocaleSupport.swift
[8/9] Compiling LocaleSupport LanguageCode.swift
[9/9] Emitting module LocaleSupport
[10/19] Compiling TranslationCatalog UUID+TranslationCatalog.swift
[11/19] Compiling TranslationCatalog LocaleRepresentable.swift
[12/19] Compiling TranslationCatalog Translation.swift
[13/19] Compiling TranslationCatalog Project.swift
[14/19] Compiling TranslationCatalog CatalogQuery.swift
[15/19] Compiling TranslationCatalog CatalogUpdate.swift
[16/19] Compiling TranslationCatalog CatalogError.swift
[17/19] Compiling TranslationCatalog Catalog.swift
[18/19] Emitting module TranslationCatalog
[19/19] Compiling TranslationCatalog Expression.swift
Build of target: 'TranslationCatalog' complete! (1.33s)
Target: TranslationCatalogIO
Extracting symbol information for 'TranslationCatalogIO'...
Finished extracting symbol information for 'TranslationCatalogIO'. (2.52s)
Building documentation for 'TranslationCatalogIO'...
Finished building documentation for 'TranslationCatalogIO' (0.07s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/0.7.1
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.37s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/118] Compiling AsyncPlus PassthroughAsyncSequence.swift
[3/118] Compiling AsyncPlus PassthroughAsyncThrowingSequence.swift
[4/118] Compiling AsyncPlus CurrentValueAsyncThrowingSubject.swift
[5/118] Compiling AsyncPlus CurrentValueAsyncSubject.swift
[6/118] Compiling AsyncPlus PassthroughAsyncSubject.swift
[7/118] Compiling AsyncPlus PassthroughAsyncThrowingSubject.swift
[8/118] Emitting module AsyncPlus
[9/118] Compiling HTMLString NSString+HTMLString.swift
[10/118] Compiling HTMLString Mappings.swift
[11/118] Compiling HTMLString HTMLString.swift
[12/118] Emitting module HTMLString
[13/118] Compiling Plot XMLAttributes.swift
[14/118] Compiling Plot XMLElements.swift
[15/118] Compiling Plot AnyAttribute.swift
[16/118] Compiling Plot AnyElement.swift
[17/118] Compiling Plot AnyEnvironmentValue.swift
[18/118] Compiling Plot AnyNode.swift
[19/124] Compiling Plot HTMLAnchorRelationship.swift
[20/124] Compiling Plot HTMLAnchorTarget.swift
[21/124] Compiling Plot HTMLAttributes.swift
[22/124] Compiling Plot HTMLAudioFormat.swift
[23/124] Compiling Plot HTMLListStyle.swift
[24/129] Compiling Plot Attribute.swift
[25/129] Compiling Plot Component.swift
[26/129] Compiling Plot ComponentAttributes.swift
[27/129] Compiling Plot ComponentBuilder.swift
[28/129] Compiling Plot ComponentContainer.swift
[29/129] Compiling Plot ComponentGroup.swift
[30/129] Compiling Plot ControlFlow.swift
[31/129] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[32/129] Compiling XMLCoder XMLReferencingEncoder.swift
[33/129] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[34/129] Compiling Plot TwitterCardType.swift
[35/129] Compiling Plot URLRepresentable.swift
[36/129] Compiling Plot XML.swift
[37/129] Compiling Plot Optional+Component.swift
[38/129] Compiling Plot PodcastAttributes.swift
[39/129] Compiling Plot PodcastComponents.swift
[40/129] Compiling Plot PodcastElements.swift
[41/129] Compiling Plot PodcastEpisodeType.swift
[42/129] Compiling Plot PodcastFeed.swift
[43/129] Compiling Plot PodcastMediaType.swift
[44/129] Compiling Plot PodcastType.swift
[45/129] Compiling Plot RSS.swift
[46/129] Compiling Plot RSSAttributes.swift
[47/129] Compiling XMLCoder XMLEncoderImplementation.swift
[48/129] Compiling XMLCoder XMLEncodingStorage.swift
[49/129] Compiling Plot HTMLVideoFormat.swift
[50/129] Compiling Plot HTMLViewportWidthMode.swift
[51/129] Compiling Plot Indentation.swift
[52/129] Compiling Plot Language.swift
[53/129] Compiling Plot Node.swift
[61/129] Compiling Plot EnvironmentKey.swift
[62/129] Compiling Plot EnvironmentValue.swift
[63/129] Compiling Plot HTML.swift
[64/129] Emitting module XMLCoder
[65/129] Compiling Plot ElementComponent.swift
[66/129] Compiling Plot ElementDefinition.swift
[67/129] Compiling Plot EmptyComponent.swift
[68/129] Compiling Plot HTMLButtonType.swift
[69/129] Compiling Plot HTMLComponents.swift
[70/129] Compiling Plot NodeConvertible.swift
[71/129] Compiling Plot Document.swift
[72/129] Compiling Plot DocumentEncoding.swift
[73/129] Compiling Plot Element.swift
[74/129] Compiling Plot ElementClosingMode.swift
[75/129] Emitting module Plot
[88/129] Compiling Plot ElementRenderingBuffer.swift
[89/129] Compiling Plot ElementWrapper.swift
[90/129] Compiling Plot Environment.swift
[91/129] Compiling Plot ModifiedComponent.swift
[92/129] Compiling Plot Renderer.swift
[93/129] Compiling Plot String+Escaping.swift
[115/129] Compiling Plot HTMLElements.swift
[116/129] Compiling Plot HTMLFormContentType.swift
[117/129] Compiling Plot HTMLFormMethod.swift
[118/129] Compiling Plot HTMLInputType.swift
[119/129] Compiling Plot HTMLLinkRelationship.swift
[130/143] Compiling TranslationCatalogIO FileFormat.swift
[131/143] Compiling TranslationCatalogIO MarkdownTable.swift
[132/144] Compiling TranslationCatalogIO StringsXml.swift
[133/144] Compiling TranslationCatalogIO Resource.swift
[134/144] Compiling TranslationCatalogIO Plot+IO.swift
[135/144] Compiling TranslationCatalogIO Translation+IO.swift
[136/144] Compiling TranslationCatalogIO XML+Expression.swift
[137/144] Compiling TranslationCatalogIO Dictionary+AppleStrings.swift
[138/144] Compiling TranslationCatalogIO Expression+IO.swift
[139/144] Emitting module TranslationCatalogIO
[140/144] Compiling TranslationCatalogIO ExpressionDecoder.swift
[141/144] Compiling TranslationCatalogIO ExpressionEncoder.swift
[142/144] Compiling TranslationCatalogIO ExpressionImporter.swift
[143/144] Compiling TranslationCatalogIO ExpressionRenderer.swift
[144/144] Compiling TranslationCatalogIO RenderFormat.swift
Build of target: 'TranslationCatalogIO' complete! (2.39s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/0.7.1/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/0.7.1/linkable-paths.json
Target: TranslationCatalogFilesystem
Extracting symbol information for 'TranslationCatalogFilesystem'...
Finished extracting symbol information for 'TranslationCatalogFilesystem'. (1.13s)
Building documentation for 'TranslationCatalogFilesystem'...
Finished building documentation for 'TranslationCatalogFilesystem' (0.05s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/0.7.1
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.42s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/7] Compiling TranslationCatalogFilesystem ProjectDocument.swift
[3/7] Compiling TranslationCatalogFilesystem TranslationDocument.swift
[4/7] Emitting module TranslationCatalogFilesystem
[5/7] Compiling TranslationCatalogFilesystem Document.swift
[6/7] Compiling TranslationCatalogFilesystem FilesystemCatalog.swift
[7/7] Compiling TranslationCatalogFilesystem ExpressionDocument.swift
Build of target: 'TranslationCatalogFilesystem' complete! (1.02s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/0.7.1/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/0.7.1/linkable-paths.json
Target: TranslationCatalogSQLite
Extracting symbol information for 'TranslationCatalogSQLite'...
Finished extracting symbol information for 'TranslationCatalogSQLite'. (2.77s)
Building documentation for 'TranslationCatalogSQLite'...
Finished building documentation for 'TranslationCatalogSQLite' (0.08s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/0.7.1
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.36s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/60] Compiling SQLite Backup.swift
[3/60] Compiling SQLite Blob.swift
[4/60] Compiling SQLite Connection+Aggregation.swift
[5/62] Compiling SQLite SQLiteFeature.swift
[6/62] Compiling SQLite SQLiteVersion.swift
[7/62] Compiling SQLite Statement.swift
[8/62] Compiling SQLite AggregateFunctions.swift
[9/62] Compiling SQLite Coding.swift
[10/62] Compiling SQLite Connection+Attach.swift
[11/62] Compiling SQLite Connection+Pragmas.swift
[12/62] Emitting module Statement
[13/62] Compiling SQLite Foundation.swift
[14/62] Compiling SQLite Helpers.swift
[15/62] Compiling SQLite Connection+Schema.swift
[16/62] Compiling SQLite SchemaChanger.swift
[17/62] Compiling SQLite SchemaDefinitions.swift
[18/62] Compiling SQLite SchemaReader.swift
[19/62] Compiling SQLite Connection.swift
[20/62] Compiling SQLite Errors.swift
[21/62] Compiling SQLite Result.swift
[22/62] Compiling SQLite FTS4.swift
[23/62] Compiling SQLite FTS5.swift
[24/62] Compiling SQLite RTree.swift
[25/62] Compiling SQLite URIQueryParameter.swift
[26/62] Compiling SQLite Value.swift
[27/62] Compiling SQLite Cipher.swift
[28/62] Compiling Statement LogicalPredicate.swift
[29/62] Compiling Statement Segment.swift
[37/84] Emitting module SQLite
[38/84] Compiling StatementSQLite SelectContext.swift
[39/84] Compiling StatementSQLite SetContext.swift
[40/84] Compiling StatementSQLite FromContext.swift
[41/84] Compiling StatementSQLite HavingContext.swift
[42/84] Compiling StatementSQLite SQLiteStatement.swift
[43/84] Compiling StatementSQLite Segment+SQLite.swift
[44/84] Compiling StatementSQLite UpdateContext.swift
[45/84] Compiling StatementSQLite ValuesContext.swift
[46/84] Compiling StatementSQLite InsertContext.swift
[47/84] Compiling StatementSQLite JoinContext.swift
[48/85] Emitting module StatementSQLite
[49/85] Compiling StatementSQLite LimitContext.swift
[50/85] Compiling StatementSQLite OrderContext.swift
[51/85] Compiling StatementSQLite DeleteContext.swift
[52/85] Compiling StatementSQLite Field+SQLite.swift
[53/85] Compiling StatementSQLite DataType+SQLite.swift
[54/85] Compiling StatementSQLite DataTypeConvertible+SQLite.swift
[55/85] Compiling StatementSQLite AlterTableContext.swift
[56/85] Compiling StatementSQLite CreateContext.swift
[57/85] Compiling StatementSQLite WhereContext.swift
[78/85] Compiling SQLite CustomFunctions.swift
[79/85] Compiling SQLite DateAndTimeFunctions.swift
[80/85] Compiling SQLite Expression.swift
[81/85] Compiling SQLite Operators.swift
[82/85] Compiling SQLite Query+with.swift
[83/85] Compiling SQLite Query.swift
[84/85] Compiling SQLite Schema.swift
[85/85] Compiling SQLite Setter.swift
[86/98] Compiling TranslationCatalogSQLite SQLiteStatement+ProjectExpression.swift
[87/98] Compiling TranslationCatalogSQLite SQLiteStatement+Translation.swift
[88/98] Compiling TranslationCatalogSQLite SQLiteStatement+Expression.swift
[89/98] Compiling TranslationCatalogSQLite SQLiteStatement+Project.swift
[90/99] Compiling TranslationCatalogSQLite SQLite+Query.swift
[91/99] Compiling TranslationCatalogSQLite SQLite+Schema.swift
[92/99] Compiling TranslationCatalogSQLite SQLiteCatalog+AssociatedTypes.swift
[93/99] Compiling TranslationCatalogSQLite ProjectExpressionEntity.swift
[94/99] Compiling TranslationCatalogSQLite TranslationEntity.swift
[95/99] Emitting module TranslationCatalogSQLite
[96/99] Compiling TranslationCatalogSQLite ExpressionEntity.swift
[97/99] Compiling TranslationCatalogSQLite ProjectEntity.swift
[98/99] Compiling TranslationCatalogSQLite SQLiteCatalog.swift
[99/99] Compiling TranslationCatalogSQLite SQLiteStmt+Entities.swift
Build of target: 'TranslationCatalogSQLite' complete! (2.64s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/0.7.1/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/0.7.1/linkable-paths.json
Target: localizer
Extracting symbol information for 'localizer'...
Finished extracting symbol information for 'localizer'. (2.59s)
Building documentation for 'localizer'...
Finished building documentation for 'localizer' (0.51s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/0.7.1
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
Build of product 'snippet-extract' complete! (0.36s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/3] Compiling ArgumentParserToolInfo ToolInfo.swift
[3/3] Emitting module ArgumentParserToolInfo
[4/41] Compiling ArgumentParser InputOrigin.swift
[5/41] Compiling ArgumentParser Name.swift
[6/41] Compiling ArgumentParser Parsed.swift
[7/41] Compiling ArgumentParser ParsedValues.swift
[8/45] Emitting module ArgumentParser
[9/45] Compiling ArgumentParser Flag.swift
[10/45] Compiling ArgumentParser NameSpecification.swift
[11/45] Compiling ArgumentParser Option.swift
[12/45] Compiling ArgumentParser OptionGroup.swift
[13/45] Compiling ArgumentParser ParsableArguments.swift
[14/45] Compiling ArgumentParser ParsableArgumentsValidation.swift
[15/45] Compiling ArgumentParser ParsableCommand.swift
[16/45] Compiling ArgumentParser ArgumentDecoder.swift
[17/45] Compiling ArgumentParser ParserError.swift
[18/45] Compiling ArgumentParser SplitArguments.swift
[19/45] Compiling ArgumentParser DumpHelpGenerator.swift
[20/45] Compiling ArgumentParser HelpCommand.swift
[21/45] Compiling ArgumentParser Platform.swift
[22/45] Compiling ArgumentParser SequenceExtensions.swift
[23/45] Compiling ArgumentParser StringExtensions.swift
[24/45] Compiling ArgumentParser Tree.swift
[25/45] Compiling ArgumentParser BashCompletionsGenerator.swift
[26/45] Compiling ArgumentParser CompletionsGenerator.swift
[27/45] Compiling ArgumentParser FishCompletionsGenerator.swift
[28/45] Compiling ArgumentParser ZshCompletionsGenerator.swift
[29/45] Compiling ArgumentParser Argument.swift
[30/45] Compiling ArgumentParser ArgumentHelp.swift
[31/45] Compiling ArgumentParser ArgumentVisibility.swift
[32/45] Compiling ArgumentParser CompletionKind.swift
[33/45] Compiling ArgumentParser Errors.swift
[34/45] Compiling ArgumentParser HelpGenerator.swift
[35/45] Compiling ArgumentParser MessageInfo.swift
[36/45] Compiling ArgumentParser UsageGenerator.swift
[37/45] Compiling ArgumentParser CollectionExtensions.swift
[38/45] Compiling ArgumentParser AsyncParsableCommand.swift
[39/45] Compiling ArgumentParser CommandConfiguration.swift
[40/45] Compiling ArgumentParser EnumerableFlag.swift
[41/45] Compiling ArgumentParser ExpressibleByArgument.swift
[42/45] Compiling ArgumentParser ArgumentDefinition.swift
[43/45] Compiling ArgumentParser ArgumentSet.swift
[44/45] Compiling ArgumentParser CommandParser.swift
[45/45] Compiling ArgumentParser InputKey.swift
[46/63] Compiling localizer Arguments.swift
[47/63] Compiling localizer FileFormat+localizer.swift
[48/64] Compiling localizer Configuration.swift
[49/64] Compiling localizer Configure+Get.swift
[50/64] Compiling localizer localizer.swift
[51/64] Compiling localizer Catalog+Generate.swift
[52/64] Compiling localizer Catalog+Import.swift
[53/64] Emitting module localizer
[54/64] Compiling localizer Catalog+Delete.swift
[55/64] Compiling localizer Catalog+Export.swift
[56/64] Compiling localizer Configure+Set.swift
[57/64] Compiling localizer Configure.swift
[58/64] Compiling localizer Catalog+Update.swift
[59/64] Compiling localizer Catalog.swift
[60/64] Compiling localizer Catalog+Insert.swift
[61/64] Compiling localizer Catalog+Query.swift
[62/64] Compiling localizer Preview.swift
[63/64] Compiling localizer FileManager+localizer.swift
[64/64] Compiling localizer RenderFormat+localizer.swift
Build of target: 'localizer' complete! (2.41s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/0.7.1/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/richardpiazza/translationcatalog/0.7.1/linkable-paths.json
2498
15 /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/translationcatalog/0.7.1
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/richardpiazza/translationcatalog/0.7.1
File count: 2498
Doc size: 15.0MB
Preparing doc bundle ...
Uploading prod-richardpiazza-translationcatalog-0.7.1-e97dbfa0.zip to s3://spi-docs-inbox/prod-richardpiazza-translationcatalog-0.7.1-e97dbfa0.zip
Copying... [10%]
Copying... [21%]
Copying... [31%]
Copying... [41%]
Copying... [51%]
Copying... [62%]
Copying... [72%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.