diff --git a/DuckDuckGo-macOS.xcodeproj/project.pbxproj b/DuckDuckGo-macOS.xcodeproj/project.pbxproj index ac14a87d1b..192d903994 100644 --- a/DuckDuckGo-macOS.xcodeproj/project.pbxproj +++ b/DuckDuckGo-macOS.xcodeproj/project.pbxproj @@ -15570,7 +15570,7 @@ repositoryURL = "https://github.com/duckduckgo/BrowserServicesKit"; requirement = { kind = exactVersion; - version = 233.0.0; + version = 233.1.0; }; }; 9FF521422BAA8FF300B9819B /* XCRemoteSwiftPackageReference "lottie-spm" */ = { diff --git a/DuckDuckGo-macOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DuckDuckGo-macOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 1ea2391cd4..26564767f5 100644 --- a/DuckDuckGo-macOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/DuckDuckGo-macOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -32,8 +32,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/duckduckgo/BrowserServicesKit", "state" : { - "revision" : "c5bf6b03bb683c5b08fa34e74a96fa3548d2a287", - "version" : "233.0.0" + "revision" : "b874310b6db6687ef6be5f978edf2f5d03b7fc69", + "version" : "233.1.0" } }, { diff --git a/DuckDuckGo/Application/AppDelegate.swift b/DuckDuckGo/Application/AppDelegate.swift index dc95c416c5..9f538ac5ce 100644 --- a/DuckDuckGo/Application/AppDelegate.swift +++ b/DuckDuckGo/Application/AppDelegate.swift @@ -860,7 +860,8 @@ final class AppDelegate: NSObject, NSApplicationDelegate { private func setUpAutofillPixelReporter() { autofillPixelReporter = AutofillPixelReporter( - userDefaults: .standard, + standardUserDefaults: .standard, + appGroupUserDefaults: nil, autofillEnabled: AutofillPreferences().askToSaveUsernamesAndPasswords, eventMapping: EventMapping {event, _, params, _ in switch event { diff --git a/DuckDuckGo/Menus/MainMenuActions.swift b/DuckDuckGo/Menus/MainMenuActions.swift index 12fa752982..1bbf27bb9a 100644 --- a/DuckDuckGo/Menus/MainMenuActions.swift +++ b/DuckDuckGo/Menus/MainMenuActions.swift @@ -849,7 +849,8 @@ extension MainViewController { } UserDefaults.standard.set(false, forKey: UserDefaultsWrapper.Key.homePageContinueSetUpImport.rawValue) - let autofillPixelReporter = AutofillPixelReporter(userDefaults: .standard, + let autofillPixelReporter = AutofillPixelReporter(standardUserDefaults: .standard, + appGroupUserDefaults: nil, autofillEnabled: AutofillPreferences().askToSaveUsernamesAndPasswords, eventMapping: EventMapping { _, _, _, _ in }, installDate: nil) diff --git a/LocalPackages/DataBrokerProtection/Package.swift b/LocalPackages/DataBrokerProtection/Package.swift index a312452532..697488b039 100644 --- a/LocalPackages/DataBrokerProtection/Package.swift +++ b/LocalPackages/DataBrokerProtection/Package.swift @@ -29,7 +29,7 @@ let package = Package( targets: ["DataBrokerProtection"]) ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.0.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.1.0"), .package(path: "../SwiftUIExtensions"), .package(path: "../AppKitExtensions"), .package(path: "../XPCHelper"), diff --git a/LocalPackages/FeatureFlags/Package.swift b/LocalPackages/FeatureFlags/Package.swift index df56ce7985..2113246af1 100644 --- a/LocalPackages/FeatureFlags/Package.swift +++ b/LocalPackages/FeatureFlags/Package.swift @@ -32,7 +32,7 @@ let package = Package( targets: ["FeatureFlags"]), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.0.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.1.0"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/LocalPackages/HistoryView/Package.swift b/LocalPackages/HistoryView/Package.swift index 3acdc2152d..03d6ff902e 100644 --- a/LocalPackages/HistoryView/Package.swift +++ b/LocalPackages/HistoryView/Package.swift @@ -32,7 +32,7 @@ let package = Package( targets: ["HistoryView"]), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.0.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.1.0"), .package(path: "../WebKitExtensions"), .package(path: "../UserScriptActionsManager"), .package(path: "../Utilities"), diff --git a/LocalPackages/NetworkProtectionMac/Package.swift b/LocalPackages/NetworkProtectionMac/Package.swift index f41940435d..f03b23f97f 100644 --- a/LocalPackages/NetworkProtectionMac/Package.swift +++ b/LocalPackages/NetworkProtectionMac/Package.swift @@ -33,7 +33,7 @@ let package = Package( .library(name: "VPNAppLauncher", targets: ["VPNAppLauncher"]), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.0.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.1.0"), .package(url: "https://github.com/airbnb/lottie-spm", exact: "4.4.3"), .package(path: "../AppLauncher"), .package(path: "../UDSHelper"), diff --git a/LocalPackages/NewTabPage/Package.swift b/LocalPackages/NewTabPage/Package.swift index 6ff6efabd7..1af46f0407 100644 --- a/LocalPackages/NewTabPage/Package.swift +++ b/LocalPackages/NewTabPage/Package.swift @@ -32,7 +32,7 @@ let package = Package( targets: ["NewTabPage"]), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.0.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.1.0"), .package(path: "../WebKitExtensions"), .package(path: "../UserScriptActionsManager"), .package(path: "../Utilities"), diff --git a/LocalPackages/SubscriptionUI/Package.swift b/LocalPackages/SubscriptionUI/Package.swift index 03d13b9b89..1734f63edd 100644 --- a/LocalPackages/SubscriptionUI/Package.swift +++ b/LocalPackages/SubscriptionUI/Package.swift @@ -13,7 +13,7 @@ let package = Package( targets: ["SubscriptionUI"]), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.0.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.1.0"), .package(path: "../PreferencesUI-macOS"), .package(path: "../SwiftUIExtensions"), .package(path: "../FeatureFlags") diff --git a/LocalPackages/UserScriptActionsManager/Package.swift b/LocalPackages/UserScriptActionsManager/Package.swift index 2e31658202..6984eb9b89 100644 --- a/LocalPackages/UserScriptActionsManager/Package.swift +++ b/LocalPackages/UserScriptActionsManager/Package.swift @@ -31,7 +31,7 @@ let package = Package( targets: ["UserScriptActionsManager"]), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.0.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.1.0"), ], targets: [ .target( diff --git a/LocalPackages/WebKitExtensions/Package.swift b/LocalPackages/WebKitExtensions/Package.swift index e737a46e8c..92235cf9c9 100644 --- a/LocalPackages/WebKitExtensions/Package.swift +++ b/LocalPackages/WebKitExtensions/Package.swift @@ -32,7 +32,7 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.0.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "233.1.0"), .package(path: "../AppKitExtensions") ], targets: [