Skip to content

Commit f61b55f

Browse files
authored
fix: Add direct or/and syntax support to ProductTaxonomyInput and fix test issues (#948)
* fix: Add direct or/and syntax support to ProductTaxonomyInput and fix test issues * fix: Add OrderNote visibility filters for queries and mutations
1 parent 01991ad commit f61b55f

22 files changed

+1238
-138
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ codeception.yml
2929
.editorconfig
3030
plugin-build
3131
bin/strauss.phar
32+
CLAUDE.md
33+
.claude

bin/_lib.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ remove_wordpress() {
6262
install_local_test_library() {
6363
# Install testing library dependencies.
6464
composer install
65+
# Pin behat/gherkin to a version compatible with codeception 4.2.2
66+
# Versions 4.12+ introduced breaking changes that broke codeception's path-based i18n loading
6567
composer require --dev -W \
68+
"behat/gherkin:^4.8 <4.12" \
6669
"lucatume/wp-browser:>3.1 <3.5" \
6770
phpunit/phpunit:^9.6 \
6871
codeception/lib-asserts:* \
@@ -102,7 +105,8 @@ remove_local_test_library() {
102105
codeception/util-universalframework \
103106
lucatume/wp-browser \
104107
stripe/stripe-php \
105-
fakerphp/faker
108+
fakerphp/faker \
109+
behat/gherkin
106110
}
107111

108112
cleanup_composer_file() {

0 commit comments

Comments
 (0)