Skip to content

Commit bd5419f

Browse files
authored
Merge pull request #149 from NeedleInAJayStack/chore/swift-6
2 parents 7fc8b83 + 52088aa commit bd5419f

File tree

9 files changed

+13
-56
lines changed

9 files changed

+13
-56
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-22.04
7070
strategy:
7171
matrix:
72-
swift: ["5.8", "5.9", "5.10"]
72+
swift: ["5.8", "5.9", "5.10", "6.0"]
7373
steps:
7474
- uses: swift-actions/setup-swift@v2
7575
with:

Sources/GraphQL/Execution/Execute.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ func completeValue(
919919
}
920920
}
921921

922-
return result.flatMap(to: Any?.self) { result -> Future<Any?> in
922+
return result.tryFlatMap { result throws -> Future<Any?> in
923923
// If result value is null-ish (nil or .null) then return .null.
924924
guard let result = result, let r = unwrap(result) else {
925925
return exeContext.eventLoopGroup.next().makeSucceededFuture(nil)

Sources/GraphQL/Execution/Values.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func getVariableValue(
8888
definitionAST: VariableDefinition,
8989
input: Map
9090
) throws -> Map {
91-
var type = typeFromAST(schema: schema, inputTypeAST: definitionAST.type)
91+
let type = typeFromAST(schema: schema, inputTypeAST: definitionAST.type)
9292
let variable = definitionAST.variable
9393

9494
guard let inputType = type as? GraphQLInputType else {

Sources/GraphQL/GraphQL.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import NIO
22

3-
public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
3+
public struct GraphQLResult: Equatable, Codable, Sendable, CustomStringConvertible {
44
public var data: Map?
55
public var errors: [GraphQLError]
66

Sources/GraphQL/Map/Map.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public enum MapError: Error {
1111

1212
// MARK: Map
1313

14-
public enum Map {
14+
public enum Map: Sendable {
1515
case undefined
1616
case null
1717
case bool(Bool)
@@ -600,7 +600,7 @@ public extension Map {
600600
}
601601
}
602602

603-
extension String: CodingKey {
603+
extension Swift.String: Swift.CodingKey {
604604
public var stringValue: String {
605605
return self
606606
}

Sources/GraphQL/Map/Number.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import Foundation
1+
@preconcurrency import Foundation
22

3-
public struct Number {
4-
public enum StorageType {
3+
public struct Number: Sendable {
4+
public enum StorageType: Sendable {
55
case bool
66
case int
77
case double

Sources/GraphQL/Utilities/NIO+Extensions.swift

+2-36
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,6 @@ public extension Collection {
1717
}
1818
}
1919

20-
extension Collection {
21-
func flatMap<S, T>(
22-
to _: T.Type,
23-
on eventLoopGroup: EventLoopGroup,
24-
_ callback: @escaping ([S]) throws -> Future<T>
25-
) -> Future<T> where Element == Future<S> {
26-
return flatten(on: eventLoopGroup).flatMap(to: T.self, callback)
27-
}
28-
}
29-
3020
extension Dictionary where Value: FutureType {
3121
func flatten(on eventLoopGroup: EventLoopGroup) -> Future<[Key: Value.Expectation]> {
3222
// create array of futures with (key,value) tuple
@@ -63,34 +53,10 @@ extension OrderedDictionary where Value: FutureType {
6353
}
6454
}
6555

66-
extension Future {
67-
func flatMap<T>(
68-
to _: T.Type = T.self,
69-
_ callback: @escaping (Expectation) throws -> Future<T>
70-
) -> Future<T> {
71-
let promise = eventLoop.makePromise(of: T.self)
72-
73-
whenSuccess { expectation in
74-
do {
75-
let mapped = try callback(expectation)
76-
mapped.cascade(to: promise)
77-
} catch {
78-
promise.fail(error)
79-
}
80-
}
81-
82-
whenFailure { error in
83-
promise.fail(error)
84-
}
85-
86-
return promise.futureResult
87-
}
88-
}
89-
9056
public protocol FutureType {
9157
associatedtype Expectation
92-
func whenSuccess(_ callback: @escaping (Expectation) -> Void)
93-
func whenFailure(_ callback: @escaping (Error) -> Void)
58+
func whenSuccess(_ callback: @escaping @Sendable (Expectation) -> Void)
59+
func whenFailure(_ callback: @escaping @Sendable (Error) -> Void)
9460
func map<NewValue>(
9561
file: StaticString,
9662
line: UInt,

Tests/GraphQLTests/LanguageTests/LexerTests.swift

-9
Original file line numberDiff line numberDiff line change
@@ -214,15 +214,6 @@ class LexerTests: XCTestCase {
214214
XCTAssertEqual(token, expected)
215215
}
216216

217-
func testLongStrings() throws {
218-
measure {
219-
let token = try! lexOne("\"\(String(repeating: "123456", count: 10000))\"")
220-
221-
XCTAssertEqual(token.start, 0)
222-
XCTAssertEqual(token.end, 60002)
223-
}
224-
}
225-
226217
func testStringErrors() throws {
227218
XCTAssertThrowsError(try lexOne("\""))
228219
// "Syntax Error GraphQL (1:2) Unterminated string"

Tests/GraphQLTests/SubscriptionTests/SubscriptionTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ class SubscriptionTests: XCTestCase {
2828
}
2929
"""
3030

31-
let subscriptionResult = try graphqlSubscribe(
31+
let subscriptionResult = try await graphqlSubscribe(
3232
schema: schema,
3333
request: query,
3434
eventLoopGroup: eventLoopGroup
35-
).wait()
35+
).get()
3636
guard let subscription = subscriptionResult.stream else {
3737
XCTFail(subscriptionResult.errors.description)
3838
return

0 commit comments

Comments
 (0)