Releases: wpengine/faustjs
Releases · wpengine/faustjs
@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} } } } `;
@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
- 4dddd20: Bug: Fixed an issue with the function content_replacement throwing a 500 error for a null value.
@faustwp/[email protected]
Minor Changes
-
33dda2e: ### Fixes
- Fixes various issues with content replacement callback functions and replacing the site_url and media_urls
- Fixed an issue with content replacement when media replacement was disabled and rewrites enabled, it was overwriting and updating the media URL to the frontend URL rather than leaving it as the original site URL
Added
- Added 6.6 and 6.7 to Github Actions
- Added 2 new filters for
faustwp_get_wp_site_urls
andfaustwp_get_wp_site_media_urls
to allow users add/remove/edit site and media URLS for the content replacement.
Patch Changes
- ab06786: Updated the package
lucatume/wp-browser
to fix a security vulnurability fornesbot/carbon
. See https://github.com/briannesbitt/Carbon/releases/tag/2.72.6
@faustwp/[email protected]
Minor Changes
- 8f133f5: The Experimental Toolbar feature is being deprecated. You may continue using it but no further bug fixes will be provided.
@faustwp/[email protected]
Minor Changes
- 28f1f83: Added new filter
faustwp_public_redirect_status_code
, allowing WordPress plugins and themes to choose the HTTP status code to use when generating redirects when the enable public route redirects setting is active.