Fix: order status reverting to Pending when the status slug exceeded 17 characters (WooCommerce stores slugs with a wc- prefix — wp_wc_orders.status was VARCHAR(20) and silently truncated longer slugs)
DB migration: widens wp_wc_orders.status to VARCHAR(50) and repairs any already-truncated values
DB migration: widens wp_posts.post_status to VARCHAR(50) for legacy (non-HPOS) installs
New: server-side slug length validation in save_status() prevents saving slugs that would exceed the column width
1.1.0
New: “Include order details table” toggle per email notification — disable to send only your custom message without the order summary appended
DB migration: adds include_order_details column to the emails table