Skip to content

Commit fc8bd26

Browse files
Version Packages (#2025)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 820705a commit fc8bd26

File tree

10 files changed

+61
-49
lines changed

10 files changed

+61
-49
lines changed

.changeset/sharp-items-smoke.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slow-monkeys-tease.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tidy-toys-bake.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

examples/next/faustwp-getting-started/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@apollo/client": "^3.10.4",
1414
"@faustwp/cli": "^3.1.1",
15-
"@faustwp/core": "^3.1.0",
15+
"@faustwp/core": "^3.2.0",
1616
"@wordpress/base-styles": "^5.10.0",
1717
"@wordpress/block-library": "^9.10.0",
1818
"classnames": "^2.5.1",

packages/faustwp-core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @faustwp/core
22

3+
## 3.2.0
4+
5+
### Minor Changes
6+
7+
- 8f133f5: The Experimental Toolbar feature is being deprecated. You may continue using it but no further bug fixes will be provided.
8+
39
## 3.1.0
410

511
### Minor Changes

packages/faustwp-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustwp/core",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "Faust is a framework that aims to make headless WordPress as streamlined as classic WordPress for both developers and publishers",
55
"main": "dist/cjs/index.js",
66
"module": "dist/mjs/index.js",

plugins/faustwp/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Faust
22

3+
## 1.7.0
4+
5+
### Minor Changes
6+
7+
- 33dda2e: ### Fixes
8+
9+
- Fixes various issues with content replacement callback functions and replacing the site_url and media_urls
10+
- Fixed an issue with content replacement when media replacement was disabled and rewrites enabled, it was overwriting and updating the media URL to the frontend URL rather than leaving it as the original site URL
11+
12+
### Added
13+
14+
- Added 6.6 and 6.7 to Github Actions
15+
- Added 2 new filters for `faustwp_get_wp_site_urls` and `faustwp_get_wp_site_media_urls` to allow users add/remove/edit site and media URLS for the content replacement.
16+
17+
### Patch Changes
18+
19+
- ab06786: Updated the package `lucatume/wp-browser` to fix a security vulnurability for `nesbot/carbon `. See https://github.com/briannesbitt/Carbon/releases/tag/2.72.6
20+
321
## 1.6.0
422

523
### Minor Changes

plugins/faustwp/faustwp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010
* Text Domain: faustwp
1111
* Domain Path: /languages
12-
* Version: 1.6.0
12+
* Version: 1.7.0
1313
* Requires PHP: 7.4
1414
* Requires at least: 5.7
1515
* Update URI: false

plugins/faustwp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@faustwp/wordpress-plugin",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"private": true
55
}

plugins/faustwp/readme.txt

Lines changed: 33 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: antpb, apmatthe, blakewpe, chriswiegman, claygriffiths, jasonkonen
33
Tags: faustjs, faust, headless, decoupled, composable-architecture
44
Requires at least: 5.7
55
Tested up to: 6.6.1
6-
Stable tag: 1.6.0
6+
Stable tag: 1.7.0
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -52,24 +52,36 @@ plugins/faustwp/.wordpress-org/screenshot-1.png
5252
plugins/faustwp/.wordpress-org/screenshot-2.png
5353
plugins/faustwp/.wordpress-org/screenshot-3.png
5454

55-
== Changelog ==
56-
57-
= 1.6.0 =
58-
59-
### Minor Changes
60-
61-
- 28f1f83: Added new filter `faustwp_public_redirect_status_code`, allowing WordPress plugins and themes to choose the [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status) to use when generating redirects when the [enable public route redirects](https://faustjs.org/docs/faustwp/settings#enabling-public-route-redirects) setting is active.
62-
63-
= 1.5.0 =
64-
65-
### Minor Changes
66-
67-
- 011cd931: - Added a custom PluginUpdater class to enable FaustWP plugin updates from an external API endpoint.
68-
69-
= 1.4.1 =
70-
71-
### Patch Changes
72-
73-
- e80d80af: Tested up to WordPress v6.6.1
74-
55+
== Changelog ==
56+
57+
= 1.7.0 =
58+
59+
### Minor Changes
60+
61+
- 33dda2e: ### Fixes
62+
63+
- Fixes various issues with content replacement callback functions and replacing the site_url and media_urls
64+
- Fixed an issue with content replacement when media replacement was disabled and rewrites enabled, it was overwriting and updating the media URL to the frontend URL rather than leaving it as the original site URL
65+
66+
### Added
67+
68+
- Added 6.6 and 6.7 to Github Actions
69+
- Added 2 new filters for `faustwp_get_wp_site_urls` and `faustwp_get_wp_site_media_urls` to allow users add/remove/edit site and media URLS for the content replacement.
70+
71+
### Patch Changes
72+
73+
- ab06786: Updated the package `lucatume/wp-browser` to fix a security vulnurability for `nesbot/carbon `. See https://github.com/briannesbitt/Carbon/releases/tag/2.72.6
74+
75+
= 1.6.0 =
76+
77+
### Minor Changes
78+
79+
- 28f1f83: Added new filter `faustwp_public_redirect_status_code`, allowing WordPress plugins and themes to choose the [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status) to use when generating redirects when the [enable public route redirects](https://faustjs.org/docs/faustwp/settings#enabling-public-route-redirects) setting is active.
80+
81+
= 1.5.0 =
82+
83+
### Minor Changes
84+
85+
- 011cd931: - Added a custom PluginUpdater class to enable FaustWP plugin updates from an external API endpoint.
86+
7587
[View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md)

0 commit comments

Comments
 (0)