Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

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

**Breaking changes:**

- feat: "found" field added to the Products Connection types [\#804](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/804) ([kidunot89](https://github.com/kidunot89))
- feat: ProductWithAttributes and ProductVariation interfaces added [\#803](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/803) ([kidunot89](https://github.com/kidunot89))
- feat: CartItem converted to WPInterface type [\#798](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/798) ([kidunot89](https://github.com/kidunot89))
- fix: ProductUnion interface added [\#797](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/797) ([kidunot89](https://github.com/kidunot89))

**New Features:**

- feat: Several product interfaces added. [\#801](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/801) ([kidunot89](https://github.com/kidunot89))

**Fixed:**

- fix: VariationAttribute now sourcing value as Term slug for global attributes [\#800](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/800) ([kidunot89](https://github.com/kidunot89))
- fix: Old trouble code removed. [\#799](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/799) ([kidunot89](https://github.com/kidunot89))
- fix: Cart\_Mutation:prepare\_attributes made public [\#796](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/796) ([kidunot89](https://github.com/kidunot89))

## [v0.16.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.16.0) (2023-08-23)

[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.15.0...v0.16.0)
Expand All @@ -10,6 +31,7 @@

**Fixed:**

- chore: Fatal debug code removed [\#791](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/791) ([kidunot89](https://github.com/kidunot89))
- fix: WP User core field support fixed in `updateCustomer` mutation [\#789](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/789) ([kidunot89](https://github.com/kidunot89))
- fix: default the resolved `customer` to the current user [\#787](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/787) ([justlevine](https://github.com/justlevine))
- fix: PHP-JWT versioned to maintain support for composer and WP Bedrock [\#778](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/778) ([kidunot89](https://github.com/kidunot89))
Expand Down
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.0
Stable tag: 0.17.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
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-cart-item.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* WPInterface Type - CartItem
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-downloadable-product.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines the "DownloadableProduct" interface.
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-inventoried-product.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines the "InventoriedProduct" interface.
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-product-union.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines the union between product types and product variation types.
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-product-variation.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines "ProductVariation" interface.
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-product-with-attributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines the "ProductWithAttributes" interface.
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-product-with-dimensions.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines the "ProductWithDimensions".
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-product-with-pricing.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines the "ProductWithPricing" interface.
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
2 changes: 1 addition & 1 deletion includes/type/interface/class-product-with-variations.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Defines the "ProductWithVariations" type.
*
* @package WPGraphQL\WooCommerce\Type\WPInterface
* @since TBD
* @since 0.17.0
*/

namespace WPGraphQL\WooCommerce\Type\WPInterface;
Expand Down
4 changes: 2 additions & 2 deletions wp-graphql-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WPGraphQL WooCommerce (WooGraphQL)
* Plugin URI: https://github.com/wp-graphql/wp-graphql-woocommerce
* Description: Adds Woocommerce Functionality to WPGraphQL schema.
* Version: 0.16.0
* Version: 0.17.0
* Author: kidunot89
* Author URI: https://axistaylor.com
* Text Domain: wp-graphql-woocommerce
Expand Down Expand Up @@ -33,7 +33,7 @@
function constants() {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.16.0' );
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.17.0' );
}
// Plugin Folder Path.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {
Expand Down