Skip to content

Commit

Permalink
chore: test against WP 6.4 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
justlevine authored Mar 2, 2024
1 parent 1258f2e commit 61b4feb
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ jobs:
strategy:
matrix:
php: ["7.4", "8.0", "8.1", "8.2"]
wordpress: ["6.3", "6.2", "6.1", "6.0" ]
wordpress: ["6.4", "6.3", "6.2", "6.1", "6.0" ]
include:
- php: "8.2"
wordpress: "6.3"
wordpress: "6.4"
coverage: 1
exclude:
- php: "7.4"
wordpress: "6.4"
- php: "7.4"
wordpress: "6.3"
- php: "7.4"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- fix: Improve SEO `head` data fetching to load Rank Math modules more consistently.
- fix: Correctly parse OG product meta data when resolving `seo.OpenGraph`. H/t @joanpzen
- chore: Pin WPBrowser to v3.4.x to avoid breaking changes in v3.5+.
- ci: Test plugin compatibility against WordPress 6.4.2

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

Expand Down
10 changes: 5 additions & 5 deletions bin/run-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ print_usage_instructions() {
echo " composer build-app"
echo " composer run-app"
echo ""
echo " WP_VERSION=6.3 PHP_VERSION=8.2 composer build-app"
echo " WP_VERSION=6.3 PHP_VERSION=8.2 composer run-app"
echo " WP_VERSION=6.4 PHP_VERSION=8.2 composer build-app"
echo " WP_VERSION=6.4 PHP_VERSION=8.2 composer run-app"
echo ""
echo " WP_VERSION=6.3 PHP_VERSION=8.2 bin/run-docker.sh build -a"
echo " WP_VERSION=6.3 PHP_VERSION=8.2 bin/run-docker.sh run -a"
echo " WP_VERSION=6.4 PHP_VERSION=8.2 bin/run-docker.sh build -a"
echo " WP_VERSION=6.4 PHP_VERSION=8.2 bin/run-docker.sh run -a"
exit 1
}

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

TAG=${TAG-latest}
WP_VERSION=${WP_VERSION-6.3}
WP_VERSION=${WP_VERSION-6.4}
PHP_VERSION=${PHP_VERSION-8.2}

BUILD_NO_CACHE=${BUILD_NO_CACHE-}
Expand Down
2 changes: 1 addition & 1 deletion phpstan/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

define( 'WPGRAPHQL_SEO_AUTOLOAD', true );
define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' );
define( 'WPGRAPHQL_SEO_VERSION', '0.0.16' );
define( 'WPGRAPHQL_SEO_VERSION', '0.1.0' );
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: axepress, justlevine
Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, RankMath, Seo, Schema
Requires at least: 6.0
Tested up to: 6.3.2
Tested up to: 6.4.2
Requires PHP: 7.4
Requires WPGraphQL: 1.14.0
Stable tag: 0.0.16
Expand Down
4 changes: 2 additions & 2 deletions wp-graphql-rank-math.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Text Domain: wp-graphql-rank-math
* Domain Path: /languages
* Requires at least: 6.0
* Tested up to: 6.3.2
* Tested up to: 6.4.2
* Requires PHP: 7.4
* WPGraphQL requires at least: 1.14.0
* License: GPL-3
Expand Down Expand Up @@ -53,7 +53,7 @@
function graphql_seo_constants(): void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
define( 'WPGRAPHQL_SEO_VERSION', '0.0.16' );
define( 'WPGRAPHQL_SEO_VERSION', '0.1.0' );
}

// Plugin Folder Path.
Expand Down

0 comments on commit 61b4feb

Please sign in to comment.