From be057567392a150f83492cd2862c2e5b1c980005 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 12 Mar 2024 01:05:59 +0000 Subject: [PATCH] chore: version packages --- .changeset/dry-eggs-deliver.md | 5 ----- .changeset/fuzzy-kiwis-decide.md | 5 ----- .changeset/lucky-doors-applaud.md | 6 ------ .changeset/poor-wolves-repeat.md | 7 ------- .changeset/tiny-avocados-unite.md | 5 ----- packages/core/CHANGELOG.md | 7 +++++++ packages/core/package.json | 2 +- packages/next/CHANGELOG.md | 10 ++++++++++ packages/next/package.json | 4 ++-- projects/wp-multisite-i18n-nextjs/package.json | 4 ++-- projects/wp-multisite-nextjs/package.json | 4 ++-- projects/wp-nextjs-ts/package.json | 4 ++-- projects/wp-nextjs/package.json | 4 ++-- wp/headless-wp/CHANGELOG.md | 9 +++++++++ wp/headless-wp/package.json | 2 +- wp/headless-wp/plugin.php | 4 ++-- 16 files changed, 40 insertions(+), 42 deletions(-) delete mode 100644 .changeset/dry-eggs-deliver.md delete mode 100644 .changeset/fuzzy-kiwis-decide.md delete mode 100644 .changeset/lucky-doors-applaud.md delete mode 100644 .changeset/poor-wolves-repeat.md delete mode 100644 .changeset/tiny-avocados-unite.md diff --git a/.changeset/dry-eggs-deliver.md b/.changeset/dry-eggs-deliver.md deleted file mode 100644 index dce7637f7..000000000 --- a/.changeset/dry-eggs-deliver.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@headstartwp/headstartwp": patch ---- - -PHPCS 3.0 and code styling updates diff --git a/.changeset/fuzzy-kiwis-decide.md b/.changeset/fuzzy-kiwis-decide.md deleted file mode 100644 index 87aa92376..000000000 --- a/.changeset/fuzzy-kiwis-decide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@headstartwp/headstartwp": patch ---- - -fix: hreflangs tags on multilingual sites diff --git a/.changeset/lucky-doors-applaud.md b/.changeset/lucky-doors-applaud.md deleted file mode 100644 index 1ca8845f8..000000000 --- a/.changeset/lucky-doors-applaud.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@headstartwp/core": patch -"@headstartwp/next": patch ---- - -fix: make convertUrl and removeSourceUrl respect the original link's trailingslash diff --git a/.changeset/poor-wolves-repeat.md b/.changeset/poor-wolves-repeat.md deleted file mode 100644 index ccc82f412..000000000 --- a/.changeset/poor-wolves-repeat.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@headstartwp/headstartwp": patch -"@headstartwp/core": patch -"@headstartwp/next": patch ---- - -Add the ability to leverage `post.link` for redirecting the previewed post to the appropriate route via the `preview.usePostLinkForRedirect` setting. diff --git a/.changeset/tiny-avocados-unite.md b/.changeset/tiny-avocados-unite.md deleted file mode 100644 index ea0614c20..000000000 --- a/.changeset/tiny-avocados-unite.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@headstartwp/headstartwp": patch ---- - -Fix redirect loop for invalid sitemap paths diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 38a2b4128..9a7fca09c 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,12 @@ # @headstartwp/core +## 1.3.2 + +### Patch Changes + +- 95d6eb96: fix: make convertUrl and removeSourceUrl respect the original link's trailingslash +- 26246a01: Add the ability to leverage `post.link` for redirecting the previewed post to the appropriate route via the `preview.usePostLinkForRedirect` setting. + ## 1.3.1 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 04f3cb7cd..eb60111dc 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@headstartwp/core", - "version": "1.3.1", + "version": "1.3.2", "description": "`@headstartwp/core` is the core package that houses framework-agnostic components and utilities for building headless sites with WordPress.", "homepage": "https://github.com/10up/headstartwp/blob/develop/packages/core/README.md", "license": "MIT", diff --git a/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md index e2b32ab81..a29a30368 100644 --- a/packages/next/CHANGELOG.md +++ b/packages/next/CHANGELOG.md @@ -1,5 +1,15 @@ # @headstartwp/next +## 1.3.3 + +### Patch Changes + +- 95d6eb96: fix: make convertUrl and removeSourceUrl respect the original link's trailingslash +- 26246a01: Add the ability to leverage `post.link` for redirecting the previewed post to the appropriate route via the `preview.usePostLinkForRedirect` setting. +- Updated dependencies [95d6eb96] +- Updated dependencies [26246a01] + - @headstartwp/core@1.3.2 + ## 1.3.2 ### Patch Changes diff --git a/packages/next/package.json b/packages/next/package.json index b4d609cf8..f90794f10 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@headstartwp/next", - "version": "1.3.2", + "version": "1.3.3", "description": "`@headstartwp/next` is the Next.js bindings for the headless framework.", "homepage": "https://github.com/10up/headstartwp/blob/develop/packages/next/README.md", "license": "MIT", @@ -49,7 +49,7 @@ }, "dependencies": { "deepmerge": "^4.3.1", - "@headstartwp/core": "^1.3.1", + "@headstartwp/core": "^1.3.2", "loader-utils": "^3.2.0", "schema-utils": "^4.0.0" }, diff --git a/projects/wp-multisite-i18n-nextjs/package.json b/projects/wp-multisite-i18n-nextjs/package.json index 1ffdf7da5..a9ebae2cd 100644 --- a/projects/wp-multisite-i18n-nextjs/package.json +++ b/projects/wp-multisite-i18n-nextjs/package.json @@ -14,8 +14,8 @@ "lint": "eslint ." }, "dependencies": { - "@headstartwp/core": "^1.3.1", - "@headstartwp/next": "^1.3.2", + "@headstartwp/core": "^1.3.2", + "@headstartwp/next": "^1.3.3", "@linaria/babel-preset": "^4.4.5", "@linaria/core": "^4.2.10", "@linaria/react": "^4.3.8", diff --git a/projects/wp-multisite-nextjs/package.json b/projects/wp-multisite-nextjs/package.json index c4f059477..bad6094c6 100644 --- a/projects/wp-multisite-nextjs/package.json +++ b/projects/wp-multisite-nextjs/package.json @@ -14,8 +14,8 @@ "lint": "eslint ." }, "dependencies": { - "@headstartwp/core": "^1.3.1", - "@headstartwp/next": "^1.3.2", + "@headstartwp/core": "^1.3.2", + "@headstartwp/next": "^1.3.3", "@linaria/babel-preset": "^4.4.5", "@linaria/core": "^4.2.10", "@linaria/react": "^4.3.8", diff --git a/projects/wp-nextjs-ts/package.json b/projects/wp-nextjs-ts/package.json index 16403fceb..da4e2a4df 100644 --- a/projects/wp-nextjs-ts/package.json +++ b/projects/wp-nextjs-ts/package.json @@ -14,8 +14,8 @@ "lint": "eslint ." }, "dependencies": { - "@headstartwp/core": "^1.3.1", - "@headstartwp/next": "^1.3.2", + "@headstartwp/core": "^1.3.2", + "@headstartwp/next": "^1.3.3", "@linaria/babel-preset": "^4.4.5", "@linaria/core": "^4.2.10", "@linaria/react": "^4.3.8", diff --git a/projects/wp-nextjs/package.json b/projects/wp-nextjs/package.json index 7cbb0ca12..5372a4f57 100644 --- a/projects/wp-nextjs/package.json +++ b/projects/wp-nextjs/package.json @@ -14,8 +14,8 @@ "lint": "eslint ." }, "dependencies": { - "@headstartwp/core": "^1.3.1", - "@headstartwp/next": "^1.3.2", + "@headstartwp/core": "^1.3.2", + "@headstartwp/next": "^1.3.3", "@10up/next-redis-cache-provider": "^1.0.0", "@linaria/babel-preset": "^4.4.5", "@linaria/core": "^4.2.10", diff --git a/wp/headless-wp/CHANGELOG.md b/wp/headless-wp/CHANGELOG.md index eeb3ee52b..62f88f274 100644 --- a/wp/headless-wp/CHANGELOG.md +++ b/wp/headless-wp/CHANGELOG.md @@ -1,5 +1,14 @@ # @headstartwp/headstartwp +## 1.1.2 + +### Patch Changes + +- 479f0665: PHPCS 3.0 and code styling updates +- 3f1b4f78: fix: hreflangs tags on multilingual sites +- 26246a01: Add the ability to leverage `post.link` for redirecting the previewed post to the appropriate route via the `preview.usePostLinkForRedirect` setting. +- ac0f1684: Fix redirect loop for invalid sitemap paths + ## 1.1.1 ### Patch Changes diff --git a/wp/headless-wp/package.json b/wp/headless-wp/package.json index 6fa598432..be6b2c579 100644 --- a/wp/headless-wp/package.json +++ b/wp/headless-wp/package.json @@ -1,6 +1,6 @@ { "name": "@headstartwp/headstartwp", - "version": "1.1.1", + "version": "1.1.2", "private": true, "description": "10up Headless WordPress Plugin", "homepage": "https://github.com/10up/headstartwp/blob/develop/wp/headless-wp/README.md", diff --git a/wp/headless-wp/plugin.php b/wp/headless-wp/plugin.php index fa50b3d39..6104bb716 100644 --- a/wp/headless-wp/plugin.php +++ b/wp/headless-wp/plugin.php @@ -3,7 +3,7 @@ * Plugin Name: HeadstartWP * Plugin URI: https://github.com/10up/headstartwp-plugin * Description: Adds functionality to the WordPress admin and REST API for 10up's headless framework. - * Version: 1.1.1 + * Version: 1.1.2 * Author: 10up * Author URI: https://10up.com * Text Domain: headstartwp @@ -17,7 +17,7 @@ use HeadlessWP\Preview\PreviewToken; // Useful global constants. -define( 'HEADLESS_WP_PLUGIN_VERSION', '1.1.1' ); +define( 'HEADLESS_WP_PLUGIN_VERSION', '1.1.2' ); define( 'HEADLESS_WP_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'HEADLESS_WP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); define( 'HEADLESS_WP_PLUGIN_INC', HEADLESS_WP_PLUGIN_PATH . 'includes/' );