Skip to content

Commit 1bb0bb0

Browse files
Version Packages (#2324)
* Version Packages * chore: trigger pipeline * chore: format changelog * ci: fix failing e2e test workflow * ci: fix failing e2e tests * ci: fix failing e2e tests * ci: fix failing e2e tests --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ahuseyn <huseyn.aghayev@wpengine.com>
1 parent b7e2b71 commit 1bb0bb0

14 files changed

Lines changed: 47 additions & 35 deletions

File tree

.changeset/basic-auth-error-message.md

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

.changeset/cookie-removal-flags.md

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

.changeset/sitemap-index-path-tests.md

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

.changeset/update-settings-links.md

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

.github/workflows/e2e-next-faustwp-example.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,25 @@ jobs:
5454
# writing this they do not function as expected on GH actions
5555
- name: replace downloaded registry faust packages with local build
5656
run: |
57+
mkdir -p e2e-app/node_modules/@faustwp
5758
rm -rf e2e-app/node_modules/@faustwp/cli
5859
rm -rf e2e-app/node_modules/@faustwp/core
5960
cp -r packages/faustwp-cli e2e-app/node_modules/@faustwp/cli
6061
cp -r packages/faustwp-core e2e-app/node_modules/@faustwp/core
61-
chmod +x e2e-app/node_modules/.bin/faust
62+
mkdir -p e2e-app/node_modules/.bin
63+
ln -sf ../@faustwp/cli/dist/index.js e2e-app/node_modules/.bin/faust
64+
chmod +x e2e-app/node_modules/@faustwp/cli/dist/index.js
65+
# create-next-app's npm install may fail if @faustwp/* versions
66+
# are not yet published. Point deps at local builds so npm install
67+
# can resolve them and install all remaining dependencies.
68+
# --install-links copies packages instead of symlinking, avoiding
69+
# duplicate React instances from split module resolution.
70+
- name: install e2e-app dependencies
71+
working-directory: e2e-app
72+
run: |
73+
npm pkg set "dependencies.@faustwp/cli=file:../packages/faustwp-cli"
74+
npm pkg set "dependencies.@faustwp/core=file:../packages/faustwp-core"
75+
npm install --install-links
6276
- name: copy env
6377
working-directory: e2e-app
6478
run: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
},
1212
"dependencies": {
1313
"@apollo/client": "^3.14.0",
14-
"@faustwp/cli": "^3.3.6",
15-
"@faustwp/core": "^3.4.0",
14+
"@faustwp/cli": "^3.4.1",
15+
"@faustwp/core": "^3.4.1",
1616
"@wordpress/base-styles": "^6.15.0",
1717
"@wordpress/block-library": "9.10.0",
1818
"classnames": "^2.5.1",

packages/faustwp-cli/CHANGELOG.md

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

3+
## 3.4.1
4+
5+
### Patch Changes
6+
7+
- d8b9d2e: fix[faustwp-cli]: detect HTTP Basic Auth on 401 response and show accurate error message instead of misleading secret key mismatch
8+
39
## 3.3.6
410

511
### Patch Changes

packages/faustwp-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustwp/cli",
3-
"version": "3.3.6",
3+
"version": "3.4.1",
44
"description": "This modules provides a CLI to develop, build, and serve your Faust apps",
55
"main": "dist/index.js",
66
"type": "module",

packages/faustwp-core/CHANGELOG.md

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

3+
## 3.4.1
4+
5+
### Patch Changes
6+
7+
- 10ad814: fix[faustwp-core]: add path, sameSite, secure, and httpOnly flags to removeCookie() to match setCookie() attributes
8+
- b087ac3: test[faustwp-core]: add test coverage for sitemapIndexPath option in createRootSitemapIndex
9+
310
## 3.4.0
411

512
### 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.4.0",
3+
"version": "3.4.1",
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",

0 commit comments

Comments
 (0)