From c9fc74147ff832b61c321d6412dd62f3957d3abb Mon Sep 17 00:00:00 2001 From: Hafiz Rahman Date: Mon, 6 Jan 2025 17:53:40 +0700 Subject: [PATCH 1/2] Enable bulk_update_orders_status feature flag --- .../main/kotlin/com/woocommerce/android/util/FeatureFlag.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WooCommerce/src/main/kotlin/com/woocommerce/android/util/FeatureFlag.kt b/WooCommerce/src/main/kotlin/com/woocommerce/android/util/FeatureFlag.kt index dcb5d505e4b..84f227607c4 100644 --- a/WooCommerce/src/main/kotlin/com/woocommerce/android/util/FeatureFlag.kt +++ b/WooCommerce/src/main/kotlin/com/woocommerce/android/util/FeatureFlag.kt @@ -27,12 +27,12 @@ enum class FeatureFlag { BETTER_CUSTOMER_SEARCH_M2, ORDER_CREATION_AUTO_TAX_RATE, REVAMP_WOO_SHIPPING, - BULK_UPDATE_ORDERS_STATUS, HIDE_SITES_FROM_SITE_PICKER -> PackageUtils.isDebugBuild() NEW_SHIPPING_SUPPORT, ENDLESS_CAMPAIGNS_SUPPORT, - OBJECTIVE_SECTION -> true + OBJECTIVE_SECTION, + BULK_UPDATE_ORDERS_STATUS -> true } } } From d801bab577cd187c4efd25323a7058386d35c2e3 Mon Sep 17 00:00:00 2001 From: Hafiz Rahman Date: Mon, 6 Jan 2025 17:58:54 +0700 Subject: [PATCH 2/2] Update release notes --- RELEASE-NOTES.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index ae35046fbb1..147f05f3df4 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -7,6 +7,7 @@ - [*] Fixed overlap issue in Settings > WooCommerce Version [https://github.com/woocommerce/woocommerce-android/pull/13183] - [*] Fixed a crash on the order details [https://github.com/woocommerce/woocommerce-android/pull/13191] - [**] Fixed a crash when a shop manager was trying to install or activate plugin in the POS onboarding [https://github.com/woocommerce/woocommerce-android/pull/13203] +- [***] Orders: Merchants can now bulk update the status of their orders [https://github.com/woocommerce/woocommerce-android/pull/13245] 21.3 -----