Skip to content

Releases: wpengine/faustjs

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

@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]

07 Feb 15:47
6eeedd2
Compare
Choose a tag to compare

Patch Changes

  • 4dddd20: Bug: Fixed an issue with the function content_replacement throwing a 500 error for a null value.

@faustwp/[email protected]

27 Jan 16:54
fc8bd26
Compare
Choose a tag to compare

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 and faustwp_get_wp_site_media_urls to allow users add/remove/edit site and media URLS for the content replacement.

Patch Changes

@faustwp/[email protected]

27 Jan 16:54
fc8bd26
Compare
Choose a tag to compare

Minor Changes

  • 8f133f5: The Experimental Toolbar feature is being deprecated. You may continue using it but no further bug fixes will be provided.