Skip to content

Commit 5fde59c

Browse files
committed
Merge branch 'main' into update-hwp-previews-readme
2 parents 4ff3e73 + 682fdce commit 5fde59c

File tree

9 files changed

+72
-9
lines changed

9 files changed

+72
-9
lines changed

plugins/composer-packages.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
{
22
"packages": {
33
"wpengine/hwp-previews": {
4+
"0.0.15": {
5+
"name": "wpengine/hwp-previews",
6+
"version": "0.0.15",
7+
"type": "wordpress-plugin",
8+
"description": "A WordPress plugin for headless previews.",
9+
"homepage": "https://github.com/wpengine/hwptoolkit",
10+
"license": "GPL-2.0",
11+
"authors": [
12+
{
13+
"name": "WP Engine Headless OSS Development Team",
14+
"email": "[email protected]",
15+
"homepage": "https://wpengine.com/"
16+
}
17+
],
18+
"support": {
19+
"issues": "https://github.com/wpengine/hwptoolkit/issues",
20+
"email": "[email protected]"
21+
},
22+
"dist": {
23+
"url": "https://github.com/wpengine/hwptoolkit/releases/download/%40wpengine%2Fhwp-previews-wordpress-plugin-0.0.15/hwp-previews.zip",
24+
"type": "zip"
25+
},
26+
"require": {
27+
"composer/installers": "~1.0 || ~2.0"
28+
}
29+
},
430
"0.0.14": {
531
"name": "wpengine/hwp-previews",
632
"version": "0.0.14",
@@ -501,6 +527,32 @@
501527
}
502528
},
503529
"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+
},
504556
"1.0.0": {
505557
"name": "wpengine/wpgraphql-logging",
506558
"version": "1.0.0",

plugins/hwp-previews/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 WordPress plugin for headless previews.",
55
"license": "GPL-2.0",
6-
"version": "0.0.14",
6+
"version": "0.0.15",
77
"authors": [
88
{
99
"name": "WP Engine Headless OSS Development Team",

plugins/hwp-previews/hwp-previews.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.14
10+
* Version: 0.0.15
1111
* Text Domain: hwp-previews
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
@@ -67,7 +67,7 @@ function hwp_previews_init(): void {
6767
*/
6868
function hwp_previews_constants(): void {
6969
if ( ! defined( 'HWP_PREVIEWS_VERSION' ) ) {
70-
define( 'HWP_PREVIEWS_VERSION', '0.0.14' );
70+
define( 'HWP_PREVIEWS_VERSION', '0.0.15' );
7171
}
7272

7373
if ( ! defined( 'HWP_PREVIEWS_PLUGIN_DIR' ) ) {

plugins/hwp-previews/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: GraphQL, Headless, Previews, WPGraphQL, React, Rest
44
Requires at least: 6.0
55
Tested up to: 6.9
66
Requires PHP: 7.4
7-
Stable tag: 0.0.14
7+
Stable tag: 0.0.15
88
License: GPL-2.0
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

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)