Skip to content

Commit

Permalink
Version Packages (#1606)
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] authored Oct 25, 2023
1 parent a9dd9f6 commit 5ccbd8b
Show file tree
Hide file tree
Showing 18 changed files with 58 additions and 47 deletions.
5 changes: 0 additions & 5 deletions .changeset/gold-dodos-flash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-kids-lick.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/rotten-hats-exercise.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/serious-monkeys-shave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-plants-enjoy.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 @@ -12,8 +12,8 @@
"dependencies": {
"@apollo/client": "^3.8.0",
"@apollo/experimental-nextjs-app-support": "^0.4.1",
"@faustwp/cli": "1.1.4",
"@faustwp/core": "1.1.2",
"@faustwp/cli": "1.2.0",
"@faustwp/core": "1.2.0",
"@faustwp/experimental-app-router": "^0.1.0",
"graphql": "^16.7.1",
"next": "^13.4.20-canary.18",
Expand Down
4 changes: 2 additions & 2 deletions examples/next/block-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"dependencies": {
"@apollo/client": "^3.6.6",
"@faustwp/blocks": "2.0.0",
"@faustwp/cli": "1.1.4",
"@faustwp/core": "1.1.2",
"@faustwp/cli": "1.2.0",
"@faustwp/core": "1.2.0",
"@wordpress/base-styles": "^4.26.0",
"@wordpress/block-library": "^7.19.0",
"classnames": "^2.3.1",
Expand Down
4 changes: 2 additions & 2 deletions examples/next/faustwp-getting-started/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"dependencies": {
"@apollo/client": "^3.6.6",
"@faustwp/cli": "1.1.4",
"@faustwp/core": "1.1.2",
"@faustwp/cli": "1.2.0",
"@faustwp/core": "1.2.0",
"@wordpress/base-styles": "^4.26.0",
"@wordpress/block-library": "^7.19.0",
"classnames": "^2.3.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/block-editor-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @faustwp/block-editor-utils

## 0.0.5

### Patch Changes

- 604e9e3: Update block-editor-utils dependencies.

## 0.0.4

### 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.4",
"version": "0.0.5",
"description": "Faust Block Editor Utils Package",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
Expand Down
14 changes: 14 additions & 0 deletions packages/faustwp-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @faustwp/cli

## 1.2.0

### Minor Changes

- c29f83d: Add blockset command in @faust/cli and faustwp plugin.

Add your blocks inside `wp-blocks` folder. Then run `faust blockset` to compile and upload the blocks into WordPress. Blocks will be available in the editor.

- d3d30aa: Added support for authenticated WPGraphQL introspection queries using FAUST_SECRET_KEY. It is no longer required to enable "Public Introspection" in WPGraphQL.

### Patch Changes

- 03ee9e8: Bug Fix: Forces cli blockset command to use @wordpress/scripts package.

## 1.1.4

### 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.4",
"version": "1.2.0",
"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 packages/faustwp-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @faustwp/core

## 1.2.0

### Patch Changes

- 3722ab3: Fix `x-using` header not appearing when i18n options are set in `next.config.js`

## 1.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/faustwp-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@faustwp/core",
"version": "1.1.2",
"version": "1.2.0",
"description": "Faust is a framework that aims to make headless WordPress as streamlined as classic WordPress for both developers and publishers",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
Expand Down
10 changes: 10 additions & 0 deletions plugins/faustwp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Faust

## 1.1.0

### Minor Changes

- c29f83d: Add blockset command in @faust/cli and faustwp plugin.

Add your blocks inside `wp-blocks` folder. Then run `faust blockset` to compile and upload the blocks into WordPress. Blocks will be available in the editor.

- d3d30aa: Added support for authenticated WPGraphQL introspection queries using FAUST_SECRET_KEY. It is no longer required to enable "Public Introspection" in WPGraphQL.

## 1.0.4

### 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.4
* Version: 1.1.0
* 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.4",
"version": "1.1.0",
"private": true
}
18 changes: 11 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.4
Stable tag: 1.1.0
Requires PHP: 7.2
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -54,6 +54,16 @@ plugins/faustwp/.wordpress-org/screenshot-3.png

== Changelog ==

= 1.1.0 =

### Minor Changes

- c29f83d: Add blockset command in @faust/cli and faustwp plugin.

Add your blocks inside `wp-blocks` folder. Then run `faust blockset` to compile and upload the blocks into WordPress. Blocks will be available in the editor.

- d3d30aa: Added support for authenticated WPGraphQL introspection queries using FAUST_SECRET_KEY. It is no longer required to enable "Public Introspection" in WPGraphQL.

= 1.0.4 =

### Patch Changes
Expand All @@ -66,10 +76,4 @@ plugins/faustwp/.wordpress-org/screenshot-3.png

- 188bd75: Auto-update enqueued asset versions whenenever the plugin is updated.

= 1.0.2 =

### 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.

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

0 comments on commit 5ccbd8b

Please sign in to comment.