diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c79ec06..de294628 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v0.18.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.18.0) (2023-09-23) + +[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.17.0...v0.18.0) + +**New Features:** + +- feat: Hooks added to Authorizing URL functionality [\#806](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/806) ([kidunot89](https://github.com/kidunot89)) +- feat: `collectionStats` query added [\#785](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/785) ([kidunot89](https://github.com/kidunot89)) + ## [v0.17.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.17.0) (2023-09-18) [Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.16.0...v0.17.0) diff --git a/README.txt b/README.txt index adf4f47d..522d18b6 100644 --- a/README.txt +++ b/README.txt @@ -7,7 +7,7 @@ Requires PHP: 7.2 Requires WooCommerce: 7.5.0 Requires WPGraphQL: 1.14.0+ Works with WPGraphQL-JWT-Authentication: 0.7.0+ -Stable tag: 0.17.0 +Stable tag: 0.18.0 License: GPL-3 License URI: https://www.gnu.org/licenses/gpl-3.0.html Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce diff --git a/includes/type/enum/class-attribute-operator-enum.php b/includes/type/enum/class-attribute-operator-enum.php index bac305a1..ed9942c5 100644 --- a/includes/type/enum/class-attribute-operator-enum.php +++ b/includes/type/enum/class-attribute-operator-enum.php @@ -3,7 +3,7 @@ * WPEnum Type - AttributeOperatorEnum * * @package WPGraphQL\WooCommerce\Type\WPEnum - * @since TBD + * @since 0.18.0 */ namespace WPGraphQL\WooCommerce\Type\WPEnum; diff --git a/includes/type/enum/class-product-attribute-enum.php b/includes/type/enum/class-product-attribute-enum.php index d9e232e4..a5313562 100644 --- a/includes/type/enum/class-product-attribute-enum.php +++ b/includes/type/enum/class-product-attribute-enum.php @@ -3,7 +3,7 @@ * WPEnum Type - ProductAttributeEnum * * @package WPGraphQL\WooCommerce\Type\WPEnum - * @since TBD + * @since 0.18.0 */ namespace WPGraphQL\WooCommerce\Type\WPEnum; diff --git a/includes/type/input/class-collection-stats-query-input.php b/includes/type/input/class-collection-stats-query-input.php index 9c786ac5..518d47b1 100644 --- a/includes/type/input/class-collection-stats-query-input.php +++ b/includes/type/input/class-collection-stats-query-input.php @@ -3,7 +3,7 @@ * WPInputObjectType - CollectionStatsQueryInput * * @package WPGraphQL\WooCommerce\Type\WPInputObject - * @since TBD + * @since 0.18.0 */ namespace WPGraphQL\WooCommerce\Type\WPInputObject; diff --git a/includes/type/input/class-collection-stats-where-args.php b/includes/type/input/class-collection-stats-where-args.php index 94402a74..44a97579 100644 --- a/includes/type/input/class-collection-stats-where-args.php +++ b/includes/type/input/class-collection-stats-where-args.php @@ -3,7 +3,7 @@ * WPInputObjectType - CollectionStatsWhereArgs * * @package WPGraphQL\WooCommerce\Type\WPInputObject - * @since TBD + * @since 0.18.0 */ namespace WPGraphQL\WooCommerce\Type\WPInputObject; diff --git a/includes/type/input/class-product-attribute-filter-input.php b/includes/type/input/class-product-attribute-filter-input.php index e1cf3356..643be3b1 100644 --- a/includes/type/input/class-product-attribute-filter-input.php +++ b/includes/type/input/class-product-attribute-filter-input.php @@ -3,7 +3,7 @@ * WPInputObjectType - ProductAttributeFilterInput * * @package WPGraphQL\WooCommerce\Type\WPInputObject - * @since TBD + * @since 0.18.0 */ namespace WPGraphQL\WooCommerce\Type\WPInputObject; diff --git a/includes/type/object/class-collection-stats-type.php b/includes/type/object/class-collection-stats-type.php index 626255bb..916afe89 100644 --- a/includes/type/object/class-collection-stats-type.php +++ b/includes/type/object/class-collection-stats-type.php @@ -3,7 +3,7 @@ * WPObject Type - Collection_Stats_Type * * @package WPGraphQL\WooCommerce\Type\WPObject - * @since TBD + * @since 0.18.0 */ namespace WPGraphQL\WooCommerce\Type\WPObject; diff --git a/wp-graphql-woocommerce.php b/wp-graphql-woocommerce.php index 0d9032d9..e4245b0b 100644 --- a/wp-graphql-woocommerce.php +++ b/wp-graphql-woocommerce.php @@ -3,16 +3,16 @@ * Plugin Name: WPGraphQL WooCommerce (WooGraphQL) * Plugin URI: https://github.com/wp-graphql/wp-graphql-woocommerce * Description: Adds Woocommerce Functionality to WPGraphQL schema. - * Version: 0.17.0 + * Version: 0.18.0 * Author: kidunot89 * Author URI: https://axistaylor.com * Text Domain: wp-graphql-woocommerce * Domain Path: /languages * License: GPL-3 * License URI: https://www.gnu.org/licenses/gpl-3.0.html - * WC requires at least: 7.5.0 - * WC tested up to: 7.9.0 - * WPGraphQL requires at least: 1.14.0+ + * WC requires at least: 7.9.0 + * WC tested up to: 8.1.1 + * WPGraphQL requires at least: 1.16.0+ * WPGraphQL-JWT-Authentication requires at least: 0.7.0+ * * @package WPGraphQL\WooCommerce @@ -33,7 +33,7 @@ function constants() { // Plugin version. if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) { - define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.17.0' ); + define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.18.0' ); } // Plugin Folder Path. if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {