Skip to content

Commit 5304e8a

Browse files
Version Packages (#2097)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1ea9dc3 commit 5304e8a

File tree

12 files changed

+63
-57
lines changed

12 files changed

+63
-57
lines changed

.changeset/angry-lands-rush.md

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

.changeset/short-planets-wink.md

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

.changeset/wide-mangos-guess.md

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

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.10.4",
14-
"@faustwp/cli": "^3.2.2",
15-
"@faustwp/core": "^3.2.2",
14+
"@faustwp/cli": "^3.2.3",
15+
"@faustwp/core": "^3.2.3",
1616
"@wordpress/base-styles": "^5.10.0",
1717
"@wordpress/block-library": "^9.10.0",
1818
"classnames": "^2.5.1",

packages/block-editor-utils/CHANGELOG.md

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @faustwp/block-editor-utils
22

3+
## 0.3.3
4+
5+
### Patch Changes
6+
7+
- 709fe4a: chore: Forced an update for babel packages for security vulnerability - GHSA-968p-4wvh-cqc8
8+
39
## 0.3.2
410

511
### Patch Changes
@@ -30,15 +36,15 @@
3036
// Component.js
3137

3238
Component.config = {
33-
name: 'CreateBlockBlockB',
34-
editorFields: {
35-
textArea: {
36-
type: 'string',
37-
label: 'My Message',
38-
location: 'editor',
39-
control: 'textarea', // <--- Render a TextAreaControl field in the Gutenberg editor
40-
},
41-
},
39+
name: 'CreateBlockBlockB',
40+
editorFields: {
41+
textArea: {
42+
type: 'string',
43+
label: 'My Message',
44+
location: 'editor',
45+
control: 'textarea', // <--- Render a TextAreaControl field in the Gutenberg editor
46+
},
47+
},
4248
};
4349
```
4450

@@ -72,9 +78,9 @@
7278

7379
```js
7480
<div
75-
style={styles}
76-
className="rich-text"
77-
dangerouslySetInnerHTML={{ __html: attributes.richText }}
81+
style={styles}
82+
className="rich-text"
83+
dangerouslySetInnerHTML={{ __html: attributes.richText }}
7884
/>
7985
```
8086

@@ -125,9 +131,9 @@
125131
import save from './save';
126132

127133
registerFaustBlock(MyFirstBlock, {
128-
blockJson: metadata,
129-
editFn: Edit,
130-
saveFn: save,
134+
blockJson: metadata,
135+
editFn: Edit,
136+
saveFn: save,
131137
});
132138
```
133139

packages/block-editor-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustwp/block-editor-utils",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "Faust Block Editor Utils Package",
55
"main": "dist/cjs/index.js",
66
"module": "dist/mjs/index.js",

packages/blocks/CHANGELOG.md

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

3+
## 6.1.2
4+
5+
### Patch Changes
6+
7+
- 709fe4a: chore: Forced an update for babel packages for security vulnerability - GHSA-968p-4wvh-cqc8
8+
39
## 6.1.1
410

511
### Patch Changes

packages/blocks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustwp/blocks",
3-
"version": "6.1.1",
3+
"version": "6.1.2",
44
"description": "Faust Blocks",
55
"main": "dist/cjs/index.js",
66
"module": "dist/mjs/index.js",

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.2.3
4+
5+
### Patch Changes
6+
7+
- 709fe4a: chore: Forced an update for babel packages for security vulnerability - GHSA-968p-4wvh-cqc8
8+
39
## 3.2.2
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.2.2",
3+
"version": "3.2.3",
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: 24 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @faustwp/core
22

3+
## 3.2.3
4+
5+
### Patch Changes
6+
7+
- 4ddf732: Fixed an issue with the `getWordPressProps` function where the resolved URL was not correctly set for non-SSR contexts.
8+
- 709fe4a: chore: Forced an update for babel packages for security vulnerability - GHSA-968p-4wvh-cqc8
9+
- 1ea9dc3: Changed the way the devtools option is configured for the Apollo Client
10+
311
## 3.2.2
412

513
### Patch Changes
@@ -30,11 +38,11 @@
3038
export default function Sitemap() {}
3139

3240
export function getServerSideProps(ctx) {
33-
return getSitemapProps(ctx, {
34-
sitemapIndexPath: '/sitemap_index.xml', // RankMath changes the default sitemap path to this
35-
frontendUrl: process.env.NEXT_PUBLIC_SITE_URL,
36-
sitemapPathsToIgnore: ['/wp-sitemap-users-*'],
37-
});
41+
return getSitemapProps(ctx, {
42+
sitemapIndexPath: '/sitemap_index.xml', // RankMath changes the default sitemap path to this
43+
frontendUrl: process.env.NEXT_PUBLIC_SITE_URL,
44+
sitemapPathsToIgnore: ['/wp-sitemap-users-*'],
45+
});
3846
}
3947
```
4048

@@ -138,7 +146,7 @@
138146
139147
```jsx
140148
<ToolbarItem onKeyDown={handleKeyDown} onClick={handleClick}>
141-
Log Out
149+
Log Out
142150
</ToolbarItem>
143151
```
144152
@@ -244,18 +252,18 @@
244252
import { FaustPage } from '@faustwp/core';
245253

246254
type GetPageData = {
247-
generalSettings: {
248-
title: string;
249-
};
255+
generalSettings: {
256+
title: string;
257+
};
250258
};
251259

252260
type PageProps = {
253-
myProp: string;
261+
myProp: string;
254262
};
255263

256264
const Page: FaustPage<GetPageData, PageProps> = (props) => {
257-
const { myProp, data } = props;
258-
return <></>;
265+
const { myProp, data } = props;
266+
return <></>;
259267
};
260268
```
261269
@@ -324,9 +332,9 @@
324332
export default function Sitemap() {}
325333

326334
export function getServerSideProps(context) {
327-
return getSitemapProps(context, {
328-
frontendUrl: process.env.FRONTEND_URL, // Set the FRONTEND_URL as an env var
329-
});
335+
return getSitemapProps(context, {
336+
frontendUrl: process.env.FRONTEND_URL, // Set the FRONTEND_URL as an env var
337+
});
330338
}
331339
```
332340
@@ -356,7 +364,7 @@
356364
import { FaustHooks, FaustPlugin } from '@faustwp/core';
357365

358366
export class MyPlugin implements FaustPlugin {
359-
apply(hooks: FaustHooks) {}
367+
apply(hooks: FaustHooks) {}
360368
}
361369
```
362370

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.2.2",
3+
"version": "3.2.3",
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)