Skip to content

Commit

Permalink
Update dependencies (#1020)
Browse files Browse the repository at this point in the history
* Update dependencies

* Fix warnings
  • Loading branch information
mvasilak authored Oct 21, 2024
1 parent 712c57e commit 2ab1a41
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
12 changes: 6 additions & 6 deletions Zotero.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -6528,7 +6528,7 @@
repositoryURL = "https://github.com/apple/swift-collections.git";
requirement = {
kind = exactVersion;
version = 1.1.3;
version = 1.1.4;
};
};
B3445F4426EF5EE9007D4009 /* XCRemoteSwiftPackageReference "plcrashreporter" */ = {
Expand All @@ -6544,7 +6544,7 @@
repositoryURL = "https://github.com/Alamofire/Alamofire";
requirement = {
kind = exactVersion;
version = 5.9.1;
version = 5.10.1;
};
};
B356A367252490DB003F1943 /* XCRemoteSwiftPackageReference "keychain-swift" */ = {
Expand Down Expand Up @@ -6584,7 +6584,7 @@
repositoryURL = "https://github.com/Quick/Nimble";
requirement = {
kind = exactVersion;
version = 13.5.0;
version = 13.6.0;
};
};
B356A38E2524A6BA003F1943 /* XCRemoteSwiftPackageReference "Quick" */ = {
Expand Down Expand Up @@ -6616,23 +6616,23 @@
repositoryURL = "https://github.com/realm/realm-cocoa";
requirement = {
kind = exactVersion;
version = 20.0.0;
version = 10.54.0;
};
};
B35E4B8B25248B3C000EA134 /* XCRemoteSwiftPackageReference "RxSwift" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/ReactiveX/RxSwift";
requirement = {
kind = exactVersion;
version = 6.7.1;
version = 6.8.0;
};
};
B3A6C59D252CA08200F24CBE /* XCRemoteSwiftPackageReference "PSPDFKit-SP" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/PSPDFKit/PSPDFKit-SP";
requirement = {
kind = exactVersion;
version = 14.0.0;
version = 14.1.0;
};
};
B3D84BEE27919FDE005DDD7C /* XCRemoteSwiftPackageReference "Starscream" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/Alamofire/Alamofire",
"state" : {
"revision" : "f455c2975872ccd2d9c81594c658af65716e9b9a",
"version" : "5.9.1"
"revision" : "e16d3481f5ed35f0472cb93350085853d754913f",
"version" : "5.10.1"
}
},
{
Expand Down Expand Up @@ -51,8 +51,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/Quick/Nimble",
"state" : {
"revision" : "cecacf00ddf36c1efff8d14beb65087f2a676be9",
"version" : "13.5.0"
"revision" : "6416749c3c0488664fff6b42f8bf3ea8dc282ca1",
"version" : "13.6.0"
}
},
{
Expand All @@ -78,8 +78,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/PSPDFKit/PSPDFKit-SP",
"state" : {
"revision" : "39c61f0746177e6f7795d6f9b62fe0c39a1d7de2",
"version" : "14.0.0"
"revision" : "16bc87c8d6dc3af0c57ecaf12a69ca6b58634531",
"version" : "14.1.0"
}
},
{
Expand All @@ -96,26 +96,26 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/realm/realm-cocoa",
"state" : {
"revision" : "7ea8be1f74034bae860120d58d3491c4fcedff5b",
"version" : "20.0.0"
"revision" : "863498d37a9f0e72caa65963da9641d8cdfc8228",
"version" : "10.54.0"
}
},
{
"identity" : "realm-core",
"kind" : "remoteSourceControl",
"location" : "https://github.com/realm/realm-core.git",
"state" : {
"revision" : "f98720a07e6150c41c953e1937108225550ba155",
"version" : "20.0.0"
"revision" : "e474a8d2270a8b12ac63ac9504e4757e39814b99",
"version" : "14.13.0"
}
},
{
"identity" : "rxswift",
"kind" : "remoteSourceControl",
"location" : "https://github.com/ReactiveX/RxSwift",
"state" : {
"revision" : "b06a8c8596e4c3e8e7788e08e720e3248563ce6a",
"version" : "6.7.1"
"revision" : "c7c7d2cf50a3211fe2843f76869c698e4e417930",
"version" : "6.8.0"
}
},
{
Expand Down Expand Up @@ -159,8 +159,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-collections.git",
"state" : {
"revision" : "9bf03ff58ce34478e66aaee630e491823326fd06",
"version" : "1.1.3"
"revision" : "671108c96644956dddcd89dd59c203dcdb36cec7",
"version" : "1.1.4"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Zotero/Controllers/IdentifierLookupController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ final class IdentifierLookupController {
let keys = lookupWebViewHandlersByLookupSettings.keys
for key in keys {
guard let webView = lookupWebViewHandlersByLookupSettings.removeValue(forKey: key)?.webViewHandler.webView else { continue }
inMainThread {
DispatchQueue.main.async {
webView.removeFromSuperview()
}
}
Expand Down
2 changes: 1 addition & 1 deletion Zotero/Models/Convertible.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation

import Alamofire

struct Convertible {
struct Convertible: @unchecked Sendable {
let url: URL
private let token: String?
private let httpMethod: ApiHttpMethod
Expand Down
2 changes: 1 addition & 1 deletion ZoteroTests/SyncActionsSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ final class SyncActionsSpec: QuickSpec {
}
}

extension SyncActionError: Equatable {
extension SyncActionError: @retroactive Equatable {
public static func == (lhs: SyncActionError, rhs: SyncActionError) -> Bool {
switch (lhs, rhs) {
case (.attachmentItemNotSubmitted, .attachmentItemNotSubmitted), (.attachmentAlreadyUploaded, .attachmentAlreadyUploaded), (.submitUpdateFailures, .submitUpdateFailures):
Expand Down

0 comments on commit 2ab1a41

Please sign in to comment.