diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fd100e1..9a0eebd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [v1.0.3](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v1.0.3) (2026-06-30) + +[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v1.0.2...v1.0.3) + +**New Features:** + +- Add image support for productBrand query [\#1021](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/1021) ([cgarempire](https://github.com/cgarempire)) +- feat: configurable createdVia on order mutations + WooCommerce order attribution [\#1018](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/1018) ([scottyzen](https://github.com/scottyzen)) +- feat: persist shipping phone through the checkout mutation [\#1017](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/1017) ([kidunot89](https://github.com/kidunot89)) + +**Fixed:** + +- fix: address WordPress.org plugin review \(rename + prefixing + headers\) [\#1019](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/1019) ([kidunot89](https://github.com/kidunot89)) +- fix: resolve product variation type when the node is a base Post model [\#1020](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/1020) ([kidunot89](https://github.com/kidunot89)) + ## [v1.0.2](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v1.0.2) (2026-04-02) [Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v1.0.1...v1.0.2) diff --git a/README.txt b/README.txt index b1010c66..555ac7db 100644 --- a/README.txt +++ b/README.txt @@ -7,7 +7,7 @@ Requires PHP: 8.1 Requires WooCommerce: 9.0.0 Requires WPGraphQL: 2.0.0 Works with WPGraphQL-JWT-Authentication: 0.7.0+ -Stable tag: 1.0.2 +Stable tag: 1.0.3 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/wp-graphql-woocommerce.php b/wp-graphql-woocommerce.php index 5cc01dc0..d8bff41c 100644 --- a/wp-graphql-woocommerce.php +++ b/wp-graphql-woocommerce.php @@ -3,7 +3,7 @@ * Plugin Name: GraphQL for eCommerce * Plugin URI: https://github.com/wp-graphql/wp-graphql-woocommerce * Description: Adds WooCommerce functionality to WPGraphQL schema. - * Version: 1.0.2 + * Version: 1.0.3 * Author: kidunot89 * Author URI: https://axistaylor.com * Text Domain: graphql-for-ecommerce @@ -46,7 +46,7 @@ if ( file_exists( __DIR__ . '/c3.php' ) ) { function constants() { // Plugin version. if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) { - define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '1.0.2' ); + define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '1.0.3' ); } // Plugin Folder Path. if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {