Releases: wpengine/faustjs
Releases · wpengine/faustjs
@faustwp/[email protected]
Minor Changes
-
aedd100: chore: Updated FaustWP to create a preview link for all draft post types.
Removed actions
rest_prepare_post
andrest_prepare_page
from the callback functions.
Added a new action forrest_api_init
to addrest_prepare_{$post_type}
action for all publicably queryable post types including custom post types.
"1.8.0"
Version Packages (#2061) * Version Packages * Update CHANGELOG.md * Update faustwp.php * Update package.json * Update readme.txt --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Colin Murphy <[email protected]>
@faustwp/[email protected]
Patch Changes
- 413fe9a: Added tested up to WordPress 6.7.2 for the FaustWP plugin.
"1.7.5"
Version Packages (#2058) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
@faustwp/[email protected]
Patch Changes
- 3bf8104: Added author for FaustWP plugin.
@faustwp/[email protected]
Patch Changes
- 4cee2d1: Fixed the token variable name for Github actions
@faustwp/[email protected]
Patch Changes
- 4f82c31: Chore update faustwp release process
@faustwp/[email protected]
Patch Changes
- 74e55bc: Updated code formatting config and switch to tabs. Configure your editor config settings for tab sizing preferences.
@faustwp/[email protected]
Patch Changes
- 74e55bc: Updated code formatting config and switch to tabs. Configure your editor config settings for tab sizing preferences.
@faustwp/[email protected]
Minor Changes
-
4b1090a: ### WHAT
Refactor: Added CoreListItem block to fix repeating sublist issue
- Added CoreListItem block
- Updated CoreList block
- Updated Corelist.test to accomodate new HTML structure
- Added a new scenario to test nested lists
WHY
CoreList was rendering values attribute, which happens to return nested list items multiple times.
HOW
You need to add new CoreListItem fragments to your queries:
gql` ${blocks.CoreListItem.fragments.entry} `;
Example query:
SingleTemplate.query = gql` ${blocks.CoreList.fragments.entry} ${blocks.CoreListItem.fragments.entry} query GetPost( $uri: ID! ) { post(id: $uri, idType: URI) { title content editorBlocks { name __typename renderedHtml id: clientId parentId: parentClientId ...${blocks.CoreList.fragments.key} ...${blocks.CoreListItem.fragments.key} } } } `;