Update Swift Packages and submodules (#469)

* Update Swift Packages

* Update submodules

* make sure it builds

---------

Signed-off-by: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com>
This commit is contained in:
naturecodevoid
2023-09-17 10:45:55 -07:00
committed by GitHub
parent e3bb9b425f
commit 6e297e1278
8 changed files with 20 additions and 20 deletions

View File

@@ -14,8 +14,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/microsoft/appcenter-sdk-apple.git", "location" : "https://github.com/microsoft/appcenter-sdk-apple.git",
"state" : { "state" : {
"revision" : "8354a50fe01a7e54e196d3b5493b5ab53dd5866a", "revision" : "b2dc99cfedead0bad4e6573d86c5228c89cff332",
"version" : "4.4.2" "version" : "4.4.3"
} }
}, },
{ {
@@ -59,8 +59,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/krzyzanowskim/OpenSSL", "location" : "https://github.com/krzyzanowskim/OpenSSL",
"state" : { "state" : {
"revision" : "0c70e4b7d22411a7fe3ff59b913d5b760b735ce1", "revision" : "0faf71a188bcfdf0245cab42886b9b240ca71c52",
"version" : "1.1.2100" "version" : "1.1.2200"
} }
}, },
{ {
@@ -68,8 +68,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/microsoft/PLCrashReporter.git", "location" : "https://github.com/microsoft/PLCrashReporter.git",
"state" : { "state" : {
"revision" : "6b27393cad517c067dceea85fadf050e70c4ceaa", "revision" : "81cdec2b3827feb03286cb297f4c501a8eb98df1",
"version" : "1.10.1" "version" : "1.10.2"
} }
}, },
{ {
@@ -77,8 +77,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/SwiftPackageIndex/SemanticVersion.git", "location" : "https://github.com/SwiftPackageIndex/SemanticVersion.git",
"state" : { "state" : {
"revision" : "fc670910dc0903cc269b3d0b776cda5703979c4e", "revision" : "a70840d5fca686ae3bd2fcf8aecc5ded0bd4f125",
"version" : "0.3.5" "version" : "0.3.6"
} }
}, },
{ {
@@ -86,8 +86,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/sparkle-project/Sparkle.git", "location" : "https://github.com/sparkle-project/Sparkle.git",
"state" : { "state" : {
"revision" : "286edd1fa22505a9e54d170e9fd07d775ea233f2", "revision" : "f0ceaf5cc9f3f23daa0ccb6dcebd79fc96ccc7d9",
"version" : "2.1.0" "version" : "2.5.0"
} }
}, },
{ {
@@ -95,8 +95,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/daltoniam/Starscream.git", "location" : "https://github.com/daltoniam/Starscream.git",
"state" : { "state" : {
"revision" : "df8d82047f6654d8e4b655d1b1525c64e1059d21", "revision" : "ac6c0fc9da221873e01bd1a0d4818498a71eef33",
"version" : "4.0.4" "version" : "4.0.6"
} }
}, },
{ {

View File

@@ -218,7 +218,7 @@ final class FetchAnisetteDataOperation: ResultOperation<ALTAnisetteData>, WebSoc
self.socket.connect() self.socket.connect()
} }
func didReceive(event: WebSocketEvent, client: WebSocket) { func didReceive(event: WebSocketEvent, client: WebSocketClient) {
switch event { switch event {
case .text(let string): case .text(let string):
do { do {
@@ -429,7 +429,7 @@ final class FetchAnisetteDataOperation: ResultOperation<ALTAnisetteData>, WebSoc
} }
} }
extension WebSocket { extension WebSocketClient {
func json(_ dictionary: [String: String]) { func json(_ dictionary: [String: String]) {
let data = try! JSONSerialization.data(withJSONObject: dictionary, options: []) let data = try! JSONSerialization.data(withJSONObject: dictionary, options: [])
self.write(string: String(data: data, encoding: .utf8)!) self.write(string: String(data: data, encoding: .utf8)!)