Skip to content

Commit 4aba081

Browse files
Updates BSK (duckduckgo#1956)
Task/Issue URL: https://app.asana.com/0/0/1205354504536671/f BSK PR: duckduckgo/BrowserServicesKit#479 macOS PR: duckduckgo/macos-browser#1552 ## Description Updates to an upcoming version of BSK.
1 parent 68e4376 commit 4aba081

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

DuckDuckGo.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8874,7 +8874,7 @@
88748874
repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit";
88758875
requirement = {
88768876
kind = exactVersion;
8877-
version = 75.1.0;
8877+
version = 75.2.0;
88788878
};
88798879
};
88808880
C14882EB27F211A000D59F0C /* XCRemoteSwiftPackageReference "SwiftSoup" */ = {

DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DuckDuckGo/NetworkProtectionConvenienceInitialisers.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ extension ConnectionServerInfoObserverThroughSession {
4747
extension NetworkProtectionKeychainTokenStore {
4848
convenience init() {
4949
// Error events to be added as part of https://app.asana.com/0/1203137811378537/1205112639044115/f
50-
self.init(keychainType: .dataProtection(.unspecified), errorEvents: nil)
50+
self.init(keychainType: .dataProtection(.unspecified),
51+
serviceName: "\(Bundle.main.bundleIdentifier!).authToken",
52+
errorEvents: nil)
5153
}
5254
}
5355

DuckDuckGo/NetworkProtectionTunnelController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import NetworkProtection
2828
final class NetworkProtectionTunnelController: TunnelController {
2929
static var simulationOptions = NetworkProtectionSimulationOptions()
3030

31-
private let tokenStore = NetworkProtectionKeychainTokenStore(keychainType: .dataProtection(.unspecified), errorEvents: nil)
31+
private let tokenStore = NetworkProtectionKeychainTokenStore()
3232
private let errorStore = NetworkProtectionTunnelErrorStore()
3333

3434
// MARK: - Starting & Stopping the VPN

0 commit comments

Comments
 (0)