Skip to content

Commit

Permalink
Version Packages (#1567)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Sep 13, 2023
1 parent fcc6d37 commit 38ea99f
Show file tree
Hide file tree
Showing 20 changed files with 66 additions and 75 deletions.
5 changes: 0 additions & 5 deletions .changeset/dry-toys-speak.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/gold-bags-flow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/good-coats-give.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-geese-give.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-houses-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-nails-listen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-steaks-cough.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/soft-cooks-peel.md

This file was deleted.

4 changes: 2 additions & 2 deletions examples/next/app-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
},
"dependencies": {
"@apollo/client": "^3.8.0",
"@faustwp/cli": "1.1.1",
"@faustwp/cli": "1.1.3",
"@faustwp/core": "1.1.2",
"@faustwp/experimental-app-router": "^0.0.3",
"@faustwp/experimental-app-router": "^0.0.4",
"@apollo/experimental-nextjs-app-support": "^0.4.1",
"graphql": "^16.7.1",
"next": "^13.4.20-canary.18",
Expand Down
2 changes: 1 addition & 1 deletion examples/next/faustwp-getting-started/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@apollo/client": "^3.6.6",
"@faustwp/cli": "1.1.1",
"@faustwp/cli": "1.1.3",
"@faustwp/core": "1.1.2",
"@wordpress/base-styles": "^4.26.0",
"@wordpress/block-library": "^7.19.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/block-editor-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @faustwp/block-editor-utils

## 0.0.3

### Patch Changes

- 457933b: Feat: Handle NumberControl fields in the block-editor-utils.
- 40c836a: Feat: Handle RadioControl fields in the block-editor-utils.
- deb5767: Feat: Handle SelectControl fields in the block-editor-utils.
- db848c4: Feat: Handle TextControl fields in block-editor-utils.
- 1bb5e94: Feat: Handle ColorControl fields in block-editor-utils

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/block-editor-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@faustwp/block-editor-utils",
"version": "0.0.2",
"version": "0.0.3",
"description": "Faust Block Editor Utils Package",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
Expand Down
27 changes: 27 additions & 0 deletions packages/experimental-app-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @faustwp/experimental-app-router

## 0.0.4

### Patch Changes

- b2ad517: Added the `onLogin` server action to login a user:

```tsx
import { onLogin } from '@faustwp/experimental-app-router';

<form action={loginAction}>
<fieldset>
<label htmlFor="usernameEmail">Username or Email</label>
<input type="name" name="usernameEmail" />
</fieldset>

<fieldset>
<label htmlFor="password">Password</label>
<input type="password" name="password" />
</fieldset>

<button type="submit">Login</button>
</form>;
```

- Updated dependencies [b201ba2]
- @faustwp/cli@1.1.3

## 0.0.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/experimental-app-router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@faustwp/experimental-app-router",
"version": "0.0.3",
"version": "0.0.4",
"description": "Experimental: A Faust package to support Next.js' App Router",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
Expand Down Expand Up @@ -39,7 +39,7 @@
"peerDependencies": {
"@apollo/client": ">=3.8.0",
"@apollo/experimental-nextjs-app-support": ">=0.3.2",
"@faustwp/cli": ">=1.1.1",
"@faustwp/cli": ">=1.1.3",
"@faustwp/core": ">=1.1.2",
"next": ">=12.1.6",
"react": ">=17.0.2",
Expand All @@ -48,7 +48,7 @@
"devDependencies": {
"@apollo/client": "^3.8.0",
"@apollo/experimental-nextjs-app-support": "^0.4.1",
"@faustwp/cli": "^1.1.1",
"@faustwp/cli": "^1.1.3",
"@faustwp/core": "^1.1.2",
"@testing-library/jest-dom": "^5.17.0",
"@types/node": "^20.4.6",
Expand Down
6 changes: 6 additions & 0 deletions packages/faustwp-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @faustwp/cli

## 1.1.3

### Patch Changes

- b201ba2: Fixed a regression where an improper exit code was being thrown when 1. the `NEXT_PUBLIC_WORDPRESS_URL` environment variable was not set or 2. the GraphQL endpoint was not available

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/faustwp-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@faustwp/cli",
"version": "1.1.1",
"version": "1.1.3",
"description": "This modules provides a CLI to develop, build, and serve your Faust apps",
"main": "dist/index.js",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions plugins/faustwp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Faust

## 1.0.4

### Patch Changes

- fcc6d37: Fixed a bug in the block editor screen where the preview link was missing the `p` and `previewPathName` query arguments after saving a draft.

## 1.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/faustwp/faustwp.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: faustwp
* Domain Path: /languages
* Version: 1.0.3
* Version: 1.0.4
* Requires PHP: 7.2
* Requires at least: 5.7
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/faustwp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@faustwp/wordpress-plugin",
"version": "1.0.3",
"version": "1.0.4",
"private": true
}
14 changes: 7 additions & 7 deletions plugins/faustwp/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.3
Stable tag: 1.0.3
Stable tag: 1.0.4
Requires PHP: 7.2
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -54,22 +54,22 @@ plugins/faustwp/.wordpress-org/screenshot-3.png

== Changelog ==

= 1.0.3 =
= 1.0.4 =

### Patch Changes

- 188bd75: Auto-update enqueued asset versions whenenever the plugin is updated.
- fcc6d37: Fixed a bug in the block editor screen where the preview link was missing the `p` and `previewPathName` query arguments after saving a draft.

= 1.0.2 =
= 1.0.3 =

### Patch Changes

- 0c9f9b5: Image URLs (and any URLs with file extensions) are now excluded from the replacement that Faust does in the GraphQL query results.
- 188bd75: Auto-update enqueued asset versions whenenever the plugin is updated.

= 1.0.1 =
= 1.0.2 =

### Patch Changes

- 9ed3c40: Bug: Fixed an issue where the preview button could crash the browser
- 0c9f9b5: Image URLs (and any URLs with file extensions) are now excluded from the replacement that Faust does in the GraphQL query results.

[View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md)

1 comment on commit 38ea99f

@atlas-by-wp-engine
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check out the recent updates to your Atlas environment:

App Environment URL Build
faustjs canary https://hg…wered.com ✅ (logs)

Learn more about building on Atlas in our documentation.

Please sign in to comment.