From cea55ec99ee7a4553c8a2040ba0c489dfd6af852 Mon Sep 17 00:00:00 2001 From: Jason Bahl Date: Thu, 25 Apr 2024 15:00:29 -0600 Subject: [PATCH 1/2] - Update tests to run against WordPress 6.5 - Update "tested up to" --- .github/workflows/tests-wordpress.yml | 4 ++-- readme.txt | 2 +- wp-graphql-smart-cache.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-wordpress.yml b/.github/workflows/tests-wordpress.yml index e21da2b..1342691 100644 --- a/.github/workflows/tests-wordpress.yml +++ b/.github/workflows/tests-wordpress.yml @@ -25,12 +25,12 @@ jobs: # so we include WP 5.9 manually instead of in the matrix - php: '8.1' wordpress: '5.9' + - php: '8.2' + wordpress: '6.5' - php: '8.2' wordpress: '6.4.0' - php: '8.0' wordpress: '6.2' - - php: '8.0' - wordpress: '6.1' - php: '7.4' wordpress: '5.9' steps: diff --git a/readme.txt b/readme.txt index fc4486b..128a988 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: WPGraphQL, markkelnar, jasonbahl Tags: WPGraphQL, Cache, API, Invalidation, Persisted Queries, GraphQL, Performance, Speed Requires at least: 5.6 -Tested up to: 6.4.2 +Tested up to: 6.5 Requires PHP: 7.4 Stable tag: 1.3.1 License: GPLv2 or later diff --git a/wp-graphql-smart-cache.php b/wp-graphql-smart-cache.php index e91ba39..f38ec6e 100644 --- a/wp-graphql-smart-cache.php +++ b/wp-graphql-smart-cache.php @@ -7,7 +7,7 @@ * Author: WPGraphQL * Author URI: http://www.wpgraphql.com * Requires at least: 5.6 - * Tested up to: 6.4.2 + * Tested up to: 6.5 * Requires PHP: 7.4 * Text Domain: wp-graphql-smart-cache * Domain Path: /languages From 927a934db81a6cc92b29d18b3309dd309c7d8514 Mon Sep 17 00:00:00 2001 From: Jason Bahl Date: Thu, 25 Apr 2024 15:13:48 -0600 Subject: [PATCH 2/2] - drop test for WP 5.9 on PHP 7.4 --- .github/workflows/tests-wordpress.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/tests-wordpress.yml b/.github/workflows/tests-wordpress.yml index 1342691..e0d7ff1 100644 --- a/.github/workflows/tests-wordpress.yml +++ b/.github/workflows/tests-wordpress.yml @@ -31,8 +31,6 @@ jobs: wordpress: '6.4.0' - php: '8.0' wordpress: '6.2' - - php: '7.4' - wordpress: '5.9' steps: - name: Checkout uses: actions/checkout@v2