From 835b4ea643f1caaa9ba2b4b54dd65b5c318b6ce4 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Nov 2025 11:18:58 +0000 Subject: [PATCH] chore: apply version bump from changesets for wpgraphql-logging --- .changeset/quiet-walls-attend.md | 5 ---- plugins/composer-packages.json | 26 +++++++++++++++++++ plugins/wpgraphql-logging/CHANGELOG.md | 6 +++++ plugins/wpgraphql-logging/composer.json | 2 +- plugins/wpgraphql-logging/package.json | 2 +- plugins/wpgraphql-logging/readme.txt | 2 +- .../wpgraphql-logging/wpgraphql-logging.php | 4 +-- 7 files changed, 37 insertions(+), 10 deletions(-) delete mode 100644 .changeset/quiet-walls-attend.md diff --git a/.changeset/quiet-walls-attend.md b/.changeset/quiet-walls-attend.md deleted file mode 100644 index 3db9bba9..00000000 --- a/.changeset/quiet-walls-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wpgraphql-logging-wordpress-plugin": major ---- - -chore: Initial release of WPGraphQL Logging Plugin. diff --git a/plugins/composer-packages.json b/plugins/composer-packages.json index ff951e59..c77b01e6 100644 --- a/plugins/composer-packages.json +++ b/plugins/composer-packages.json @@ -423,6 +423,32 @@ } }, "wpengine/wpgraphql-logging": { + "1.0.0": { + "name": "wpengine/wpgraphql-logging", + "version": "1.0.0", + "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.0/wpgraphql-logging.zip", + "type": "zip" + }, + "require": { + "composer/installers": "~1.0 || ~2.0" + } + }, "0.2.3": { "name": "wpengine/wpgraphql-logging", "version": "0.2.3", diff --git a/plugins/wpgraphql-logging/CHANGELOG.md b/plugins/wpgraphql-logging/CHANGELOG.md index 47492585..f77c8a4c 100644 --- a/plugins/wpgraphql-logging/CHANGELOG.md +++ b/plugins/wpgraphql-logging/CHANGELOG.md @@ -1,5 +1,11 @@ # WPGraphQL Logging +## 1.0.0 + +### Major Changes + +- [#497](https://github.com/wpengine/hwptoolkit/pull/497) [`01fc6c0`](https://github.com/wpengine/hwptoolkit/commit/01fc6c0eb29f432bc346d3ec5604eaa441ceedcd) Thanks [@colinmurphy](https://github.com/colinmurphy)! - chore: Initial release of WPGraphQL Logging Plugin. + ## 0.2.3 ### Patch Changes diff --git a/plugins/wpgraphql-logging/composer.json b/plugins/wpgraphql-logging/composer.json index b9484cdc..ee33b4dd 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": "0.2.3", + "version": "1.0.0", "authors": [ { "name": "WP Engine Headless OSS Development Team", diff --git a/plugins/wpgraphql-logging/package.json b/plugins/wpgraphql-logging/package.json index b6e85ca5..595ae12a 100644 --- a/plugins/wpgraphql-logging/package.json +++ b/plugins/wpgraphql-logging/package.json @@ -1,6 +1,6 @@ { "name": "@wpengine/wpgraphql-logging-wordpress-plugin", - "version": "0.2.3", + "version": "1.0.0", "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 1492ae3e..8b5dcbf4 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.8.2 Requires PHP: 8.1.2 Requires WPGraphQL: 2.3.0 -Stable tag: 0.2.3 +Stable tag: 1.0.0 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 dc2bf9cf..a117256a 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: 0.2.3 + * Version: 1.0.0 * 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', '0.2.3' ); + define( 'WPGRAPHQL_LOGGING_VERSION', '1.0.0' ); } if ( ! defined( 'WPGRAPHQL_LOGGING_PLUGIN_DIR' ) ) {