diff --git a/.changeset/wp69-wpgraphql-logging.md b/.changeset/wp69-wpgraphql-logging.md deleted file mode 100644 index 61ac53ba..00000000 --- a/.changeset/wp69-wpgraphql-logging.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@wpengine/wpgraphql-logging-wordpress-plugin": patch ---- - -Verify WordPress 6.9 compatibility and update CI test matrix - -- Tested compatibility with WordPress 6.9 -- Updated CI test matrix to WordPress 6.9, 6.8, 6.7 (dropped 6.5, 6.6) -- Updated dev dependencies (wordpress-core, wordpress-stubs to ^6.9, phpcompatibility to ^9.3) -- Reduced readme.txt tags to 5 for WordPress.org compliance diff --git a/plugins/composer-packages.json b/plugins/composer-packages.json index f30b720a..d99deedf 100644 --- a/plugins/composer-packages.json +++ b/plugins/composer-packages.json @@ -501,6 +501,32 @@ } }, "wpengine/wpgraphql-logging": { + "1.0.1": { + "name": "wpengine/wpgraphql-logging", + "version": "1.0.1", + "type": "wordpress-plugin", + "description": "A plugin for logging WPGraphQL request lifecycle tp help with debugging and performance analysis for WPGraphQL queries.", + "homepage": "https://github.com/wpengine/hwptoolkit", + "license": "GPL-2.0", + "authors": [ + { + "name": "WP Engine Headless OSS Development Team", + "email": "headless-oss@wpengine.com", + "homepage": "https://wpengine.com/" + } + ], + "support": { + "issues": "https://github.com/wpengine/hwptoolkit/issues", + "email": "support@wpengine.com" + }, + "dist": { + "url": "https://github.com/wpengine/hwptoolkit/releases/download/%40wpengine%2Fwpgraphql-logging-wordpress-plugin-1.0.1/wpgraphql-logging.zip", + "type": "zip" + }, + "require": { + "composer/installers": "~1.0 || ~2.0" + } + }, "1.0.0": { "name": "wpengine/wpgraphql-logging", "version": "1.0.0", diff --git a/plugins/wpgraphql-logging/CHANGELOG.md b/plugins/wpgraphql-logging/CHANGELOG.md index f77c8a4c..f02ed6fa 100644 --- a/plugins/wpgraphql-logging/CHANGELOG.md +++ b/plugins/wpgraphql-logging/CHANGELOG.md @@ -1,5 +1,16 @@ # WPGraphQL Logging +## 1.0.1 + +### Patch Changes + +- [#531](https://github.com/wpengine/hwptoolkit/pull/531) [`959ba90`](https://github.com/wpengine/hwptoolkit/commit/959ba9084e6aa61f90dd65307b5d3919f9b8cfc9) Thanks [@josephfusco](https://github.com/josephfusco)! - Verify WordPress 6.9 compatibility and update CI test matrix + + - Tested compatibility with WordPress 6.9 + - Updated CI test matrix to WordPress 6.9, 6.8, 6.7 (dropped 6.5, 6.6) + - Updated dev dependencies (wordpress-core, wordpress-stubs to ^6.9, phpcompatibility to ^9.3) + - Reduced readme.txt tags to 5 for WordPress.org compliance + ## 1.0.0 ### Major Changes diff --git a/plugins/wpgraphql-logging/composer.json b/plugins/wpgraphql-logging/composer.json index ecd73f52..1f38e5b3 100644 --- a/plugins/wpgraphql-logging/composer.json +++ b/plugins/wpgraphql-logging/composer.json @@ -3,7 +3,7 @@ "type": "wordpress-plugin", "description": "A plugin for logging WPGraphQL request lifecycle tp help with debugging and performance analysis for WPGraphQL queries.", "license": "GPLv2 or later", - "version": "1.0.0", + "version": "1.0.1", "authors": [ { "name": "WP Engine Headless OSS Development Team", diff --git a/plugins/wpgraphql-logging/package.json b/plugins/wpgraphql-logging/package.json index 595ae12a..d0463379 100644 --- a/plugins/wpgraphql-logging/package.json +++ b/plugins/wpgraphql-logging/package.json @@ -1,6 +1,6 @@ { "name": "@wpengine/wpgraphql-logging-wordpress-plugin", - "version": "1.0.0", + "version": "1.0.1", "private": true, "description": "A POC plugin for logging WPGraphQL queries.", "scripts": { diff --git a/plugins/wpgraphql-logging/readme.txt b/plugins/wpgraphql-logging/readme.txt index f918c760..36b9e2db 100644 --- a/plugins/wpgraphql-logging/readme.txt +++ b/plugins/wpgraphql-logging/readme.txt @@ -5,7 +5,7 @@ Requires at least: 6.5 Tested up to: 6.9 Requires PHP: 8.1.2 Requires WPGraphQL: 2.3.0 -Stable tag: 1.0.0 +Stable tag: 1.0.1 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html diff --git a/plugins/wpgraphql-logging/wpgraphql-logging.php b/plugins/wpgraphql-logging/wpgraphql-logging.php index fb609654..37e4d551 100644 --- a/plugins/wpgraphql-logging/wpgraphql-logging.php +++ b/plugins/wpgraphql-logging/wpgraphql-logging.php @@ -7,7 +7,7 @@ * Author: WPEngine Headless OSS Team * Author URI: https://github.com/wpengine * Update URI: https://github.com/wpengine/hwptoolkit - * Version: 1.0.0 + * Version: 1.0.1 * Text Domain: wpgraphql-logging * Domain Path: /languages * Requires at least: 6.5 @@ -50,7 +50,7 @@ function wpgraphql_logging_constants(): void { if ( ! defined( 'WPGRAPHQL_LOGGING_VERSION' ) ) { - define( 'WPGRAPHQL_LOGGING_VERSION', '1.0.0' ); + define( 'WPGRAPHQL_LOGGING_VERSION', '1.0.1' ); } if ( ! defined( 'WPGRAPHQL_LOGGING_PLUGIN_DIR' ) ) {