Skip to content

Commit 61b4feb

Browse files
authored
chore: test against WP 6.4 (#73)
1 parent 1258f2e commit 61b4feb

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

.github/workflows/integration-testing.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,14 @@ jobs:
2222
strategy:
2323
matrix:
2424
php: ["7.4", "8.0", "8.1", "8.2"]
25-
wordpress: ["6.3", "6.2", "6.1", "6.0" ]
25+
wordpress: ["6.4", "6.3", "6.2", "6.1", "6.0" ]
2626
include:
2727
- php: "8.2"
28-
wordpress: "6.3"
28+
wordpress: "6.4"
2929
coverage: 1
3030
exclude:
31+
- php: "7.4"
32+
wordpress: "6.4"
3133
- php: "7.4"
3234
wordpress: "6.3"
3335
- php: "7.4"

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- fix: Improve SEO `head` data fetching to load Rank Math modules more consistently.
77
- fix: Correctly parse OG product meta data when resolving `seo.OpenGraph`. H/t @joanpzen
88
- chore: Pin WPBrowser to v3.4.x to avoid breaking changes in v3.5+.
9+
- ci: Test plugin compatibility against WordPress 6.4.2
910

1011
This release was sponsored by [Red Rocks Web Development](https://redrockswebdevelopment.com/) 😍.
1112

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

3535
BUILD_NO_CACHE=${BUILD_NO_CACHE-}

phpstan/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
define( 'WPGRAPHQL_SEO_AUTOLOAD', true );
99
define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' );
10-
define( 'WPGRAPHQL_SEO_VERSION', '0.0.16' );
10+
define( 'WPGRAPHQL_SEO_VERSION', '0.1.0' );

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: axepress, justlevine
33
Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, RankMath, Seo, Schema
44
Requires at least: 6.0
5-
Tested up to: 6.3.2
5+
Tested up to: 6.4.2
66
Requires PHP: 7.4
77
Requires WPGraphQL: 1.14.0
88
Stable tag: 0.0.16

wp-graphql-rank-math.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Text Domain: wp-graphql-rank-math
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
14-
* Tested up to: 6.3.2
14+
* Tested up to: 6.4.2
1515
* Requires PHP: 7.4
1616
* WPGraphQL requires at least: 1.14.0
1717
* License: GPL-3
@@ -53,7 +53,7 @@
5353
function graphql_seo_constants(): void {
5454
// Plugin version.
5555
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
56-
define( 'WPGRAPHQL_SEO_VERSION', '0.0.16' );
56+
define( 'WPGRAPHQL_SEO_VERSION', '0.1.0' );
5757
}
5858

5959
// Plugin Folder Path.

0 commit comments

Comments
 (0)