chore: version numbers and READMEs updated (#883)

This commit is contained in:
Geoff Taylor
2024-08-07 12:54:57 -04:00
committed by GitHub
parent 76e8db510e
commit 57f2a1eba0
6 changed files with 29 additions and 15 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at geoffrey.taylor@outlook.com. All
reported by contacting the project team at support@axistaylor.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
-9
View File
@@ -25,12 +25,3 @@ Any relevant logs, error output, GraphiQL screenshots, etc?
Any other comments?
-------------------
Where has this been tested?
---------------------------
- **WooGraphQL Version:** …
- **WPGraphQL Version:** …
- **WordPress Version:**
- **WooCommerce Version:**
+23
View File
@@ -1,5 +1,24 @@
# Changelog
## [v0.21.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.21.0) (2024-08-07)
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.20.0...v0.21.0)
**Breaking changes:**
- fix: product connection resolution refactored to better work with the ProductQuery class [\#880](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/880) ([kidunot89](https://github.com/kidunot89))
- fix: add model classes to type configs to better support query analyzer ID tracking [\#874](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/874) ([jasonbahl](https://github.com/jasonbahl))
- fix: wrong taxonomy label case in product attributes [\#869](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/869) ([creative-andrew](https://github.com/creative-andrew))
**New Features:**
- feat: Use Woocommerce Reset Password email for ResetPassword Mutation [\#878](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/878) ([alexookah](https://github.com/alexookah))
- feat: QL Session Handler refactored to handle non-GraphQL requests [\#870](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/870) ([kidunot89](https://github.com/kidunot89))
**Fixed:**
- feat: Add Product\_Attributes\_Connection\_Orderby\_Enum with MENU\_ORDER [\#876](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/876) ([alexookah](https://github.com/alexookah))
## [v0.20.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.20.0) (2024-05-21)
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.19.0...v0.20.0)
@@ -16,6 +35,10 @@
- fix: Bug in Session\_Transaction\_Manager::pop\_transaction\_id\(\) fixed [\#852](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/852) ([kidunot89](https://github.com/kidunot89))
- Fix: WPGraphQL v1.24.x support implemented [\#850](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/850) ([kidunot89](https://github.com/kidunot89))
**Other Changes:**
- devops: release script updated [\#859](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/859) ([kidunot89](https://github.com/kidunot89))
## [v0.19.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.19.0) (2023-12-27)
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.18.3...v0.19.0)
+1 -1
View File
@@ -7,7 +7,7 @@ Requires PHP: 7.3
Requires WooCommerce: 8.9.0
Requires WPGraphQL: 1.25.0+
Works with WPGraphQL-JWT-Authentication: 0.7.0+
Stable tag: 0.20.0
Stable tag: 0.21.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
+1 -1
View File
@@ -454,7 +454,7 @@ class QL_Session_Handler extends WC_Session_Handler {
$this->_session_expiration = apply_filters_deprecated(
'graphql_woocommerce_cart_session_expire',
[ $this->_session_expiration ],
'TBD',
'0.21.0',
'wc_session_expiration'
);
}
+3 -3
View File
@@ -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.20.0
* Version: 0.21.0
* Author: kidunot89
* Author URI: https://axistaylor.com
* Text Domain: wp-graphql-woocommerce
@@ -14,7 +14,7 @@
* Requires PHP: 7.3
* WC requires at least: 8.9.0
* WC tested up to: 8.9.0
* WPGraphQL requires at least: 1.25.0+
* WPGraphQL requires at least: 1.27.0+
* WPGraphQL-JWT-Authentication requires at least: 0.7.0+
* WPGraphQL-Headless-Login requires at least: 0.1.4+
*
@@ -36,7 +36,7 @@ defined( 'ABSPATH' ) || exit;
function constants() {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.20.0' );
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.21.0' );
}
// Plugin Folder Path.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {