From 421a8bc77789c2a9d2a1f0a50310a907a6e329d0 Mon Sep 17 00:00:00 2001 From: wpdev Date: Fri, 31 Jul 2026 10:43:50 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20CHANGELOG=20=E8=A8=98=E9=8C=84=203=20?= =?UTF-8?q?=E5=80=8B=20WC=20runtime=20=E6=AC=84=E4=BD=8D=E8=88=87=20integr?= =?UTF-8?q?ation=20=E6=B8=AC=E8=A9=A6=E5=A5=97=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c32d56..538da8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,22 @@ Versioning follows [Semantic Versioning](https://semver.org/). ## [Unreleased] +### Added + +- 三個 WC runtime usermeta 欄位進 `user`/`hot` group:`wc_last_active`、 + `wc_order_count_`、`last_update`。先前未註冊,這些高頻欄位 + 會落回 `wp_usermeta`。 +- `tests/integration/`:bootstrap(複用核心的 integration bootstrap,連真實 + MariaDB)+ `phpunit-integration.xml` + CI job,移植 `WCTermCountFilterTest` + (18 tests)。 + +### Notes + +- `wc_order_count` 走 WooCommerce 的 `Users::update_site_user_meta()`,實際 + key 是 `'wc_order_count' . '_' . rtrim( get_blog_prefix(), '_' )`。來源外掛 + 寫死主站形式 `wc_order_count_wp`,multisite 子站(`_wp_2`)會漏接;此處用 + 同一條運算式算出來。 + - Phase 3 implementation in progress. ---