diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index bc01b74b94c..c0b0ccde97c 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] - [*] Removed Tap To Pay usage survey [https://github.com/woocommerce/woocommerce-android/pull/13207] - [**] 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] - [*] Fixed a crash on the order details [https://github.com/woocommerce/woocommerce-android/pull/13191] - [**] Introduced fallback logic for the barcode scanner to use the front-facing camera when a back-facing camera is unavailable [https://github.com/woocommerce/woocommerce-android/pull/13230] 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 } } }