Commit 454690f2e34 for woocommerce
commit 454690f2e34b275af42c8e1074645a5d1ecee452
Author: Tom Cafferkey <tjcafferkey@gmail.com>
Date: Wed Aug 5 15:40:47 2026 +0100
Stabilize order withdrawal feature (#67391)
* Stabilize order withdrawal feature
* Update wording
diff --git a/plugins/woocommerce/changelog/update-stabilize-order-withdrawal b/plugins/woocommerce/changelog/update-stabilize-order-withdrawal
new file mode 100644
index 00000000000..b20e0ff0296
--- /dev/null
+++ b/plugins/woocommerce/changelog/update-stabilize-order-withdrawal
@@ -0,0 +1,4 @@
+Significance: patch
+Type: update
+
+Move the order withdrawal feature out of experimental status.
diff --git a/plugins/woocommerce/src/Internal/Features/FeaturesController.php b/plugins/woocommerce/src/Internal/Features/FeaturesController.php
index 4b0c0a13b67..038c426f0b5 100644
--- a/plugins/woocommerce/src/Internal/Features/FeaturesController.php
+++ b/plugins/woocommerce/src/Internal/Features/FeaturesController.php
@@ -460,11 +460,11 @@ class FeaturesController {
),
'order_withdrawal' => array(
'name' => __( 'Order withdrawal', 'woocommerce' ),
- 'description' => __( 'Enable the public order withdrawal endpoint for stakeholder testing.', 'woocommerce' ),
+ 'description' => __( 'Enable the public order withdrawal feature for customer requests.', 'woocommerce' ),
'enabled_by_default' => false,
'disable_ui' => false,
'default_plugin_compatibility' => FeaturePluginCompatibility::COMPATIBLE,
- 'is_experimental' => true,
+ 'is_experimental' => false,
),
'abandoned_cart_recovery' => array(
'name' => __( 'Abandoned cart recovery', 'woocommerce' ),