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

Releases: GraphQLAPI/graphql-api-for-wp

0.6.x-dev.1

05 Sep 06:42

Choose a tag to compare

0.6.x-dev.1 Pre-release
Pre-release
Updated dependencies

0.6.x-dev: Merge pull request #22 from GraphQLAPI/downgrade-to-php71

05 Sep 05:51
f847ea9

Choose a tag to compare

Downgrade to PHP 7.1

v0.5.0

01 Sep 11:15

Choose a tag to compare

Added:

  • Code now supports typed properties from PHP 7.4, and it uses Rector to convert it to PHP 7.2 when generating the plugin for production

v0.4.2

31 Aug 03:52

Choose a tag to compare

Fixed:

  • Add the plugin version to the cache timestamp, to avoid configuration caching conflicts when developing the plugin (whenever this happens, upgrading the version solves the issue)

v0.4.1

26 Aug 10:28

Choose a tag to compare

Fixed:

  • If the plugin is installed more than once (eg: by mistake because the .zip file has been renamed) then load only one version

v0.4

26 Aug 09:46

Choose a tag to compare

Added:

  • Lazy-load the documentation inside blocks

Fixed:

  • is_admin() or not affects the configuration, so this value must be accounted for when generating the cache
  • Logic for options.php is not executed when WP core or other plugins save their own settings

v0.3

24 Aug 11:51

Choose a tag to compare

Added:

  • Filter modules by type
  • Use different colors to distinguish modules by type
  • Documentation for all modules, accessible clicking on "View details" on each module
  • Documentation for modals inside blocks
  • Module "Remove if Null" to add directive @removeIfNull
  • Module "Proactive Feedback" to send data about deprecations, warnings, logs, notices and traces in the response to the query
  • Module "Multiple Query Execution" to enable/disable functionality
  • If module "Multiple Query Execution" is disabled:

v0.2.1

07 Aug 15:10

Choose a tag to compare

Added:

  • Process only the operation indicated in operationName in the GraphQL payload, as sent by GraphiQL
  • Hack to add support for query batching from GraphiQL: When in GraphiQL running query query __ALL { id }, it will execute all the other queries in the document

v0.2.0

06 Aug 10:00

Choose a tag to compare

Added:

  • Query Batching
  • Directive aliases (through trait AliasSchemaDirectiveResolverTrait)
  • Field aliases on the server (through trait AliasSchemaFieldResolverTrait)

Fixed:

  • Enabled variables as expressions for @export

v0.1.22

04 Aug 07:53

Choose a tag to compare

Fixed:

  • Non-default endpoints did not work after re-activating the plugin, WP requires to add hack to execute flush_rewrite_rules in first request after plugin is activated