mirror of
https://github.com/wp-graphql/wp-graphql-woocommerce.git
synced 2026-08-14 12:53:44 +02:00
* fix: Order status filter incorrectly uses single value when statuses is the only filter arg The condition `1 === count($where_args)` checked the total number of filter args instead of `1 === count($where_args['statuses'])`, causing multi-status queries to only return results for the first status when no other filters were provided. Closes #968 * fix: Upgrade phpcov to v9 for newer coverage file format The Docker test environment produces .cov files in the php-code-coverage v10+ format (PHP file wrapper around serialized data). phpcov v8 only supports raw serialized data and silently produces empty coverage.