From dd1ecb8ab7ce50a4c164ce8139fa51d2a8772634 Mon Sep 17 00:00:00 2001 From: "Tanner W. Stokes" Date: Fri, 2 Dec 2022 16:46:27 -0500 Subject: [PATCH 1/2] Enable content migration flow feature flags. --- WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift b/WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift index 4c0a345d7cd8..5546bd0be35d 100644 --- a/WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift +++ b/WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift @@ -113,9 +113,9 @@ enum FeatureFlag: Int, CaseIterable, OverrideableFlag { case .jetpackPowered: return true case .jetpackPoweredBottomSheet: - return false + return true case .contentMigration: - return false + return true case .newJetpackLandingScreen: return true case .newWordPressLandingScreen: From 440b8e8fd0977ae19a459f9b711d20cc84c25419 Mon Sep 17 00:00:00 2001 From: "Tanner W. Stokes" Date: Fri, 2 Dec 2022 16:48:05 -0500 Subject: [PATCH 2/2] Add release notes. --- RELEASE-NOTES.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index e5f3947817ee..4a12142a3c59 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -4,6 +4,7 @@ 21.3 ----- +* [***] Adds a smooth, opt-in transition to the Jetpack app. [#19714] * [*] [internal] When a user migrates to the Jetpack app and allows notifications, WordPress app notifications are disabled. This is released disabled and is behind a feature flag. [#19616, #19611, #19590] * [*] Fixed a minor UI issue where the segmented control under My SIte was being clipped when "Home" is selected. [#19595] * [*] Fixed an issue where the site wasn't removed and the app wasn't refreshed after disconnecting the site from WordPress.com. [#19634]