Skip to content

Commit 951a951

Browse files
authored
Merge pull request #426 from wpengine/release/wpgraphql-logging-20251001-112939
Release: wpgraphql-logging version bump
2 parents 65b531b + 6fdf7fc commit 951a951

File tree

7 files changed

+37
-10
lines changed

7 files changed

+37
-10
lines changed

.changeset/eight-moons-help.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
@@ -423,6 +423,32 @@
423423
}
424424
},
425425
"wpengine/wpgraphql-logging": {
426+
"0.0.12": {
427+
"name": "wpengine/wpgraphql-logging",
428+
"version": "0.0.12",
429+
"type": "wordpress-plugin",
430+
"description": "A plugin for logging WPGraphQL request lifecycle tp help with debugging and performance analysis for WPGraphQL queries.",
431+
"homepage": "https://github.com/wpengine/hwptoolkit",
432+
"license": "GPL-2.0",
433+
"authors": [
434+
{
435+
"name": "WP Engine Headless OSS Development Team",
436+
"email": "[email protected]",
437+
"homepage": "https://wpengine.com/"
438+
}
439+
],
440+
"support": {
441+
"issues": "https://github.com/wpengine/hwptoolkit/issues",
442+
"email": "[email protected]"
443+
},
444+
"dist": {
445+
"url": "https://github.com/wpengine/hwptoolkit/releases/download/%40wpengine%2Fwpgraphql-logging-wordpress-plugin-0.0.12/wpgraphql-logging.zip",
446+
"type": "zip"
447+
},
448+
"require": {
449+
"composer/installers": "~1.0 || ~2.0"
450+
}
451+
},
426452
"0.0.11": {
427453
"name": "wpengine/wpgraphql-logging",
428454
"version": "0.0.11",

plugins/wpgraphql-logging/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# WPGraphQL Logging
22

3+
## 0.0.12
4+
5+
### Patch Changes
6+
7+
- [#423](https://github.com/wpengine/hwptoolkit/pull/423) [`ef373fa`](https://github.com/wpengine/hwptoolkit/commit/ef373fa9710dd05bde9c33b7eb758f73686f0bd3) Thanks [@colinmurphy](https://github.com/colinmurphy)! - chore: Fixed some snags for events and event manager. Added and updated PHPUnit tests and coverage now above 90%.
8+
39
## 0.0.11
410

511
### Patch Changes

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.11",
6+
"version": "0.0.12",
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.11",
3+
"version": "0.0.12",
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.11
8+
Stable tag: 0.0.12
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.11
10+
* Version: 0.0.12
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.11' );
79+
define( 'WPGRAPHQL_LOGGING_VERSION', '0.0.12' );
8080
}
8181

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

0 commit comments

Comments
 (0)