Skip to content
Merged
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/pink-penguins-warn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-jeans-rest.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/next/getting-started/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"wpe-build": "next build"
},
"dependencies": {
"@faustjs/core": "^0.14.0",
"@faustjs/core": "^0.14.1",
"@faustjs/next": "^0.14.0",
"next": "^11.1.2",
"normalize.css": "^8.0.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @faustjs/core

## 0.14.1

### Patch Changes

- 844df61: Fixed an issue that caused an `Internal Server Error` when fetching access/refresh tokens when permalinks are not set

## 0.14.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@faustjs/core",
"version": "0.14.0",
"version": "0.14.1",
"description": "This module helps you use WordPress as a Headless CMS",
"main": "dist/cjs/export/index.js",
"module": "dist/mjs/export/index.js",
Expand Down
12 changes: 9 additions & 3 deletions plugins/faustwp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# FaustWP

## 0.7.1

### Patch Changes

- f948c04: Fixed plugin icon SVG display issue in Chrome [#683](https://github.com/wpengine/faustjs/pull/683)

## 0.7.0

### Minor Changes
Expand All @@ -10,9 +16,9 @@
- Changed the authentication endpoint namespace from `wpac/v1` to `faustwp/v1`
- Changed settings option name from `wpe_headless` to `faustwp_settings`
- Changed the following filter names:
- `wpe_headless_setting` to `faustwp_setting`
- `wpe_headless_settings` to `faustwp_settings`
- `wpe_headless_domain_replacement_enabled` to `faustwp_domain_replacement_enabled`
- `wpe_headless_setting` to `faustwp_setting`
- `wpe_headless_settings` to `faustwp_settings`
- `wpe_headless_domain_replacement_enabled` to `faustwp_domain_replacement_enabled`
- Changed the text domain to `faustwp`.
- Changed minimum required PHP version to 7.2.
- Changed minimum required WordPress version to 5.7.
Expand Down
2 changes: 1 addition & 1 deletion plugins/faustwp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "faustwp",
"version": "0.7.0",
"version": "0.7.1",
"private": true,
"dependencies": {}
}
56 changes: 35 additions & 21 deletions plugins/faustwp/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,38 @@ The plugin also provides useful options for headless sites, such as the ability

That's it! For more information on getting started with headless WordPress, see <a href="https://faustjs.org/docs/tutorial/dev-env-setup" target="_blank">Getting Started with Faust.js</a>.

== Changelog ==

= 0.7.0 =

- Changed the plugin name to FaustWP.
- Changed all internal PHP function names to use namespaces.
- Changed the WP_HEADLESS_SECRET_KEY constant to FAUSTWP_SECRET_KEY.
- Changed the authentication endpoint namespace from `wpac/v1` to `faustwp/v1`
- Changed settings option name from `wpe_headless` to `faustwp_settings`
- Changed the following filter names:
- `wpe_headless_setting` to `faustwp_setting`
- `wpe_headless_settings` to `faustwp_settings`
- `wpe_headless_domain_replacement_enabled` to `faustwp_domain_replacement_enabled`
- Changed the text domain to `faustwp`.
- Changed minimum required PHP version to 7.2.
- Changed minimum required WordPress version to 5.7.
- Changed the hook used for public route redirection.
- Fixed the "headless post preview" link on the FaustWP settings page.
- Fixed "unexpected output" error during plugin activation.
- Fixed skipped domain replacement in GraphQL responses that include `generalSettings`.
- Added LICENSE file.
== Changelog ==

= 0.7.1 =

### Patch Changes

- f948c04: Fixed plugin icon SVG display issue in Chrome [#683](https://github.com/wpengine/faustjs/pull/683)

= 0.7.0 =

### Minor Changes

- Changed the plugin name to FaustWP.
- Changed all internal PHP function names to use namespaces.
- Changed the WP_HEADLESS_SECRET_KEY constant to FAUSTWP_SECRET_KEY.
- Changed the authentication endpoint namespace from `wpac/v1` to `faustwp/v1`
- Changed settings option name from `wpe_headless` to `faustwp_settings`
- Changed the following filter names:
- `wpe_headless_setting` to `faustwp_setting`
- `wpe_headless_settings` to `faustwp_settings`
- `wpe_headless_domain_replacement_enabled` to `faustwp_domain_replacement_enabled`
- Changed the text domain to `faustwp`.
- Changed minimum required PHP version to 7.2.
- Changed minimum required WordPress version to 5.7.
- Changed the hook used for public route redirection.
- Fixed the "headless post preview" link on the FaustWP settings page.
- Fixed "unexpected output" error during plugin activation.
- Fixed skipped domain replacement in GraphQL responses that include `generalSettings`.
- Added LICENSE file.

= 0.6.1 =

- Fixed the headless options page sidebar links to new Faust.js documentation site.

[View the full changelog](https://faustjs.org/docs/changelog/faustwp)