Releases: wpengine/faustjs
Releases · wpengine/faustjs
@faustwp/[email protected]
Minor Changes
-
2b7949b: - Added support for configuring a custom sitemap index path via the
sitemapIndexPath
option ingetSitemapProps
, enhancing compatibility with plugins like RankMath that modify the default sitemap path.import { getSitemapProps } from '@faustwp/core'; export default function Sitemap() {} export function getServerSideProps(ctx) { return getSitemapProps(ctx, { sitemapIndexPath: '/sitemap_index.xml', // RankMath changes the default sitemap path to this frontendUrl: process.env.NEXT_PUBLIC_SITE_URL, sitemapPathsToIgnore: ['/wp-sitemap-users-*'], }); }
Patch Changes
- 031c239: Fixes a bug where the WordPressTemplate component would return
null
on the server whenisPreview
was null.
@faustwp/[email protected]
Patch Changes
- 031c239: Added "glob" as a dependency
@faustwp/[email protected]
Minor Changes
- 53bb9a6: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging.
@faustwp/[email protected]
Minor Changes
- 53bb9a6: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging.
@faustjs/[email protected]
Minor Changes
- 53bb9a6: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging.
@faustjs/[email protected]
Minor Changes
- 53bb9a6: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging.
@faustwp/[email protected]
Patch Changes
- 84076cd: Bug: Fixes issue with blocks not showing in the block editor when running blockset command on WP >=v6.5
@faustwp/[email protected]
Patch Changes
- beb546a: Bug: Fixes issue with review detection via query string is too greedy and catches non WP previews
@faustwp/[email protected]
Patch Changes
-
f0543e0: Adds missing TextAreaControl handler when specifing a
control: 'textarea'
in Component.config.editorFields.Adding this configuration to your blocks will render TextAreaControls component in the editor.
// Component.js Component.config = { name: 'CreateBlockBlockB', editorFields: { textArea: { type: 'string', label: 'My Message', location: 'editor', control: 'textarea', // <--- Render a TextAreaControl field in the Gutenberg editor }, }, };
@faustwp/[email protected]
Patch Changes
- c28624c: Improve domain_match function to handle port checks and Add Comprehensive Test Cases