Skip to content

Commit ac5fa6b

Browse files
authored
chore: version numbers set and readmes updated. (#805)
1 parent 134dc5e commit ac5fa6b

12 files changed

+34
-12
lines changed

Diff for: CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [v0.17.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.17.0) (2023-09-18)
4+
5+
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.16.0...v0.17.0)
6+
7+
**Breaking changes:**
8+
9+
- 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))
10+
- feat: ProductWithAttributes and ProductVariation interfaces added [\#803](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/803) ([kidunot89](https://github.com/kidunot89))
11+
- feat: CartItem converted to WPInterface type [\#798](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/798) ([kidunot89](https://github.com/kidunot89))
12+
- fix: ProductUnion interface added [\#797](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/797) ([kidunot89](https://github.com/kidunot89))
13+
14+
**New Features:**
15+
16+
- feat: Several product interfaces added. [\#801](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/801) ([kidunot89](https://github.com/kidunot89))
17+
18+
**Fixed:**
19+
20+
- 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))
21+
- fix: Old trouble code removed. [\#799](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/799) ([kidunot89](https://github.com/kidunot89))
22+
- fix: Cart\_Mutation:prepare\_attributes made public [\#796](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/796) ([kidunot89](https://github.com/kidunot89))
23+
324
## [v0.16.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.16.0) (2023-08-23)
425

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

1132
**Fixed:**
1233

34+
- chore: Fatal debug code removed [\#791](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/791) ([kidunot89](https://github.com/kidunot89))
1335
- 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))
1436
- 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))
1537
- 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))

Diff for: README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Requires PHP: 7.2
77
Requires WooCommerce: 7.5.0
88
Requires WPGraphQL: 1.14.0+
99
Works with WPGraphQL-JWT-Authentication: 0.7.0+
10-
Stable tag: 0.16.0
10+
Stable tag: 0.17.0
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

Diff for: includes/type/interface/class-cart-item.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* WPInterface Type - CartItem
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: includes/type/interface/class-downloadable-product.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines the "DownloadableProduct" interface.
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: includes/type/interface/class-inventoried-product.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines the "InventoriedProduct" interface.
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: includes/type/interface/class-product-union.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines the union between product types and product variation types.
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: includes/type/interface/class-product-variation.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines "ProductVariation" interface.
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: includes/type/interface/class-product-with-attributes.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines the "ProductWithAttributes" interface.
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: includes/type/interface/class-product-with-dimensions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines the "ProductWithDimensions".
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: includes/type/interface/class-product-with-pricing.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines the "ProductWithPricing" interface.
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: includes/type/interface/class-product-with-variations.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Defines the "ProductWithVariations" type.
44
*
55
* @package WPGraphQL\WooCommerce\Type\WPInterface
6-
* @since TBD
6+
* @since 0.17.0
77
*/
88

99
namespace WPGraphQL\WooCommerce\Type\WPInterface;

Diff for: wp-graphql-woocommerce.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WPGraphQL WooCommerce (WooGraphQL)
44
* Plugin URI: https://github.com/wp-graphql/wp-graphql-woocommerce
55
* Description: Adds Woocommerce Functionality to WPGraphQL schema.
6-
* Version: 0.16.0
6+
* Version: 0.17.0
77
* Author: kidunot89
88
* Author URI: https://axistaylor.com
99
* Text Domain: wp-graphql-woocommerce
@@ -33,7 +33,7 @@
3333
function constants() {
3434
// Plugin version.
3535
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
36-
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.16.0' );
36+
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.17.0' );
3737
}
3838
// Plugin Folder Path.
3939
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {

0 commit comments

Comments
 (0)