Releases: wp-graphql/wp-graphql-acf
v0.6.2
v0.6.1-beta.2.0.0
Announcing WPGraphQL for ACF v2.0.0
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
WPGraphQL for ACF has gone through a complete re-architecture and this repository will soon be archived.
We recommend you upgrade to the new WPGraphQL for ACF v2.0+ at your earliest convenience.
The new version contains breaking changes, so update with caution. Below are some resources to help:
- UPGRADE GUIDE: https://acf.wpgraphql.com/upgrade-guide
- NEW PLUGIN REPO: https://github.com/wp-graphql/wpgraphql-acf
- NEW PLUGIN ON WORDPRESS.ORG: https://wordpress.org/plugins/wpgraphql-acf
- NEW PLUGIN ON COMPOSER: https://packagist.org/packages/wp-graphql/wpgraphql-acf
- NEW PLUGIN ON WPPACKAGIST: https://wpackagist.org/search?q=wpgraphql-acf&type=any&search=
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
NOTE: This release does not contain any functional changes and serves as a way to draw attention to the new version of WPGraphQL for ACF.
v0.6.1
What's Changed
- Revert "filter returned value with acf/format_value" by @jasonbahl in #336
- Release/v0.6.1 by @jasonbahl in #338
Full Changelog: v0.6.0...v0.6.1
v0.6.0
What's Changed
- Fix: Internal server error 500 for relationship to non-published post by @rsm0128 in #301
- Use date_i18n() to set correct timezone for date time fields by @esamattis in #299
- feat: ACF v6 support by @jasonbahl in #333
- Fix deprecated error in PHP > 8.0.0 by @fedek6 in #313
- filter returned value with acf/format_value by @anacoelhovicente in #309
- Update README.md by @RodrigoTomeES in #290
- Release/v0.6.0 by @jasonbahl in #335
New Contributors
- @fedek6 made their first contribution in #313
- @anacoelhovicente made their first contribution in #309
- @seripap made their first contribution in #304
- @RodrigoTomeES made their first contribution in #290
Full Changelog: v0.5.3...v0.6.0
v0.5.3
v0.5.2
v0.5.1
v0.5.0
Release Notes
This release focuses primarily on Location Rules and how ACF Field Groups are mapped to the WPGraphQL Schema.
Bugfixes / Chores
- #174: Typo fix in README. Thanks @pickleat!
- #175: Fixes problem with return type on Select fields. Thanks @ljanecek!
- #191: Replaces deprecated
acf_get_term_post_id()
method. Thanks @sboerrigter! - #197: Adds URI to play nice with Github Plugin Updater
- #235: Updates README to include docs for registering field groups in PHP. Thanks @XAce90!
New Features / Big Changes
LOCATION, LOCATION, LOCATION!!!
This release primarily addresses issues related to Field Group location rules and adding field groups to the GraphQL Schema.
Prior to this release, ACF Field Groups were added to the GraphQL Schema strictly by analyzing the ACF Location Rules for the field group(s) and attempting to map the field group to the Schema.
Some rules are quite nuanced and hard to translate, and in some cases this meant that the Field Group would simply not show up in the Schema, or in other cases the field group wouldn't show exactly where you wanted.
This release brings a new way of mapping ACF Field Groups to the WPGraphQL Schema.
It still uses ACF Location Rules to try and "guess" where in the Schema the field group should show, but now it shows you where it will be and allows you to opt-out of the auto-mapping and set the GraphQL Types the field group should show on manually.
🎥 👉 This video walks through this new functionality: https://youtu.be/VvrZGrcwv0Y
Closes the following issues:
- closes #58
- closes #149
- closes #169
- closes #206
- closes #76
- closes #135
- closes #198
- closes #189
- closes #186
- closes #188
- closes #210
- closes #22
- closes #42
- closes #52
- closes #65
- closes #127
- closes #132
- closes #162
- closes #203
- closes #233
📣 HUGE shout out to @drewbaker @rsm0128 and @funkhaus for putting a lot of time and energy into Location Rule revamp. Would not be where it is without your work!!! 🙌🏻
v0.4.1
v0.4.0
Release Notes
Breaking Change
- (#172) changes "range" field from
Integer
toFloat
. Thanks @BronsonQuick!
Bugfix
- (#168) fixes memory leak. Thanks @acburdine!