diff --git a/.changeset/forty-fans-behave.md b/.changeset/forty-fans-behave.md deleted file mode 100644 index b3df060d..00000000 --- a/.changeset/forty-fans-behave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wpgraphql-logging-wordpress-plugin": patch ---- - -chore: Added admin view, filters and CSV downloads. diff --git a/plugins/composer-packages.json b/plugins/composer-packages.json index 83321418..b0732485 100644 --- a/plugins/composer-packages.json +++ b/plugins/composer-packages.json @@ -319,6 +319,32 @@ } }, "wpengine/wpgraphql-logging": { + "0.0.8": { + "name": "wpengine/wpgraphql-logging", + "version": "0.0.8", + "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-0.0.8/wpgraphql-logging.zip", + "type": "zip" + }, + "require": { + "composer/installers": "~1.0 || ~2.0" + } + }, "0.0.7": { "name": "wpengine/wpgraphql-logging", "version": "0.0.7", diff --git a/plugins/wpgraphql-logging/CHANGELOG.md b/plugins/wpgraphql-logging/CHANGELOG.md index 4cae920c..bef37302 100644 --- a/plugins/wpgraphql-logging/CHANGELOG.md +++ b/plugins/wpgraphql-logging/CHANGELOG.md @@ -1,4 +1,11 @@ # WPGraphQL Logging +## 0.0.8 + +### Patch Changes + +- [#403](https://github.com/wpengine/hwptoolkit/pull/403) [`821908b`](https://github.com/wpengine/hwptoolkit/commit/821908b7a7b8743a44cdbdbd98eedfff7faac34a) Thanks [@colinmurphy](https://github.com/colinmurphy)! - chore: Added admin view, filters and CSV downloads. + ## 0.0.1-beta + - Proof of concept. A plugin for logging data for WPGraphQL. diff --git a/plugins/wpgraphql-logging/composer.json b/plugins/wpgraphql-logging/composer.json index c3e1970a..6dfc5d5c 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": "GPL-2.0", - "version": "0.0.7", + "version": "0.0.8", "authors": [ { "name": "WP Engine Headless OSS Development Team", diff --git a/plugins/wpgraphql-logging/package.json b/plugins/wpgraphql-logging/package.json index 4de859be..bf873142 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.0.7", + "version": "0.0.8", "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 baa0e11a..5acf586a 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 Requires WPGraphQL: 2.3.0 -Stable tag: 0.0.7 +Stable tag: 0.0.8 License: GPL-2.0 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 35ecbe84..576b6fdf 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.0.7 + * Version: 0.0.8 * Text Domain: wpgraphql-logging * Domain Path: /languages * Requires at least: 6.5 @@ -76,7 +76,7 @@ function wpgraphql_logging_init(): void { function wpgraphql_logging_constants(): void { if ( ! defined( 'WPGRAPHQL_LOGGING_VERSION' ) ) { - define( 'WPGRAPHQL_LOGGING_VERSION', '0.0.7' ); + define( 'WPGRAPHQL_LOGGING_VERSION', '0.0.8' ); } if ( ! defined( 'WPGRAPHQL_LOGGING_PLUGIN_DIR' ) ) {