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/basic-auth-error-message.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cookie-removal-flags.md

This file was deleted.

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.

16 changes: 15 additions & 1 deletion .github/workflows/e2e-next-faustwp-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,25 @@ jobs:
# writing this they do not function as expected on GH actions
- name: replace downloaded registry faust packages with local build
run: |
mkdir -p e2e-app/node_modules/@faustwp
rm -rf e2e-app/node_modules/@faustwp/cli
rm -rf e2e-app/node_modules/@faustwp/core
cp -r packages/faustwp-cli e2e-app/node_modules/@faustwp/cli
cp -r packages/faustwp-core e2e-app/node_modules/@faustwp/core
chmod +x e2e-app/node_modules/.bin/faust
mkdir -p e2e-app/node_modules/.bin
ln -sf ../@faustwp/cli/dist/index.js e2e-app/node_modules/.bin/faust
chmod +x e2e-app/node_modules/@faustwp/cli/dist/index.js
# create-next-app's npm install may fail if @faustwp/* versions
# are not yet published. Point deps at local builds so npm install
# can resolve them and install all remaining dependencies.
# --install-links copies packages instead of symlinking, avoiding
# duplicate React instances from split module resolution.
- name: install e2e-app dependencies
working-directory: e2e-app
run: |
npm pkg set "dependencies.@faustwp/cli=file:../packages/faustwp-cli"
npm pkg set "dependencies.@faustwp/core=file:../packages/faustwp-core"
npm install --install-links
- name: copy env
working-directory: e2e-app
run: |
Expand Down
4 changes: 2 additions & 2 deletions examples/next/faustwp-getting-started/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"dependencies": {
"@apollo/client": "^3.14.0",
"@faustwp/cli": "^3.3.6",
"@faustwp/core": "^3.4.0",
"@faustwp/cli": "^3.4.1",
"@faustwp/core": "^3.4.1",
"@wordpress/base-styles": "^6.15.0",
"@wordpress/block-library": "9.10.0",
"classnames": "^2.5.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/faustwp-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @faustwp/cli

## 3.4.1

### Patch Changes

- d8b9d2e: fix[faustwp-cli]: detect HTTP Basic Auth on 401 response and show accurate error message instead of misleading secret key mismatch

## 3.3.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/faustwp-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@faustwp/cli",
"version": "3.3.6",
"version": "3.4.1",
"description": "This modules provides a CLI to develop, build, and serve your Faust apps",
"main": "dist/index.js",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions packages/faustwp-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @faustwp/core

## 3.4.1

### Patch Changes

- 10ad814: fix[faustwp-core]: add path, sameSite, secure, and httpOnly flags to removeCookie() to match setCookie() attributes
- b087ac3: test[faustwp-core]: add test coverage for sitemapIndexPath option in createRootSitemapIndex

## 3.4.0

### Minor Changes
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)
Loading