Skip to content

Commit 1b9a6de

Browse files
committed
Version numbers updated.
1 parent 7ce8214 commit 1b9a6de

File tree

7 files changed

+13
-83
lines changed

7 files changed

+13
-83
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,10 @@ Feel free to test out the extension using this [GraphiQL Playground](https://woo
4545

4646
## Demo/Examples
4747

48-
**Examples with Next.js**
49-
50-
[Next.js WooCommerce Theme](https://github.com/imranhsayed/woo-next) [[source]](https://github.com/imranhsayed/woo-next) [[demo video]](https://youtu.be/EGjY3X868YQ)
51-
52-
**Examples with Gatsby**
53-
54-
[Gatsby WooCommerce Theme](https://gatsby-woocommerce-theme.netlify.app/) [[source]](https://github.com/imranhsayed/gatsby-woocommerce-themes) [[demo video]](https://youtu.be/ygaE8ZdPEX8)
48+
- Examples with Next.js
49+
- [Next.js WooCommerce Theme](https://github.com/imranhsayed/woo-next) [[source]](https://github.com/imranhsayed/woo-next) [[demo video]](https://youtu.be/EGjY3X868YQ)
50+
- Examples with Gatsby
51+
- [Gatsby WooCommerce Theme](https://gatsby-woocommerce-theme.netlify.app/) [[source]](https://github.com/imranhsayed/gatsby-woocommerce-themes) [[demo video]](https://youtu.be/ygaE8ZdPEX8)
5552

5653
## Who using WooGraphQL
5754

README.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Contributors: kidunot89, ranaaterning, jasonbahl, saleebm
33
Tags: GraphQL, WooCommerce, WPGraphQL
44
Requires at least: 4.9
55
Tested up to: 5.2
6-
Requires PHP: 7.0
7-
Requires WooCommerce: 4.7.0
8-
Requires WPGraphQL: 0.13.4+
6+
Requires PHP: 7.1
7+
Requires WooCommerce: 4.8.0
8+
Requires WPGraphQL: 1.0.0+
99
Works with WPGraphQL-JWT-Authentication: 0.4.0+
10-
Stable tag: 0.6.1
10+
Stable tag: 0.6.2
1111
License: GPL-3
1212
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1313
Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce

includes/class-core-schema-filters.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,6 @@ public static function add_filters() {
3131
// Add data-loaders to AppContext.
3232
add_filter( 'graphql_data_loaders', array( __CLASS__, 'graphql_data_loaders' ), 10, 2 );
3333

34-
// Adds connection resolutions for WooGraphQL type to WPGraphQL type connections.
35-
add_filter(
36-
'graphql_comment_connection_query_args',
37-
array(
38-
'\WPGraphQL\WooCommerce\Data\Connection\Product_Review_Connection_Resolver',
39-
'get_query_args',
40-
),
41-
10,
42-
5
43-
);
44-
4534
// Add node resolvers.
4635
add_filter(
4736
'graphql_resolve_node',

includes/data/connection/class-product-review-connection-resolver.php

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

vendor/composer/autoload_classmap.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
'WPGraphQL\\WooCommerce\\Data\\Connection\\Payment_Gateway_Connection_Resolver' => $baseDir . '/includes/data/connection/class-payment-gateway-connection-resolver.php',
3939
'WPGraphQL\\WooCommerce\\Data\\Connection\\Product_Attribute_Connection_Resolver' => $baseDir . '/includes/data/connection/class-product-attribute-connection-resolver.php',
4040
'WPGraphQL\\WooCommerce\\Data\\Connection\\Product_Connection_Resolver' => $baseDir . '/includes/data/connection/class-product-connection-resolver.php',
41-
'WPGraphQL\\WooCommerce\\Data\\Connection\\Product_Review_Connection_Resolver' => $baseDir . '/includes/data/connection/class-product-review-connection-resolver.php',
4241
'WPGraphQL\\WooCommerce\\Data\\Connection\\Refund_Connection_Resolver' => $baseDir . '/includes/data/connection/class-refund-connection-resolver.php',
4342
'WPGraphQL\\WooCommerce\\Data\\Connection\\Shipping_Method_Connection_Resolver' => $baseDir . '/includes/data/connection/class-shipping-method-connection-resolver.php',
4443
'WPGraphQL\\WooCommerce\\Data\\Connection\\Tax_Rate_Connection_Resolver' => $baseDir . '/includes/data/connection/class-tax-rate-connection-resolver.php',

vendor/composer/autoload_static.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ class ComposerStaticInitcf7e42f55301bc4749385f15007e7f89
6666
'WPGraphQL\\WooCommerce\\Data\\Connection\\Payment_Gateway_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-payment-gateway-connection-resolver.php',
6767
'WPGraphQL\\WooCommerce\\Data\\Connection\\Product_Attribute_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-product-attribute-connection-resolver.php',
6868
'WPGraphQL\\WooCommerce\\Data\\Connection\\Product_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-product-connection-resolver.php',
69-
'WPGraphQL\\WooCommerce\\Data\\Connection\\Product_Review_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-product-review-connection-resolver.php',
7069
'WPGraphQL\\WooCommerce\\Data\\Connection\\Refund_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-refund-connection-resolver.php',
7170
'WPGraphQL\\WooCommerce\\Data\\Connection\\Shipping_Method_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-shipping-method-connection-resolver.php',
7271
'WPGraphQL\\WooCommerce\\Data\\Connection\\Tax_Rate_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-tax-rate-connection-resolver.php',

wp-graphql-woocommerce.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
* Plugin Name: WPGraphQL WooCommerce (WooGraphQL)
44
* Plugin URI: https://github.com/kidunot89/wp-graphql-woocommerce
55
* Description: Adds Woocommerce Functionality to WPGraphQL schema.
6-
* Version: 0.6.1
6+
* Version: 0.6.2
77
* Author: kidunot89
88
* Author URI: https://axistaylor.com
99
* Text Domain: wp-graphql-woocommerce
1010
* Domain Path: /languages
1111
* License: GPL-3
1212
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
13-
* WC requires at least: 3.0.0
14-
* WC tested up to: 4.0.0
15-
* WPGraphQL requires at least: 0.8.0+
13+
* WC requires at least: 4.0.0
14+
* WC tested up to: 4.8.0
15+
* WPGraphQL requires at least: 1.0.0+
1616
* WPGraphQL-JWT-Authentication requires at least: 0.4.0+
1717
*
1818
* @package WPGraphQL\WooCommerce
@@ -45,7 +45,7 @@
4545
function woographql_constants() {
4646
// Plugin version.
4747
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
48-
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.6.1' );
48+
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.6.2' );
4949
}
5050
// Plugin Folder Path.
5151
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {

0 commit comments

Comments
 (0)