Skip to content

Release: wp-graphql-webhooks version bump #340

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .changeset/spotty-mice-behave.md

This file was deleted.

26 changes: 26 additions & 0 deletions plugins/composer-packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,32 @@
}
},
"wpengine/wp-graphql-webhooks": {
"0.0.4": {
"name": "wpengine/wp-graphql-webhooks",
"version": "0.0.4",
"type": "wordpress-plugin",
"description": "Headless webhooks for WPGraphQL",
"homepage": "https://github.com/wpengine/hwptoolkit",
"license": "GPL-2.0",
"authors": [
{
"name": "WP Engine Headless OSS Development Team",
"email": "[email protected]",
"homepage": "https://wpengine.com/"
}
],
"support": {
"issues": "https://github.com/wpengine/hwptoolkit/issues",
"email": "[email protected]"
},
"dist": {
"url": "https://github.com/wpengine/hwptoolkit/releases/download/%40wpengine%2Fwpgraphql-webhooks-wordpress-plugin-0.0.4/wp-graphql-webhooks.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0 || ~2.0"
}
},
"0.0.3": {
"name": "wpengine/wp-graphql-webhooks",
"version": "0.0.3",
Expand Down
11 changes: 11 additions & 0 deletions plugins/wp-graphql-webhooks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @wpengine/wpgraphql-webhooks-wordpress-plugin

## 0.0.4

### Patch Changes

- [#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

- Enhanced input validation and sanitization
- Improved output escaping
- Strengthened authorization checks
- Added additional security hardening measures

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/wp-graphql-webhooks/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Headless webhooks for WPGraphQL",
"type": "library",
"license": "GPL-2.0",
"version": "0.0.3",
"version": "0.0.4",
"authors": [
{
"name": "WP Engine Headless OSS Development Team",
Expand Down
2 changes: 1 addition & 1 deletion plugins/wp-graphql-webhooks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wpengine/wpgraphql-webhooks-wordpress-plugin",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"description": "Webhooks solution for WordPress",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/wp-graphql-webhooks/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Requires at least: 6.0
Tested up to: 6.8.1
Requires PHP: 7.4
Requires WPGraphQL: 1.8.0
Stable tag: 0.0.3
Stable tag: 0.0.4
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down
4 changes: 2 additions & 2 deletions plugins/wp-graphql-webhooks/wp-graphql-webhooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author: WPEngine OSS Team
* Author URI: https://github.com/wpengine
* Update URI: https://github.com/wpengine/hwptoolkit
* Version: 0.0.3
* Version: 0.0.4
* Text Domain: wp-graphql-webhooks
* Domain Path: /languages
* Requires at least: 6.0
Expand Down Expand Up @@ -60,7 +60,7 @@
function graphql_webhooks_constants(): void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_WEBHOOKS_VERSION' ) ) {
define( 'WPGRAPHQL_WEBHOOKS_VERSION', '0.0.3' );
define( 'WPGRAPHQL_WEBHOOKS_VERSION', '0.0.4' );
}

// Plugin Folder Path.
Expand Down