Skip to content

Commit f3e8314

Browse files
authored
Merge pull request #408 from wpengine/release/wpgraphql-logging-20250912-100641
Release: wpgraphql-logging version bump
2 parents 9773108 + 70be6ac commit f3e8314

File tree

7 files changed

+38
-10
lines changed

7 files changed

+38
-10
lines changed

.changeset/forty-fans-behave.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

plugins/composer-packages.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,32 @@
319319
}
320320
},
321321
"wpengine/wpgraphql-logging": {
322+
"0.0.8": {
323+
"name": "wpengine/wpgraphql-logging",
324+
"version": "0.0.8",
325+
"type": "wordpress-plugin",
326+
"description": "A plugin for logging WPGraphQL request lifecycle tp help with debugging and performance analysis for WPGraphQL queries.",
327+
"homepage": "https://github.com/wpengine/hwptoolkit",
328+
"license": "GPL-2.0",
329+
"authors": [
330+
{
331+
"name": "WP Engine Headless OSS Development Team",
332+
"email": "[email protected]",
333+
"homepage": "https://wpengine.com/"
334+
}
335+
],
336+
"support": {
337+
"issues": "https://github.com/wpengine/hwptoolkit/issues",
338+
"email": "[email protected]"
339+
},
340+
"dist": {
341+
"url": "https://github.com/wpengine/hwptoolkit/releases/download/%40wpengine%2Fwpgraphql-logging-wordpress-plugin-0.0.8/wpgraphql-logging.zip",
342+
"type": "zip"
343+
},
344+
"require": {
345+
"composer/installers": "~1.0 || ~2.0"
346+
}
347+
},
322348
"0.0.7": {
323349
"name": "wpengine/wpgraphql-logging",
324350
"version": "0.0.7",
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# WPGraphQL Logging
22

3+
## 0.0.8
4+
5+
### Patch Changes
6+
7+
- [#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.
8+
39
## 0.0.1-beta
10+
411
- Proof of concept. A plugin for logging data for WPGraphQL.

plugins/wpgraphql-logging/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "wordpress-plugin",
44
"description": "A plugin for logging WPGraphQL request lifecycle tp help with debugging and performance analysis for WPGraphQL queries.",
55
"license": "GPL-2.0",
6-
"version": "0.0.7",
6+
"version": "0.0.8",
77
"authors": [
88
{
99
"name": "WP Engine Headless OSS Development Team",

plugins/wpgraphql-logging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wpengine/wpgraphql-logging-wordpress-plugin",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"private": true,
55
"description": "A POC plugin for logging WPGraphQL queries.",
66
"scripts": {

plugins/wpgraphql-logging/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Requires at least: 6.5
55
Tested up to: 6.8,2
66
Requires PHP: 8.1
77
Requires WPGraphQL: 2.3.0
8-
Stable tag: 0.0.7
8+
Stable tag: 0.0.8
99
License: GPL-2.0
1010
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1111

plugins/wpgraphql-logging/wpgraphql-logging.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author: WPEngine Headless OSS Team
88
* Author URI: https://github.com/wpengine
99
* Update URI: https://github.com/wpengine/hwptoolkit
10-
* Version: 0.0.7
10+
* Version: 0.0.8
1111
* Text Domain: wpgraphql-logging
1212
* Domain Path: /languages
1313
* Requires at least: 6.5
@@ -76,7 +76,7 @@ function wpgraphql_logging_init(): void {
7676
function wpgraphql_logging_constants(): void {
7777

7878
if ( ! defined( 'WPGRAPHQL_LOGGING_VERSION' ) ) {
79-
define( 'WPGRAPHQL_LOGGING_VERSION', '0.0.7' );
79+
define( 'WPGRAPHQL_LOGGING_VERSION', '0.0.8' );
8080
}
8181

8282
if ( ! defined( 'WPGRAPHQL_LOGGING_PLUGIN_DIR' ) ) {

0 commit comments

Comments
 (0)