Skip to content

Commit

Permalink
Update dependencies (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
atdrendel committed Aug 28, 2023
1 parent 2fa1462 commit f409dca
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: CI
on: push

jobs:
library:
runs-on: macos-latest
test:
runs-on: macos-13

steps:
- uses: actions/checkout@v3
- name: Select Xcode 14
run: sudo xcode-select -s /Applications/Xcode_14.3.app
run: sudo xcode-select -s /Applications/Xcode_14.3.1.app
- name: Test
run: swift test
29 changes: 19 additions & 10 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/shareup/async-extensions.git",
"state" : {
"revision" : "59504194f84b8c66a27503b5fd0640ac9b01f42a",
"version" : "4.1.0"
"revision" : "f8dec7a227bbbe15fd4df90c787d4c73e91451ba",
"version" : "4.2.1"
}
},
{
Expand Down Expand Up @@ -41,26 +41,35 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio.git",
"state" : {
"revision" : "9b2848d76f5caad08b97e71a04345aa5bdb23a06",
"version" : "2.49.0"
"revision" : "cf281631ff10ec6111f2761052aa81896a83a007",
"version" : "2.58.0"
}
},
{
"identity" : "swift-nio-extras",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio-extras.git",
"state" : {
"revision" : "0e0d0aab665ff1a0659ce75ac003081f2b1c8997",
"version" : "1.19.0"
}
},
{
"identity" : "swift-nio-ssl",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio-ssl.git",
"state" : {
"revision" : "4fb7ead803e38949eb1d6fabb849206a72c580f3",
"version" : "2.23.0"
"revision" : "320bd978cceb8e88c125dcbb774943a92f6286e9",
"version" : "2.25.0"
}
},
{
"identity" : "swift-nio-transport-services",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio-transport-services.git",
"state" : {
"revision" : "c0d9a144cfaec8d3d596aadde3039286a266c15c",
"version" : "1.15.0"
"revision" : "e7403c35ca6bb539a7ca353b91cc2d8ec0362d58",
"version" : "1.19.0"
}
},
{
Expand All @@ -77,8 +86,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/vapor/websocket-kit.git",
"state" : {
"revision" : "2b8885974e8d9f522e787805000553f4f7cce8a0",
"version" : "2.7.0"
"revision" : "53fe0639a98903858d0196b699720decb42aee7b",
"version" : "2.14.0"
}
}
],
Expand Down
7 changes: 4 additions & 3 deletions Sources/WebSocket/SystemWebSocket.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import AsyncExtensions
import os.log
import Synchronized

private typealias OpenFuture = AsyncExtensions.Future<Void>
private typealias OpenFuture = AsyncThrowingFuture<Void>

private typealias CloseFuture =
AsyncExtensions.Future<(code: WebSocketCloseCode, reason: Data?)>
private typealias CloseFuture = AsyncThrowingFuture<
(code: WebSocketCloseCode, reason: Data?)
>

final actor SystemWebSocket: Publisher {
typealias Output = WebSocketMessage
Expand Down

0 comments on commit f409dca

Please sign in to comment.