Skip to content
Merged
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
6 changes: 0 additions & 6 deletions .changeset/sixty-deers-cheer.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 @@ -265,6 +265,32 @@
}
},
"wpengine/wpgraphql-webhooks": {
"0.0.6": {
"name": "wpengine/wpgraphql-webhooks",
"version": "0.0.6",
"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": "headless-oss@wpengine.com",
"homepage": "https://wpengine.com/"
}
],
"support": {
"issues": "https://github.com/wpengine/hwptoolkit/issues",
"email": "support@wpengine.com"
},
"dist": {
"url": "https://github.com/wpengine/hwptoolkit/releases/download/%40wpengine%2Fwpgraphql-webhooks-wordpress-plugin-0.0.6/wpgraphql-webhooks.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0 || ~2.0"
}
},
"0.0.4": {
"name": "wpengine/wpgraphql-webhooks",
"version": "0.0.4",
Expand Down
6 changes: 6 additions & 0 deletions plugins/wpgraphql-webhooks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @wpengine/wpgraphql-webhooks-wordpress-plugin

## 0.0.6

### Patch Changes

- [#414](https://github.com/wpengine/hwptoolkit/pull/414) [`3d89e33`](https://github.com/wpengine/hwptoolkit/commit/3d89e33326b4f94ca19a568e03b30eb5dc532220) Thanks [@colinmurphy](https://github.com/colinmurphy)! - chore: Renamed plugin to wpgraphql-webhooks from wp-graphql-webhooks

## 0.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/wpgraphql-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.4",
"version": "0.0.6",
"authors": [
{
"name": "WP Engine Headless OSS Development Team",
Expand Down
2 changes: 1 addition & 1 deletion plugins/wpgraphql-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.5",
"version": "0.0.6",
"private": true,
"description": "Webhooks solution for WordPress",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/wpgraphql-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.4
Stable tag: 0.0.6
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down
4 changes: 2 additions & 2 deletions plugins/wpgraphql-webhooks/wpgraphql-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.4
* Version: 0.0.6
* Text Domain: 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.4' );
define( 'WPGRAPHQL_WEBHOOKS_VERSION', '0.0.6' );
}

// Plugin Folder Path.
Expand Down