gatsby-core-theme 12.0.2 → 12.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/helpers/schema.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [12.0.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v12.0.2...v12.0.3) (2022-10-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix warnings in schema ([1e48075](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1e4807503936bdfe77e34eac7c0606ceac040974))
|
|
7
|
+
|
|
1
8
|
## [12.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v12.0.1...v12.0.2) (2022-10-05)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/helpers/schema.js
CHANGED
|
@@ -351,10 +351,11 @@ export function webPageSchema(page, pageImage) {
|
|
|
351
351
|
description: page?.meta_title,
|
|
352
352
|
},
|
|
353
353
|
publisher: {
|
|
354
|
-
'@type': '
|
|
354
|
+
'@type': 'CreativeWork',
|
|
355
355
|
url: getUrl('/'),
|
|
356
356
|
name: page?.meta_title,
|
|
357
357
|
publisher: {
|
|
358
|
+
'@type': 'Organization',
|
|
358
359
|
'@id': `${getUrl('/')}#organization`,
|
|
359
360
|
},
|
|
360
361
|
potentialAction: {
|