Build Information
Successful build of swift-http-structured-headers, reference 1.1.0 (8cc27e
), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 19:03:20 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
========================================
RunAll
========================================
Builder version: 4.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apple/swift-http-structured-headers.git
Reference: 1.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/apple/swift-http-structured-headers
* tag 1.1.0 -> FETCH_HEAD
HEAD is now at 8cc27e2 Correct the link of sswg-security at SECURITY.md (#39)
Cloned https://github.com/apple/swift-http-structured-headers.git
Revision (git rev-parse @):
8cc27e208a4430d5b727fbe0bbb8b832249043b4
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/apple/swift-http-structured-headers.git at 1.1.0
Fetching https://github.com/apple/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.31s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (3.77s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3178] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.24s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.71s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "swift-http-structured-headers",
"name": "swift-http-structured-headers",
"url": "https://github.com/apple/swift-http-structured-headers.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-http-structured-headers",
"dependencies": [
]
}
]
}
Fetching https://github.com/apple/swift-http-structured-headers.git
[17/840] Fetching swift-http-structured-headers
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.87s)
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.1.0 (8cc27e2)
warning: '.resolve-product-dependencies': dependency 'swift-http-structured-headers' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/apple/swift-http-structured-headers.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/10] Write sources
[5/10] Write sh-parser-entitlement.plist
[6/10] Write swift-version--7754E27361AE5C74.txt
[8/18] Compiling RawStructuredFieldValues OrderedMap.swift
[9/18] Compiling RawStructuredFieldValues Errors.swift
[10/18] Emitting module RawStructuredFieldValues
[11/18] Compiling RawStructuredFieldValues FieldSerializer.swift
[12/18] Compiling RawStructuredFieldValues FieldParser.swift
[13/18] Compiling RawStructuredFieldValues PseudoDecimal.swift
[14/18] Compiling RawStructuredFieldValues ASCII.swift
[15/18] Compiling RawStructuredFieldValues ComponentTypes.swift
[16/34] Compiling StructuredFieldValues StructuredHeaderCodingKey.swift
[17/35] Compiling StructuredFieldValues StructuredFieldValue.swift
[18/35] Compiling sh_parser main.swift
[19/35] Emitting module sh_parser
[19/35] Write Objects.LinkFileList
[21/35] Compiling StructuredFieldValues BareInnerListDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:100:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
98 | }
99 |
100 | func decode(_: Data.Type) throws -> Data {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Data.Type) throws -> Data'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
101 | guard case .undecodedByteSequence(let data) = self.item else {
102 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 | func decode(_ type: Int64.Type) throws -> Int64
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | func decode(_ type: Int128.Type) throws -> Int128
| `- note: requirement 'decode' declared here
15 | func decode(_ type: UInt.Type) throws -> UInt
16 | func decode(_ type: UInt8.Type) throws -> UInt8
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:112:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
110 | }
111 |
112 | func decode(_: Decimal.Type) throws -> Decimal {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Decimal.Type) throws -> Decimal'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
113 | guard case .decimal(let pseudoDecimal) = self.item else {
114 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:21:10: note: requirement 'decode' declared here
19 | func decode(_ type: UInt64.Type) throws -> UInt64
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | func decode(_ type: UInt128.Type) throws -> UInt128
| `- note: requirement 'decode' declared here
22 | func decode<T>(_ type: T.Type) throws -> T where T : Decodable
23 | }
[22/35] Compiling StructuredFieldValues BareItemDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:100:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
98 | }
99 |
100 | func decode(_: Data.Type) throws -> Data {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Data.Type) throws -> Data'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
101 | guard case .undecodedByteSequence(let data) = self.item else {
102 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 | func decode(_ type: Int64.Type) throws -> Int64
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | func decode(_ type: Int128.Type) throws -> Int128
| `- note: requirement 'decode' declared here
15 | func decode(_ type: UInt.Type) throws -> UInt
16 | func decode(_ type: UInt8.Type) throws -> UInt8
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:112:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
110 | }
111 |
112 | func decode(_: Decimal.Type) throws -> Decimal {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Decimal.Type) throws -> Decimal'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
113 | guard case .decimal(let pseudoDecimal) = self.item else {
114 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:21:10: note: requirement 'decode' declared here
19 | func decode(_ type: UInt64.Type) throws -> UInt64
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | func decode(_ type: UInt128.Type) throws -> UInt128
| `- note: requirement 'decode' declared here
22 | func decode<T>(_ type: T.Type) throws -> T where T : Decodable
23 | }
[23/35] Compiling StructuredFieldValues DictionaryKeyedContainer.swift
[24/35] Compiling StructuredFieldValues KeyedInnerListDecoder.swift
[25/35] Compiling StructuredFieldValues ParametersDecoder.swift
[26/35] Compiling StructuredFieldValues StructuredFieldValueDecoder.swift
[27/35] Emitting module StructuredFieldValues
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:100:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
98 | }
99 |
100 | func decode(_: Data.Type) throws -> Data {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Data.Type) throws -> Data'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
101 | guard case .undecodedByteSequence(let data) = self.item else {
102 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 | func decode(_ type: Int64.Type) throws -> Int64
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | func decode(_ type: Int128.Type) throws -> Int128
| `- note: requirement 'decode' declared here
15 | func decode(_ type: UInt.Type) throws -> UInt
16 | func decode(_ type: UInt8.Type) throws -> UInt8
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:112:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
110 | }
111 |
112 | func decode(_: Decimal.Type) throws -> Decimal {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Decimal.Type) throws -> Decimal'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
113 | guard case .decimal(let pseudoDecimal) = self.item else {
114 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:21:10: note: requirement 'decode' declared here
19 | func decode(_ type: UInt64.Type) throws -> UInt64
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | func decode(_ type: UInt128.Type) throws -> UInt128
| `- note: requirement 'decode' declared here
22 | func decode<T>(_ type: T.Type) throws -> T where T : Decodable
23 | }
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Encoder/StructuredFieldValueEncoder.swift:278:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
276 | }
277 |
278 | func encode(_ data: Data) throws {
| |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
| |- note: candidate has non-matching type '(Data) throws -> ()'
| |- note: move 'encode' to another extension to silence this warning
| `- note: make 'encode' private to silence this warning
279 | let encoded = data.base64EncodedString()
280 | try self.currentStackEntry.storage.insertBareItem(.undecodedByteSequence(encoded))
Swift.SingleValueEncodingContainer:14:19: note: requirement 'encode' declared here
12 | mutating func encode(_ value: Int64) throws
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | mutating func encode(_ value: Int128) throws
| `- note: requirement 'encode' declared here
15 | mutating func encode(_ value: UInt) throws
16 | mutating func encode(_ value: UInt8) throws
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Encoder/StructuredFieldValueEncoder.swift:283:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
281 | }
282 |
283 | func encode(_ data: Decimal) throws {
| |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
| |- note: candidate has non-matching type '(Decimal) throws -> ()'
| |- note: move 'encode' to another extension to silence this warning
| `- note: make 'encode' private to silence this warning
284 | let significand = (data.significand.magnitude as NSNumber).intValue // Yes, really.
285 | guard let exponent = Int8(exactly: data.exponent) else {
Swift.SingleValueEncodingContainer:21:19: note: requirement 'encode' declared here
19 | mutating func encode(_ value: UInt64) throws
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | mutating func encode(_ value: UInt128) throws
| `- note: requirement 'encode' declared here
22 | mutating func encode<T>(_ value: T) throws where T : Encodable
23 | }
[28/35] Compiling StructuredFieldValues KeyedItemDecoder.swift
[29/35] Compiling StructuredFieldValues KeyedTopLevelListDecoder.swift
[30/35] Compiling StructuredFieldValues StructuredFieldUnkeyedEncodingContainer.swift
[31/35] Compiling StructuredFieldValues TopLevelListDecoder.swift
[32/35] Compiling StructuredFieldValues StructuredFieldKeyedEncodingContainer.swift
[33/35] Compiling StructuredFieldValues StructuredFieldValueEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Encoder/StructuredFieldValueEncoder.swift:278:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
276 | }
277 |
278 | func encode(_ data: Data) throws {
| |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
| |- note: candidate has non-matching type '(Data) throws -> ()'
| |- note: move 'encode' to another extension to silence this warning
| `- note: make 'encode' private to silence this warning
279 | let encoded = data.base64EncodedString()
280 | try self.currentStackEntry.storage.insertBareItem(.undecodedByteSequence(encoded))
Swift.SingleValueEncodingContainer:14:19: note: requirement 'encode' declared here
12 | mutating func encode(_ value: Int64) throws
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | mutating func encode(_ value: Int128) throws
| `- note: requirement 'encode' declared here
15 | mutating func encode(_ value: UInt) throws
16 | mutating func encode(_ value: UInt8) throws
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Encoder/StructuredFieldValueEncoder.swift:283:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
281 | }
282 |
283 | func encode(_ data: Decimal) throws {
| |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
| |- note: candidate has non-matching type '(Decimal) throws -> ()'
| |- note: move 'encode' to another extension to silence this warning
| `- note: make 'encode' private to silence this warning
284 | let significand = (data.significand.magnitude as NSNumber).intValue // Yes, really.
285 | guard let exponent = Int8(exactly: data.exponent) else {
Swift.SingleValueEncodingContainer:21:19: note: requirement 'encode' declared here
19 | mutating func encode(_ value: UInt64) throws
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | mutating func encode(_ value: UInt128) throws
| `- note: requirement 'encode' declared here
22 | mutating func encode<T>(_ value: T) throws where T : Encodable
23 | }
[33/35] Linking sh-parser
[34/35] Applying sh-parser
Build complete! (24.15s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "swift-http-structured-headers",
"name" : "swift-http-structured-headers",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "StructuredFieldValues",
"targets" : [
"StructuredFieldValues"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "RawStructuredFieldValues",
"targets" : [
"RawStructuredFieldValues"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "sh-parser",
"targets" : [
"sh-parser"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "sh_parser",
"module_type" : "SwiftTarget",
"name" : "sh-parser",
"path" : "Sources/sh-parser",
"product_memberships" : [
"sh-parser"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"RawStructuredFieldValues"
],
"type" : "executable"
},
{
"c99name" : "StructuredFieldValuesTests",
"module_type" : "SwiftTarget",
"name" : "StructuredFieldValuesTests",
"path" : "Tests/StructuredFieldValuesTests",
"sources" : [
"Base32.swift",
"Fixtures.swift",
"StructuredFieldDecoderTests.swift",
"StructuredFieldEncoderTests.swift",
"StructuredFieldParserTests.swift",
"StructuredFieldSerializerTests.swift"
],
"target_dependencies" : [
"RawStructuredFieldValues",
"StructuredFieldValues"
],
"type" : "test"
},
{
"c99name" : "StructuredFieldValues",
"module_type" : "SwiftTarget",
"name" : "StructuredFieldValues",
"path" : "Sources/StructuredFieldValues",
"product_memberships" : [
"StructuredFieldValues"
],
"sources" : [
"Decoder/BareInnerListDecoder.swift",
"Decoder/BareItemDecoder.swift",
"Decoder/DictionaryKeyedContainer.swift",
"Decoder/KeyedInnerListDecoder.swift",
"Decoder/KeyedItemDecoder.swift",
"Decoder/KeyedTopLevelListDecoder.swift",
"Decoder/ParametersDecoder.swift",
"Decoder/StructuredFieldValueDecoder.swift",
"Decoder/StructuredHeaderCodingKey.swift",
"Decoder/TopLevelListDecoder.swift",
"Encoder/StructuredFieldKeyedEncodingContainer.swift",
"Encoder/StructuredFieldUnkeyedEncodingContainer.swift",
"Encoder/StructuredFieldValueEncoder.swift",
"StructuredFieldValue.swift"
],
"target_dependencies" : [
"RawStructuredFieldValues"
],
"type" : "library"
},
{
"c99name" : "RawStructuredFieldValues",
"module_type" : "SwiftTarget",
"name" : "RawStructuredFieldValues",
"path" : "Sources/RawStructuredFieldValues",
"product_memberships" : [
"StructuredFieldValues",
"RawStructuredFieldValues",
"sh-parser"
],
"sources" : [
"ASCII.swift",
"ComponentTypes.swift",
"Errors.swift",
"FieldParser.swift",
"FieldSerializer.swift",
"OrderedMap.swift",
"PseudoDecimal.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/apple/swift-http-structured-headers/1.1.0
Repository: apple/swift-http-structured-headers
Swift version used: 6.0
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
Target: RawStructuredFieldValues
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'RawStructuredFieldValues'...
Finished extracting symbol information for 'RawStructuredFieldValues'. (1.63s)
Building documentation for 'RawStructuredFieldValues'...
warning: Parameter 'root' not found in instance method declaration
--> ../FieldSerializer.swift:48:13-48:37
46 | ///
47 | /// - parameters:
48 + /// - root: The list object.
| ╰─suggestion: Remove 'root' parameter documentation
49 | /// - throws: If the list could not be serialized.
50 | /// - returns: The bytes of the serialized header field value.
warning: Parameter 'list' is missing documentation
--> ../FieldSerializer.swift:48:37-48:37
46 | ///
47 | /// - parameters:
48 + /// - root: The list object.
| ╰─suggestion: Document 'list' parameter
49 | /// - throws: If the list could not be serialized.
50 | /// - returns: The bytes of the serialized header field value.
warning: Parameter 'root' not found in instance method declaration
--> ../FieldSerializer.swift:66:13-66:30
64 | ///
65 | /// - parameters:
66 + /// - root: The item.
| ╰─suggestion: Remove 'root' parameter documentation
67 | /// - throws: If the item could not be serialized.
68 | /// - returns: The bytes of the serialized header field value.
warning: Parameter 'item' is missing documentation
--> ../FieldSerializer.swift:66:30-66:30
64 | ///
65 | /// - parameters:
66 + /// - root: The item.
| ╰─suggestion: Document 'item' parameter
67 | /// - throws: If the item could not be serialized.
68 | /// - returns: The bytes of the serialized header field value.Finished building documentation for 'RawStructuredFieldValues' (0.24s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/apple/swift-http-structured-headers/1.1.0
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit DeclarationFragments.swift
[11/57] Compiling SymbolKit Fragment.swift
[12/57] Compiling SymbolKit FragmentKind.swift
[13/57] Compiling SymbolKit FunctionParameter.swift
[14/57] Compiling SymbolKit FunctionSignature.swift
[15/57] Compiling SymbolKit Identifier.swift
[16/57] Compiling SymbolKit KindIdentifier.swift
[17/57] Compiling SymbolKit Location.swift
[18/57] Compiling SymbolKit Mutability.swift
[19/57] Compiling SymbolKit Names.swift
[20/57] Compiling SymbolKit SPI.swift
[21/57] Compiling SymbolKit Snippet.swift
[22/57] Compiling SymbolKit Extension.swift
[23/57] Compiling SymbolKit SemanticVersion.swift
[24/57] Compiling SymbolKit AccessControl.swift
[25/57] Compiling SymbolKit Availability.swift
[26/57] Compiling SymbolKit AvailabilityItem.swift
[27/57] Compiling SymbolKit Domain.swift
[28/57] Compiling SymbolKit Mixin+Equals.swift
[29/57] Compiling SymbolKit Mixin+Hash.swift
[30/57] Compiling SymbolKit Mixin.swift
[31/57] Compiling SymbolKit LineList.swift
[32/57] Compiling SymbolKit Position.swift
[33/57] Emitting module SymbolKit
[34/57] Compiling SymbolKit Relationship.swift
[35/57] Compiling SymbolKit RelationshipKind.swift
[36/57] Compiling SymbolKit SourceOrigin.swift
[37/57] Compiling SymbolKit GenericConstraints.swift
[38/57] Compiling SymbolKit Swift.swift
[39/57] Compiling SymbolKit SourceRange.swift
[40/57] Compiling SymbolKit Metadata.swift
[41/57] Compiling SymbolKit Module.swift
[42/57] Compiling SymbolKit OperatingSystem.swift
[43/57] Compiling SymbolKit Platform.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.27s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/9] Compiling RawStructuredFieldValues FieldSerializer.swift
[3/9] Compiling RawStructuredFieldValues OrderedMap.swift
[4/9] Compiling RawStructuredFieldValues PseudoDecimal.swift
[5/9] Compiling RawStructuredFieldValues Errors.swift
[6/9] Emitting module RawStructuredFieldValues
[7/9] Compiling RawStructuredFieldValues ComponentTypes.swift
[8/9] Compiling RawStructuredFieldValues ASCII.swift
[9/9] Compiling RawStructuredFieldValues FieldParser.swift
Build of target: 'RawStructuredFieldValues' complete! (0.66s)
Target: StructuredFieldValues
Extracting symbol information for 'StructuredFieldValues'...
Finished extracting symbol information for 'StructuredFieldValues'. (3.00s)
Building documentation for 'StructuredFieldValues'...
Finished building documentation for 'StructuredFieldValues' (0.06s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/apple/swift-http-structured-headers/1.1.0
Building for debugging...
[0/3] Write swift-version--7754E27361AE5C74.txt
Build of product 'snippet-extract' complete! (0.19s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/15] Compiling StructuredFieldValues StructuredFieldUnkeyedEncodingContainer.swift
[3/16] Compiling StructuredFieldValues StructuredHeaderCodingKey.swift
[4/16] Compiling StructuredFieldValues KeyedItemDecoder.swift
[5/16] Compiling StructuredFieldValues KeyedTopLevelListDecoder.swift
[6/16] Compiling StructuredFieldValues ParametersDecoder.swift
[7/16] Compiling StructuredFieldValues StructuredFieldValueDecoder.swift
[8/16] Compiling StructuredFieldValues DictionaryKeyedContainer.swift
[9/16] Compiling StructuredFieldValues KeyedInnerListDecoder.swift
[10/16] Compiling StructuredFieldValues BareInnerListDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:100:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
98 | }
99 |
100 | func decode(_: Data.Type) throws -> Data {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Data.Type) throws -> Data'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
101 | guard case .undecodedByteSequence(let data) = self.item else {
102 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 | func decode(_ type: Int64.Type) throws -> Int64
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | func decode(_ type: Int128.Type) throws -> Int128
| `- note: requirement 'decode' declared here
15 | func decode(_ type: UInt.Type) throws -> UInt
16 | func decode(_ type: UInt8.Type) throws -> UInt8
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:112:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
110 | }
111 |
112 | func decode(_: Decimal.Type) throws -> Decimal {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Decimal.Type) throws -> Decimal'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
113 | guard case .decimal(let pseudoDecimal) = self.item else {
114 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:21:10: note: requirement 'decode' declared here
19 | func decode(_ type: UInt64.Type) throws -> UInt64
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | func decode(_ type: UInt128.Type) throws -> UInt128
| `- note: requirement 'decode' declared here
22 | func decode<T>(_ type: T.Type) throws -> T where T : Decodable
23 | }
[11/16] Compiling StructuredFieldValues BareItemDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:100:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
98 | }
99 |
100 | func decode(_: Data.Type) throws -> Data {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Data.Type) throws -> Data'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
101 | guard case .undecodedByteSequence(let data) = self.item else {
102 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 | func decode(_ type: Int64.Type) throws -> Int64
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | func decode(_ type: Int128.Type) throws -> Int128
| `- note: requirement 'decode' declared here
15 | func decode(_ type: UInt.Type) throws -> UInt
16 | func decode(_ type: UInt8.Type) throws -> UInt8
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:112:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
110 | }
111 |
112 | func decode(_: Decimal.Type) throws -> Decimal {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Decimal.Type) throws -> Decimal'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
113 | guard case .decimal(let pseudoDecimal) = self.item else {
114 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:21:10: note: requirement 'decode' declared here
19 | func decode(_ type: UInt64.Type) throws -> UInt64
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | func decode(_ type: UInt128.Type) throws -> UInt128
| `- note: requirement 'decode' declared here
22 | func decode<T>(_ type: T.Type) throws -> T where T : Decodable
23 | }
[12/16] Compiling StructuredFieldValues StructuredFieldValue.swift
[13/16] Compiling StructuredFieldValues StructuredFieldKeyedEncodingContainer.swift
[14/16] Emitting module StructuredFieldValues
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:100:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
98 | }
99 |
100 | func decode(_: Data.Type) throws -> Data {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Data.Type) throws -> Data'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
101 | guard case .undecodedByteSequence(let data) = self.item else {
102 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 | func decode(_ type: Int64.Type) throws -> Int64
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | func decode(_ type: Int128.Type) throws -> Int128
| `- note: requirement 'decode' declared here
15 | func decode(_ type: UInt.Type) throws -> UInt
16 | func decode(_ type: UInt8.Type) throws -> UInt8
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Decoder/BareItemDecoder.swift:112:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
110 | }
111 |
112 | func decode(_: Decimal.Type) throws -> Decimal {
| |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
| |- note: candidate has non-matching type '(Decimal.Type) throws -> Decimal'
| |- note: move 'decode' to another extension to silence this warning
| `- note: make 'decode' private to silence this warning
113 | guard case .decimal(let pseudoDecimal) = self.item else {
114 | throw StructuredHeaderError.invalidTypeForItem
Swift.SingleValueDecodingContainer:21:10: note: requirement 'decode' declared here
19 | func decode(_ type: UInt64.Type) throws -> UInt64
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | func decode(_ type: UInt128.Type) throws -> UInt128
| `- note: requirement 'decode' declared here
22 | func decode<T>(_ type: T.Type) throws -> T where T : Decodable
23 | }
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Encoder/StructuredFieldValueEncoder.swift:278:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
276 | }
277 |
278 | func encode(_ data: Data) throws {
| |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
| |- note: candidate has non-matching type '(Data) throws -> ()'
| |- note: move 'encode' to another extension to silence this warning
| `- note: make 'encode' private to silence this warning
279 | let encoded = data.base64EncodedString()
280 | try self.currentStackEntry.storage.insertBareItem(.undecodedByteSequence(encoded))
Swift.SingleValueEncodingContainer:14:19: note: requirement 'encode' declared here
12 | mutating func encode(_ value: Int64) throws
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | mutating func encode(_ value: Int128) throws
| `- note: requirement 'encode' declared here
15 | mutating func encode(_ value: UInt) throws
16 | mutating func encode(_ value: UInt8) throws
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Encoder/StructuredFieldValueEncoder.swift:283:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
281 | }
282 |
283 | func encode(_ data: Decimal) throws {
| |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
| |- note: candidate has non-matching type '(Decimal) throws -> ()'
| |- note: move 'encode' to another extension to silence this warning
| `- note: make 'encode' private to silence this warning
284 | let significand = (data.significand.magnitude as NSNumber).intValue // Yes, really.
285 | guard let exponent = Int8(exactly: data.exponent) else {
Swift.SingleValueEncodingContainer:21:19: note: requirement 'encode' declared here
19 | mutating func encode(_ value: UInt64) throws
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | mutating func encode(_ value: UInt128) throws
| `- note: requirement 'encode' declared here
22 | mutating func encode<T>(_ value: T) throws where T : Encodable
23 | }
[15/16] Compiling StructuredFieldValues StructuredFieldValueEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Encoder/StructuredFieldValueEncoder.swift:278:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
276 | }
277 |
278 | func encode(_ data: Data) throws {
| |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
| |- note: candidate has non-matching type '(Data) throws -> ()'
| |- note: move 'encode' to another extension to silence this warning
| `- note: make 'encode' private to silence this warning
279 | let encoded = data.base64EncodedString()
280 | try self.currentStackEntry.storage.insertBareItem(.undecodedByteSequence(encoded))
Swift.SingleValueEncodingContainer:14:19: note: requirement 'encode' declared here
12 | mutating func encode(_ value: Int64) throws
13 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
14 | mutating func encode(_ value: Int128) throws
| `- note: requirement 'encode' declared here
15 | mutating func encode(_ value: UInt) throws
16 | mutating func encode(_ value: UInt8) throws
/Users/admin/builder/spi-builder-workspace/Sources/StructuredFieldValues/Encoder/StructuredFieldValueEncoder.swift:283:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
281 | }
282 |
283 | func encode(_ data: Decimal) throws {
| |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
| |- note: candidate has non-matching type '(Decimal) throws -> ()'
| |- note: move 'encode' to another extension to silence this warning
| `- note: make 'encode' private to silence this warning
284 | let significand = (data.significand.magnitude as NSNumber).intValue // Yes, really.
285 | guard let exponent = Int8(exactly: data.exponent) else {
Swift.SingleValueEncodingContainer:21:19: note: requirement 'encode' declared here
19 | mutating func encode(_ value: UInt64) throws
20 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
21 | mutating func encode(_ value: UInt128) throws
| `- note: requirement 'encode' declared here
22 | mutating func encode<T>(_ value: T) throws where T : Encodable
23 | }
[16/16] Compiling StructuredFieldValues TopLevelListDecoder.swift
Build of target: 'StructuredFieldValues' complete! (1.17s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/apple/swift-http-structured-headers/1.1.0/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/apple/swift-http-structured-headers/1.1.0/linkable-paths.json
722
6 /Users/admin/builder/spi-builder-workspace/.docs/apple/swift-http-structured-headers/1.1.0
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/apple/swift-http-structured-headers/1.1.0
File count: 722
Doc size: 6.0MB
Preparing doc bundle ...
Uploading prod-apple-swift-http-structured-headers-1.1.0-7cd2fbff.zip to s3://spi-docs-inbox/prod-apple-swift-http-structured-headers-1.1.0-7cd2fbff.zip
Copying... [11%]
Copying... [22%]
Copying... [33%]
Copying... [44%]
Copying... [55%]
Copying... [61%]
Copying... [72%]
Copying... [83%]
Copying... [94%]
Copying... [100%]
Done.