Skip to content

Commit d936be2

Browse files
committed
ci: test compatibility with WP 6.6
1 parent 088d000 commit d936be2

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.github/workflows/integration-testing.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
strategy:
3232
matrix:
3333
php: [ '8.2', '8.1', '8.0' ]
34-
wordpress: [ '6.5', '6.4','6.3', '6.2']
34+
wordpress: [ '6.6', '6.5', '6.4','6.3', '6.2']
3535
include:
3636
- php: '8.2'
37-
wordpress: '6.5'
37+
wordpress: '6.6'
3838
coverage: 1
3939
- php: '8.0'
4040
wordpress: '6.1'
@@ -48,6 +48,8 @@ jobs:
4848
# New WP versions that dont support older PHP versions
4949
- php: "8.0"
5050
wordpress: "6.5"
51+
- php: "8.0"
52+
wordpress: "6.6"
5153
fail-fast: false
5254

5355
steps:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This _patch_ release fixes compatibility with Composer-based WordPress installat
1010
- fix: Return `wp_max_upload_size()` instead of `null` if `GfFieldWithFileSizeSetting.maxFileSize` is `null`. H/t @Gytjarek
1111
- fix: Fix typo in Autoloader release URL.
1212
- fix: Ensure a valid source ID exists before attempting to resolve a `connectedFormField`.
13+
- ci: Test compatibility against WP 6.6.
1314
- ci: Replace calls to `docker-compose` with `docker compose`.
1415

1516
## v0.13.0

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.5 PHP_VERSION=8.2 composer build-app"
20-
echo " WP_VERSION=6.5 PHP_VERSION=8.2 composer run-app"
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"
2121
echo ""
22-
echo " WP_VERSION=6.5 PHP_VERSION=8.2 bin/run-docker.sh build -a"
23-
echo " WP_VERSION=6.5 PHP_VERSION=8.2 bin/run-docker.sh run -a"
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"
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.5}
32+
WP_VERSION=${WP_VERSION-6.6}
3333
PHP_VERSION=${PHP_VERSION-8.2}
3434

3535
BUILD_NO_CACHE=${BUILD_NO_CACHE-}

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: justlevine, kellenmace, mtdbyanechko, tinytoolbox
33
Tags: Forms, GraphQL, Gatsby, Headless, GF, Gravity, WPGraphQL, React
44
Requires at least: 6.0
5-
Tested up to: 6.5
5+
Tested up to: 6.6
66
Requires PHP: 7.4
77
Requires Gravity Forms: 2.7.0
88
Requires WPGraphQL: 1.26.0

wp-graphql-gravity-forms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Text Domain: wp-graphql-gravity-forms
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
14-
* Tested up to: 6.5
14+
* Tested up to: 6.6
1515
* Requires PHP: 7.4
1616
* Requires Plugins: wp-graphql
1717
* WPGraphQL requires at least: 1.26.0

0 commit comments

Comments
 (0)