gatsby-matrix-theme 53.2.19 → 53.2.20

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,22 @@
1
+ ## [53.2.20](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.2.19...v53.2.20) (2025-07-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * addd as props the rel attributes ([9b2c084](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/9b2c0840614cde880484de9f5932b5fa53955abc))
7
+ * added api to demo ([ce9b027](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/ce9b0271f06f242372ddd62c2285581af3365608))
8
+ * added comments to modules ([edf0f97](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/edf0f9746a3dbc51dc42693e1bc00aa15df3d852))
9
+ * removed axios ([bdd09be](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/bdd09be09057da9d408f9a8d76f2101dbd143327))
10
+ * update theme ([48b2045](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/48b204506f4aeaec11dabdc8ad7982c9f9779e26))
11
+ * update theme ([af98322](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/af98322927bc006650257c093b9bd2d6e1c8e4ad))
12
+ * update theme ([f7b8d19](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/f7b8d19cd99459e229d556ca23ff5c94436f79ee))
13
+ * update theme ([24a65a4](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/24a65a4bc20185a2fa66f3331b1bef1690a0387d))
14
+ * update theme ([849c4af](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/849c4afc9ee0ea377727a5df8323ab43da713424))
15
+ * update theme ([d555da9](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/d555da9bb0bb97d4f3d8507fc6e3f269b591d116))
16
+ * update theme ([ba171ad](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/ba171ad776d6dd1305cadf83d096b52a38880187))
17
+ * update theme ([cc3a3bc](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/cc3a3bc4217b4ad558fbbc8d91d444182d09ee05))
18
+ * update theme + recaptcha ([a00aa2f](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/a00aa2feda9f58b55e691cdbce85de72a2e99a48))
19
+
1
20
  ## [53.2.19](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.2.18...v53.2.19) (2025-07-10)
2
21
 
3
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "53.2.19",
3
+ "version": "53.2.20",
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": "44.4.4",
28
+ "gatsby-core-theme": "44.4.14",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "gatsby-plugin-sitemap": "^6.13.1",
@@ -60,6 +60,8 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData, moduleP
60
60
  return lazy(() => import('gatsby-core-theme/src/components/organisms/archive'));
61
61
  case 'counter':
62
62
  return lazy(() => import('gatsby-core-theme/src/components/molecules/counter'));
63
+ case 'comments':
64
+ return lazy(() => import('gatsby-core-theme/src/components/organisms/comments'));
63
65
  case 'contact_form':
64
66
  return lazy(() => import('gatsby-core-theme/src/components/atoms/contact-form'));
65
67
  case 'cards':
@@ -218,7 +218,7 @@ export const generateLink = (value, props) => {
218
218
  const attributes = { href: link };
219
219
 
220
220
  if (addRel) {
221
- attributes.rel = 'nofollow sponsored';
221
+ attributes.rel = props?.rel || 'nofollow sponsored';
222
222
  }
223
223
 
224
224
  if (newTab) {