Skip to content

Releases: wpengine/faustjs

@faustwp/[email protected]

08 Nov 17:56
39fb1fb
Compare
Choose a tag to compare

Patch Changes

  • b2c0fd3: Updated the settings page to improve descriptions and documentation links.

@faustwp/[email protected]

25 Oct 14:03
5ccbd8b
Compare
Choose a tag to compare

Minor Changes

  • c29f83d: Add blockset command in @faust/cli and faustwp plugin.

    Add your blocks inside wp-blocks folder. Then run faust blockset to compile and upload the blocks into WordPress. Blocks will be available in the editor.

  • d3d30aa: Added support for authenticated WPGraphQL introspection queries using FAUST_SECRET_KEY. It is no longer required to enable "Public Introspection" in WPGraphQL.

@faustwp/[email protected]

25 Oct 14:03
5ccbd8b
Compare
Choose a tag to compare

Patch Changes

  • 3722ab3: Fix x-using header not appearing when i18n options are set in next.config.js

@faustwp/[email protected]

25 Oct 14:03
5ccbd8b
Compare
Choose a tag to compare

Minor Changes

  • c29f83d: Add blockset command in @faust/cli and faustwp plugin.

    Add your blocks inside wp-blocks folder. Then run faust blockset to compile and upload the blocks into WordPress. Blocks will be available in the editor.

  • d3d30aa: Added support for authenticated WPGraphQL introspection queries using FAUST_SECRET_KEY. It is no longer required to enable "Public Introspection" in WPGraphQL.

Patch Changes

  • 03ee9e8: Bug Fix: Forces cli blockset command to use @wordpress/scripts package.

@faustwp/[email protected]

25 Oct 14:03
5ccbd8b
Compare
Choose a tag to compare

Patch Changes

  • 604e9e3: Update block-editor-utils dependencies.

@faustwp/[email protected]

04 Oct 13:53
94b1551
Compare
Choose a tag to compare

Patch Changes

  • 9a84eb4: Allow CLI health checks to be skipped via --skip-health-checks argument

@faustwp/[email protected]

20 Sep 13:52
6b48533
Compare
Choose a tag to compare

Minor Changes

  • 77c5d4f: BREAKING: Removed cjs support. The experimental app router package now is ESM only.

Patch Changes

@faustwp/[email protected]

20 Sep 13:52
6b48533
Compare
Choose a tag to compare

Patch Changes

  • ae69cfb: Feat: Add CheckboxControl field in block-editor-utils.
  • ee8c08e: Feat: Add RangeControl field in block-editor-utils.

@faustwp/[email protected]

13 Sep 17:19
38ea99f
Compare
Choose a tag to compare

Patch Changes

  • fcc6d37: Fixed a bug in the block editor screen where the preview link was missing the p and previewPathName query arguments after saving a draft.

@faustwp/[email protected]

13 Sep 17:13
38ea99f
Compare
Choose a tag to compare

Patch Changes

  • b2ad517: Added the onLogin server action to login a user:

    import { onLogin } from '@faustwp/experimental-app-router';
    
    <form action={loginAction}>
      <fieldset>
        <label htmlFor="usernameEmail">Username or Email</label>
        <input type="name" name="usernameEmail" />
      </fieldset>
    
      <fieldset>
        <label htmlFor="password">Password</label>
        <input type="password" name="password" />
      </fieldset>
    
      <button type="submit">Login</button>
    </form>;
  • Updated dependencies [b201ba2]