Build Information
Failed to build yubatake, reference 4.0.1 (36585b
), with Swift 6.1 for Linux on 26 Apr 2025 12:53:09 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:14:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
12 | do {
13 | let controller = API.ImageController()
14 | api.get("images", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
15 | api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
16 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:15:83: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
13 | let controller = API.ImageController()
14 | api.get("images", use: controller.index)
15 | api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
16 | }
17 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:21:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
19 | do {
20 | let controller = API.ThemeController()
21 | api.get("themes", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
22 | api.post("themes", use: controller.store)
23 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:22:48: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
20 | let controller = API.ThemeController()
21 | api.get("themes", use: controller.index)
22 | api.post("themes", use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 | }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 | do {
27 | let controller = API.FileController()
28 | api.get("themes", ":name", "files", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 | api.get("files", use: controller.show)
30 | api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 | let controller = API.FileController()
28 | api.get("themes", ":name", "files", use: controller.index)
29 | api.get("files", use: controller.show)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 | api.post("files", use: controller.store)
31 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 | api.get("themes", ":name", "files", use: controller.index)
29 | api.get("files", use: controller.show)
30 | api.post("files", use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 | }
32 | }
[2898/2904] Compiling App Tag.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:14:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
12 | do {
13 | let controller = API.ImageController()
14 | api.get("images", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
15 | api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
16 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:15:83: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
13 | let controller = API.ImageController()
14 | api.get("images", use: controller.index)
15 | api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
16 | }
17 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:21:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
19 | do {
20 | let controller = API.ThemeController()
21 | api.get("themes", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
22 | api.post("themes", use: controller.store)
23 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:22:48: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
20 | let controller = API.ThemeController()
21 | api.get("themes", use: controller.index)
22 | api.post("themes", use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 | }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 | do {
27 | let controller = API.FileController()
28 | api.get("themes", ":name", "files", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 | api.get("files", use: controller.show)
30 | api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 | let controller = API.FileController()
28 | api.get("themes", ":name", "files", use: controller.index)
29 | api.get("files", use: controller.show)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 | api.post("files", use: controller.store)
31 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 | api.get("themes", ":name", "files", use: controller.index)
29 | api.get("files", use: controller.show)
30 | api.post("files", use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 | }
32 | }
[2899/2904] Compiling App User.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:14:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
12 | do {
13 | let controller = API.ImageController()
14 | api.get("images", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
15 | api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
16 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:15:83: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
13 | let controller = API.ImageController()
14 | api.get("images", use: controller.index)
15 | api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
16 | }
17 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:21:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
19 | do {
20 | let controller = API.ThemeController()
21 | api.get("themes", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
22 | api.post("themes", use: controller.store)
23 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:22:48: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
20 | let controller = API.ThemeController()
21 | api.get("themes", use: controller.index)
22 | api.post("themes", use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 | }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 | do {
27 | let controller = API.FileController()
28 | api.get("themes", ":name", "files", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 | api.get("files", use: controller.show)
30 | api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 | let controller = API.FileController()
28 | api.get("themes", ":name", "files", use: controller.index)
29 | api.get("files", use: controller.show)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 | api.post("files", use: controller.store)
31 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 | api.get("themes", ":name", "files", use: controller.index)
29 | api.get("files", use: controller.show)
30 | api.post("files", use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 | }
32 | }
[2900/2904] Compiling App APIRoutes.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:14:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
12 | do {
13 | let controller = API.ImageController()
14 | api.get("images", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
15 | api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
16 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:15:83: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
13 | let controller = API.ImageController()
14 | api.get("images", use: controller.index)
15 | api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
16 | }
17 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:21:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
19 | do {
20 | let controller = API.ThemeController()
21 | api.get("themes", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
22 | api.post("themes", use: controller.store)
23 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:22:48: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
20 | let controller = API.ThemeController()
21 | api.get("themes", use: controller.index)
22 | api.post("themes", use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 | }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 | do {
27 | let controller = API.FileController()
28 | api.get("themes", ":name", "files", use: controller.index)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 | api.get("files", use: controller.show)
30 | api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 | let controller = API.FileController()
28 | api.get("themes", ":name", "files", use: controller.index)
29 | api.get("files", use: controller.show)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 | api.post("files", use: controller.store)
31 | }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 | api.get("themes", ":name", "files", use: controller.index)
29 | api.get("files", use: controller.show)
30 | api.post("files", use: controller.store)
| `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 | }
32 | }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/73] Write swift-version-24593BA9C3E375BF.txt
[2/136] Compiling Cryptor Random.swift
[3/136] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[4/138] Compiling Logging MetadataProvider.swift
[5/138] Compiling InternalCollectionsUtilities Debugging.swift
[6/138] Compiling InternalCollectionsUtilities Descriptions.swift
[7/138] Compiling RealModule Real.swift
[8/139] Emitting module Logging
[9/139] Compiling RealModule Float80+Real.swift
[10/139] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[11/139] Compiling CryptoBoringWrapper RandomBytes.swift
[12/139] Compiling Cryptor Updatable.swift
[13/140] Compiling RealModule Float+Real.swift
[14/140] Compiling RealModule ElementaryFunctions.swift
[15/140] Compiling RealModule Float16+Real.swift
[16/140] Compiling RealModule RealFunctions.swift
[17/140] Emitting module CryptoBoringWrapper
[18/140] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[19/140] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[20/140] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[21/140] Compiling InternalCollectionsUtilities Integer rank.swift
[22/140] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[23/140] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[24/140] Compiling InternalCollectionsUtilities Specialize.swift
[25/140] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[26/140] Compiling NIOConcurrencyHelpers NIOLock.swift
[27/140] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[28/140] Compiling RealModule AlgebraicField.swift
[29/140] Compiling RealModule ApproximateEquality.swift
[30/140] Compiling RealModule AugmentedArithmetic.swift
[31/140] Compiling RealModule Double+Real.swift
[32/140] Compiling NIOConcurrencyHelpers lock.swift
[33/140] Compiling NIOConcurrencyHelpers atomics.swift
[34/140] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[35/140] Emitting module RealModule
[36/140] Emitting module _NIODataStructures
[37/141] Compiling _NIODataStructures Heap.swift
[38/141] Compiling _NIODataStructures _TinyArray.swift
[39/141] Compiling _NIODataStructures PriorityQueue.swift
[40/142] Emitting module _NIOBase64
[41/142] Compiling _NIOBase64 Base64.swift
[43/143] Compiling Cryptor KeyDerivation.swift
[45/143] Emitting module NIOConcurrencyHelpers
[46/144] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[47/144] Compiling CryptoBoringWrapper EllipticCurve.swift
[48/144] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[49/144] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[52/144] Emitting module Cryptor
[55/145] Compiling Cryptor Status.swift
[56/145] Compiling Cryptor SSLPointerTricks.swift
[57/145] Compiling Cryptor StreamCryptor.swift
[61/145] Compiling Cryptor Utilities.swift
[69/146] Emitting module InternalCollectionsUtilities
[70/146] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[71/146] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[73/143] Compiling Logging LogHandler.swift
[74/143] Compiling Logging Locks.swift
[75/143] Compiling Logging Logging.swift
[77/237] Compiling Poppo API.swift
[78/237] Emitting module Poppo
[79/308] Compiling Poppo URLSessionHTTPClient.swift
[80/308] Compiling ServiceContextModule ServiceContextKey.swift
[81/308] Compiling Poppo Poppo.swift
[82/308] Compiling Poppo CurlHTTPClient.swift
[83/308] Compiling Poppo URLEncoder.swift
[84/308] Emitting module ServiceContextModule
[85/308] Compiling ServiceContextModule ServiceContext.swift
[86/309] Emitting module SwiftMarkdown
[87/309] Compiling SwiftMarkdown SwiftMarkdown.swift
[88/311] Compiling Poppo HTTPClient.swift
[89/311] Compiling Poppo OAuthClient.swift
[91/370] Compiling _RopeModule BigString+Summary.swift
[92/370] Compiling _RopeModule BigString.swift
[93/370] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[94/370] Compiling _RopeModule BigString+Chunk+Breaks.swift
[95/370] Compiling _RopeModule BigString+Ingester.swift
[96/370] Compiling _RopeModule BigString+Invariants.swift
[97/370] Compiling _RopeModule BigString+Iterators.swift
[98/370] Compiling _RopeModule BigString+Metrics.swift
[101/382] Compiling _RopeModule BigString+Chunk+Counts.swift
[102/382] Compiling _RopeModule BigString+Chunk+Description.swift
[103/382] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[104/382] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[105/385] Emitting module SystemPackage
[106/391] Emitting module SwiftSoup
[107/453] Emitting module RoutingKit
[108/453] Compiling RoutingKit AnyRouter.swift
[109/453] Compiling RoutingKit Parameters.swift
[110/453] Emitting module Instrumentation
[111/453] Compiling Instrumentation NoOpInstrument.swift
[112/453] Compiling Instrumentation MultiplexInstrument.swift
[113/453] Compiling RoutingKit Router.swift
[114/453] Compiling RoutingKit PathComponent.swift
[115/453] Compiling RoutingKit TrieRouter.swift
[116/454] Compiling Instrumentation Instrument.swift
[117/454] Compiling Instrumentation InstrumentationSystem.swift
[118/454] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[119/454] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[120/454] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[121/454] Compiling OrderedCollections OrderedDictionary+Values.swift
[122/454] Compiling OrderedCollections OrderedSet+Initializers.swift
[123/454] Compiling OrderedCollections OrderedSet+Insertions.swift
[124/454] Compiling OrderedCollections OrderedSet+Invariants.swift
[125/454] Compiling Instrumentation Locks.swift
[126/454] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[127/454] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[128/454] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[131/454] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[132/454] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[133/454] Compiling OrderedCollections OrderedDictionary.swift
[134/454] Compiling OrderedCollections OrderedSet+Codable.swift
[135/454] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[136/454] Compiling OrderedCollections OrderedSet+Descriptions.swift
[137/454] Compiling OrderedCollections OrderedSet+Diffing.swift
[138/454] Compiling OrderedCollections OrderedSet+Equatable.swift
[139/454] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[140/454] Compiling OrderedCollections OrderedSet+Hashable.swift
[148/462] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[149/462] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[150/462] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[151/462] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[152/462] Compiling OrderedCollections _HashTable+Bucket.swift
[153/462] Compiling OrderedCollections _HashTable+BucketIterator.swift
[154/462] Compiling OrderedCollections _HashTable+Constants.swift
[155/462] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[160/463] Compiling OrderedCollections _HashTable+Testing.swift
[161/463] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[162/463] Compiling OrderedCollections _HashTable.swift
[163/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[164/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[165/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[166/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[167/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[168/463] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[169/463] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[170/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[171/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[172/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[173/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[174/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[175/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[176/463] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[178/477] Compiling SwiftyJSON SwiftyJSON.swift
[179/477] Emitting module SwiftyJSON
[180/490] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[181/518] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[182/518] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[183/518] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[184/518] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[185/518] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[186/518] Compiling HashTreeCollections _HashNode+Structural merge.swift
[187/518] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[188/518] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[189/518] Compiling HashTreeCollections _HashNode+Structural union.swift
[190/518] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[191/518] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[192/518] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[193/518] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[194/518] Compiling HashTreeCollections _HashNode.swift
[195/518] Compiling HashTreeCollections _HashNodeHeader.swift
[196/518] Compiling HashTreeCollections _HashSlot.swift
[197/518] Compiling HashTreeCollections _HashStack.swift
[198/518] Compiling HashTreeCollections _HashTreeIterator.swift
[199/518] Compiling HashTreeCollections _HashTreeStatistics.swift
[200/518] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[201/518] Compiling HashTreeCollections _RawHashNode.swift
[202/518] Compiling HashTreeCollections _UnmanagedHashNode.swift
[203/518] Compiling HashTreeCollections _UnsafePath.swift
[205/534] Compiling HashTreeCollections _HashNode+Invariants.swift
[206/534] Compiling HashTreeCollections _HashNode+Lookups.swift
[207/534] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[208/534] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[209/534] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[210/534] Compiling HashTreeCollections _HashNode+Storage.swift
[211/534] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[212/534] Compiling HashTreeCollections _HashNode+Structural filter.swift
[213/550] Compiling HeapModule Heap+Descriptions.swift
[215/553] Compiling HeapModule Heap.swift
[216/555] Compiling HeapModule _HeapNode.swift
[217/556] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[218/556] Compiling HashTreeCollections TreeDictionary+Merge.swift
[219/556] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[220/556] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[221/556] Compiling HashTreeCollections TreeDictionary+Values.swift
[222/556] Compiling HashTreeCollections TreeDictionary.swift
[223/556] Compiling HashTreeCollections TreeSet+Codable.swift
[224/556] Compiling HashTreeCollections TreeSet+Collection.swift
[225/556] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[226/556] Compiling HashTreeCollections TreeSet+Debugging.swift
[227/556] Compiling HashTreeCollections TreeSet+Descriptions.swift
[228/556] Compiling HashTreeCollections TreeSet+Equatable.swift
[229/557] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[230/557] Compiling HashTreeCollections TreeSet+Extras.swift
[231/557] Compiling HashTreeCollections TreeSet+Filter.swift
[232/557] Compiling HashTreeCollections TreeSet+Hashable.swift
[233/557] Compiling HashTreeCollections TreeSet+Sendable.swift
[234/557] Compiling HashTreeCollections TreeSet+Sequence.swift
[235/557] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[236/557] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[237/561] Compiling HeapModule Heap+Invariants.swift
[238/561] Compiling HeapModule Heap+UnsafeHandle.swift
[259/570] Emitting module Crypto
[260/570] Emitting module HeapModule
[261/571] Compiling Tracing InstrumentationSystem+Tracing.swift
[262/571] Compiling HashTreeCollections TreeDictionary+Collection.swift
[263/571] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[264/571] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[265/571] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[266/571] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[267/571] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[268/571] Compiling HashTreeCollections TreeDictionary+Filter.swift
[269/571] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[270/571] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[271/571] Compiling HashTreeCollections TreeDictionary+Keys.swift
[272/584] Compiling DequeModule Deque+CustomReflectable.swift
[273/584] Compiling DequeModule Deque+Descriptions.swift
[274/584] Compiling DequeModule Deque+Codable.swift
[275/584] Compiling DequeModule Deque+Collection.swift
[276/584] Compiling DequeModule Deque+Equatable.swift
[277/584] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[278/584] Compiling DequeModule Deque+Extras.swift
[279/584] Compiling DequeModule Deque+Hashable.swift
[280/584] Compiling DequeModule Deque._UnsafeHandle.swift
[281/584] Compiling DequeModule Deque.swift
[300/586] Compiling Tracing Tracer.swift
[301/586] Compiling Tracing TracerProtocol.swift
[302/586] Compiling Tracing TracingTime.swift
[315/586] Compiling HashTreeCollections TreeDictionary+Codable.swift
[320/586] Compiling _RopeModule Rope+Join.swift
[321/586] Compiling _RopeModule Rope+MutatingForEach.swift
[322/586] Compiling _RopeModule Rope+Remove.swift
[323/586] Compiling _RopeModule Rope+RemoveSubrange.swift
[324/586] Compiling _RopeModule Rope+Split.swift
[325/586] Compiling _RopeModule Optional Utilities.swift
[326/586] Compiling _RopeModule String Utilities.swift
[327/586] Compiling _RopeModule String.Index+ABI.swift
[328/596] Compiling Tracing TracerProtocol+Legacy.swift
[331/598] Emitting module Tracing
[332/598] Compiling DequeModule Deque+Testing.swift
[333/598] Compiling DequeModule Deque._Storage.swift
[334/598] Compiling DequeModule _DequeBuffer.swift
[335/598] Compiling DequeModule _DequeBufferHeader.swift
[336/598] Compiling DequeModule _DequeSlot.swift
[337/598] Compiling DequeModule _UnsafeWrappedBuffer.swift
[403/601] Compiling Tracing NoOpTracer.swift
[404/601] Compiling Tracing SpanProtocol.swift
[405/602] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[406/602] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[407/602] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[408/602] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[409/602] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[410/602] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[411/602] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[412/602] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[413/602] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[414/602] Compiling HashTreeCollections TreeSet.swift
[441/602] Emitting module OrderedCollections
[442/603] Emitting module CoreMetrics
[456/603] Emitting module DequeModule
[457/613] Emitting module _RopeModule
[459/630] Compiling ConsoleKitTerminal CustomActivity.swift
[460/630] Compiling ConsoleKitTerminal LoadingBar.swift
[461/630] Compiling ConsoleKitTerminal ProgressBar.swift
[462/630] Compiling ConsoleKitTerminal Console+Clear.swift
[463/630] Compiling ConsoleKitTerminal ActivityBar.swift
[464/630] Compiling ConsoleKitTerminal ActivityIndicator.swift
[465/630] Compiling ConsoleKitTerminal ActivityIndicatorRenderer.swift
[466/630] Compiling ConsoleKitTerminal ActivityIndicatorState.swift
[467/630] Compiling ConsoleKitTerminal Console+Ephemeral.swift
[468/630] Compiling ConsoleKitTerminal ConsoleClear.swift
[469/630] Compiling ConsoleKitTerminal Console+Ask.swift
[470/630] Compiling CoreMetrics Locks.swift
[471/630] Compiling CoreMetrics Metrics.swift
[482/641] Compiling ConsoleKitTerminal Console+Choose.swift
[483/641] Compiling ConsoleKitTerminal Console+Confirm.swift
[484/641] Compiling ConsoleKitTerminal Console+Input.swift
[485/641] Compiling ConsoleKitTerminal Console+Center.swift
[486/641] Compiling ConsoleKitTerminal Console+Output.swift
[487/641] Compiling ConsoleKitTerminal Console+Wait.swift
[488/641] Compiling ConsoleKitTerminal ConsoleColor.swift
[489/641] Compiling ConsoleKitTerminal ConsoleStyle.swift
[490/641] Compiling ConsoleKitTerminal ConsoleText.swift
[491/641] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[492/641] Compiling ConsoleKitTerminal ANSI.swift
[493/641] Compiling ConsoleKitTerminal Console.swift
[494/641] Compiling ConsoleKitTerminal Terminal.swift
[495/641] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[504/651] Compiling Atomics AtomicOptionalWrappable.swift
[505/651] Compiling Atomics AtomicReference.swift
[506/651] Compiling Atomics AtomicStorage.swift
[507/651] Compiling Atomics AtomicValue.swift
[508/651] Compiling Atomics AtomicMemoryOrderings.swift
[509/651] Compiling Atomics DoubleWord.swift
[510/651] Compiling Atomics ManagedAtomic.swift
[511/651] Compiling Atomics ManagedAtomicLazyReference.swift
[519/659] Compiling BitCollections BitArray+Equatable.swift
[526/665] Emitting module ConsoleKitTerminal
[529/667] Compiling Atomics UnsafeAtomic.swift
[530/667] Compiling Atomics UnsafeAtomicLazyReference.swift
[534/732] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[535/732] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[536/732] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[537/732] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[538/732] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[539/732] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[540/732] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[541/732] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[542/732] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[543/732] Compiling BitCollections BitSet+CustomReflectable.swift
[544/732] Compiling BitCollections BitSet+CustomStringConvertible.swift
[545/732] Compiling BitCollections BitSet+Equatable.swift
[546/732] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[547/732] Compiling BitCollections BitSet+Extras.swift
[548/732] Compiling BitCollections BitSet+Hashable.swift
[549/732] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[550/732] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[551/732] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[552/732] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[553/732] Compiling Algorithms AdjacentPairs.swift
[554/732] Compiling Algorithms Chain.swift
[555/732] Compiling Algorithms Chunked.swift
[556/732] Compiling Algorithms Combinations.swift
[557/732] Compiling Algorithms Compacted.swift
[558/732] Compiling Algorithms Cycle.swift
[559/732] Compiling Algorithms EitherSequence.swift
[560/732] Compiling Algorithms FirstNonNil.swift
[563/733] Compiling Algorithms FlattenCollection.swift
[564/735] Wrapping AST for SystemPackage for debugging
[566/735] Compiling Algorithms MinMax.swift
[567/735] Compiling Algorithms Partition.swift
[568/735] Compiling Algorithms Permutations.swift
[569/735] Compiling Algorithms Product.swift
[572/735] Compiling Atomics IntegerOperations.swift
[573/734] Compiling Algorithms Joined.swift
[574/734] Compiling Algorithms Keyed.swift
[576/734] Compiling Atomics Unmanaged extensions.swift
[577/734] Compiling Algorithms Rotate.swift
[578/734] Compiling Algorithms Split.swift
[579/734] Compiling Algorithms Stride.swift
[580/734] Compiling Algorithms Suffix.swift
[581/734] Compiling BitCollections BitSet+Initializers.swift
[581/734] Wrapping AST for RealModule for debugging
[585/736] Wrapping AST for OrderedCollections for debugging
[587/736] Compiling Algorithms Grouped.swift
[588/736] Compiling Algorithms Indexed.swift
[589/736] Compiling Algorithms Intersperse.swift
[591/736] Wrapping AST for _RopeModule for debugging
[592/736] Wrapping AST for Logging for debugging
[602/743] Compiling BitCollections BitSet+Invariants.swift
[603/743] Compiling BitCollections BitSet+Random.swift
[604/743] Compiling BitCollections BitSet+SetAlgebra basics.swift
[605/743] Emitting module BitCollections
[605/744] Wrapping AST for HeapModule for debugging
[605/744] Wrapping AST for InternalCollectionsUtilities for debugging
[612/744] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[613/744] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[622/744] Emitting module Metrics
[623/744] Compiling Metrics Metrics.swift
[636/745] Compiling BitCollections BitSet+SetAlgebra union.swift
[637/745] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[638/745] Compiling BitCollections BitSet.Counted.swift
[638/744] Wrapping AST for DequeModule for debugging
[640/744] Wrapping AST for CryptoBoringWrapper for debugging
[647/746] Wrapping AST for Crypto for debugging
[648/746] Wrapping AST for CoreMetrics for debugging
[650/768] Compiling ConsoleKitCommands AsyncCommands.swift
[651/768] Compiling ConsoleKitCommands GenerateAsyncAutocompleteCommand.swift
[652/768] Compiling ConsoleKitCommands AnyCommand.swift
[653/768] Compiling ConsoleKitCommands AnyAsyncCommand.swift
[654/768] Compiling ConsoleKitCommands AsyncCommand.swift
[655/768] Compiling ConsoleKitCommands AsyncCommandGroup.swift
[656/768] Compiling ConsoleKitCommands Command.swift
[657/768] Compiling ConsoleKitCommands CommandContext.swift
[658/768] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[659/768] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[660/768] Compiling ConsoleKitCommands Argument.swift
[661/768] Compiling ConsoleKitCommands Console+Run.swift
[662/768] Compiling ConsoleKitCommands ConsoleError.swift
[663/768] Compiling ConsoleKitCommands Completion.swift
[668/768] Compiling ConsoleKitCommands CommandError.swift
[669/768] Compiling ConsoleKitCommands CommandGroup.swift
[670/768] Compiling ConsoleKitCommands CommandInput.swift
[671/768] Compiling ConsoleKitCommands Commands.swift
[672/768] Emitting module HashTreeCollections
[675/769] Compiling ConsoleKitCommands CommandSignature.swift
[676/769] Compiling ConsoleKitCommands Flag.swift
[677/769] Compiling ConsoleKitCommands Option.swift
[682/769] Compiling Algorithms Trim.swift
[683/769] Compiling Algorithms Unique.swift
[684/769] Compiling Algorithms Windows.swift
[685/769] Emitting module ConsoleKitCommands
[689/771] Compiling BitCollections BitSet.Index.swift
[690/771] Compiling BitCollections BitSet._UnsafeHandle.swift
[691/771] Compiling BitCollections BitSet.swift
[692/771] Compiling BitCollections Range+Utilities.swift
[693/771] Compiling BitCollections Slice+Utilities.swift
[694/771] Compiling BitCollections UInt+Tricks.swift
[695/771] Compiling BitCollections _Word.swift
[709/771] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[710/771] Compiling ConsoleKitCommands Utilities.swift
[714/771] Wrapping AST for HashTreeCollections for debugging
[716/773] Compiling Collections Collections.swift
[717/773] Emitting module Collections
[721/774] Emitting module Atomics
[723/774] Wrapping AST for Atomics for debugging
[732/833] Emitting module Algorithms
[734/836] Compiling ConsoleKit Exports.swift
[735/836] Emitting module ConsoleKit
[735/836] Wrapping AST for Algorithms for debugging
[738/836] Compiling NIOCore MarkedCircularBuffer.swift
[739/836] Compiling NIOCore MulticastChannel.swift
[740/836] Compiling NIOCore NIOAny.swift
[741/836] Compiling NIOCore NIOCloseOnErrorHandler.swift
[742/836] Compiling NIOCore NIOLoopBound.swift
[743/836] Compiling NIOCore NIOScheduledCallback.swift
[744/836] Compiling NIOCore NIOSendable.swift
[745/836] Compiling NIOCore RecvByteBufferAllocator.swift
[746/844] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[747/844] Compiling NIOCore SocketAddresses.swift
[748/844] Compiling NIOCore SocketOptionProvider.swift
[749/844] Compiling NIOCore SystemCallHelpers.swift
[750/844] Compiling NIOCore TimeAmount+Duration.swift
[751/844] Compiling NIOCore TypeAssistedChannelHandler.swift
[752/844] Compiling NIOCore UniversalBootstrapSupport.swift
[753/844] Compiling NIOCore Utilities.swift
[754/844] Compiling NIOCore ChannelPipeline.swift
[755/844] Compiling NIOCore CircularBuffer.swift
[756/844] Compiling NIOCore Codec.swift
[757/844] Compiling NIOCore ConvenienceOptionSupport.swift
[758/844] Compiling NIOCore DeadChannel.swift
[759/844] Compiling NIOCore DispatchQueue+WithFuture.swift
[760/844] Compiling NIOCore EventLoop+Deprecated.swift
[761/844] Compiling NIOCore EventLoop+SerialExecutor.swift
[762/844] Compiling NIOCore GlobalSingletons.swift
[763/844] Compiling NIOCore IO.swift
[764/844] Compiling NIOCore IOData.swift
[765/844] Compiling NIOCore IPProtocol.swift
[766/844] Compiling NIOCore IntegerBitPacking.swift
[767/844] Compiling NIOCore IntegerTypes.swift
[768/844] Compiling NIOCore Interfaces.swift
[769/844] Compiling NIOCore Linux.swift
[770/844] Compiling NIOCore EventLoop.swift
[771/844] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[772/844] Compiling NIOCore EventLoopFuture+Deprecated.swift
[773/844] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[774/844] Compiling NIOCore EventLoopFuture.swift
[775/844] Compiling NIOCore FileDescriptor.swift
[776/844] Compiling NIOCore FileHandle.swift
[777/844] Compiling NIOCore FileRegion.swift
[778/844] Compiling NIOCore ByteBuffer-multi-int.swift
[779/844] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[780/844] Compiling NIOCore ByteBuffer-views.swift
[781/844] Compiling NIOCore Channel.swift
[782/844] Compiling NIOCore ChannelHandler.swift
[783/844] Compiling NIOCore ChannelHandlers.swift
[784/844] Compiling NIOCore ChannelInvoker.swift
[785/844] Compiling NIOCore ChannelOption.swift
[786/844] Emitting module NIOCore
[787/844] Compiling NIOCore AddressedEnvelope.swift
[788/844] Compiling NIOCore AsyncAwaitSupport.swift
[789/844] Compiling NIOCore AsyncChannel.swift
[790/844] Compiling NIOCore AsyncChannelHandler.swift
[791/844] Compiling NIOCore AsyncChannelInboundStream.swift
[792/844] Compiling NIOCore AsyncChannelOutboundWriter.swift
[793/844] Compiling NIOCore NIOAsyncSequenceProducer.swift
[794/844] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[795/844] Compiling NIOCore NIOAsyncWriter.swift
[796/844] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[797/844] Compiling NIOCore BSDSocketAPI.swift
[798/844] Compiling NIOCore ByteBuffer-aux.swift
[799/844] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[800/844] Compiling NIOCore ByteBuffer-conversions.swift
[801/844] Compiling NIOCore ByteBuffer-core.swift
[802/844] Compiling NIOCore ByteBuffer-hex.swift
[803/844] Compiling NIOCore ByteBuffer-int.swift
[804/844] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[806/895] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[807/895] Compiling NIOEmbedded AsyncTestingChannel.swift
[808/895] Compiling NIOEmbedded Embedded.swift
[809/895] Emitting module NIOEmbedded
[811/895] Compiling NIOPosix IO.swift
[812/895] Compiling NIOPosix IntegerBitPacking.swift
[813/895] Compiling NIOPosix IntegerTypes.swift
[814/895] Compiling NIOPosix Linux.swift
[815/895] Compiling NIOPosix LinuxCPUSet.swift
[816/895] Compiling NIOPosix LinuxUring.swift
[817/895] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[818/895] Compiling NIOPosix BSDSocketAPICommon.swift
[819/895] Compiling NIOPosix BSDSocketAPIPosix.swift
[820/895] Compiling NIOPosix BSDSocketAPIWindows.swift
[821/895] Compiling NIOPosix BaseSocket.swift
[822/895] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[823/895] Compiling NIOPosix BaseSocketChannel.swift
[824/895] Compiling NIOPosix BaseStreamSocketChannel.swift
[825/901] Emitting module NIOPosix
[826/901] Compiling NIOPosix ThreadPosix.swift
[827/901] Compiling NIOPosix ThreadWindows.swift
[828/901] Compiling NIOPosix UnsafeTransfer.swift
[829/901] Compiling NIOPosix Utilities.swift
[830/901] Compiling NIOPosix VsockAddress.swift
[831/901] Compiling NIOPosix VsockChannelEvents.swift
[832/901] Compiling NIOPosix Bootstrap.swift
[833/901] Compiling NIOPosix ControlMessage.swift
[834/901] Compiling NIOPosix DatagramVectorReadManager.swift
[835/901] Compiling NIOPosix Errors+Any.swift
[836/901] Compiling NIOPosix FileDescriptor.swift
[837/901] Compiling NIOPosix GetaddrinfoResolver.swift
[838/901] Compiling NIOPosix HappyEyeballs.swift
[839/901] Compiling NIOPosix SelectableChannel.swift
[840/901] Compiling NIOPosix SelectableEventLoop.swift
[841/901] Compiling NIOPosix SelectorEpoll.swift
[842/901] Compiling NIOPosix SelectorGeneric.swift
[843/901] Compiling NIOPosix SelectorKqueue.swift
[844/901] Compiling NIOPosix SelectorUring.swift
[845/901] Compiling NIOPosix PooledRecvBufferAllocator.swift
[846/901] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[847/901] Compiling NIOPosix PosixSingletons.swift
[848/901] Compiling NIOPosix RawSocketBootstrap.swift
[849/901] Compiling NIOPosix Resolver.swift
[850/901] Compiling NIOPosix Selectable.swift
[851/901] Compiling NIOPosix ServerSocket.swift
[852/901] Compiling NIOPosix Socket.swift
[853/901] Compiling NIOPosix SocketChannel.swift
[854/901] Compiling NIOPosix SocketProtocols.swift
[855/901] Compiling NIOPosix System.swift
[856/901] Compiling NIOPosix Thread.swift
[857/901] Compiling NIOPosix NIOThreadPool.swift
[858/901] Compiling NIOPosix NonBlockingFileIO.swift
[859/901] Compiling NIOPosix PendingDatagramWritesManager.swift
[860/901] Compiling NIOPosix PendingWritesManager.swift
[861/901] Compiling NIOPosix PipeChannel.swift
[862/901] Compiling NIOPosix PipePair.swift
[863/901] Compiling NIOPosix Pool.swift
[865/960] Compiling NIO Exports.swift
[866/960] Emitting module NIO
[868/960] Compiling AsyncKit Future+Miscellaneous.swift
[869/960] Compiling AsyncKit Future+Nonempty.swift
[870/960] Compiling AsyncKit Future+Optional.swift
[871/960] Compiling AsyncKit Future+Transform.swift
[872/960] Compiling AsyncKit Future+Try.swift
[873/960] Compiling AsyncKit FutureOperators.swift
[874/963] Compiling AsyncKit ConnectionPoolError.swift
[875/963] Compiling AsyncKit ConnectionPoolItem.swift
[876/963] Compiling AsyncKit ConnectionPoolSource.swift
[877/963] Compiling AsyncKit EventLoopFutureQueue.swift
[878/963] Compiling AsyncKit Future+Collection.swift
[881/971] Compiling AsyncKit EventLoopConnectionPool.swift
[882/971] Compiling AsyncKit EventLoopGroupConnectionPool.swift
[883/971] Compiling AsyncKit EventLoop+Concurrency.swift
[884/1058] Emitting module NIOTLS
[885/1097] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[886/1097] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[887/1097] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[888/1097] Emitting module _NIOFileSystem
[889/1097] Compiling NIOTLS TLSEvents.swift
[890/1097] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[891/1098] Compiling NIOSOCKS ClientStateMachine.swift
[892/1098] Compiling NIOSOCKS SOCKSResponse.swift
[893/1098] Compiling SQLKit SQLColumnUpdateBuilder.swift
[894/1098] Compiling SQLKit SQLCommonTableExpressionBuilder.swift
[897/1098] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[898/1098] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[899/1098] Emitting module NIOSOCKS
[901/1098] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[902/1098] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[903/1098] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[904/1098] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[905/1098] Compiling NIOSOCKS ServerStateMachine.swift
[906/1098] Compiling NIOHTTP1 ByteCollectionUtils.swift
[907/1098] Compiling NIOHTTP1 HTTPDecoder.swift
[908/1098] Compiling NIOHTTP1 HTTPEncoder.swift
[909/1098] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[911/1099] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[912/1099] Compiling NIOTLS SNIHandler.swift
[914/1100] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[915/1101] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[916/1101] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[918/1100] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[919/1100] Emitting module NIOFoundationCompat
[920/1100] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[921/1100] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[922/1101] Emitting module NIOHTTP1
[923/1101] Compiling SQLKit SQLDropIndex.swift
[924/1101] Compiling SQLKit SQLDropTable.swift
[925/1101] Compiling SQLKit SQLDropTrigger.swift
[926/1101] Compiling SQLKit SQLInsert.swift
[927/1101] Compiling SQLKit SQLSelect.swift
[928/1101] Compiling SQLKit SQLUnion.swift
[929/1101] Compiling SQLKit SQLUpdate.swift
[930/1101] Compiling SQLKit SQLExpression.swift
[931/1101] Compiling SQLKit SQLSerializer.swift
[932/1101] Compiling SQLKit SQLStatement.swift
[933/1101] Compiling SQLKit SQLBinaryExpression.swift
[934/1101] Compiling SQLKit SQLBinaryOperator.swift
[935/1101] Compiling SQLKit SQLBind.swift
[936/1113] Compiling SQLKit SQLQueryBuilders+Deprecated.swift
[937/1113] Compiling SQLKit Exports.swift
[938/1113] Compiling SQLKit SQLAlias.swift
[939/1113] Compiling SQLKit SQLBetween.swift
[940/1113] Compiling SQLKit SQLColumn.swift
[941/1113] Compiling SQLKit SQLConstraint.swift
[942/1113] Compiling SQLKit SQLDataType.swift
[943/1113] Compiling SQLKit SQLDirection.swift
[944/1113] Compiling SQLKit SQLDistinct.swift
[945/1113] Compiling SQLKit SQLForeignKeyAction.swift
[946/1113] Compiling SQLKit SQLNestedSubpathExpression.swift
[947/1113] Compiling SQLKit SQLQualifiedTable.swift
[948/1113] Compiling SQLKit SQLQueryString.swift
[959/1113] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[960/1113] Compiling NIOHTTP1 HTTPTypes.swift
[963/1122] Compiling SQLKit SQLAlterColumnDefinitionType.swift
[964/1122] Compiling SQLKit SQLColumnAssignment.swift
[965/1122] Compiling SQLKit SQLColumnConstraintAlgorithm.swift
[966/1122] Compiling SQLKit SQLColumnDefinition.swift
[967/1122] Compiling SQLKit SQLCommonTableExpression.swift
[968/1122] Compiling SQLKit SQLConflictAction.swift
[969/1122] Compiling SQLKit SQLConflictResolutionStrategy.swift
[970/1122] Compiling SQLKit SQLDropBehaviour.swift
[971/1122] Compiling SQLKit SQLEnumDataType.swift
[972/1122] Compiling SQLKit SQLExcludedColumn.swift
[973/1122] Compiling SQLKit SQLForeignKey.swift
[974/1122] Compiling SQLKit SQLJoin.swift
[975/1122] Compiling SQLKit SQLJoinMethod.swift
[976/1122] Compiling SQLKit SQLLockingClause.swift
[977/1122] Compiling SQLKit SQLOrderBy.swift
[978/1122] Compiling SQLKit SQLReturning.swift
[979/1122] Compiling SQLKit SQLSubquery.swift
[980/1122] Compiling SQLKit SQLTableConstraintAlgorithm.swift
[981/1122] Compiling SQLKit SQLAlterEnum.swift
[982/1122] Compiling SQLKit SQLAlterTable.swift
[983/1122] Compiling SQLKit SQLCreateEnum.swift
[984/1122] Compiling SQLKit SQLCreateIndex.swift
[985/1122] Compiling SQLKit SQLCreateTable.swift
[986/1122] Compiling SQLKit SQLCreateTrigger.swift
[987/1122] Compiling SQLKit SQLDelete.swift
[988/1122] Compiling SQLKit SQLDropEnum.swift
[989/1141] Compiling NIOSSL SSLCallbacks.swift
[990/1141] Compiling NIOSSL SSLPublicKey.swift
[991/1141] Compiling NIOSSL ObjectIdentifier.swift
[992/1141] Compiling NIOSSL PosixPort.swift
[995/1141] Compiling NIOSSL SecurityFrameworkCertificateVerification.swift
[996/1141] Compiling NIOSSL String+unsafeUninitializedCapacity.swift
[997/1141] Compiling NIOSSL SubjectAlternativeName.swift
[998/1141] Compiling NIOSSL SSLCertificate.swift
[999/1141] Compiling NIOSSL SSLCertificateExtensions.swift
[1000/1141] Compiling NIOSSL SSLConnection.swift
[1001/1141] Compiling NIOSSL SSLContext.swift
[1002/1141] Compiling NIOSSL NIOSSLSecureBytes.swift
[1003/1141] Compiling NIOSSL RNG.swift
[1004/1141] Compiling NIOSSL SafeCompare.swift
[1005/1141] Compiling NIOSSL Zeroization.swift
[1006/1141] Compiling SQLKit SQLQueryFetcher.swift
[1007/1141] Compiling SQLKit SQLReturningBuilder.swift
[1008/1141] Compiling SQLKit SQLSecondaryPredicateBuilder.swift
[1009/1141] Compiling SQLKit SQLSubqueryClauseBuilder.swift
[1010/1141] Compiling SQLKit SQLUnqualifiedColumnListBuilder.swift
[1011/1141] Compiling SQLKit SQLDatabase.swift
[1012/1141] Compiling SQLKit SQLDatabaseReportedVersion.swift
[1013/1141] Compiling SQLKit SQLDialect.swift
[1014/1141] Compiling SQLKit SQLDatabase+Deprecated.swift
[1015/1141] Compiling SQLKit SQLError.swift
[1016/1141] Compiling SQLKit SQLExpressions+Deprecated.swift
[1017/1141] Compiling NIOSSL SSLInit.swift
[1018/1141] Compiling NIOSSL SSLPKCS12Bundle.swift
[1023/1163] Compiling NIOTransportServices AcceptHandler.swift
[1024/1163] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1025/1163] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[1026/1163] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[1027/1163] Compiling NIOTransportServices NIOTSBootstraps.swift
[1028/1163] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[1029/1163] Compiling NIOTransportServices NIOTSDatagramListener.swift
[1030/1163] Emitting module AsyncKit
[1031/1164] Compiling NIOTransportServices StateManagedChannel.swift
[1032/1164] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1033/1164] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1037/1164] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1038/1164] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[1039/1164] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1040/1164] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[1041/1164] Compiling NIOTransportServices NIOTSSingletons.swift
[1042/1164] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[1043/1164] Emitting module NIOTransportServices
[1045/1166] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1046/1166] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1047/1166] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[1048/1166] Compiling NIOTransportServices NIOTSErrors.swift
[1049/1166] Compiling NIOTransportServices NIOTSEventLoop.swift
[1055/1169] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1056/1169] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1072/1169] Emitting module SQLKit
[1074/1169] Emitting module NIOSSL
[1078/1169] Compiling NIOSSL TLSConfiguration.swift
[1079/1169] Compiling NIOSSL UniversalBootstrapSupport.swift
[1085/1169] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[1104/1214] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1105/1214] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1106/1214] Compiling SQLKit SQLFunction.swift
[1107/1214] Compiling SQLKit SQLGroupExpression.swift
[1108/1214] Compiling SQLKit SQLIdentifier.swift
[1109/1214] Compiling SQLKit SQLList.swift
[1110/1214] Compiling SQLKit SQLLiteral.swift
[1111/1214] Compiling SQLKit SQLRaw.swift
[1112/1214] Compiling SQLKit SQLCodingUtilities.swift
[1113/1214] Compiling SQLKit SQLQueryEncoder.swift
[1114/1214] Compiling SQLKit SQLRow.swift
[1115/1214] Compiling SQLKit SQLRowDecoder.swift
[1116/1214] Compiling SQLKit SomeCodingKey.swift
[1117/1214] Compiling SQLKit StringHandling.swift
[1118/1215] Compiling NIOWebSocket WebSocketOpcode.swift
[1119/1216] Compiling NIOHTTPCompression HTTPDecompression.swift
[1120/1217] Compiling NIOHPACK IndexedHeaderTable.swift
[1121/1217] Compiling NIOHPACK IntegerCoding.swift
[1122/1220] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1123/1220] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1124/1220] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[1126/1220] Compiling NIOHPACK HuffmanTables.swift
[1127/1220] Emitting module NIOHTTPCompression
[1128/1220] Compiling NIOHTTPCompression HTTPCompression.swift
[1129/1220] Compiling NIOExtras HTTP1ProxyConnectHandler.swift
[1130/1220] Compiling NIOExtras JSONRPCFraming+ContentLengthHeader.swift
[1134/1221] Compiling NIOHPACK HuffmanCoding.swift
[1135/1221] Emitting module NIOHPACK
[1136/1221] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[1137/1221] Compiling NIOWebSocket WebSocketErrorCodes.swift
[1138/1221] Compiling NIOExtras JSONRPCFraming.swift
[1139/1221] Compiling NIOExtras DebugInboundEventsHandler.swift
[1142/1221] Compiling NIOWebSocket WebSocketFrame.swift
[1147/1221] Compiling NIOExtras NIORequestIdentifiable.swift
[1148/1221] Compiling NIOExtras PCAPRingBuffer.swift
[1149/1221] Compiling NIOExtras QuiescingHelper.swift
[1150/1221] Compiling NIOExtras RequestResponseHandler.swift
[1151/1221] Emitting module NIOWebSocket
[1152/1221] Emitting module _NIOFileSystemFoundationCompat
[1154/1222] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[1155/1222] Compiling NIOExtras NIOExtrasError.swift
[1156/1224] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[1157/1225] Compiling NIOHPACK StaticHeaderTable.swift
[1158/1225] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[1160/1224] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[1163/1224] Compiling NIOExtras DebugOutboundEventsHandler.swift
[1164/1224] Compiling NIOExtras FixedLengthFrameDecoder.swift
[1167/1226] Compiling NIOExtras RequestResponseWithIDHandler.swift
[1168/1225] Compiling NIOExtras NIOLengthFieldBitLength.swift
[1174/1222] Emitting module NIOExtras
[1175/1243] Compiling MultipartKit FormDataDecoder.Decoder.swift
[1176/1243] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[1177/1243] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[1178/1243] Compiling MultipartKit BasicCodingKey.swift
[1179/1243] Compiling MultipartKit MultipartError.swift
[1180/1243] Compiling MultipartKit Exports.swift
[1181/1243] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[1182/1243] Compiling MultipartKit FormDataDecoder.swift
[1183/1243] Compiling MultipartKit FormDataEncoder.Encoder.swift
[1184/1243] Compiling NIOFileSystem Exports.swift
[1185/1249] Emitting module NIOFileSystem
[1186/1301] Emitting module MultipartKit
[1188/1367] Compiling FluentKit ModelResponder+Concurrency.swift
[1189/1367] Compiling FluentKit OptionalChild+Concurrency.swift
[1190/1367] Compiling FluentKit OptionalParent+Concurrency.swift
[1191/1367] Compiling FluentKit SchemaBuilder+Concurrency.swift
[1192/1367] Compiling FluentKit Siblings+Concurrency.swift
[1193/1367] Compiling FluentKit Database+Logging.swift
[1194/1367] Compiling FluentKit Database.swift
[1195/1367] Compiling FluentKit DatabaseID.swift
[1196/1367] Compiling FluentKit DatabaseInput.swift
[1197/1367] Compiling FluentKit Database+Concurrency.swift
[1198/1367] Compiling FluentKit EnumBuilder+Concurrency.swift
[1199/1367] Compiling FluentKit Model+Concurrency.swift
[1200/1443] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1201/1443] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1203/1462] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1204/1462] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1205/1462] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1206/1462] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1208/1462] Wrapping AST for SQLKit for debugging
[1210/1460] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1211/1460] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1212/1460] Compiling NIOHTTP2 MayReceiveFrames.swift
[1213/1460] Compiling NIOHTTP2 ReceivingDataState.swift
[1214/1460] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1215/1460] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1217/1460] Compiling NIOHTTP2 HasLocalSettings.swift
[1218/1460] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1222/1496] Compiling LeafKit Character+Identities.swift
[1223/1496] Compiling LeafKit LeafAST.swift
[1224/1496] Compiling LeafKit DefaultLeafCache.swift
[1225/1496] Compiling LeafKit LeafCache.swift
[1226/1496] Compiling LeafKit LeafConfiguration.swift
[1227/1496] Compiling LeafKit LeafData.swift
[1228/1496] Compiling LeafKit LeafDataRepresentable.swift
[1229/1496] Compiling LeafKit LeafDataStorage.swift
[1230/1496] Compiling LeafKit LeafError.swift
[1231/1496] Compiling LeafKit LeafLexer.swift
[1232/1496] Compiling LeafKit LeafParameterTypes.swift
[1233/1496] Compiling LeafKit LeafRawTemplate.swift
[1234/1496] Compiling LeafKit LeafToken.swift
[1244/1513] Compiling LeafKit LeafParameter.swift
[1245/1513] Compiling LeafKit LeafParser.swift
[1246/1513] Compiling LeafKit LeafRenderer.swift
[1247/1513] Compiling LeafKit Dictionary+LeafData.swift
[1255/1522] Compiling WebSocketKit Exports.swift
[1256/1522] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1257/1522] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1258/1522] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1259/1522] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1264/1522] Compiling RediStack RedisKey.swift
[1265/1522] Compiling RediStack RedisLogging.swift
[1273/1522] Compiling MySQLNIO MySQLProtocol+StatusFlags.swift
[1274/1522] Compiling MySQLNIO MySQLProtocol+TextResultSetRow.swift
[1275/1522] Compiling WebSocketKit WebSocket+Concurrency.swift
[1276/1522] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1277/1522] Compiling LeafKit LeafSource.swift
[1278/1522] Compiling LeafKit LeafSources.swift
[1279/1522] Compiling LeafKit NIOLeafFiles.swift
[1280/1522] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1281/1522] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1284/1522] Compiling LeafKit LeafContext.swift
[1285/1522] Compiling LeafKit LeafSerializer.swift
[1286/1522] Compiling LeafKit ParameterResolver.swift
[1287/1521] Compiling WebSocketKit WebSocket+Connect.swift
[1289/1521] Compiling NIOHTTP2 StateMachineResult.swift
[1290/1521] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1291/1521] Compiling NIOHTTP2 DOSHeuristics.swift
[1292/1521] Compiling NIOHTTP2 Error+Any.swift
[1293/1521] Compiling WebSocketKit WebSocketHandler.swift
[1294/1521] Emitting module WebSocketKit
[1305/1521] Emitting module LeafKit
[1309/1524] Compiling WebSocketKit WebSocket.swift
[1310/1524] Compiling WebSocketKit WebSocketClient.swift
[1314/1525] Compiling MySQLNIO MySQLProtocol.swift
[1315/1525] Compiling MySQLNIO CryptoUtils.swift
[1316/1525] Compiling MySQLNIO NIOUtils.swift
[1327/1525] Compiling LeafKit LeafSyntax.swift
[1328/1525] Compiling LeafKit LeafTag.swift
[1329/1525] Compiling LeafKit String+HTMLEscape.swift
[1342/1525] Emitting module MySQLNIO
[1354/1525] Emitting module FluentKit
[1357/1525] Wrapping AST for WebSocketKit for debugging
[1359/1525] Compiling FluentKit DatabaseQuery+Join.swift
[1360/1525] Compiling FluentKit DatabaseQuery+Range.swift
[1361/1525] Compiling FluentKit DatabaseQuery+Sort.swift
[1362/1525] Compiling FluentKit DatabaseQuery+Value.swift
[1363/1525] Compiling FluentKit DatabaseQuery.swift
[1364/1525] Compiling FluentKit QueryHistory.swift
[1365/1525] Compiling FluentKit DatabaseSchema.swift
[1366/1525] Compiling FluentKit SchemaBuilder.swift
[1367/1525] Compiling FluentKit OptionalType.swift
[1368/1525] Compiling FluentKit RandomGeneratable.swift
[1369/1525] Compiling FluentKit SomeCodingKey.swift
[1370/1525] Compiling FluentKit UnsafeMutableTransferBox.swift
[1371/1525] Compiling NIOHTTP2 InboundWindowManager.swift
[1372/1525] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1373/1525] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1374/1525] Compiling NIOHTTP2 StreamChannelList.swift
[1375/1525] Compiling NIOHTTP2 StreamMap.swift
[1376/1525] Compiling NIOHTTP2 StreamStateMachine.swift
[1377/1525] Compiling NIOHTTP2 UnsafeTransfer.swift
[1378/1525] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1382/1525] Compiling FluentKit QueryBuilder+Group.swift
[1383/1525] Compiling FluentKit QueryBuilder+Join+DirectRelations.swift
[1384/1525] Compiling FluentKit QueryBuilder+Join.swift
[1385/1525] Compiling FluentKit QueryBuilder+Paginate.swift
[1386/1525] Compiling FluentKit QueryBuilder+Range.swift
[1387/1525] Compiling FluentKit QueryBuilder+Set.swift
[1388/1525] Compiling FluentKit QueryBuilder+Sort.swift
[1389/1525] Compiling FluentKit QueryBuilder.swift
[1390/1525] Compiling FluentKit DatabaseQuery+Action.swift
[1391/1525] Compiling FluentKit DatabaseQuery+Aggregate.swift
[1392/1525] Compiling FluentKit DatabaseQuery+Field.swift
[1393/1525] Compiling FluentKit DatabaseQuery+Filter.swift
[1407/1525] Emitting module RediStack
[1414/1526] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1415/1526] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1416/1526] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1417/1526] Compiling NIOHTTP2 HTTP2StreamID.swift
[1418/1526] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1419/1526] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1420/1526] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1421/1526] Compiling NIOHTTP2 InboundEventBuffer.swift
[1422/1526] Emitting module NIOHTTP2
[1431/1526] Wrapping AST for RediStack for debugging
[1438/1527] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1439/1527] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1440/1527] Compiling NIOHTTP2 HTTP2Frame.swift
[1441/1527] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1442/1527] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1443/1527] Compiling NIOHTTP2 HTTP2PingData.swift
[1444/1527] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1445/1527] Compiling NIOHTTP2 HTTP2Settings.swift
[1446/1527] Compiling NIOHTTP2 HTTP2Stream.swift
[1502/1528] Compiling FluentKit Parent.swift
[1503/1528] Compiling FluentKit Property.swift
[1504/1528] Compiling FluentKit Relation.swift
[1505/1528] Compiling FluentKit Siblings.swift
[1506/1528] Compiling FluentKit Timestamp.swift
[1507/1528] Compiling FluentKit TimestampFormat.swift
[1508/1528] Compiling FluentKit QueryBuilder+Aggregate.swift
[1509/1528] Compiling FluentKit QueryBuilder+EagerLoad.swift
[1510/1528] Compiling FluentKit QueryBuilder+Filter.swift
[1512/1528] Wrapping AST for MySQLNIO for debugging
[1514/1607] Compiling MySQLKit MySQLDataEncoder.swift
[1515/1607] Compiling MySQLKit MySQLDatabase+SQL.swift
[1516/1607] Compiling MySQLKit MySQLDataDecoder.swift
[1517/1607] Emitting module MySQLKit
[1518/1607] Compiling FluentSQL SQLDatabase+Model+Concurrency.swift
[1519/1607] Compiling FluentSQL SQLDatabase+Model.swift
[1520/1608] Compiling FluentSQL SQLJSONColumnPath+Deprecated.swift
[1521/1608] Compiling MySQLKit MySQLRow+SQL.swift
[1522/1608] Compiling FluentSQL DatabaseSchema+SQL.swift
[1523/1608] Compiling FluentSQL Exports.swift
[1524/1608] Compiling MySQLKit MySQLDialect.swift
[1527/1609] Compiling FluentSQL SQLList+Deprecated.swift
[1530/1609] Emitting module FluentSQL
[1531/1609] Compiling MySQLKit Optional+MySQLDataConvertible.swift
[1533/1609] Compiling FluentSQL ConverterUtilities.swift
[1534/1609] Compiling FluentSQL DatabaseQuery+SQL.swift
[1535/1609] Compiling FluentSQL SQLQualifiedTable+Deprecated.swift
[1536/1609] Compiling FluentSQL SQLQueryConverter.swift
[1537/1609] Compiling FluentSQL SQLSchemaConverter.swift
[1539/1609] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1540/1609] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1541/1609] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1542/1609] Compiling AsyncHTTPClient HTTP1Connection.swift
[1543/1609] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1544/1609] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1545/1609] Compiling AsyncHTTPClient HTTP2Connection.swift
[1546/1609] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1547/1617] Emitting module AsyncHTTPClient
[1554/1617] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[1555/1617] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1556/1617] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1557/1617] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1558/1617] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1559/1617] Compiling AsyncHTTPClient Transaction.swift
[1560/1617] Compiling AsyncHTTPClient Base64.swift
[1561/1617] Compiling AsyncHTTPClient BasicAuth.swift
[1562/1617] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1563/1617] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1564/1617] Compiling AsyncHTTPClient ConnectionPool.swift
[1565/1617] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1566/1625] Compiling FluentMySQLDriver MySQLError+Database.swift
[1567/1625] Compiling FluentMySQLDriver FluentMySQLError.swift
[1568/1625] Compiling FluentMySQLDriver MySQLConverterDelegate.swift
[1569/1626] Emitting module FluentMySQLDriver
[1570/1626] Compiling FluentMySQLDriver MySQLRow+Database.swift
[1571/1626] Compiling FluentMySQLDriver FluentMySQLDriver.swift
[1572/1626] Compiling FluentMySQLDriver FluentMySQLConfiguration.swift
[1573/1626] Compiling FluentMySQLDriver Exports.swift
[1574/1626] Compiling FluentMySQLDriver FluentMySQLDatabase.swift
[1576/1627] Compiling AsyncHTTPClient RequestBag.swift
[1577/1627] Compiling AsyncHTTPClient RequestValidation.swift
[1578/1627] Compiling AsyncHTTPClient SSLContextCache.swift
[1579/1627] Compiling AsyncHTTPClient Scheme.swift
[1580/1627] Compiling AsyncHTTPClient Singleton.swift
[1581/1627] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1582/1627] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[1583/1627] Compiling AsyncHTTPClient Utils.swift
[1584/1627] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1585/1627] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1586/1627] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1587/1627] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1588/1627] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1589/1627] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1590/1627] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1591/1627] Compiling AsyncHTTPClient RequestBodyLength.swift
[1592/1627] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1593/1627] Compiling AsyncHTTPClient RequestOptions.swift
[1594/1627] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1595/1627] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1596/1627] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1597/1627] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1598/1627] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1599/1627] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1600/1626] Compiling AsyncHTTPClient HTTPClient.swift
[1601/1626] Compiling AsyncHTTPClient HTTPHandler.swift
[1602/1626] Compiling AsyncHTTPClient LRUCache.swift
[1603/1626] Compiling AsyncHTTPClient NWErrorHandler.swift
[1604/1626] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1605/1626] Compiling AsyncHTTPClient TLSConfiguration.swift
[1606/1626] Compiling AsyncHTTPClient RedirectState.swift
[1607/1626] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1608/1626] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1609/1626] Compiling AsyncHTTPClient ConnectionTarget.swift
[1610/1626] Compiling AsyncHTTPClient DeconstructedURL.swift
[1611/1626] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1612/1626] Compiling AsyncHTTPClient FoundationExtensions.swift
[1613/1626] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1614/1626] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1615/1626] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[1616/1627] Wrapping AST for AsyncHTTPClient for debugging
[1618/1796] Compiling Vapor HTTPServerResponseEncoder.swift
[1619/1796] Compiling Vapor HTTPServerUpgradeHandler.swift
[1620/1796] Compiling Vapor Logger+Report.swift
[1621/1796] Compiling Vapor LoggingSystem+Environment.swift
[1622/1796] Compiling Vapor Application+Middleware.swift
[1623/1796] Compiling Vapor CORSMiddleware.swift
[1624/1796] Compiling Vapor ErrorMiddleware.swift
[1625/1796] Compiling Vapor FileMiddleware.swift
[1626/1796] Compiling Vapor Middleware.swift
[1627/1796] Compiling Vapor MiddlewareConfiguration.swift
[1628/1796] Compiling Vapor ResponseCompressionMiddleware.swift
[1629/1796] Compiling Vapor RouteLoggingMiddleware.swift
[1630/1796] Compiling Vapor TracingMiddleware.swift
[1631/1796] Compiling Vapor File+Multipart.swift
[1632/1796] Compiling Vapor FormDataDecoder+Content.swift
[1633/1796] Compiling Vapor FormDataEncoder+Content.swift
[1634/1796] Compiling Vapor Application+Password.swift
[1635/1796] Compiling Vapor Application+Passwords.swift
[1636/1796] Compiling Vapor AsyncPasswordHasher.swift
[1637/1796] Compiling Vapor BcryptHasher.swift
[1638/1796] Compiling Vapor PasswordHasher.swift
[1639/1796] Compiling Vapor PlaintextHasher.swift
[1640/1796] Compiling Vapor Request+Password.swift
[1641/1796] Compiling Vapor Redirect.swift
[1642/1820] Compiling Vapor Core.swift
[1643/1820] Compiling Vapor Running.swift
[1644/1820] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[1645/1820] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[1646/1820] Compiling Vapor DotEnvFile+load.swift
[1647/1820] Compiling Vapor Routes+caseInsenstive.swift
[1648/1820] Compiling Vapor Validatable+validate.swift
[1649/1820] Compiling Vapor Environment+Process.swift
[1650/1820] Compiling Vapor Environment+Secret.swift
[1651/1820] Compiling Vapor Environment.swift
[1652/1820] Compiling Vapor Abort.swift
[1653/1820] Compiling Vapor AbortError.swift
[1654/1820] Compiling Vapor DebuggableError.swift
[1655/1820] Compiling Vapor Demangler.swift
[1656/1820] Compiling Vapor ErrorSource.swift
[1657/1820] Compiling Vapor StackTrace.swift
[1658/1820] Compiling Vapor Exports.swift
[1659/1820] Compiling Vapor Application+HTTP.swift
[1660/1820] Compiling Vapor BasicResponder.swift
[1661/1820] Compiling Vapor BodyStream.swift
[1662/1820] Compiling Vapor Application+HTTP+Client.swift
[1663/1820] Compiling Vapor EventLoopHTTPClient.swift
[1664/1820] Compiling Vapor EndpointCache.swift
[1665/1820] Compiling Vapor HTTPMethod+String.swift
[1666/1820] Compiling Vapor Request+Body.swift
[1667/1820] Compiling Vapor Request+BodyStream.swift
[1668/1820] Compiling Vapor Request.swift
[1669/1820] Compiling Vapor Application+Responder.swift
[1670/1820] Compiling Vapor DefaultResponder.swift
[1671/1820] Compiling Vapor Response+Body.swift
[1672/1820] Compiling Vapor Response.swift
[1673/1820] Compiling Vapor ResponseCodable.swift
[1674/1820] Compiling Vapor Application+Routes.swift
[1675/1820] Compiling Vapor Parameters+Require.swift
[1676/1820] Compiling Vapor Request+WebSocket.swift
[1677/1820] Compiling Vapor Route.swift
[1678/1820] Compiling Vapor RouteCollection.swift
[1679/1820] Compiling Vapor Routes.swift
[1680/1820] Compiling Vapor RoutesBuilder+Group.swift
[1681/1820] Compiling Vapor RoutesBuilder+Method.swift
[1682/1820] Compiling Vapor RoutesBuilder+Middleware.swift
[1683/1820] Compiling Vapor RoutesBuilder+WebSocket.swift
[1684/1820] Compiling Vapor RoutesBuilder.swift
[1685/1820] Compiling Vapor OTP.swift
[1686/1820] Compiling Vapor Application+Servers.swift
[1687/1820] Compiling Vapor Server.swift
[1688/1820] Compiling Vapor App+Service.swift
[1689/1820] Compiling Vapor Req+Service.swift
[1690/1844] Compiling Vapor Application.swift
[1691/1844] Compiling Vapor AuthenticationCache.swift
[1692/1844] Compiling Vapor Authenticator.swift
[1693/1844] Compiling Vapor BasicAuthorization.swift
[1694/1844] Compiling Vapor BearerAuthorization.swift
[1695/1844] Compiling Vapor GuardMiddleware.swift
[1696/1844] Compiling Vapor RedirectMiddleware.swift
[1697/1844] Compiling Vapor SessionAuthenticatable.swift
[1698/1844] Compiling Vapor Bcrypt.swift
[1699/1844] Compiling Vapor Application+Cache.swift
[1700/1844] Compiling Vapor Cache.swift
[1701/1844] Compiling Vapor CacheExpirationTime.swift
[1702/1844] Compiling Vapor MemoryCache.swift
[1703/1844] Compiling Vapor Request+Cache.swift
[1704/1844] Compiling Vapor Application+Clients.swift
[1705/1844] Compiling Vapor Client.swift
[1706/1844] Compiling Vapor ClientRequest.swift
[1707/1844] Compiling Vapor ClientResponse.swift
[1708/1844] Compiling Vapor Request+Client.swift
[1709/1844] Compiling Vapor BootCommand.swift
[1710/1844] Compiling Vapor CommandContext+Application.swift
[1711/1844] Compiling Vapor RoutesCommand.swift
[1712/1844] Compiling Vapor ServeCommand.swift
[1713/1844] Compiling Vapor AnyResponse+Concurrency.swift
[1714/1844] Compiling Vapor Validator.swift
[1715/1844] Compiling Vapor ValidatorResult.swift
[1716/1844] Compiling Vapor And.swift
[1717/1844] Compiling Vapor Case.swift
[1718/1844] Compiling Vapor CharacterSet.swift
[1719/1844] Compiling Vapor Count.swift
[1720/1844] Compiling Vapor Custom.swift
[1721/1844] Compiling Vapor Email.swift
[1722/1844] Compiling Vapor Empty.swift
[1723/1844] Compiling Vapor In.swift
[1724/1844] Compiling Vapor Nil.swift
[1725/1844] Compiling Vapor NilIgnoring.swift
[1726/1844] Compiling Vapor Not.swift
[1727/1844] Compiling Vapor Or.swift
[1728/1844] Compiling Vapor Pattern.swift
[1729/1844] Compiling Vapor Range.swift
[1730/1844] Compiling Vapor URL.swift
[1731/1844] Compiling Vapor Valid.swift
[1732/1844] Compiling Vapor Application+Views.swift
[1733/1844] Compiling Vapor PlaintextRenderer.swift
[1734/1844] Compiling Vapor Request+View.swift
[1735/1844] Compiling Vapor View.swift
[1736/1844] Compiling Vapor ViewRenderer.swift
[1737/1844] Compiling Vapor _Deprecations.swift
[1738/1844] Compiling Vapor Service.swift
[1739/1844] Compiling Vapor Application+Sessions.swift
[1740/1844] Compiling Vapor MemorySessions.swift
[1741/1844] Compiling Vapor Request+Session.swift
[1742/1844] Compiling Vapor Session.swift
[1743/1844] Compiling Vapor SessionCache.swift
[1744/1844] Compiling Vapor SessionData.swift
[1745/1844] Compiling Vapor SessionDriver.swift
[1746/1844] Compiling Vapor SessionsConfiguration.swift
[1747/1844] Compiling Vapor SessionsMiddleware.swift
[1748/1844] Compiling Vapor URLEncodedFormData.swift
[1749/1844] Compiling Vapor URLEncodedFormDecoder.swift
[1750/1844] Compiling Vapor URLEncodedFormEncoder.swift
[1751/1844] Compiling Vapor URLEncodedFormError.swift
[1752/1844] Compiling Vapor URLEncodedFormParser.swift
[1753/1844] Compiling Vapor URLEncodedFormSerializer.swift
[1754/1844] Compiling Vapor URLQueryFragmentConvertible.swift
[1755/1844] Compiling Vapor AnyResponse.swift
[1756/1844] Compiling Vapor Array+Random.swift
[1757/1844] Compiling Vapor Base32.swift
[1758/1844] Compiling Vapor Base64.swift
[1759/1844] Compiling Vapor BaseN.swift
[1760/1844] Compiling Vapor BasicCodingKey.swift
[1761/1844] Compiling Vapor ByteCount.swift
[1762/1844] Compiling Vapor AsyncBasicResponder.swift
[1763/1844] Compiling Vapor AsyncMiddleware.swift
[1764/1844] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[1765/1844] Compiling Vapor AsyncSessionDriver.swift
[1766/1844] Compiling Vapor Authentication+Concurrency.swift
[1767/1844] Compiling Vapor Cache+Concurrency.swift
[1768/1844] Compiling Vapor Client+Concurrency.swift
[1769/1844] Compiling Vapor RequestBody+Concurrency.swift
[1770/1844] Compiling Vapor Responder+Concurrency.swift
[1771/1844] Compiling Vapor ResponseCodable+Concurrency.swift
[1772/1844] Compiling Vapor RoutesBuilder+Concurrency.swift
[1773/1844] Compiling Vapor ViewRenderer+Concurrency.swift
[1774/1844] Compiling Vapor WebSocket+Concurrency.swift
[1775/1844] Compiling Vapor ContainerGetPathExecutor.swift
[1776/1844] Compiling Vapor Content.swift
[1777/1844] Compiling Vapor ContentCoders.swift
[1778/1844] Compiling Vapor ContentConfiguration.swift
[1779/1844] Compiling Vapor ContentContainer.swift
[1780/1844] Compiling Vapor JSONCoder+Custom.swift
[1781/1844] Compiling Vapor JSONCoders+Content.swift
[1782/1844] Compiling Vapor PlaintextDecoder.swift
[1783/1844] Compiling Vapor PlaintextEncoder.swift
[1784/1844] Compiling Vapor URLQueryCoders.swift
[1785/1844] Compiling Vapor URLQueryContainer.swift
[1786/1844] Emitting module Vapor
[1787/1844] Compiling Vapor Bytes+Hex.swift
[1788/1844] Compiling Vapor Bytes+SecureCompare.swift
[1789/1844] Compiling Vapor Collection+Safe.swift
[1790/1844] Compiling Vapor DataProtocol+Copy.swift
[1791/1844] Compiling Vapor DecoderUnwrapper.swift
[1792/1844] Compiling Vapor DirectoryConfiguration.swift
[1793/1844] Compiling Vapor DotEnv.swift
[1794/1844] Compiling Vapor Extendable.swift
[1795/1844] Compiling Vapor File.swift
[1796/1844] Compiling Vapor FileIO.swift
[1797/1844] Compiling Vapor LifecycleHandler.swift
[1798/1844] Compiling Vapor OptionalType.swift
[1799/1844] Compiling Vapor RFC1123.swift
[1800/1844] Compiling Vapor SocketAddress+Hostname.swift
[1801/1844] Compiling Vapor Storage.swift
[1802/1844] Compiling Vapor String+IsIPAddress.swift
[1803/1844] Compiling Vapor Thread.swift
[1804/1844] Compiling Vapor URI.swift
[1805/1844] Compiling Vapor RangeResult.swift
[1806/1844] Compiling Vapor Validatable.swift
[1807/1844] Compiling Vapor Validation.swift
[1808/1844] Compiling Vapor ValidationKey.swift
[1809/1844] Compiling Vapor Validations.swift
[1810/1844] Compiling Vapor ValidationsError.swift
[1811/1844] Compiling Vapor HTTPStatus.swift
[1812/1844] Compiling Vapor HTTPCookies.swift
[1813/1844] Compiling Vapor HTTPHeaderCacheControl.swift
[1814/1844] Compiling Vapor HTTPHeaderExpires.swift
[1815/1844] Compiling Vapor HTTPHeaderLastModified.swift
[1816/1844] Compiling Vapor HTTPHeaders+Cache.swift
[1817/1844] Compiling Vapor HTTPHeaders+Connection.swift
[1818/1844] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[1819/1844] Compiling Vapor HTTPHeaders+ContentRange.swift
[1820/1844] Compiling Vapor HTTPHeaders+Directive.swift
[1821/1844] Compiling Vapor HTTPHeaders+Forwarded.swift
[1822/1844] Compiling Vapor HTTPHeaders+Link.swift
[1823/1844] Compiling Vapor HTTPHeaders+Name.swift
[1824/1844] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[1825/1844] Compiling Vapor HTTPHeaders.swift
[1826/1844] Compiling Vapor HTTPMediaType.swift
[1827/1844] Compiling Vapor HTTPMediaTypePreference.swift
[1828/1844] Compiling Vapor Responder.swift
[1829/1844] Compiling Vapor Application+HTTP+Server.swift
[1830/1844] Compiling Vapor HTTPServer.swift
[1831/1844] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[1832/1844] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[1833/1844] Compiling Vapor HTTPServerHandler.swift
[1834/1844] Compiling Vapor HTTPServerRequestDecoder.swift
[1835/1845] Wrapping AST for Vapor for debugging
[1837/1891] Compiling Leaf LeafRenderer+ViewRenderer.swift
[1838/1891] Compiling Leaf Request+Leaf.swift
[1839/1892] Compiling VaporSecurityHeaders ContentSecurityPolicyConfiguration.swift
[1840/1892] Compiling VaporSecurityHeaders ContentSecurityPolicyReportOnlyConfiguration.swift
[1841/1894] Compiling VaporSecurityHeaders XSSProtectionConfiguration.swift
[1842/1894] Compiling VaporSecurityHeaders SecurityHeaderConfiguration.swift
[1843/1895] Compiling VaporSecurityHeaders HTTPSRedirectMiddleware.swift
[1844/1895] Compiling VaporSecurityHeaders ReferrerPolicyConfiguration.swift
[1845/1896] Compiling VaporSecurityHeaders SecurityHeaders+HeaderKey.swift
[1846/1896] Compiling VaporSecurityHeaders SecurityHeaders.swift
[1847/1896] Compiling Leaf LeafEncoder.swift
[1848/1896] Compiling Leaf LeafError+AbortError.swift
[1853/1896] Compiling Redis RedisConfiguration.swift
[1854/1896] Compiling Leaf Exports.swift
[1855/1896] Compiling Leaf Application+Leaf.swift
[1856/1896] Emitting module Leaf
[1857/1896] Emitting module Redis
[1858/1896] Compiling VaporSecurityHeaders ContentTypeOptionsConfiguration.swift
[1859/1896] Compiling VaporSecurityHeaders FrameOptionsConfiguration.swift
[1860/1897] Compiling VaporSecurityHeaders ServerConfiguration.swift
[1861/1897] Compiling VaporSecurityHeaders StrictTransportSecurityConfiguration.swift
[1864/1897] Emitting module Fluent
[1872/1897] Compiling Fluent FluentProvider.swift
[1873/1897] Compiling Fluent MigrateCommand.swift
[1874/1897] Compiling Fluent ModelAuthenticatable.swift
[1875/1897] Compiling Fluent ModelCredentialsAuthenticatable.swift
[1876/1897] Compiling Redis Request+Redis.swift
[1877/1897] Compiling VaporSecurityHeaders SecurityHeadersFactory.swift
[1878/1897] Emitting module VaporSecurityHeaders
[1881/1897] Compiling Redis RedisStorage.swift
[1882/1897] Compiling Redis RedisID.swift
[1883/1899] Compiling Fluent ModelTokenAuthenticatable.swift
[1884/1899] Compiling Fluent PageLimit.swift
[1892/1899] Emitting module CSRF
[1893/1899] Compiling CSRF CSRFFormFieldTag.swift
[1894/1899] Compiling CSRF CSRF.swift
[1896/1964] Compiling App ApplicationError.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1897/1964] Compiling App InitialDataProvider.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1898/1964] Compiling App EncodableWrapper.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1899/1964] Compiling App PageResponse.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1900/1964] Compiling App ResponseContent.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1901/1964] Compiling App ImageNameGenerator.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1902/1964] Compiling App StupidPasswordHasher.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1903/1964] Compiling App CSRFViewDecorator.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1904/1964] Compiling App FileRepository.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1905/1964] Compiling App ImageRepository.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
4 | final class CSRFViewDecorator: ViewDecorator {
5 | func decodate(context: Encodable, for request: Request) -> Encodable {
6 | let token = CSRF().createToken(from: request)
| `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
7 | return context.add("csrfToken", token)
8 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 | func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 | return fileio.collectFile(at: filePathInThemeDir(name: path))
| `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 | .map { buffer in
52 | buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1906/1973] Emitting module App
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | struct PageResponse<T: Codable>: ResponseContent {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
5 |
6 | let items: [T]
| `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
7 | let metadata: Metadata
8 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1907/1973] Compiling App AuthErrorMiddleware.swift
[1908/1973] Compiling App MessageDeliveryMiddleware.swift
[1909/1973] Compiling App PublicFileMiddleware.swift
[1910/1973] Compiling App EditableFile.swift
[1911/1973] Compiling App ImageGroup.swift
[1912/1973] Compiling App Theme.swift
[1913/1973] Compiling App CategoryForm.swift
[1914/1973] Compiling App DestoryItemForm.swift
[1915/1973] Compiling App EditableFileForm.swift
[1916/1973] Compiling App AdminRoutes.swift
[1917/1973] Compiling App PublicRoutes.swift
[1918/1973] Compiling App AdminMenuType.swift
[1919/1973] Compiling App AdminViewContext.swift
[1920/1973] Compiling App FormError.swift
[1921/1973] Compiling App PublicViewContext.swift
[1922/1973] Compiling App LeafTags.swift
[1923/1973] Compiling App configure.swift
[1924/1973] Compiling App routes.swift
[1925/1973] Compiling App API+FileController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1926/1973] Compiling App API+ImageController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1927/1973] Compiling App API+ThemeController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1928/1973] Compiling App APINameSpace.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1929/1973] Compiling App AdminCategoryController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1930/1973] Compiling App AdminImageController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1931/1973] Compiling App AdminPostController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1932/1973] Compiling App AdminSiteInfoController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1933/1973] Compiling App AdminTagController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 | newImage.save(on: tx)
30 | .flatMapThrowing {
31 | try repository.save(image: form.data, for: imageFileName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 | }
33 | }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
67 | image.save(on: tx)
68 | .flatMapThrowing {
69 | try repository.rename(from: beforeName, to: afterName)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
70 | }
71 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
92 | image.delete(on: tx)
93 | .flatMapThrowing {
94 | try repository.delete(at: name)
| `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
95 | }
96 | }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
2 | import Vapor
3 |
4 | protocol ImageRepository {
| `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
5 |
6 | func isExist(at name: String) -> Bool
[1934/1973] Compiling App EditableFileUpdateForm.swift
[1935/1973] Compiling App ImageForm.swift
[1936/1973] Compiling App ImageUploadForm.swift
[1937/1973] Compiling App LoginForm.swift
[1938/1973] Compiling App PostForm.swift
[1939/1973] Compiling App Form.swift
[1940/1973] Compiling App SiteInfoForm.swift
[1941/1973] Compiling App TagForm.swift
[1942/1973] Compiling App ThemeForm.swift
[1943/1973] Compiling App AdminThemeController.swift
[1944/1973] Compiling App AdminUserController.swift
[1945/1973] Compiling App LoginController.swift
[1946/1973] Compiling App LogoutController.swift
[1947/1973] Compiling App PostController.swift
[1948/1973] Compiling App Array+Util.swift
[1949/1973] Compiling App FileManager+Util.swift
[1950/1973] Compiling App String+Markdown.swift
[1951/1973] Compiling App String+Util.swift
[1952/1973] Compiling App TwitterRepository.swift
[1953/1973] Compiling App LeafDataEncoder.swift
[1954/1973] Compiling App ViewCreator.swift
[1955/1973] Compiling App ViewDecorator.swift
[1956/1973] Compiling App ConfigJSONLoader.swift
[1957/1973] Compiling App ApplicationConfig.swift
[1958/1973] Compiling App CSPConfig.swift
[1959/1973] Compiling App FileConfig.swift
[1960/1973] Compiling App MySQLDatabaseConfig.swift
[1961/1973] Compiling App UserForm.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1962/1973] Compiling App Category.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1963/1973] Compiling App Image.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1964/1973] Compiling App Post.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1965/1973] Compiling App PostTag.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1966/1973] Compiling App SiteInfo.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1967/1973] Compiling App Tag.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1968/1973] Compiling App User.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
[1969/1973] Compiling App APIRoutes.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
8 |
9 | @ID(custom: .id)
10 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
11 |
12 | @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 | func publicAll() -> Self {
137 | return filter(\.$isPublished == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
138 | }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 | func noStaticAll() -> Self {
141 | return filter(\.$isStatic == .sql(raw: "0"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
142 | }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 | func staticAll() -> Self {
145 | return filter(\.$isStatic == .sql(raw: "1"))
| |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
| `- note: use 'sql(unsafeRaw:)' instead
146 | }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
7 |
8 | @ID(custom: .id)
9 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
10 |
11 | @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
9 |
10 | @ID(custom: .id)
11 | var id: Int?
| `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
12 |
13 | @Field(key: "name")
BUILD FAILURE 6.1 linux