gatsby-matrix-theme 52.0.51 → 52.0.52

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,24 @@
1
+ ## [52.0.52](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.51...v52.0.52) (2025-01-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * enable disquss for qa purposes ([276a1e9](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/276a1e9e8c6975cf600e555388254302157ca5a0))
7
+ * update theme ([d9fcb8d](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/d9fcb8dfa04ecc8bc88a0003c744c7e8c2327c45))
8
+
9
+
10
+ ### Code Refactoring
11
+
12
+ * anchor label ([daf8839](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/daf88391584d0bd045834cbdfc2d276579cd7c9c))
13
+
14
+
15
+ ### Config
16
+
17
+ * update theme ([5804d17](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/5804d177852c711c9ec75085831eb7c6eaae9b78))
18
+
19
+
20
+ * Merge branch 'tm-5018-anchor-operator-review-summary' into 'master' ([8bfe4a7](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/8bfe4a76ec04891eb01dff1f39f81835e6f6cee8))
21
+
1
22
  ## [52.0.51](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.50...v52.0.51) (2024-12-18)
2
23
 
3
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "52.0.51",
3
+ "version": "52.0.52",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@react-icons/all-files": "^4.1.0",
27
27
  "gatsby": "^5.11.0",
28
- "gatsby-core-theme": "41.1.13",
28
+ "gatsby-core-theme": "41.1.16",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "gatsby-plugin-sitemap": "^6.13.1",
@@ -5,6 +5,7 @@ import React, { lazy, Suspense, useContext } from 'react';
5
5
  import PropTypes from 'prop-types';
6
6
  import { anchorLink } from 'gatsby-core-theme/src/helpers/strings';
7
7
  import { getSectionExtraField } from 'gatsby-core-theme/src/helpers/getters';
8
+ import { generatePlaceholderString } from "gatsby-core-theme/src/helpers/generators";
8
9
  import Content from 'gatsby-core-theme/src/components/molecules/content';
9
10
  import Toplist from 'gatsby-core-theme/src/components/organisms/toplist';
10
11
  import Anchor from 'gatsby-core-theme/src/components/organisms/anchor/template-one';
@@ -203,7 +204,7 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData, moduleP
203
204
 
204
205
  // eslint-disable-next-line no-nested-ternary
205
206
  const anchorLabel = module.anchor_label
206
- ? removeSymbols(anchorLink(module.anchor_label))
207
+ ? removeSymbols(anchorLink(generatePlaceholderString(module.anchor_label, null, page?.relation)))
207
208
  : module.name === 'archive'
208
209
  ? 'archiveLabel'
209
210
  : null;