Skip to content

Commit d57b88a

Browse files
Version Packages (#1999)
* Version Packages * Update CHANGELOG.md * Update package.json --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Theofanis Despoudis <[email protected]>
1 parent 99b5793 commit d57b88a

File tree

11 files changed

+73
-70
lines changed

11 files changed

+73
-70
lines changed

.changeset/afraid-terms-shake.md

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

.changeset/popular-glasses-occur.md

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

.changeset/tasty-walls-thank.md

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

.changeset/three-singers-roll.md

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

packages/blocks/CHANGELOG.md

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

3+
## 6.0.0
4+
5+
### Major Changes
6+
7+
- 99b5793: Update of the CoreParagraph block to support the native WP anchor attribute. GitHub issue: "[[feat] Add anchor attribute to core/paragraph block](https://github.com/wpengine/faustjs/issues/1954)"
8+
9+
Introduces new field to `core/paragraph` block: `anchor`. This field allows users to add an anchor to the paragraph block. The anchor is used to create a link to a specific part of the page. The anchor is added to the block's wrapper element as an ID attribute.
10+
11+
**Files changed:**
12+
13+
- packages/blocks/src/blocks/CoreParagraph.tsx (added anchor attribute)
14+
- packages/blocks/package.json (updated package version to 6.0.0)
15+
16+
### Patch Changes
17+
18+
- bdb7d7f: Bug: Fixed an issue an issue with WordPressBlocksProvider and the theme argument to allow it to be optional and not throw an error. By default theme is now an empty object
19+
320
## 5.0.0
421

522
### Major Changes

packages/experimental-app-router/CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# @faustwp/experimental-app-router
22

3+
## 0.6.0
4+
5+
### Minor Changes
6+
7+
- 5457479: ---
8+
9+
## '@faustwp/experimental-app-router': minor
10+
11+
Update @faustwp/experimental-app-router to account for next 15 changes to cookies and update NextResponse import
12+
13+
Notable changes:
14+
15+
- Adding await to all cookies requests as per Next documentation: https://nextjs.org/docs/app/api-reference/functions/cookies
16+
17+
```
18+
import { cookies } from 'next/headers'
19+
20+
export default async function Page() {
21+
const cookieStore = await cookies()
22+
const theme = cookieStore.get('theme')
23+
return '...'
24+
}
25+
```
26+
27+
- Files changed:
28+
29+
- packages/experimental-app-router/src/server-actions/logoutAction.ts
30+
- packages/experimental-app-router/src/server-actions/utils/setRefreshToken.ts
31+
- packages/experimental-app-router/src/server/auth/fetchTokens.ts
32+
- packages/experimental-app-router/src/server/routeHandler/tokenHandler.ts
33+
34+
- Updated Next App Router example to use latest next version and React 19 RC.
35+
- Updated Example Login form using React 19s useActionState
36+
- Updated Awaiting of params for Next 15
37+
- Files Changed:
38+
- examples/next/app-router/app/login/page.tsx
39+
- examples/next/app-router/package.json
40+
- examples/next/app-router/[slug]hasPreviewProps.ts (made async)
41+
- examples/next/app-router/[slug]page.tsx
42+
343
## 0.5.0
444

545
### Minor Changes

packages/experimental-app-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@faustwp/experimental-app-router",
33
"type": "module",
4-
"version": "0.5.0",
4+
"version": "0.6.0",
55
"description": "Experimental: A Faust package to support Next.js' App Router",
66
"exports": {
77
".": "./dist/index.js",

plugins/faustwp/CHANGELOG.md

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

3+
## 1.6.0
4+
5+
### Minor Changes
6+
7+
- 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.
8+
39
## 1.5.0
410

511
### 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.5.0
12+
* Version: 1.6.0
1313
* Requires PHP: 7.2
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.5.0",
3+
"version": "1.6.0",
44
"private": true
55
}

0 commit comments

Comments
 (0)