File tree Expand file tree Collapse file tree 6 files changed +15
-9
lines changed Expand file tree Collapse file tree 6 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- - fix: Prevent fatal error when resolving seo from private ` Post ` models. H/t @MonPetitUd
3
+ ## [ Unreleased]
4
+
5
+ ## [ 0.3.2]
6
+
7
+ This _ minor_ release fixes a fatal error when trying to resolve SEO data from private ` Post ` models.
8
+
9
+ - fix: Use ` Post::$databaseId ` to prevent fatal errors on private ` contentNode ` s. H/t @MonPetitUd
4
10
5
11
## [ 0.3.1]
6
12
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Adds WPGraphQL support for [Rank Math SEO](https://rankmath.com/). Built with [W
11
11
12
12
-----
13
13
14
- ![ Packagist License] ( https://img.shields.io/packagist/l/axepress/wp-graphql-rank-math?color=green ) ![ Packagist Version] ( https://img.shields.io/packagist/v/axepress/wp-graphql-rank-math?label=stable ) ![ GitHub commits since latest release (by SemVer)] ( https://img.shields.io/github/commits-since/AxeWP/wp-graphql-rank-math/0.3.1 ) ![ GitHub forks] ( https://img.shields.io/github/forks/AxeWP/wp-graphql-rank-math?style=social ) ![ GitHub Repo stars] ( https://img.shields.io/github/stars/AxeWP/wp-graphql-rank-math?style=social ) <br />
14
+ ![ Packagist License] ( https://img.shields.io/packagist/l/axepress/wp-graphql-rank-math?color=green ) ![ Packagist Version] ( https://img.shields.io/packagist/v/axepress/wp-graphql-rank-math?label=stable ) ![ GitHub commits since latest release (by SemVer)] ( https://img.shields.io/github/commits-since/AxeWP/wp-graphql-rank-math/0.3.2 ) ![ GitHub forks] ( https://img.shields.io/github/forks/AxeWP/wp-graphql-rank-math?style=social ) ![ GitHub Repo stars] ( https://img.shields.io/github/stars/AxeWP/wp-graphql-rank-math?style=social ) <br />
15
15
![ CodeQuality] ( https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-quality.yml?branch=develop&label=Code%20Quality )
16
16
![ Integration Tests] ( https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/integration-testing.yml?branch=develop&label=Integration%20Testing )
17
17
![ Coding Standards] ( https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards )
Original file line number Diff line number Diff line change 6
6
*/
7
7
8
8
define ( 'WPGRAPHQL_SEO_PLUGIN_FILE ' , 'wp-graphql-rank-math.php ' );
9
- define ( 'WPGRAPHQL_SEO_VERSION ' , '0.3.1 ' );
9
+ define ( 'WPGRAPHQL_SEO_VERSION ' , '0.3.2 ' );
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Tested up to: 6.6.1
6
6
Requires PHP: 7.4
7
7
Requires Plugins: wp-graphql, seo-by-rank-math
8
8
Requires WPGraphQL: 1.26.0
9
- Stable tag: 0.3.1
9
+ Stable tag: 0.3.2
10
10
License: GPL-3
11
11
License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
12
Original file line number Diff line number Diff line change 3
3
'name ' => 'axepress/wp-graphql-rank-math ' ,
4
4
'pretty_version ' => 'dev-develop ' ,
5
5
'version ' => 'dev-develop ' ,
6
- 'reference ' => 'e686be89e7571f21b175ed5e5329b7f39b740944 ' ,
6
+ 'reference ' => '2cbeec18fb22d9b77a1a7ed7dff1c7b18b34ab85 ' ,
7
7
'type ' => 'wordpress-plugin ' ,
8
8
'install_path ' => __DIR__ . '/../../ ' ,
9
9
'aliases ' => array (),
22
22
'axepress/wp-graphql-rank-math ' => array (
23
23
'pretty_version ' => 'dev-develop ' ,
24
24
'version ' => 'dev-develop ' ,
25
- 'reference ' => 'e686be89e7571f21b175ed5e5329b7f39b740944 ' ,
25
+ 'reference ' => '2cbeec18fb22d9b77a1a7ed7dff1c7b18b34ab85 ' ,
26
26
'type ' => 'wordpress-plugin ' ,
27
27
'install_path ' => __DIR__ . '/../../ ' ,
28
28
'aliases ' => array (),
Original file line number Diff line number Diff line change 7
7
* Author: AxePress
8
8
* Author URI: https://github.com/AxeWP
9
9
* Update URI: https://github.com/AxeWP/wp-graphql-rank-math
10
- * Version: 0.3.1
10
+ * Version: 0.3.2
11
11
* Text Domain: wp-graphql-rank-math
12
12
* Domain Path: /languages
13
13
* Requires at least: 6.0
21
21
* @package WPGraphQL\RankMath
22
22
* @author axepress
23
23
* @license GPL-3
24
- * @version 0.3.1
24
+ * @version 0.3.2
25
25
*/
26
26
27
27
declare ( strict_types = 1 );
51
51
function constants (): void {
52
52
// Plugin version.
53
53
if ( ! defined ( 'WPGRAPHQL_SEO_VERSION ' ) ) {
54
- define ( 'WPGRAPHQL_SEO_VERSION ' , '0.3.1 ' );
54
+ define ( 'WPGRAPHQL_SEO_VERSION ' , '0.3.2 ' );
55
55
}
56
56
57
57
// Plugin Folder Path.
You can’t perform that action at this time.
0 commit comments