diff --git a/Package.swift b/Package.swift index c062e88..97d6ada 100644 --- a/Package.swift +++ b/Package.swift @@ -97,9 +97,9 @@ let package = Package( .package(url: "https://github.com/apple/swift-certificates.git", from: "1.19.3"), .package(url: "https://github.com/apple/swift-log.git", from: "1.14.0"), .package(url: "https://github.com/apple/swift-nio.git", from: "2.101.3"), - .package(url: "https://github.com/apple/swift-nio-quic.git", .upToNextMinor(from: "0.1.0")), + .package(url: "https://github.com/apple/swift-nio-quic.git", .upToNextMinor(from: "0.2.1")), .package(url: "https://github.com/apple/swift-nio-quic-helpers.git", .upToNextMinor(from: "0.1.0")), - .package(url: "https://github.com/apple/swift-nio-http3.git", .upToNextMinor(from: "0.1.0")), + .package(url: "https://github.com/apple/swift-nio-http3.git", .upToNextMinor(from: "0.2.0")), .package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.37.0"), .package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.34.1"), .package(url: "https://github.com/apple/swift-nio-http2.git", from: "1.44.0"), diff --git a/Tests/NIOHTTPServerTests/Utilities/NIOClient/NIOClient+HTTP3.swift b/Tests/NIOHTTPServerTests/Utilities/NIOClient/NIOClient+HTTP3.swift index bb00b18..112b86c 100644 --- a/Tests/NIOHTTPServerTests/Utilities/NIOClient/NIOClient+HTTP3.swift +++ b/Tests/NIOHTTPServerTests/Utilities/NIOClient/NIOClient+HTTP3.swift @@ -44,7 +44,9 @@ struct QUICConnectionCreator: HTTP3ConnectionCreator { } }, inboundStreamInitializer: self.inboundStreamInitializer - ) + ).map { connectionChannel, _ in + connectionChannel + } } }