From 8d539d2e847527aa090a84b60115e378ad0f13ed Mon Sep 17 00:00:00 2001 From: Allison King Date: Tue, 11 Jul 2023 13:02:21 -0400 Subject: [PATCH] Enable privacy notices and experiences by default in production (#3773) --- CHANGELOG.md | 1 + clients/admin-ui/src/flags.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61de497ac9..af4362cb27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,6 +54,7 @@ The types of changes are: - Update EU PrivacyNoticeRegion codes and allow experience filtering to drop back to country filtering if region not found [#3630](https://github.com/ethyca/fides/pull/3630) - Fields with default fields are now flagged as required in the front-end [#3694](https://github.com/ethyca/fides/pull/3694) - In "view systems", system cards can now be clicked and link to that system's `configure/[id]` page [#3734](https://github.com/ethyca/fides/pull/3734) +- Enable privacy notice and privacy experience feature flags by default [#3773](https://github.com/ethyca/fides/pull/3773) ## [2.15.1](https://github.com/ethyca/fides/compare/2.15.0...2.15.1) diff --git a/clients/admin-ui/src/flags.json b/clients/admin-ui/src/flags.json index 34a4c5a8ee..c8f3074cf9 100644 --- a/clients/admin-ui/src/flags.json +++ b/clients/admin-ui/src/flags.json @@ -22,13 +22,13 @@ "description": "Page to configure consent privacy notices", "development": true, "test": true, - "production": false + "production": true }, "privacyExperience": { "description": "Page to configure consent privacy experiences", "development": true, "test": true, - "production": false + "production": true }, "standaloneConnections": { "description": "Allow the creation of standalone connections for testing",