Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.3.4]

This _minor_ release adds support for WPGraphQL 2.3's new lazy-loading features, resulting in significant performance improvements. It also fixes a type conflict when using WPGraphQL for WooCommerce 0.21.1+.

- fix: Fix type conflicts on Product interfaces in WooGraphQL 0.21.1+. Props @robbiebel 🙌
- dev: Add support for lazy-loading GraphQL descriptions and deprecation messages.
- chore: bump PHPStan to v2.0.x
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Adds WPGraphQL support for [Rank Math SEO](https://rankmath.com/). Built with [W

-----

![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.3) ![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 />
![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.4) ![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 />
![CodeQuality](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-quality.yml?branch=develop&label=Code%20Quality)
![Integration Tests](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/integration-testing.yml?branch=develop&label=Integration%20Testing)
![Coding Standards](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards)
Expand Down
2 changes: 1 addition & 1 deletion phpstan/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
*/

define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' );
define( 'WPGRAPHQL_SEO_VERSION', '0.3.3' );
define( 'WPGRAPHQL_SEO_VERSION', '0.3.4' );
6 changes: 3 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Contributors: axepress, justlevine
Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, RankMath, Seo, Schema
Requires at least: 6.0
Tested up to: 6.8
Tested up to: 6.8.1
Requires PHP: 7.4
Stable tag: 0.3.3
Maintained at: https://github.com/AxeWP/wp-graphql-headless-login
Stable tag: 0.3.4
Maintained at: https://github.com/AxeWP/wp-graphql-rank-math
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down
7 changes: 3 additions & 4 deletions wp-graphql-rank-math.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
* Author: AxePress
* Author URI: https://github.com/AxeWP
* Update URI: https://github.com/AxeWP/wp-graphql-rank-math
* Version: 0.3.3
* Version: 0.3.4
* Text Domain: wp-graphql-rank-math
* Domain Path: /languages
* Requires at least: 6.0
* Tested up to: 6.8.0
* Tested up to: 6.8.1
* Requires PHP: 7.4
* Requires Plugins: wp-graphql, seo-by-rank-math
* WPGraphQL requires at least: 1.26.0
Expand All @@ -22,7 +22,6 @@
* @package WPGraphQL\RankMath
* @author axepress
* @license GPL-3
* @version 0.3.3
*/

declare( strict_types = 1 );
Expand Down Expand Up @@ -52,7 +51,7 @@
function constants(): void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
define( 'WPGRAPHQL_SEO_VERSION', '0.3.3' );
define( 'WPGRAPHQL_SEO_VERSION', '0.3.4' );
}

// Plugin Folder Path.
Expand Down
Loading