Skip to content

Commit 57f2a1e

Browse files
authored
chore: version numbers and READMEs updated (#883)
1 parent 76e8db5 commit 57f2a1e

6 files changed

+29
-15
lines changed

.github/CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at geoffrey.taylor@outlook.com. All
58+
reported by contacting the project team at support@axistaylor.com. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.

.github/PULL_REQUEST_TEMPLATE.md

-9
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,3 @@ Any relevant logs, error output, GraphiQL screenshots, etc?
2525
Any other comments?
2626
-------------------
2727
28-
29-
30-
Where has this been tested?
31-
---------------------------
32-
33-
- **WooGraphQL Version:**
34-
- **WPGraphQL Version:**
35-
- **WordPress Version:**
36-
- **WooCommerce Version:**

CHANGELOG.md

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

3+
## [v0.21.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.21.0) (2024-08-07)
4+
5+
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.20.0...v0.21.0)
6+
7+
**Breaking changes:**
8+
9+
- 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))
10+
- 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))
11+
- 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))
12+
13+
**New Features:**
14+
15+
- 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))
16+
- 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))
17+
18+
**Fixed:**
19+
20+
- 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))
21+
322
## [v0.20.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.20.0) (2024-05-21)
423

524
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.19.0...v0.20.0)
@@ -16,6 +35,10 @@
1635
- 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))
1736
- Fix: WPGraphQL v1.24.x support implemented [\#850](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/850) ([kidunot89](https://github.com/kidunot89))
1837

38+
**Other Changes:**
39+
40+
- devops: release script updated [\#859](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/859) ([kidunot89](https://github.com/kidunot89))
41+
1942
## [v0.19.0](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.19.0) (2023-12-27)
2043

2144
[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.18.3...v0.19.0)

README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Requires PHP: 7.3
77
Requires WooCommerce: 8.9.0
88
Requires WPGraphQL: 1.25.0+
99
Works with WPGraphQL-JWT-Authentication: 0.7.0+
10-
Stable tag: 0.20.0
10+
Stable tag: 0.21.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

includes/utils/class-ql-session-handler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ public function set_session_expiration() {
454454
$this->_session_expiration = apply_filters_deprecated(
455455
'graphql_woocommerce_cart_session_expire',
456456
[ $this->_session_expiration ],
457-
'TBD',
457+
'0.21.0',
458458
'wc_session_expiration'
459459
);
460460
}

wp-graphql-woocommerce.php

+3-3
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.20.0
6+
* Version: 0.21.0
77
* Author: kidunot89
88
* Author URI: https://axistaylor.com
99
* Text Domain: wp-graphql-woocommerce
@@ -14,7 +14,7 @@
1414
* Requires PHP: 7.3
1515
* WC requires at least: 8.9.0
1616
* WC tested up to: 8.9.0
17-
* WPGraphQL requires at least: 1.25.0+
17+
* WPGraphQL requires at least: 1.27.0+
1818
* WPGraphQL-JWT-Authentication requires at least: 0.7.0+
1919
* WPGraphQL-Headless-Login requires at least: 0.1.4+
2020
*
@@ -36,7 +36,7 @@
3636
function constants() {
3737
// Plugin version.
3838
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
39-
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.20.0' );
39+
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.21.0' );
4040
}
4141
// Plugin Folder Path.
4242
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {

0 commit comments

Comments
 (0)