Skip to content

Commit 682fdce

Browse files
authored
Merge pull request #546 from wpengine/release/wpgraphql-logging-20251205-143039
Release: wpgraphql-logging version bump
2 parents 43d6538 + f3f0b53 commit 682fdce

File tree

7 files changed

+42
-15
lines changed

7 files changed

+42
-15
lines changed

.changeset/wp69-wpgraphql-logging.md

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

plugins/composer-packages.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,32 @@
527527
}
528528
},
529529
"wpengine/wpgraphql-logging": {
530+
"1.0.1": {
531+
"name": "wpengine/wpgraphql-logging",
532+
"version": "1.0.1",
533+
"type": "wordpress-plugin",
534+
"description": "A plugin for logging WPGraphQL request lifecycle tp help with debugging and performance analysis for WPGraphQL queries.",
535+
"homepage": "https://github.com/wpengine/hwptoolkit",
536+
"license": "GPL-2.0",
537+
"authors": [
538+
{
539+
"name": "WP Engine Headless OSS Development Team",
540+
"email": "[email protected]",
541+
"homepage": "https://wpengine.com/"
542+
}
543+
],
544+
"support": {
545+
"issues": "https://github.com/wpengine/hwptoolkit/issues",
546+
"email": "[email protected]"
547+
},
548+
"dist": {
549+
"url": "https://github.com/wpengine/hwptoolkit/releases/download/%40wpengine%2Fwpgraphql-logging-wordpress-plugin-1.0.1/wpgraphql-logging.zip",
550+
"type": "zip"
551+
},
552+
"require": {
553+
"composer/installers": "~1.0 || ~2.0"
554+
}
555+
},
530556
"1.0.0": {
531557
"name": "wpengine/wpgraphql-logging",
532558
"version": "1.0.0",

plugins/wpgraphql-logging/CHANGELOG.md

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

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#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
8+
9+
- Tested compatibility with WordPress 6.9
10+
- Updated CI test matrix to WordPress 6.9, 6.8, 6.7 (dropped 6.5, 6.6)
11+
- Updated dev dependencies (wordpress-core, wordpress-stubs to ^6.9, phpcompatibility to ^9.3)
12+
- Reduced readme.txt tags to 5 for WordPress.org compliance
13+
314
## 1.0.0
415

516
### Major 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": "GPLv2 or later",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
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": "1.0.0",
3+
"version": "1.0.1",
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.9
66
Requires PHP: 8.1.2
77
Requires WPGraphQL: 2.3.0
8-
Stable tag: 1.0.0
8+
Stable tag: 1.0.1
99
License: GPL-2.0-or-later
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: 1.0.0
10+
* Version: 1.0.1
1111
* Text Domain: wpgraphql-logging
1212
* Domain Path: /languages
1313
* Requires at least: 6.5
@@ -50,7 +50,7 @@
5050
function wpgraphql_logging_constants(): void {
5151

5252
if ( ! defined( 'WPGRAPHQL_LOGGING_VERSION' ) ) {
53-
define( 'WPGRAPHQL_LOGGING_VERSION', '1.0.0' );
53+
define( 'WPGRAPHQL_LOGGING_VERSION', '1.0.1' );
5454
}
5555

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

0 commit comments

Comments
 (0)