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 11# Changelog
22
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
410
511## [ 0.3.1]
612
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
1111
1212-----
1313
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 />
1515![ CodeQuality] ( https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-quality.yml?branch=develop&label=Code%20Quality )
1616![ Integration Tests] ( https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/integration-testing.yml?branch=develop&label=Integration%20Testing )
1717![ 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 66 */
77
88define ( '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
66Requires PHP: 7.4
77Requires Plugins: wp-graphql, seo-by-rank-math
88Requires WPGraphQL: 1.26.0
9- Stable tag: 0.3.1
9+ Stable tag: 0.3.2
1010License: GPL-3
1111License URI: https://www.gnu.org/licenses/gpl-3.0.html
1212
Original file line number Diff line number Diff line change 33 'name ' => 'axepress/wp-graphql-rank-math ' ,
44 'pretty_version ' => 'dev-develop ' ,
55 'version ' => 'dev-develop ' ,
6- 'reference ' => 'e686be89e7571f21b175ed5e5329b7f39b740944 ' ,
6+ 'reference ' => '2cbeec18fb22d9b77a1a7ed7dff1c7b18b34ab85 ' ,
77 'type ' => 'wordpress-plugin ' ,
88 'install_path ' => __DIR__ . '/../../ ' ,
99 'aliases ' => array (),
2222 'axepress/wp-graphql-rank-math ' => array (
2323 'pretty_version ' => 'dev-develop ' ,
2424 'version ' => 'dev-develop ' ,
25- 'reference ' => 'e686be89e7571f21b175ed5e5329b7f39b740944 ' ,
25+ 'reference ' => '2cbeec18fb22d9b77a1a7ed7dff1c7b18b34ab85 ' ,
2626 'type ' => 'wordpress-plugin ' ,
2727 'install_path ' => __DIR__ . '/../../ ' ,
2828 'aliases ' => array (),
Original file line number Diff line number Diff line change 77 * Author: AxePress
88 * Author URI: https://github.com/AxeWP
99 * Update URI: https://github.com/AxeWP/wp-graphql-rank-math
10- * Version: 0.3.1
10+ * Version: 0.3.2
1111 * Text Domain: wp-graphql-rank-math
1212 * Domain Path: /languages
1313 * Requires at least: 6.0
2121 * @package WPGraphQL\RankMath
2222 * @author axepress
2323 * @license GPL-3
24- * @version 0.3.1
24+ * @version 0.3.2
2525 */
2626
2727declare ( strict_types = 1 );
5151function constants (): void {
5252 // Plugin version.
5353 if ( ! defined ( 'WPGRAPHQL_SEO_VERSION ' ) ) {
54- define ( 'WPGRAPHQL_SEO_VERSION ' , '0.3.1 ' );
54+ define ( 'WPGRAPHQL_SEO_VERSION ' , '0.3.2 ' );
5555 }
5656
5757 // Plugin Folder Path.
You can’t perform that action at this time.
0 commit comments