gatsby-core-theme 44.0.31 → 44.0.32

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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## [44.0.32](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.0.31...v44.0.32) (2025-05-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * reduce issue ([75b42d2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/75b42d27a5d61d49ce367f32cd0f7e313ec20bf8))
7
+ * reduce issue ([f6bbe39](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/f6bbe39acf967013cc13fed91e1e84b12d08d41c))
8
+
1
9
  ## [44.0.31](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.0.30...v44.0.31) (2025-05-05)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.0.31",
3
+ "version": "44.0.32",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -207,6 +207,7 @@ export function removeUnwantedSections(obj, pageType, ribbonsData) {
207
207
 
208
208
  export function filterRelation (relation, allowedKeys) {
209
209
  if (!relation) return undefined;
210
+ if (!allowedKeys) return relation;
210
211
 
211
212
  return allowedKeys.reduce((acc, key) => {
212
213
  if (relation[key]) {