Skip to content
This repository has been archived by the owner on May 6, 2023. It is now read-only.

Releases: GraphQLAPI/graphql-api-for-wp

0.7.4

17 Dec 23:59
Compare
Choose a tag to compare

Fixed:

  • Can disable modules in bulk again (logic was broken in migration to PHP 8.0)

0.7.3

17 Dec 17:07
Compare
Choose a tag to compare

Fixed:

  • Several fixes of unset array var showing on PHP 8.0

0.7.2

17 Dec 16:41
Compare
Choose a tag to compare

Fixed:

  • Unset array var showing on PHP 8.0

0.7.1

17 Dec 16:17
Compare
Choose a tag to compare

Fixed:

  • Check for previous installed version (to show admin notice with release notes) produced an error in PHP 8.0

0.7.0

17 Dec 15:57
Compare
Choose a tag to compare

Added:

  • Mutations and nested mutations (#28) - Thanks to WPKube for sponsoring this feature ❤️
  • Mutations in the schema:
    • Root.createPost
    • Root.updatePost
    • Root.setFeaturedImageforCustomPost
    • Root.removeFeaturedImageforCustomPost
    • Root.addCommentToCustomPost
    • Root.replyComment
    • Root.loginUser
    • Root.logoutUser
    • CustomPost.update (nested)
    • CustomPost.setFeaturedImage (nested)
    • CustomPost.removeFeaturedImage (nested)
    • CustomPost.addComment (nested)
    • Comment.reply (nested)
  • Support for PHP 8.0

Updated:

  • Replaced the About page with the Support page
  • Decreased the size of the plugin's .zip file:
    • Images are referenced from the GitHub repo, and not packed within the plugin anymore
    • Removed all package-lock.json files from the plugin

Fixed:

  • Automatic namespacing: retrieve the namespace from the called class
  • GraphiQL in Persisted query editor: use schema from selected Schema configuration
  • Array unpacking can't be used with string keys
  • Filtering of generic custom posts when passing non whitelisted CPT

0.6.4

09 Oct 17:30
Compare
Choose a tag to compare

Fixed:

  • Renamed field echo as echoStr to avoid conflict with global field echo

Enhancement (for development):

  • Use newly downgradable PHP 7.4 and 7.3 features (list reference assignment, array spread, _ in numeric literal)

0.6.3

25 Sep 07:40
Compare
Choose a tag to compare

Fixed:

  • No need to duplicate asset for GitHub Updater
  • Renamed verbose options for the GraphiQL Explorer settings (if any option had been disabled using v0.6.2 or below, the form needs to be submitted again, to use the new option names)
  • Store plugin version to detect updates (plugin can be updated in many ways, eg: using Composer, so using hook "upgrader_process_complete" doesn't always work)
  • Added option to disable admin notice in settings, and link in the admin notice

0.6.2

22 Sep 14:13
Compare
Choose a tag to compare

Fixed:

  • Set the right version in plugin main file

0.6.1: Merge pull request #55 from szepeviktor/patch-2

22 Sep 13:39
368137c
Compare
Choose a tag to compare

Fixed:

  • Use the default query in the admin GraphiQL client

0.6.0

22 Sep 11:01
Compare
Choose a tag to compare

Added:

  • Upgraded PHPStan to level 8
  • Plugin for production can run with PHP 7.1
  • Added Embeddable Fields (#41)
  • Support for GitHub Updater (#53)
  • Use the GraphiQL Explorer in the public clients (#23)
  • About page
  • After updating plugin, show an admin notice with link to Release notes