gatsby-core-theme 40.0.39 → 40.0.41

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,19 @@
1
+ ## [40.0.41](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v40.0.40...v40.0.41) (2024-11-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * revert sports changes ([9ed4be3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/9ed4be39d4bf4999cf7d60114df216b18dd32b97))
7
+
8
+ ## [40.0.40](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v40.0.39...v40.0.40) (2024-11-27)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * tests ([23c7cbf](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/23c7cbf08c64550142ab8b48c3e230beb9da732d))
14
+ * tests ([e8b7a7a](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/e8b7a7a779c1b91cfe2b9bbfb90004aad69de557))
15
+ * updated template name ([9966737](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/9966737fb66efb127af0f37119d55b32e0b52f46))
16
+
1
17
  ## [40.0.39](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v40.0.38...v40.0.39) (2024-11-22)
2
18
 
3
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "40.0.39",
3
+ "version": "40.0.41",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -278,6 +278,7 @@ describe('Add Extra fields to showcase events', () => {
278
278
  const eventPages = pages.filter((page) => page.template === 'event' && page.relation_id);
279
279
 
280
280
  const events = addExtraFieldsToShowcaseEvents(eventPages, Object.values(sportsData.events));
281
+ // eslint-disable-next-line no-restricted-syntax
281
282
  events.forEach((event) => expect(event.extra_fields).toBeTruthy());
282
283
  });
283
284
  });