Skip to content

Commit 65a0767

Browse files
authored
Merge pull request #340 from wpengine/release/wp-graphql-webhooks-20250718-135610
Release: wp-graphql-webhooks version bump
2 parents d388cb7 + 939535e commit 65a0767

File tree

7 files changed

+42
-15
lines changed

7 files changed

+42
-15
lines changed

.changeset/spotty-mice-behave.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
@@ -133,6 +133,32 @@
133133
}
134134
},
135135
"wpengine/wp-graphql-webhooks": {
136+
"0.0.4": {
137+
"name": "wpengine/wp-graphql-webhooks",
138+
"version": "0.0.4",
139+
"type": "wordpress-plugin",
140+
"description": "Headless webhooks for WPGraphQL",
141+
"homepage": "https://github.com/wpengine/hwptoolkit",
142+
"license": "GPL-2.0",
143+
"authors": [
144+
{
145+
"name": "WP Engine Headless OSS Development Team",
146+
"email": "[email protected]",
147+
"homepage": "https://wpengine.com/"
148+
}
149+
],
150+
"support": {
151+
"issues": "https://github.com/wpengine/hwptoolkit/issues",
152+
"email": "[email protected]"
153+
},
154+
"dist": {
155+
"url": "https://github.com/wpengine/hwptoolkit/releases/download/%40wpengine%2Fwpgraphql-webhooks-wordpress-plugin-0.0.4/wp-graphql-webhooks.zip",
156+
"type": "zip"
157+
},
158+
"require": {
159+
"composer/installers": "~1.0 || ~2.0"
160+
}
161+
},
136162
"0.0.3": {
137163
"name": "wpengine/wp-graphql-webhooks",
138164
"version": "0.0.3",

plugins/wp-graphql-webhooks/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @wpengine/wpgraphql-webhooks-wordpress-plugin
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- [#336](https://github.com/wpengine/hwptoolkit/pull/336) [`cff50ab`](https://github.com/wpengine/hwptoolkit/commit/cff50abcdaccecbefe4969312df14f94d11663d7) Thanks [@josephfusco](https://github.com/josephfusco)! - fix: security improvements for webhooks plugin
8+
9+
- Enhanced input validation and sanitization
10+
- Improved output escaping
11+
- Strengthened authorization checks
12+
- Added additional security hardening measures
13+
314
## 0.0.3
415

516
### Patch Changes

plugins/wp-graphql-webhooks/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Headless webhooks for WPGraphQL",
44
"type": "library",
55
"license": "GPL-2.0",
6-
"version": "0.0.3",
6+
"version": "0.0.4",
77
"authors": [
88
{
99
"name": "WP Engine Headless OSS Development Team",

plugins/wp-graphql-webhooks/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-webhooks-wordpress-plugin",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"private": true,
55
"description": "Webhooks solution for WordPress",
66
"scripts": {

plugins/wp-graphql-webhooks/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Requires at least: 6.0
55
Tested up to: 6.8.1
66
Requires PHP: 7.4
77
Requires WPGraphQL: 1.8.0
8-
Stable tag: 0.0.3
8+
Stable tag: 0.0.4
99
License: GPL-3
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1111

plugins/wp-graphql-webhooks/wp-graphql-webhooks.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author: WPEngine OSS Team
88
* Author URI: https://github.com/wpengine
99
* Update URI: https://github.com/wpengine/hwptoolkit
10-
* Version: 0.0.3
10+
* Version: 0.0.4
1111
* Text Domain: wp-graphql-webhooks
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
@@ -60,7 +60,7 @@
6060
function graphql_webhooks_constants(): void {
6161
// Plugin version.
6262
if ( ! defined( 'WPGRAPHQL_WEBHOOKS_VERSION' ) ) {
63-
define( 'WPGRAPHQL_WEBHOOKS_VERSION', '0.0.3' );
63+
define( 'WPGRAPHQL_WEBHOOKS_VERSION', '0.0.4' );
6464
}
6565

6666
// Plugin Folder Path.

0 commit comments

Comments
 (0)