Skip to content

Releases: wpengine/faustjs

@faustwp/[email protected]

28 Feb 15:50
2943748
Compare
Choose a tag to compare

Minor Changes

  • aedd100: chore: Updated FaustWP to create a preview link for all draft post types.

    Removed actions rest_prepare_post and rest_prepare_page from the callback functions.
    Added a new action for rest_api_init to add rest_prepare_{$post_type} action for all publicably queryable post types including custom post types.

"1.8.0"

28 Feb 15:50
2943748
Compare
Choose a tag to compare
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]

27 Feb 18:07
f90cab9
Compare
Choose a tag to compare

Patch Changes

  • 413fe9a: Added tested up to WordPress 6.7.2 for the FaustWP plugin.

"1.7.5"

27 Feb 18:08
f90cab9
Compare
Choose a tag to compare
Version Packages (#2058)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

@faustwp/[email protected]

26 Feb 17:32
205c518
Compare
Choose a tag to compare

Patch Changes

  • 3bf8104: Added author for FaustWP plugin.

@faustwp/[email protected]

25 Feb 18:38
ec22ec4
Compare
Choose a tag to compare

Patch Changes

  • 4cee2d1: Fixed the token variable name for Github actions

@faustwp/[email protected]

24 Feb 12:45
1f8838c
Compare
Choose a tag to compare

Patch Changes

  • 4f82c31: Chore update faustwp release process

@faustwp/[email protected]

24 Feb 12:45
1f8838c
Compare
Choose a tag to compare

Patch Changes

  • 74e55bc: Updated code formatting config and switch to tabs. Configure your editor config settings for tab sizing preferences.

@faustwp/[email protected]

24 Feb 12:45
1f8838c
Compare
Choose a tag to compare

Patch Changes

  • 74e55bc: Updated code formatting config and switch to tabs. Configure your editor config settings for tab sizing preferences.

@faustwp/[email protected]

24 Feb 12:45
1f8838c
Compare
Choose a tag to compare

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}
          }
        }
      }
    `;