Wp Graphql Rank Math Versions Save

Add GraphQL support for RankMath SEO

0.3.0

1 week ago

This major releases simplifies the GraphQL schema by narrowing the seo field types to their implementations. We've also bumped the minimum version of WPGraphQL to v1.26.0 and refactored the RedirectionConnectionResolver to use the improved lifecycle methods introduced in that release.

Upgrade Notes

This release contains breaking changes to the schema. Instead of the seo field returning a generic RankMathSeo object, it now returns a more specific object based on the node type. For example, a Post node will return a RankMathPostObjectSeo object, while a Category node will return a RankMathCategoryTermSeo object.

In most cases, you should not need to update your queries, as the schema should resolve the correct type based on the node type. However, if you are using inline fragments on the seo field inside your query that are not actually resolvable, you will need to remove them from your queries.

E.g.

query GetContentNodeSeo {
  contentNodes {
    nodes {
      ... on Post {
        seo {
          # ✔️ This now works and is the **preferred** way,
          # since `seo` is always a `RankMathPostObjectSeo` type.
          ...MyPostSeoFragment

          # 🤷 The old way will still work but is now redundant.
          ... on RankMathPostObjectSeo {
            ...MyPostSeoFragment
          }

          # ❌ This needs to be removed, since `Post` isnt a `User`
          ... on RankMathUserSeo {
            ...MyUserSeoFragment
          }
        }
      }
    }
  }
}

Breaking Schema Changes

  • Field Category.seo changed type from RankMathSeo to RankMathCategoryTermSeo
  • Field ContentNode.seo changed type from RankMathSeo to RankMathContentNodeSeo
  • Field HierarchicalContentNode.seo changed type from RankMathSeo to RankMathContentNodeSeo
  • Field MediaItem.seo changed type from RankMathSeo to RankMathMediaItemObjectSeo
  • Field Page.seo changed type from RankMathSeo to RankMathPageObjectSeo
  • Field Post.seo changed type from RankMathSeo to RankMathPostObjectSeo
  • Field PostFormat.seo changed type from RankMathSeo to RankMathPostFormatTermSeo
  • Field Tag.seo changed type from RankMathSeo to RankMathTagTermSeo
  • Field User.seo changed type from RankMathSeo to RankMathUserSeo

What's Changed

  • feat!: Narrow seo field types to their implementations.
  • fix: Correctly resolve rankMathSettings.homepage.description field. Props @offminded 🙌
  • dev: Update RedirectionConnectionResolver for v1.26.0 compatibility.
  • chore!: Bump minimum supported WPGraphQL version to v1.26.0.
  • chore: Update Composer dev-dependencies to latest versions and address uncovered lints.
  • chore: Update Strauss to v0.19.1
  • tests: Update compatibility with [email protected].

New Contributors

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.2.0...0.3.0

0.2.0

1 month ago

This major release refactors the plugin's root files to use the WPGraphQL/RankMath namespace. We've also added explicit support for WordPress 6.5 (including the new Plugin Dependencies feature), squashed a few bugs, and more.

[!NOTE] Although this release technically contains breaking changes, these changes are limited to developers directly extending the wp-graphql-rank-math.php, activation.php, deactivation.php files, and the WPGraphQL\RankMath\Main class.

If you are using the plugin as intended, you should not experience any issues when upgrading.

What's changed

  • feat: Add plugin dependencies header.
  • fix: Improve handling of ContentTypeSeo and prevent fatal error when generating breadcrumbs. H/t @MonPetitUd
  • fix: Plugin versions in dependency check logic is now in sync with the version requirements.
  • fix: Update the return type of the type field in the Redirection model to correctly return a ?string.
  • chore!: Add WPGraphQL/RankMath namespace to root-level files ( activation.php, deactivation.php, wp-graphql-rank-math.php ).
  • chore: Declare strict_types in all PHP files.
  • chore: Refactor autoloader logic to Autoloader class.
  • chore: Update Composer dev-deps and fix newly-surfaced PHPCS smells.
  • chore: Implement PHPStan strict rules.
  • chore: Update WPGraphQL Plugin Boilerplate to v0.1.0.
  • ci: Update GitHub Actions to latest versions.
  • ci: Test plugin compatibility with WordPress 6.5.0.
  • ci: Update Strauss to v0.17.0

0.1.1

1 month ago

This minor release adds support for more social fields in the RankMathSocialMetaSettings and RankMathUserSeo types. Additionally, it fixes a bug where the seo.openGraph.image field would fail to resolve if provided a string image.

There are no breaking changes.

What's changed

  • feat: Expose additionalProfiles field on RankMathSocialMetaSettings. props: @colis 🙌
  • feat: Expose facebookProfileUrl, twitterUserName, and additionalProfiles social fields on RankMathUserSeo. props: @colis 🙌
  • fix: Correctly resolve seo.openGraph.image field when parsed value is a string.

New Contributors

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.1.0...0.1.1

0.1.0

2 months ago

This minor release bumps the plugin version to 0.1.0! 🎉 Additionally, we fixed a few bugs regarding seo.openGraph resolution, and deprecated a setting that was removed in RankMath v1.0.211.

There are no breaking changes in this release.

[!NOTE] The reason for the version bump is to make it easier to update future releases in accordance with our versioning policy.

While the plugin version number is indicative of the (projected) schema maturity and not the underlying code (which has been used in enteprise production environments for almost two years), the new features and improvements that would warrant major changes to the schema are currently blocked upstream.

By bumping to v0.1.0, we can continue to push patch releases in the meantime without users having to worry about breaking changes.

What's changed

  • fix: Deprecate rankMathSettings.sitemaps.general.canPingSearchEngines, as it was removed in RankMath v1.0.211.
  • fix: Improve SEO head data fetching to load Rank Math modules more consistently.
  • fix: Correctly parse OG product meta data when resolving seo.OpenGraph. H/t @joanpzen
  • chore: Pin WPBrowser to v3.4.x to avoid breaking changes in v3.5+.
  • ci: Test plugin compatibility against WordPress 6.4.2

This release was sponsored by Red Rocks Web Development 😍.

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.0.16...0.1.0

0.0.16

6 months ago

What's Changed

  • fix: Correctly parse excluded Post/Term IDs when returning nodes for Sitemap. Props @marcinkrzeminski
  • chore: Update Composer dev-dependencies.
  • chore!: Bump minimum supported WPGraphQL version to v1.14.0.
  • chore!: Bump minimum supported RankMath version to v1.0.201.
  • chore!: Bump minimum supported WordPress version to v6.0.
  • ci: Test Plugin Compatibility with WP 6.3.2 and PHP 8.2.

New Contributors

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.0.15...0.0.16

0.0.15

7 months ago

What's Changed

  • chore: Update Composer dev-dependencies.
  • chore: Update WPGraphQL Coding Standards to v2.0.0-beta and lint.
  • chore: Fix minimum supported WordPress version to be 5.6, which is the minimum requirement for RankMath 1.0.90.
  • ci: Test Plugin compatibility with WordPress 6.3.

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.0.14...0.0.15

0.0.14

11 months ago

What's Changed

  • fix: Fetch the correct SEO data when resolving custom taxonomy terms. Props @lucguerraz
  • dev!: Move SEO::$global_authordata property to the UserSeo model and make nullable.
  • dev: Move seo.breadcrumbs resolution from the RankMathSeo interface to the SEO model.
  • chore: Update Composer dev-dependencies.

New Contributors

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.0.13...0.0.14

0.0.13

11 months ago

What's Changed

  • feat: Expose Redirections to the GraphQL schema.
  • dev: Convert HTML entities for breadcrumbTitle, description, and title fields to their corresponding characters. H/t @sdegetaus
  • chore: Implement axepress/wp-graphql-cs ruleset for PHP_CodeSniffer.
  • chore: Update Composer dependencies.
  • docs: Relocate query docs to docs/reference/queries.md, and add docs on querying redirections, and included WordPress actions and filters.

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.0.12...0.0.13

0.0.12

1 year ago

What's Changed

  • fix: Use correct post type when querying for ContentNodeSeo on revisions. Props @idflood
  • dev: Show admin notice when conflicting wp-graphql-yoast-seo is installed.
  • chore: Update Strauss and Composer dev-dependencies to latest versions.
  • ci: Test plugin compatibility with WordPress 6.2

New Contributors

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.0.11...0.0.12

0.0.11

1 year ago

What's Changed

  • fix: Pass necessary data to resolve OpenGraphMeta.image field.
  • chore: Update Composer dev-dependencies.

Full Changelog: https://github.com/AxeWP/wp-graphql-rank-math/compare/0.0.10...0.0.11