Skip to content

Commit

Permalink
Version Packages (#1824)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Apr 2, 2024
1 parent f4b415f commit 002687f
Show file tree
Hide file tree
Showing 20 changed files with 63 additions and 78 deletions.
5 changes: 0 additions & 5 deletions .changeset/cool-stingrays-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hungry-yaks-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-sheep-promise.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/modern-tools-collect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-avocados-turn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-dogs-cough.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/soft-swans-chew.md

This file was deleted.

6 changes: 3 additions & 3 deletions examples/next/app-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"dependencies": {
"@apollo/client": "^3.8.0",
"@apollo/experimental-nextjs-app-support": "^0.8.0",
"@faustwp/cli": "^3.0.0",
"@faustwp/core": "^3.0.0",
"@faustwp/experimental-app-router": "^0.3.0",
"@faustwp/cli": "^3.0.1",
"@faustwp/core": "^3.0.1",
"@faustwp/experimental-app-router": "^0.3.1",
"graphql": "^16.7.1",
"next": "^14.0.1",
"react": "^18.2.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/next/block-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"dependencies": {
"@apollo/client": "^3.8.8",
"@faustwp/blocks": "4.0.0",
"@faustwp/cli": "^3.0.0",
"@faustwp/core": "^3.0.0",
"@faustwp/cli": "^3.0.1",
"@faustwp/core": "^3.0.1",
"classnames": "^2.3.1",
"graphql": "^16.8.1",
"next": "^14.0.3",
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.6.6",
"@faustwp/cli": "^3.0.0",
"@faustwp/core": "^3.0.0",
"@faustwp/cli": "^3.0.1",
"@faustwp/core": "^3.0.1",
"@wordpress/base-styles": "^4.36.0",
"@wordpress/block-library": "^7.19.0",
"classnames": "^2.3.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/experimental-app-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @faustwp/experimental-app-router

## 0.3.1

### Patch Changes

- aee31a5: Fixed issue where Faust's route handler failed to retrieve a token when trailingSlash is set to true in next.config.js.

## 0.3.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/experimental-app-router/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@faustwp/experimental-app-router",
"type": "module",
"version": "0.3.0",
"version": "0.3.1",
"description": "Experimental: A Faust package to support Next.js' App Router",
"exports": {
".": "./dist/index.js",
Expand Down Expand Up @@ -58,8 +58,8 @@
"devDependencies": {
"@apollo/client": "^3.8.0",
"@apollo/experimental-nextjs-app-support": "^0.8.0",
"@faustwp/cli": "^3.0.0",
"@faustwp/core": "^3.0.0",
"@faustwp/cli": "^3.0.1",
"@faustwp/core": "^3.0.1",
"@testing-library/jest-dom": "^5.17.0",
"@types/node": "^20.4.6",
"concurrently": "^8.2.0",
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.0.1

### Patch Changes

- 4724719: Faust now errors if the NEXT_PUBLIC_WORDPRESS_URL matches the Headless URL in Faust Plugin settings.

## 3.0.0

### Major 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.0.0",
"version": "3.0.1",
"description": "This modules provides a CLI to develop, build, and serve your Faust apps",
"main": "dist/index.js",
"type": "module",
Expand Down
10 changes: 10 additions & 0 deletions packages/faustwp-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @faustwp/core

## 3.0.1

### Patch Changes

- a54ce69: Fixed: FaustConfig no longer requires `plugins` or `experimentalPlugins` properties
- 50c30cb: Fixed issue where on a preview page the user could be stuck in a logout/login loop.
- 16b2384: Added `queries` property to FaustTemplate interface. Fixes an error when using multiple queries with TypeScript.
- 8e1b5db: Faust Toolbar will now respect the Show Avatars setting in WordPress. Requires WPGraphQL version 1.22.1 or higher.
- 9a43d50: Implemented ErrorLoggingLink class to capture GraphQL errors and server errors, providing enhanced error handling and logging capabilities.

## 3.0.0

### Major 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.0.0",
"version": "3.0.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.2.3

### Patch Changes

- 4724719: Faust now errors if the NEXT_PUBLIC_WORDPRESS_URL matches the Headless URL in Faust Plugin settings.

## 1.2.2

### 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.2.2
* Version: 1.2.3
* Requires PHP: 7.2
* Requires at least: 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,5 +1,5 @@
{
"name": "@faustwp/wordpress-plugin",
"version": "1.2.2",
"version": "1.2.3",
"private": true
}
49 changes: 21 additions & 28 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, jasonkonen
Tags: faustjs, faust, headless, decoupled, composable-architecture
Requires at least: 5.7
Tested up to: 6.5
Stable tag: 1.2.2
Stable tag: 1.2.3
Requires PHP: 7.2
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -52,31 +52,24 @@ plugins/faustwp/.wordpress-org/screenshot-1.png
plugins/faustwp/.wordpress-org/screenshot-2.png
plugins/faustwp/.wordpress-org/screenshot-3.png

== Changelog ==

= 1.2.2 =

### Patch Changes

- 47f6bd0: Faust now warns you if the secret key in your environment is invalid or incorrect.

= 1.2.1 =

### Patch Changes

- 05cc940: Fix: swap traditional custom post type URLs in WordPress admin for the headless frontend custom post type URLs.

= 1.2.0 =

### Minor Changes

- 5f78b15: Requests to robots.txt on the WordPress site are now accessible and are no longer redirected to the front-end site.
- c163fa5: Added support for anonymous opt-in telemetry. Previously this functionality was in the Faust CLI package, but has been moved to the WordPress plugin instead. All telemetry collection is optional and anonymous, and it is disabled by default. If you were previously opted in from Faust CLI, once you update the Faust CLI packages your site will no longer send telemetry data unless you opt in again from the WordPress plugin.

### Patch Changes

- 205fb09: Improved plugin's process for handling blockset file uploads by leveraging WordPress' native [unzip_file](https://developer.wordpress.org/reference/functions/unzip_file/) function.
- 41a6d9c: Fixed issue where term URIs were rewritten from relative to absolute during GraphQL requests when they should not have been. This was causing nodeByUri queries for terms to fail.
- e725bda: Adds phpstan to CI/CD workflow. Runs as part of the lint step.

== Changelog ==

= 1.2.3 =

### Patch Changes

- 4724719: Faust now errors if the NEXT_PUBLIC_WORDPRESS_URL matches the Headless URL in Faust Plugin settings.

= 1.2.2 =

### Patch Changes

- 47f6bd0: Faust now warns you if the secret key in your environment is invalid or incorrect.

= 1.2.1 =

### Patch Changes

- 05cc940: Fix: swap traditional custom post type URLs in WordPress admin for the headless frontend custom post type URLs.

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

0 comments on commit 002687f

Please sign in to comment.