From 8a42375fa035c9d455b6af590b7e784ef6dc3213 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Aug 2024 10:05:25 -0600 Subject: [PATCH] Version Packages (#1928) Co-authored-by: github-actions[bot] --- .changeset/fast-queens-dress.md | 5 ---- .changeset/friendly-keys-heal.md | 9 ------- .changeset/long-humans-type.md | 19 --------------- .changeset/tiny-years-grin.md | 5 ---- .changeset/wet-camels-lick.md | 5 ---- examples/next/app-router/package.json | 6 ++--- examples/next/block-support/package.json | 8 +++---- .../next/faustwp-getting-started/package.json | 4 ++-- examples/next/getting-started/package.json | 2 +- packages/block-editor-utils/CHANGELOG.md | 6 +++++ packages/block-editor-utils/package.json | 2 +- packages/blocks/CHANGELOG.md | 6 +++++ packages/blocks/package.json | 2 +- packages/experimental-app-router/CHANGELOG.md | 6 +++++ packages/experimental-app-router/package.json | 2 +- packages/faustwp-cli/CHANGELOG.md | 6 +++++ packages/faustwp-cli/package.json | 2 +- packages/faustwp-core/CHANGELOG.md | 24 +++++++++++++++++++ packages/faustwp-core/package.json | 2 +- packages/next/CHANGELOG.md | 6 +++++ packages/next/package.json | 2 +- packages/react/CHANGELOG.md | 6 +++++ packages/react/package.json | 2 +- plugins/faustwp/CHANGELOG.md | 6 +++++ plugins/faustwp/faustwp.php | 2 +- plugins/faustwp/package.json | 2 +- plugins/faustwp/readme.txt | 18 ++++++-------- 27 files changed, 92 insertions(+), 73 deletions(-) delete mode 100644 .changeset/fast-queens-dress.md delete mode 100644 .changeset/friendly-keys-heal.md delete mode 100644 .changeset/long-humans-type.md delete mode 100644 .changeset/tiny-years-grin.md delete mode 100644 .changeset/wet-camels-lick.md diff --git a/.changeset/fast-queens-dress.md b/.changeset/fast-queens-dress.md deleted file mode 100644 index 18700b289..000000000 --- a/.changeset/fast-queens-dress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/wordpress-plugin': minor ---- - -Introduces a new setting on the Faust settings page that allows users to opt-in or out of Faust removing Nav Menu Locations that are not registered on the Faust Settings page. diff --git a/.changeset/friendly-keys-heal.md b/.changeset/friendly-keys-heal.md deleted file mode 100644 index 2cc31bb0e..000000000 --- a/.changeset/friendly-keys-heal.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@faustwp/experimental-app-router': minor -'@faustwp/block-editor-utils': minor -'@faustwp/blocks': minor -'@faustjs/react': minor -'@faustjs/next': minor ---- - -Updated dependencies, peerDependencies and devDependencies to better support local development and debugging. diff --git a/.changeset/long-humans-type.md b/.changeset/long-humans-type.md deleted file mode 100644 index 68f1c16a6..000000000 --- a/.changeset/long-humans-type.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -'@faustwp/core': minor ---- - -- Added support for configuring a custom sitemap index path via the `sitemapIndexPath` option in `getSitemapProps`, enhancing compatibility with plugins like RankMath that modify the default sitemap path. - - ```javascript - import { getSitemapProps } from '@faustwp/core'; - - 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-*'], - }); - } - ``` diff --git a/.changeset/tiny-years-grin.md b/.changeset/tiny-years-grin.md deleted file mode 100644 index 0467d6172..000000000 --- a/.changeset/tiny-years-grin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/core': patch ---- - -Fixes a bug where the WordPressTemplate component would return `null` on the server when `isPreview` was null. diff --git a/.changeset/wet-camels-lick.md b/.changeset/wet-camels-lick.md deleted file mode 100644 index bd9197d97..000000000 --- a/.changeset/wet-camels-lick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/cli': patch ---- - -Added "glob" as a dependency diff --git a/examples/next/app-router/package.json b/examples/next/app-router/package.json index 7f7606aa3..49fda52cc 100644 --- a/examples/next/app-router/package.json +++ b/examples/next/app-router/package.json @@ -12,9 +12,9 @@ "dependencies": { "@apollo/client": "^3.8.0", "@apollo/experimental-nextjs-app-support": "^0.8.0", - "@faustwp/cli": "^3.0.2", - "@faustwp/core": "^3.0.3", - "@faustwp/experimental-app-router": "^0.3.1", + "@faustwp/cli": "^3.1.0", + "@faustwp/core": "^3.1.0", + "@faustwp/experimental-app-router": "^0.4.0", "graphql": "^16.7.1", "next": "^14.2.3", "react": "^18.2.0", diff --git a/examples/next/block-support/package.json b/examples/next/block-support/package.json index 50b198651..bff610e48 100644 --- a/examples/next/block-support/package.json +++ b/examples/next/block-support/package.json @@ -12,9 +12,9 @@ }, "dependencies": { "@apollo/client": "^3.8.8", - "@faustwp/blocks": "4.0.0", - "@faustwp/cli": "^3.0.2", - "@faustwp/core": "^3.0.3", + "@faustwp/blocks": "4.1.0", + "@faustwp/cli": "^3.1.0", + "@faustwp/core": "^3.1.0", "classnames": "^2.3.1", "graphql": "^16.8.1", "next": "^14.2.3", @@ -23,7 +23,7 @@ "sass": "^1.54.9" }, "devDependencies": { - "@faustwp/block-editor-utils": "0.2.1", + "@faustwp/block-editor-utils": "0.3.0", "@wordpress/base-styles": "^5.1.0", "@wordpress/block-library": "^9.1.0", "next-secure-headers": "^2.2.0" diff --git a/examples/next/faustwp-getting-started/package.json b/examples/next/faustwp-getting-started/package.json index ecf8f09eb..d71104fce 100644 --- a/examples/next/faustwp-getting-started/package.json +++ b/examples/next/faustwp-getting-started/package.json @@ -11,8 +11,8 @@ }, "dependencies": { "@apollo/client": "^3.10.4", - "@faustwp/cli": "^3.0.2", - "@faustwp/core": "^3.0.3", + "@faustwp/cli": "^3.1.0", + "@faustwp/core": "^3.1.0", "@wordpress/base-styles": "^4.49.0", "@wordpress/block-library": "^7.19.0", "classnames": "^2.5.1", diff --git a/examples/next/getting-started/package.json b/examples/next/getting-started/package.json index ad07249a5..ca88597cb 100644 --- a/examples/next/getting-started/package.json +++ b/examples/next/getting-started/package.json @@ -17,7 +17,7 @@ }, "dependencies": { "@faustjs/core": "^0.15.13", - "@faustjs/next": "^0.15.14", + "@faustjs/next": "^0.16.0", "next": "^12.3.4", "normalize.css": "^8.0.1", "react": "^17.0.2", diff --git a/packages/block-editor-utils/CHANGELOG.md b/packages/block-editor-utils/CHANGELOG.md index a0d0e860d..bbcac7081 100644 --- a/packages/block-editor-utils/CHANGELOG.md +++ b/packages/block-editor-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/block-editor-utils +## 0.3.0 + +### Minor Changes + +- 53bb9a6d: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging. + ## 0.2.1 ### Patch Changes diff --git a/packages/block-editor-utils/package.json b/packages/block-editor-utils/package.json index 62be76f6d..cfa839340 100644 --- a/packages/block-editor-utils/package.json +++ b/packages/block-editor-utils/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/block-editor-utils", - "version": "0.2.1", + "version": "0.3.0", "description": "Faust Block Editor Utils Package", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/packages/blocks/CHANGELOG.md b/packages/blocks/CHANGELOG.md index d295de40b..5c4f4c5b0 100644 --- a/packages/blocks/CHANGELOG.md +++ b/packages/blocks/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/blocks +## 4.1.0 + +### Minor Changes + +- 53bb9a6d: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging. + ## 4.0.0 ### Major Changes diff --git a/packages/blocks/package.json b/packages/blocks/package.json index 2a42cad5b..379a896ad 100644 --- a/packages/blocks/package.json +++ b/packages/blocks/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/blocks", - "version": "4.0.0", + "version": "4.1.0", "description": "Faust Blocks", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/packages/experimental-app-router/CHANGELOG.md b/packages/experimental-app-router/CHANGELOG.md index 709e5a6a3..fda2b4972 100644 --- a/packages/experimental-app-router/CHANGELOG.md +++ b/packages/experimental-app-router/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/experimental-app-router +## 0.4.0 + +### Minor Changes + +- 53bb9a6d: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging. + ## 0.3.1 ### Patch Changes diff --git a/packages/experimental-app-router/package.json b/packages/experimental-app-router/package.json index bf052931e..04dea6aa5 100644 --- a/packages/experimental-app-router/package.json +++ b/packages/experimental-app-router/package.json @@ -1,7 +1,7 @@ { "name": "@faustwp/experimental-app-router", "type": "module", - "version": "0.3.1", + "version": "0.4.0", "description": "Experimental: A Faust package to support Next.js' App Router", "exports": { ".": "./dist/index.js", diff --git a/packages/faustwp-cli/CHANGELOG.md b/packages/faustwp-cli/CHANGELOG.md index 2c6b66e1e..e819647a5 100644 --- a/packages/faustwp-cli/CHANGELOG.md +++ b/packages/faustwp-cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/cli +## 3.1.0 + +### Patch Changes + +- 031c2393: Added "glob" as a dependency + ## 3.0.2 ### Patch Changes diff --git a/packages/faustwp-cli/package.json b/packages/faustwp-cli/package.json index c751d3c30..b50e3e9e3 100644 --- a/packages/faustwp-cli/package.json +++ b/packages/faustwp-cli/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/cli", - "version": "3.0.2", + "version": "3.1.0", "description": "This modules provides a CLI to develop, build, and serve your Faust apps", "main": "dist/index.js", "type": "module", diff --git a/packages/faustwp-core/CHANGELOG.md b/packages/faustwp-core/CHANGELOG.md index 985980047..434be9dfc 100644 --- a/packages/faustwp-core/CHANGELOG.md +++ b/packages/faustwp-core/CHANGELOG.md @@ -1,5 +1,29 @@ # @faustwp/core +## 3.1.0 + +### Minor Changes + +- 2b7949bb: - Added support for configuring a custom sitemap index path via the `sitemapIndexPath` option in `getSitemapProps`, enhancing compatibility with plugins like RankMath that modify the default sitemap path. + + ```javascript + import { getSitemapProps } from '@faustwp/core'; + + 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-*'], + }); + } + ``` + +### Patch Changes + +- 031c2393: Fixes a bug where the WordPressTemplate component would return `null` on the server when `isPreview` was null. + ## 3.0.3 ### Patch Changes diff --git a/packages/faustwp-core/package.json b/packages/faustwp-core/package.json index c59e4980b..6157f2c41 100644 --- a/packages/faustwp-core/package.json +++ b/packages/faustwp-core/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/core", - "version": "3.0.3", + "version": "3.1.0", "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/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md index ca04b50d9..54c47d346 100644 --- a/packages/next/CHANGELOG.md +++ b/packages/next/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustjs/next +## 0.16.0 + +### Minor Changes + +- 53bb9a6d: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging. + ## 0.15.14 ### Patch Changes diff --git a/packages/next/package.json b/packages/next/package.json index 3a50f9bd0..bf4b43d9b 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@faustjs/next", - "version": "0.15.14", + "version": "0.16.0", "description": "This module helps you use WordPress as a Headless CMS with Next.js", "main": "dist/cjs/export/index.js", "module": "dist/mjs/export/index.js", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index e80060bdb..c79c033a0 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustjs/react +## 0.16.0 + +### Minor Changes + +- 53bb9a6d: Updated dependencies, peerDependencies and devDependencies to better support local development and debugging. + ## 0.15.13 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 03f849a33..48d030803 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@faustjs/react", - "version": "0.15.13", + "version": "0.16.0", "description": "This module helps you use WordPress as a Headless CMS with React", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/plugins/faustwp/CHANGELOG.md b/plugins/faustwp/CHANGELOG.md index 070e07dac..05755fdbb 100644 --- a/plugins/faustwp/CHANGELOG.md +++ b/plugins/faustwp/CHANGELOG.md @@ -1,5 +1,11 @@ # Faust +## 1.4.0 + +### Minor Changes + +- 9ff1df86: Introduces a new setting on the Faust settings page that allows users to opt-in or out of Faust removing Nav Menu Locations that are not registered on the Faust Settings page. + ## 1.3.2 ### Patch Changes diff --git a/plugins/faustwp/faustwp.php b/plugins/faustwp/faustwp.php index c35019aa6..1383b716a 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.3.2 + * Version: 1.4.0 * Requires PHP: 7.2 * Requires at least: 5.7 * diff --git a/plugins/faustwp/package.json b/plugins/faustwp/package.json index 83bc22e49..f6a96d3cc 100644 --- a/plugins/faustwp/package.json +++ b/plugins/faustwp/package.json @@ -1,5 +1,5 @@ { "name": "@faustwp/wordpress-plugin", - "version": "1.3.2", + "version": "1.4.0", "private": true } diff --git a/plugins/faustwp/readme.txt b/plugins/faustwp/readme.txt index b9367d72d..10b6fba92 100644 --- a/plugins/faustwp/readme.txt +++ b/plugins/faustwp/readme.txt @@ -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.3.2 +Stable tag: 1.4.0 Requires PHP: 7.2 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.4.0 = + +### Minor Changes + +- 9ff1df86: Introduces a new setting on the Faust settings page that allows users to opt-in or out of Faust removing Nav Menu Locations that are not registered on the Faust Settings page. + = 1.3.2 = ### Patch Changes @@ -66,14 +72,4 @@ plugins/faustwp/.wordpress-org/screenshot-3.png - c28624c: Improve domain_match function to handle port checks and Add Comprehensive Test Cases -= 1.3.0 = - -### Minor Changes - -- a478997: The default settings for `enable_image_source` has been changed to "on" for new installs. - -### Patch Changes - -- bced682: Ensure's any related translations will properly load by calling `load_text_domain` - [View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md) \ No newline at end of file