Skip to content

Commit

Permalink
Update macOS branch with subscription hotfix changes (#3602)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/414709148257752/1208829922317861/f
Tech Design URL:
CC:

Description:

This PR updates macOS to include a breaking change related to the subscription hotfix.
  • Loading branch information
samsymons authored and ayoy committed Nov 27, 2024
1 parent b544d19 commit 661cc6a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DuckDuckGo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -15205,7 +15205,7 @@
repositoryURL = "https://github.com/duckduckgo/BrowserServicesKit";
requirement = {
kind = exactVersion;
version = 211.1.2;
version = 211.1.3;
};
};
9FF521422BAA8FF300B9819B /* XCRemoteSwiftPackageReference "lottie-spm" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/duckduckgo/BrowserServicesKit",
"state" : {
"revision" : "deacf613553334f35053a2092d4e062e4775544c",
"version" : "211.1.2"
"revision" : "f83b1f5ebd328bc2447d1a3793149bb21037d685",
"version" : "211.1.3"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion DuckDuckGo/Application/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ final class AppDelegate: NSObject, NSApplicationDelegate {
})

subscriptionCookieManager = SubscriptionCookieManager(subscriptionManager: subscriptionManager, currentCookieStore: {
WKWebsiteDataStore.default().httpCookieStore
WKHTTPCookieStoreWrapper(store: WKWebsiteDataStore.default().httpCookieStore)
}, eventMapping: SubscriptionCookieManageEventPixelMapping())

// Update VPN environment and match the Subscription environment
Expand Down
2 changes: 1 addition & 1 deletion LocalPackages/DataBrokerProtection/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ let package = Package(
targets: ["DataBrokerProtection"])
],
dependencies: [
.package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "211.1.2"),
.package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "211.1.3"),
.package(path: "../SwiftUIExtensions"),
.package(path: "../AppKitExtensions"),
.package(path: "../XPCHelper"),
Expand Down
2 changes: 1 addition & 1 deletion LocalPackages/FeatureFlags/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let package = Package(
targets: ["FeatureFlags"]),
],
dependencies: [
.package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "211.1.2"),
.package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "211.1.3"),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
Expand Down
2 changes: 1 addition & 1 deletion LocalPackages/NetworkProtectionMac/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let package = Package(
.library(name: "VPNAppLauncher", targets: ["VPNAppLauncher"]),
],
dependencies: [
.package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "211.1.2"),
.package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "211.1.3"),
.package(url: "https://github.com/airbnb/lottie-spm", exact: "4.4.3"),
.package(path: "../AppLauncher"),
.package(path: "../UDSHelper"),
Expand Down
2 changes: 1 addition & 1 deletion LocalPackages/SubscriptionUI/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
targets: ["SubscriptionUI"]),
],
dependencies: [
.package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "211.1.2"),
.package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "211.1.3"),
.package(path: "../SwiftUIExtensions")
],
targets: [
Expand Down

0 comments on commit 661cc6a

Please sign in to comment.