diff --git a/.changeset/sitemap-index-path-tests.md b/.changeset/sitemap-index-path-tests.md
deleted file mode 100644
index 18a4d7d39..000000000
--- a/.changeset/sitemap-index-path-tests.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@faustwp/core": patch
----
-
-test[faustwp-core]: add test coverage for sitemapIndexPath option in createRootSitemapIndex
diff --git a/.changeset/update-settings-links.md b/.changeset/update-settings-links.md
deleted file mode 100644
index af38d976d..000000000
--- a/.changeset/update-settings-links.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@faustwp/wordpress-plugin": patch
----
-
-fix[faustwp]: update documentation links in settings page to use current URL structure
diff --git a/examples/next/faustwp-getting-started/package.json b/examples/next/faustwp-getting-started/package.json
index 256df3e57..74896e80d 100644
--- a/examples/next/faustwp-getting-started/package.json
+++ b/examples/next/faustwp-getting-started/package.json
@@ -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",
diff --git a/packages/faustwp-core/CHANGELOG.md b/packages/faustwp-core/CHANGELOG.md
index 71258e9db..d93aae5fa 100644
--- a/packages/faustwp-core/CHANGELOG.md
+++ b/packages/faustwp-core/CHANGELOG.md
@@ -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
@@ -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-*'],
+ });
}
```
@@ -255,7 +261,7 @@
```jsx
- Log Out
+ Log Out
```
@@ -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 = (props) => {
- const { myProp, data } = props;
- return <>>;
+ const { myProp, data } = props;
+ return <>>;
};
```
@@ -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
+ });
}
```
@@ -473,7 +479,7 @@
import { FaustHooks, FaustPlugin } from '@faustwp/core';
export class MyPlugin implements FaustPlugin {
- apply(hooks: FaustHooks) {}
+ apply(hooks: FaustHooks) {}
}
```
diff --git a/packages/faustwp-core/package.json b/packages/faustwp-core/package.json
index b6d185867..99f986167 100644
--- a/packages/faustwp-core/package.json
+++ b/packages/faustwp-core/package.json
@@ -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",
diff --git a/plugins/faustwp/CHANGELOG.md b/plugins/faustwp/CHANGELOG.md
index 736575a5a..0db69c513 100644
--- a/plugins/faustwp/CHANGELOG.md
+++ b/plugins/faustwp/CHANGELOG.md
@@ -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
diff --git a/plugins/faustwp/faustwp.php b/plugins/faustwp/faustwp.php
index 7a7d2f20b..34ef1c10a 100644
--- a/plugins/faustwp/faustwp.php
+++ b/plugins/faustwp/faustwp.php
@@ -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
diff --git a/plugins/faustwp/package.json b/plugins/faustwp/package.json
index f2d85e719..3941b576c 100644
--- a/plugins/faustwp/package.json
+++ b/plugins/faustwp/package.json
@@ -1,5 +1,5 @@
{
"name": "@faustwp/wordpress-plugin",
- "version": "1.8.6",
+ "version": "1.8.7",
"private": true
}
diff --git a/plugins/faustwp/readme.txt b/plugins/faustwp/readme.txt
index dcbc35f3d..a2bd0a5d5 100644
--- a/plugins/faustwp/readme.txt
+++ b/plugins/faustwp/readme.txt
@@ -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
@@ -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
@@ -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)
\ No newline at end of file