Skip to content

Commit ed0f2da

Browse files
Version Packages (#778)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9aedeb1 commit ed0f2da

File tree

13 files changed

+38
-36
lines changed

13 files changed

+38
-36
lines changed

.changeset/dull-houses-invite.md

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

.changeset/modern-llamas-shop.md

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

.changeset/pretty-terms-sit.md

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

.changeset/sixty-fishes-nail.md

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

examples/next/getting-started/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"wpe-build": "next build"
1717
},
1818
"dependencies": {
19-
"@faustjs/core": "^0.15.2",
20-
"@faustjs/next": "^0.15.3",
19+
"@faustjs/core": "^0.15.4",
20+
"@faustjs/next": "^0.15.4",
2121
"next": "^12.1.0",
2222
"normalize.css": "^8.0.1",
2323
"react": "^17.0.2",

packages/core/CHANGELOG.md

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

3+
## 0.15.4
4+
5+
### Patch Changes
6+
7+
- d2b2b39: Fixed previews when trailingSlash is enabled in Next.js config
8+
39
## 0.15.2
410

511
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustjs/core",
3-
"version": "0.15.2",
3+
"version": "0.15.4",
44
"description": "This module helps you use WordPress as a Headless CMS",
55
"main": "dist/cjs/export/index.js",
66
"module": "dist/mjs/export/index.js",

packages/next/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @faustjs/next
22

3+
## 0.15.4
4+
5+
### Patch Changes
6+
7+
- d2b2b39: Fixed previews when trailingSlash is enabled in Next.js config
8+
- Updated dependencies [d2b2b39]
9+
- @faustjs/core@0.15.4
10+
311
## 0.15.3
412

513
### Patch Changes

packages/next/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustjs/next",
3-
"version": "0.15.3",
3+
"version": "0.15.4",
44
"description": "This module helps you use WordPress as a Headless CMS with Next.js",
55
"main": "dist/cjs/export/index.js",
66
"module": "dist/mjs/export/index.js",
@@ -108,7 +108,7 @@
108108
"dependencies": {
109109
"@gqty/logger": "^2.0.1",
110110
"@gqty/react": "^2.1.0",
111-
"@faustjs/core": "^0.15.1",
111+
"@faustjs/core": "^0.15.4",
112112
"@faustjs/react": "^0.15.1",
113113
"graphql": ">=15.6",
114114
"lodash": "^4.17.21"

plugins/faustwp/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# FaustWP
22

3+
## 0.7.5
4+
5+
### Patch Changes
6+
7+
- b7af359: Simplify generation of preview links. Fixes an issue where preview links were missing slashes with certain permalink structures. Thanks @torounit!
8+
- 662c377: Plugin settings are now validated and sanitized before saving.
9+
- c730348: Disables access to the site editor when themes are disabled
10+
311
## 0.7.4
412

513
### Patch 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: 0.7.4
12+
* Version: 0.7.5
1313
* Requires PHP: 7.2
1414
* Requires at least: 5.7
1515
*

plugins/faustwp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faustwp",
3-
"version": "0.7.4",
3+
"version": "0.7.5",
44
"private": true,
55
"dependencies": {}
66
}

plugins/faustwp/readme.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: antpb, apmatthe, blakewpe, claygriffiths, joefusco, markkelnar, mi
33
Tags: faustjs, faust, headless, decoupled
44
Requires at least: 5.7
55
Tested up to: 5.9
6-
Stable tag: 0.7.4
6+
Stable tag: 0.7.5
77
Requires PHP: 7.2
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -30,6 +30,14 @@ That's it! For more information on getting started with headless WordPress, see
3030

3131
== Changelog ==
3232

33+
= 0.7.5 =
34+
35+
### Patch Changes
36+
37+
- b7af359: Simplify generation of preview links. Fixes an issue where preview links were missing slashes with certain permalink structures. Thanks @torounit!
38+
- 662c377: Plugin settings are now validated and sanitized before saving.
39+
- c730348: Disables access to the site editor when themes are disabled
40+
3341
= 0.7.4 =
3442

3543
### Patch Changes
@@ -44,11 +52,4 @@ That's it! For more information on getting started with headless WordPress, see
4452

4553
- ab4a661: Fixed issue where file editor was unable to save
4654

47-
= 0.7.2 =
48-
49-
### Patch Changes
50-
51-
- 4cff9dc: feat: add link to Settings page on Installed Plugins list page
52-
- 3c1280b: Adds the GraphQL `Type` name to the preview URL to avoid making a request to get the content type in the Faust.js packages
53-
5455
[View the full changelog](https://faustjs.org/docs/changelog/faustwp)

0 commit comments

Comments
 (0)