From 44d747d56bc73cb74de0e9d7127314ea30eca371 Mon Sep 17 00:00:00 2001 From: Sabrina Tardio <44158575+SabrinaTardio@users.noreply.github.com> Date: Mon, 28 Oct 2024 11:57:15 +0100 Subject: [PATCH] update css dependency (#1037) Task/Issue URL: https://app.asana.com/0/0/1208077416568652/f iOS PR: https://github.com/duckduckgo/iOS/pull/3492 macOS PR: https://github.com/duckduckgo/macos-browser/pull/3415 What kind of version bump will this require?: Minor **Description**: Updates C-S-S and adds privacy feature --- Package.resolved | 4 ++-- Package.swift | 2 +- .../PrivacyConfig/Features/PrivacyFeature.swift | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Package.resolved b/Package.resolved index a2fa8119d..62c0cc986 100644 --- a/Package.resolved +++ b/Package.resolved @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/duckduckgo/content-scope-scripts", "state" : { - "revision" : "1ed569676555d493c9c5575eaed22aa02569aac9", - "version" : "6.19.0" + "revision" : "b74549bd869fdecc16fad851f2f608b1724764df", + "version" : "6.25.0" } }, { diff --git a/Package.swift b/Package.swift index 0281a8266..532d22657 100644 --- a/Package.swift +++ b/Package.swift @@ -52,7 +52,7 @@ let package = Package( .package(url: "https://github.com/duckduckgo/sync_crypto", exact: "0.2.0"), .package(url: "https://github.com/gumob/PunycodeSwift.git", exact: "3.0.0"), .package(url: "https://github.com/duckduckgo/privacy-dashboard", exact: "5.3.0"), - .package(url: "https://github.com/duckduckgo/content-scope-scripts", exact: "6.19.0"), + .package(url: "https://github.com/duckduckgo/content-scope-scripts", exact: "6.25.0"), .package(url: "https://github.com/httpswift/swifter.git", exact: "1.5.0"), .package(url: "https://github.com/duckduckgo/bloom_cpp.git", exact: "3.0.0"), .package(url: "https://github.com/1024jp/GzipSwift.git", exact: "6.0.1") diff --git a/Sources/BrowserServicesKit/PrivacyConfig/Features/PrivacyFeature.swift b/Sources/BrowserServicesKit/PrivacyConfig/Features/PrivacyFeature.swift index ebdadb225..478aa8c4a 100644 --- a/Sources/BrowserServicesKit/PrivacyConfig/Features/PrivacyFeature.swift +++ b/Sources/BrowserServicesKit/PrivacyConfig/Features/PrivacyFeature.swift @@ -62,6 +62,7 @@ public enum PrivacyFeature: String { case autocompleteTabs case networkProtection case aiChat + case contextualOnboarding } /// An abstraction to be implemented by any "subfeature" of a given `PrivacyConfiguration` feature.