Skip to content

Commit 4cd0d40

Browse files
authored
chore: test compatibility with WPGraphQL2, WP6.7 (#116)
* chore: test compat w. WP6.7 + WPGraphQL 2.0 * ci: exclude php8.0+wp6.7 from matrix * ci: cleanup env.dist
1 parent 1cf41e1 commit 4cd0d40

File tree

8 files changed

+650
-611
lines changed

8 files changed

+650
-611
lines changed

.github/workflows/integration-testing.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,18 @@ jobs:
2929
strategy:
3030
matrix:
3131
php: ["8.2", "8.1", "8.0"]
32-
wordpress: ["6.6", "6.5", "6.4", "6.3" ]
32+
wordpress: [ "6.7", "6.6", "6.5", "6.4", "6.3" ]
3333
include:
3434
- php: "8.2"
35-
wordpress: "6.6"
35+
wordpress: "6.7"
3636
coverage: 1
3737
exclude:
3838
# Old WP versions that dont support newer PHP versions
3939
# - php: "8.2"
4040
# wordpress: "6.0"
4141
# New WP versions that dont support older PHP versions
42+
- php: "8.0"
43+
wordpress: "6.7"
4244
- php: "8.0"
4345
wordpress: "6.6"
4446
- php: "8.0"

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [Unreleased]
44

5+
- chore: test compatibility with WordPress 6.7.2 and WPGraphQL 2.0.0.
56
- dev: Add GraphQL Debug message to response when attempting to use `Page.seo` for the Posts Archive. H/t @amoyanoakqa
67
- chore: Update Composer dev-deps.
78

bin/run-docker.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ print_usage_instructions() {
1616
echo " composer build-app"
1717
echo " composer run-app"
1818
echo ""
19-
echo " WP_VERSION=6.6 PHP_VERSION=8.2 composer build-app"
20-
echo " WP_VERSION=6.6 PHP_VERSION=8.2 composer run-app"
19+
echo " WP_VERSION=6.7 PHP_VERSION=8.2 composer build-app"
20+
echo " WP_VERSION=6.7 PHP_VERSION=8.2 composer run-app"
2121
echo ""
22-
echo " WP_VERSION=6.6 PHP_VERSION=8.2 bin/run-docker.sh build -a"
23-
echo " WP_VERSION=6.6 PHP_VERSION=8.2 bin/run-docker.sh run -a"
22+
echo " WP_VERSION=6.7 PHP_VERSION=8.2 bin/run-docker.sh build -a"
23+
echo " WP_VERSION=6.7 PHP_VERSION=8.2 bin/run-docker.sh run -a"
2424
exit 1
2525
}
2626

@@ -29,7 +29,7 @@ if [ $# -eq 0 ]; then
2929
fi
3030

3131
TAG=${TAG-latest}
32-
WP_VERSION=${WP_VERSION-6.6}
32+
WP_VERSION=${WP_VERSION-6.7}
3333
PHP_VERSION=${PHP_VERSION-8.2}
3434

3535
BUILD_NO_CACHE=${BUILD_NO_CACHE-}

0 commit comments

Comments
 (0)