Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/sitemap-index-path-tests.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/update-settings-links.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/next/faustwp-getting-started/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@apollo/client": "^3.14.0",
"@faustwp/cli": "^3.3.6",
"@faustwp/core": "^3.4.0",
"@faustwp/core": "^3.4.1",
"@wordpress/base-styles": "^6.15.0",
"@wordpress/block-library": "9.10.0",
"classnames": "^2.5.1",
Expand Down
38 changes: 22 additions & 16 deletions packages/faustwp-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @faustwp/core

## 3.4.1

### Patch Changes

- b087ac3: test[faustwp-core]: add test coverage for sitemapIndexPath option in createRootSitemapIndex

## 3.4.0

### Minor Changes
Expand Down Expand Up @@ -147,11 +153,11 @@
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-*'],
});
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-*'],
});
}
```

Expand Down Expand Up @@ -255,7 +261,7 @@

```jsx
<ToolbarItem onKeyDown={handleKeyDown} onClick={handleClick}>
Log Out
Log Out
</ToolbarItem>
```

Expand Down Expand Up @@ -361,18 +367,18 @@
import { FaustPage } from '@faustwp/core';

type GetPageData = {
generalSettings: {
title: string;
};
generalSettings: {
title: string;
};
};

type PageProps = {
myProp: string;
myProp: string;
};

const Page: FaustPage<GetPageData, PageProps> = (props) => {
const { myProp, data } = props;
return <></>;
const { myProp, data } = props;
return <></>;
};
```

Expand Down Expand Up @@ -441,9 +447,9 @@
export default function Sitemap() {}

export function getServerSideProps(context) {
return getSitemapProps(context, {
frontendUrl: process.env.FRONTEND_URL, // Set the FRONTEND_URL as an env var
});
return getSitemapProps(context, {
frontendUrl: process.env.FRONTEND_URL, // Set the FRONTEND_URL as an env var
});
}
```

Expand Down Expand Up @@ -473,7 +479,7 @@
import { FaustHooks, FaustPlugin } from '@faustwp/core';

export class MyPlugin implements FaustPlugin {
apply(hooks: FaustHooks) {}
apply(hooks: FaustHooks) {}
}
```

Expand Down
2 changes: 1 addition & 1 deletion packages/faustwp-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@faustwp/core",
"version": "3.4.0",
"version": "3.4.1",
"description": "Faust is a framework that aims to make headless WordPress as streamlined as classic WordPress for both developers and publishers",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
Expand Down
6 changes: 6 additions & 0 deletions plugins/faustwp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Faust

## 1.8.7

### Patch Changes

- ca1e2f4: fix[faustwp]: update documentation links in settings page to use current URL structure

## 1.8.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/faustwp/faustwp.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: faustwp
* Domain Path: /languages
* Version: 1.8.6
* Version: 1.8.7
* Requires PHP: 7.4
* Requires at least: 5.7
* Tested up to: 6.9
Expand Down
2 changes: 1 addition & 1 deletion plugins/faustwp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@faustwp/wordpress-plugin",
"version": "1.8.6",
"version": "1.8.7",
"private": true
}
15 changes: 7 additions & 8 deletions plugins/faustwp/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: antpb, apmatthe, blakewpe, chriswiegman, claygriffiths, colin-murp
Tags: faustjs, faust, headless, decoupled, composable-architecture
Requires at least: 5.7
Tested up to: 6.9
Stable tag: 1.8.6
Stable tag: 1.8.7
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -54,6 +54,12 @@ plugins/faustwp/.wordpress-org/screenshot-3.png

== Changelog ==

= 1.8.7 =

### Patch Changes

- ca1e2f4: fix[faustwp]: update documentation links in settings page to use current URL structure

= 1.8.6 =

### Patch Changes
Expand All @@ -69,11 +75,4 @@ plugins/faustwp/.wordpress-org/screenshot-3.png

- 6bf8a7e: Add WordPress 6.9 to the CI test matrix and update the plugin "Tested up to" header to 6.9.

= 1.8.4 =

### Patch Changes

- 5ce074a: Tested Faust on WordPress 6.8.1
- 8684b83: Fixed issue in content_replacement when site_url() contains port

[View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md)