gatsby-core-theme 33.1.8 → 34.0.0-beta.2

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.
Files changed (74) hide show
  1. package/CHANGELOG.md +111 -498
  2. package/gatsby-node.mjs +50 -13
  3. package/package.json +1 -1
  4. package/setup-test-env.js +5 -0
  5. package/src/components/app-ssr.js +18 -3
  6. package/src/components/app.js +18 -3
  7. package/src/components/atoms/author/index.js +12 -13
  8. package/src/components/atoms/author-box/description/index.js +3 -4
  9. package/src/components/atoms/author-box/details/index.js +4 -5
  10. package/src/components/atoms/author-box/template-one/fact-check/index.js +6 -10
  11. package/src/components/atoms/author-box/template-three/fact-check/index.js +7 -11
  12. package/src/components/atoms/author-box/template-two/fact-check/index.js +6 -10
  13. package/src/components/atoms/breadcrumbs/breadcrumbs.test.js +0 -11
  14. package/src/components/atoms/breadcrumbs/index.js +16 -7
  15. package/src/components/atoms/button/operator-cta.js +10 -12
  16. package/src/components/atoms/contact-form/index.js +4 -7
  17. package/src/components/atoms/footer/license/index.js +3 -6
  18. package/src/components/atoms/not-found/index.js +12 -18
  19. package/src/components/atoms/operator-info-block/operator-info-block.module.scss +0 -2
  20. package/src/components/atoms/review-link/index.js +5 -7
  21. package/src/components/atoms/sitemap/index.js +4 -6
  22. package/src/components/molecules/bonus/template-two/index.js +5 -7
  23. package/src/components/molecules/bonus-box/template-three/index.js +4 -5
  24. package/src/components/molecules/bonus-box/variables/index.js +3 -5
  25. package/src/components/molecules/content/content.test.js +1 -1
  26. package/src/components/molecules/content/index.js +3 -5
  27. package/src/components/molecules/footer/index.js +1 -10
  28. package/src/components/molecules/footer/variants/template-one/index.js +68 -70
  29. package/src/components/molecules/footer/variants/template-one/template-one.test.js +12 -25
  30. package/src/components/molecules/footer/variants/template-three/template-three.test.js +10 -10
  31. package/src/components/molecules/footer/variants/template-two/template-two.test.js +10 -10
  32. package/src/components/molecules/newsletter/form/index.js +7 -12
  33. package/src/components/molecules/newsletter/index.js +5 -5
  34. package/src/components/molecules/newsletter/success/index.js +5 -7
  35. package/src/components/molecules/pagination/index.js +7 -8
  36. package/src/components/molecules/pagination/with-midpoints.js +7 -9
  37. package/src/components/molecules/search/index.js +6 -22
  38. package/src/components/molecules/search/search.test.js +1 -1
  39. package/src/components/molecules/spotlights_v2/icon/template-one/index.js +4 -5
  40. package/src/components/molecules/spotlights_v2/image/template-one/index.js +4 -7
  41. package/src/components/molecules/spotlights_v2/image/template-two/index.js +4 -5
  42. package/src/components/molecules/spotlights_v2/image-text/template-one/index.js +4 -8
  43. package/src/components/molecules/spotlights_v2/image-text/template-three/item/index.js +6 -9
  44. package/src/components/molecules/spotlights_v2/image-text/template-two/index.js +4 -8
  45. package/src/components/molecules/star-rating/one-star.js +2 -5
  46. package/src/components/organisms/anchor/template-one/index.js +5 -5
  47. package/src/components/organisms/anchor/template-two/index.js +6 -10
  48. package/src/components/organisms/archive/index.js +3 -4
  49. package/src/components/organisms/cookie-consent/cookie-consent.module.scss +4 -1
  50. package/src/components/organisms/cookie-consent/index.js +6 -9
  51. package/src/components/organisms/form/fields/index.js +10 -12
  52. package/src/components/organisms/form/index.js +14 -21
  53. package/src/components/organisms/toplist/index.js +6 -1
  54. package/src/components/organisms/toplist/list/index.js +1 -0
  55. package/src/components/organisms/toplist/toplist.test.js +1 -0
  56. package/src/components/pages/search/index.js +10 -12
  57. package/src/components/pages/tracker/index-ssr.js +5 -4
  58. package/src/components/pages/tracker/index.js +5 -4
  59. package/src/context/MainProvider.js +2 -2
  60. package/src/helpers/api.mjs +57 -0
  61. package/src/helpers/getters.mjs +0 -13
  62. package/src/helpers/getters.test.js +0 -50
  63. package/src/helpers/processor/index.mjs +14 -13
  64. package/src/helpers/processor/index.test.js +11 -0
  65. package/src/helpers/processor/modules.mjs +12 -6
  66. package/src/helpers/processor/modules.test.js +9 -1
  67. package/src/helpers/replaceMedia.js +1 -20
  68. package/src/helpers/replaceMedia.test.js +0 -10
  69. package/src/helpers/strings.test.js +0 -3
  70. package/src/hooks/useTranslate/comp.js +12 -0
  71. package/src/hooks/useTranslate/useTranslate.js +25 -0
  72. package/src/hooks/useTranslate/useTranslate.test.js +85 -0
  73. package/tests/factories/modules/content.factory.js +13 -0
  74. package/src/pages/404/404.test.js +0 -27
package/CHANGELOG.md CHANGED
@@ -1,591 +1,204 @@
1
- ## [33.1.8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.7...v33.1.8) (2024-07-02)
1
+ # [34.0.0-beta.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v34.0.0-beta.1...v34.0.0-beta.2) (2024-07-02)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * tests ([0b39d0d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0b39d0dc8292cb7a0df8ac069dc3f2e7061ad109))
6
+ * breadcrumbs ([bbd33c9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/bbd33c922e2ab50b73219df644b0bd98a033cf1f))
7
+ * breadcrumbs ([7c339e3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7c339e3c578854a8049ae642547baa8c3786f255))
7
8
 
8
- ## [33.1.7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.6...v33.1.7) (2024-07-02)
9
9
 
10
+ * Merge branch 'tm-4492-translations-refactoring' into 'beta' ([7baf8f0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7baf8f0fc89dead574343d30131492a3f379b9ed))
10
11
 
11
- ### Bug Fixes
12
-
13
- * beta deploy pipeline ([2c94e41](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2c94e4122a9115d505eec96b85f97afa924eaf58))
14
- * search translations ([975d9f7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/975d9f7e3b22c31cc0127ba3635c2716f7f74623))
15
- * tests ([000670e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/000670ebb0f06c29d82619a775a40c7aa533172f))
16
-
17
- ## [33.1.6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.5...v33.1.6) (2024-06-28)
18
-
19
-
20
- ### Bug Fixes
21
-
22
- * update star rating ([3c5e6fa](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3c5e6fafc094d26df2d268617cd5ec695195feae))
23
-
24
-
25
- ### Code Refactoring
26
-
27
- * changes for accessibility on scrollable content ([0826adf](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0826adf43a8c0c523d3b5afab641b26236d2de32))
28
-
29
-
30
- * Merge branch 'tm-4505-aria-buttons' into 'master' ([cc93a64](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cc93a647d36b974f4bc48d0046b3bb009b9ec8f4))
31
- * Merge branch 'tm-4452-update-star-rating' into 'master' ([afa0350](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/afa03506dfff5060e3a4f5ced7c7e6270b3c9978))
32
-
33
- ## [33.1.5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.4...v33.1.5) (2024-06-28)
34
-
35
-
36
- ### Bug Fixes
37
-
38
- * search logic ([966a451](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/966a451ad96ead4bbbe9655510a2a33af3f118f4))
39
- * tests and search ([a2da174](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a2da17475c1632718cd481dc5e82971a182d2855))
40
- * tests and search ([d852234](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d8522342bea89a6fee5e57b859701778aca17a62))
41
- * tests and search ([ad301fc](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ad301fcdb20fb130177fad443b94031d7dc34352))
42
- * tests and search ([fc4957a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/fc4957a13066382a8149cb8c13f6aefa393c77b2))
43
- * tests and search ([140e1a7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/140e1a779614e1b2fb23b8c6fe7f2055386d3f60))
44
-
45
-
46
- ### Code Refactoring
47
-
48
- * changes to schema organisation data ([cc7211e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cc7211e1f36ab8e806e630bc28b4a1c17b508c2a))
49
-
50
-
51
- * Merge branch 'tm-4508-schema' into 'master' ([da0a109](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/da0a109f7e28ddf99346ffd83883e73155aa4edb))
52
-
53
- ## [33.1.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.3...v33.1.4) (2024-06-26)
54
-
55
-
56
- ### Bug Fixes
57
-
58
- * fix images url size ([a7f1f90](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a7f1f908ad6d7e705911a6a00aef543250e96de0))
59
- * newsletter ([a9e9747](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a9e9747102f076267d64b80e0f7e6e972efdd229))
60
- * structure ([e5e9d9d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e5e9d9dc4e4c4cf84344e47039aabe902540f3ec))
61
-
62
-
63
- * Merge branch 'tm-4462-newsletter' into 'master' ([48b7242](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/48b724201a4ac58621b96fa4a54921076dda1dee))
64
-
65
- ## [33.1.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.2...v33.1.3) (2024-06-25)
66
-
67
-
68
- ### Bug Fixes
69
-
70
- * disabled reading time ([9029b83](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9029b83354c9d752de3bfcc6911ab24897d4477f))
71
-
72
- ## [33.1.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.1...v33.1.2) (2024-06-25)
73
-
74
-
75
- ### Bug Fixes
76
-
77
- * removed unused styling ([9b054cd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9b054cd636f45d89fcc55965c8918c872c666269))
78
- * search logic ([7d59fb6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7d59fb63ef167e6273dd704936d3794d351487b4))
79
-
80
- ## [33.1.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.0...v33.1.1) (2024-06-25)
81
-
82
-
83
- ### Bug Fixes
84
-
85
- * fix relation pick keys for email and url ([a3cff32](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a3cff3220c99d07e84de76d27e179113027b6164))
86
- * search logic ([214d773](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/214d77330cdeb0a09fc7232a1d05903072995611))
87
-
88
-
89
- ### Code Refactoring
90
-
91
- * add games amount to operator relation ([d20e0dc](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d20e0dcfaacf439f2717b2cebe4953062c0516ae))
92
- * change to button titles ([1a430e1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1a430e19b831d1e23b8edacbc67263b7b7464317))
93
- * changes to aria-labels and buttons ([4d57af5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4d57af5349b06ae606b58c1a2c015488f98fe605))
94
- * changes to search button ([f0f0e9f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f0f0e9ffbe25a10c4c1e0584bac696e09b06f480))
95
-
96
-
97
- * Merge branch 'tm-4505' into 'master' ([d085a9e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d085a9e467dc3f139e99e05281186022f012dfcd))
98
-
99
- # [33.1.0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.0.2...v33.1.0) (2024-06-20)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * add alt text ([ff4455a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ff4455a521d4436df2c2dc5e8cf71fc457af39df))
105
- * added conditional indexing ([85fbd8e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/85fbd8eb1cedf0c65343a0f1ffbeb4d2890c0319))
106
- * added sanitize operator by market ([db27fc1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/db27fc12cad16cce357536ee6aa3f424454bd894))
107
- * added sanitize operator function + fixed references + testing ([2810f91](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2810f91efb44fd0f631c6bfd029a434e0f75fca4))
108
- * forgoten variable ([c4267b1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c4267b19be1b61c88996f04f48774cef15e564b5))
109
- * image resize core ([5e40d81](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5e40d81917389e2cee668b0f12c9fb3a0037e014))
110
- * jest ([ba4b7c0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ba4b7c02f0654f6831d9993245f5cf939121cbef))
111
- * search for multimarket ([bfe7b3a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/bfe7b3a0df3121061a1bf9c38b8180d1fd6ef46c))
112
- * search showall and when no query is submitted ([07ad454](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/07ad454c92304369e53e6ac8cfacd052abd68735))
113
- * small changes ([ff60d70](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ff60d700a0722525e83cf96fa22adc723a205318))
114
- * update naming ([0daa09e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0daa09e0c5e6a3e15b26c0aed3d28aad7f59698d))
115
-
116
-
117
- ### Code Refactoring
118
-
119
- * changes to css var values ([b6a03d3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b6a03d3d277ad71b0c5a6523c9dc6847530cf4c0))
120
- * changes to list padding ([43b7a84](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/43b7a845a131689d9d3b9512d9a268958e301f93))
121
- * remove padding on list soon after headings ([c8f3f50](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c8f3f5068770d6f7bdb4fe55012623cad189bfff))
122
-
123
-
124
- * Merge branch 'tm-4484-alt-text' into 'master' ([7328829](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/732882963632c20c413679990ccd2959bfc42367))
125
- * Merge branch 'tm-4398-search-refactoring' into 'master' ([b37c19b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b37c19b2503f35ff0b7e8b226efcb2a41ff3ae61))
126
- * Merge branch 'tm-4455-empty-menu' into 'master' ([567ea5b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/567ea5ba9390dd56dd9da7dccd24a91e6b6e57fe))
127
- * Merge branch 'tm-4293-improvements-rg-template' into 'master' ([ae964f3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ae964f394c630007ced3163f661784c5622f782d))
128
- * Merge branch 'tm-4428-sanitize-operator' into 'master' ([699b5e2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/699b5e22133830bf6262b16c85620a167496de37))
129
- * Merge branch 'tm-4358-images-resize' into 'master' ([e95e129](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e95e12965538a84f07bd001f999d78a1947a35f4))
130
- * Merge branch 'tm-4451-lists' into 'master' ([761a9a7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/761a9a7c8ffa82110edf3726b522331948e7bfde))
131
-
132
-
133
- ### Features
134
-
135
- * search refactoring and tests ([ad6989b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ad6989b5b2eff85bb6a41c750a9f3b9d6aa639ad))
136
-
137
- ## [33.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.0.1...v33.0.2) (2024-06-19)
138
-
139
-
140
- ### Bug Fixes
141
-
142
- * update is disabled button ([91a0052](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/91a0052e25616642c1b21c61104d4c1ca6e18e2c))
143
- * update styling of logo and search icon when on responsible gambling page template ([bb20215](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/bb20215cc7576ad37617bdaadc914e4f02f8d48f))
144
- * update tests for navigation ([e5d7fcb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e5d7fcbd1b368df50cdb32392c0d1baf8743b7ac))
145
-
146
-
147
- * Merge branch 'tm-4293-improvements-rg-template' into 'master' ([93c29e4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/93c29e4fde5faa137c92db8096ba334c75edd4e0))
148
-
149
- ## [33.0.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.0.0...v33.0.1) (2024-06-13)
150
-
151
-
152
- ### Bug Fixes
153
-
154
- * get the name from market first ([5f23499](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5f23499dda83e26cd536005b557e975e7e09a1e2))
155
-
156
- # [33.0.0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v32.0.6...v33.0.0) (2024-06-13)
157
-
158
-
159
- ### Bug Fixes
160
-
161
- * conflicts ([39c9bb4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/39c9bb43b9a203276edebbdd0c2e259d32419e8f))
162
- * content modules not bigger than module ([d3317d3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d3317d3b73bdc1d0f22183c7b2b5ff3c76666b37))
163
- * fix bug for prefilled module ([2d58502](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2d58502ed2010d7421d81d3037cafa2b8896971d))
164
- * fix logic ([2d6dfe5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2d6dfe5e634952af1d9c391dcc30acc9ccf90d5e))
165
- * image size ([cb20c7e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cb20c7e453599d6baaa58c8eee1e6cfaedde6398))
166
- * prefilled module ([dc631f8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/dc631f8fccb81ffe4b1e0bcdb398184b5a4abaae))
167
- * resolve conflicts ([41d401a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/41d401a3a4f770a2ba79ab0f872de3c2a852928c))
168
- * test ([a882a09](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a882a092ac1f3206320940134ad6c7b378f3d7c1))
169
- * width and height proptype ([fd0db97](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/fd0db977f6a2048f092c866a88e541e9329b1ed4))
170
-
171
-
172
- ### Code Refactoring
173
-
174
- * add aria labels for svg titles ([01f477a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/01f477ac723f6c4f4f1c5c3905166a6fa225210c))
175
- * changes to statistics ([65c38ec](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/65c38ec64a032b1780f763bef559e09673be195f))
176
- * correction to typo ([2b75024](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2b750243d384a27ff856c3c94aa73702974d3953))
177
- * move stats to modules ([1d64d84](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1d64d8466c64bae6bff1fa3a5ef085fa1c18fd9a))
178
-
179
-
180
- * Merge branch 'tm-4416-aria-labels' into 'master' ([088f5a0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/088f5a04465d376fd19444e4a9f079b84460c208))
181
- * Merge branch 'tm-4419-prefilled-module' into 'master' ([bce297c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/bce297c4cb1b17074c5f948c3cb19efa32753f5c))
182
- * Merge branch 'tm-4327-stats' into 'master' ([17d410d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/17d410df307c91c3600c20f4d431947f9ae57ef9))
183
- * Merge branch 'master' into tm-4327-stats ([2bb17ee](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2bb17eee58f18f5fbe2f7f44e70a7f5ce9d9182a))
184
- * Merge branch 'tm-4358-images-size' into 'master' ([8281773](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8281773a9a79feba674c3ca7753ea5995ab97892))
185
-
186
-
187
- ### Tests
188
-
189
- * fix test ([6a3fd25](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6a3fd25b6b20764b11192c6475a6a2c3f4657d0e))
190
-
191
- ## [32.0.6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v32.0.5...v32.0.6) (2024-06-04)
192
-
193
-
194
- ### Code Refactoring
195
-
196
- * change to title tag in newsletter ([59dc282](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/59dc282ba7aab3b620ffceb94745e206e460bf59))
197
-
198
-
199
- * Merge branch 'tm-4397-newsletter' into 'master' ([00bb7dd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/00bb7ddec8b30e57063cb89370e0087164462b20))
200
-
201
- ## [32.0.5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v32.0.4...v32.0.5) (2024-05-31)
202
-
203
-
204
- ### Bug Fixes
205
-
206
- * add translation for newsletter ([5d92b06](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5d92b06755c0b3717a1b9af2c1701acf5b59e100))
207
-
208
- ## [32.0.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v32.0.3...v32.0.4) (2024-05-31)
209
-
210
-
211
- ### Code Refactoring
212
-
213
- * changes to newsletter ([eeb67ce](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/eeb67ceca6fc4fea273d3c73e36af4e817ac52ab))
214
-
215
-
216
- * Merge branch 'tm-4397-newsletter' into 'master' ([1d9353d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1d9353ddc255164bc2c86a8e740c96a23c85ce29))
217
-
218
- ## [32.0.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v32.0.2...v32.0.3) (2024-05-30)
219
-
220
-
221
- ### Bug Fixes
222
-
223
- * updated other bonus templates ([573d206](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/573d206cb46a660d60da068e05feed31f3b88180))
224
-
225
-
226
- * Merge branch 'tm-4323-pretty-link-props' into 'master' ([9ce3012](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9ce3012a335f865dd2b771480678de408a9ca207))
227
-
228
- ## [32.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v32.0.1...v32.0.2) (2024-05-30)
229
-
230
-
231
- ### Bug Fixes
232
-
233
- * added props for aria-label and title ([747243c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/747243c71c7a3801644ebb98fb72174d39e1c467))
234
- * ammended implementation ([19e26c1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/19e26c1fed853487a322da46c2625ed7ed246c03))
235
- * implemented on cta ([5650f82](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5650f82b871cc5d0447373d89f938a5373a8528d))
236
-
237
-
238
- * Merge branch 'tm-4323-pretty-link-props' into 'master' ([a8f0ca5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a8f0ca5c7b0edad285b74c6aaf0d4c17d6a965ae))
239
-
240
- ## [32.0.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v32.0.0...v32.0.1) (2024-05-30)
241
-
242
-
243
- ### Bug Fixes
244
-
245
- * tracker ([72f0022](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/72f0022e49a21ab9e6a7750a090257aac6058072))
246
-
247
- # [32.0.0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v31.0.2...v32.0.0) (2024-05-28)
248
-
249
-
250
- ### Bug Fixes
251
-
252
- * footer as seen logo ([3ae88b2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3ae88b28abf3e256afb63f628183732c2c1ed18c))
253
-
254
-
255
- ### Code Refactoring
256
-
257
- * add storybook and changes to test scripts ([3a135d6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3a135d65bf8fcecf3befe3db2d4c3b16f6a4edff))
258
- * changes to bonus storybook ([9e2bb5a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9e2bb5a8fce4dcefcd57fb4f1917de637273722e))
259
- * changes to ratings ([b11c595](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b11c5957e2ee520d6b0d4a5a775c084bdee35e59))
260
- * correct to bonus box ratings ([0a2aa6a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0a2aa6af2bea338c4add3c8ea374228d35f2f38a))
261
- * revert rating changes ([6c7a422](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6c7a4222dce826d0e06d45544aa5b48fd7f1387c))
262
- * temp ([49efcf9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/49efcf9e37363ef0a30d25e70fb61dd52b199617))
263
-
264
-
265
- * Merge branch 'tm-4382-ratings' into 'master' ([0cd66dd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0cd66dda52540d1f272a1ffdfa79cac543af5b2b))
266
- * Merge branch 'master' into tm-4382-ratings ([e359fe3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e359fe38fe209bc63aa3b5b000760fd429086f6e))
267
- * Merge branch 'tm-4379-footer-as-seen-logo' into 'master' ([8a8e50c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8a8e50cd86ed2a205128b99f8a0df4380b3a2b1c))
268
-
269
- ## [31.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v31.0.1...v31.0.2) (2024-05-22)
270
-
271
-
272
- ### Code Refactoring
273
-
274
- * add author data to schema ([1fb10aa](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1fb10aae770de676ec84fbba2db317aa4e9aa1ec))
275
- * correction to knows about ([a019d7a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a019d7a706041f5dcc142bb50b2e767cc22c92b1))
276
-
277
-
278
- * Merge branch 'tm-4271-multiple-contributors' into 'master' ([7bc03c4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7bc03c425ebc85b583324ddac976a56c9b17569e))
279
-
280
-
281
- ### Tests
282
-
283
- * fix test ([0bcbf37](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0bcbf3784962944ebb5b85d77043bd9895116cbc))
284
-
285
- ## [31.0.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v31.0.0...v31.0.1) (2024-05-20)
286
-
287
-
288
- ### Bug Fixes
289
-
290
- * add autocomplete and replace country value with dynamic value in newsletter ([19be5d4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/19be5d45fc47640f251a5d6df190e4775118aef0))
291
- * as seen on ([75cfed3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/75cfed3de4398d87af7253b3dcde8c749545f842))
292
- * proptypes warnings ([df30a5e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/df30a5e8bdc60a9d90b27d43d6da86c832edf400))
293
- * test ([c5ee8a3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c5ee8a330dc68d6eb9169a80c484cdc3301269a1))
294
-
295
-
296
- * Merge branch 'tm-4317-footer-asseen' into 'master' ([cf9fbcc](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cf9fbcc99a526c647dbaae5c59173e12ed257104))
297
- * Merge branch 'tm-4395-newsletter' into 'master' ([53c3dd8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/53c3dd8231febbf4d019241529b2797da1a9138a))
298
-
299
- # [31.0.0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.1.3...v31.0.0) (2024-05-15)
300
-
301
-
302
- ### Bug Fixes
303
-
304
- * add env ([cf62653](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cf62653f5cdfb0d8bc559cf4435fc2e3da067b2a))
305
- * cta InitiateCheckout script ([1130080](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1130080b8a5bb2a2a5ebc60c240077b7e2f29493))
306
- * fix test ([dfef83d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/dfef83dd9867e29052a8c00f6db3a692a1c40b81))
307
- * remove stripTralingSlash ([86300c6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/86300c6db4dee547e1dc497db3bf6e9e8c1bd92d))
308
-
309
-
310
- ### Code Refactoring
311
-
312
- * change to all authors prop for multiple authors ([e77d994](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e77d9949f9929d782bfc52bb86d33d1603145c1c))
313
- * changes to multiple authors ([a6ed4af](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a6ed4af9bf7fc988698730a7603889a164287a66))
314
- * changes to template 4 ([c3e5cf1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c3e5cf16dcb23da8d704244e4683cd77a4aaa7a9))
315
- * keep single author and multiple authors separately ([c326a70](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c326a704ad1b63e57946624e3b2dfe4930dbed30))
316
- * remove temp ([5f6d5d3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5f6d5d398dcba2143418001cca93df6edce28862))
317
- * temp ([74f6b06](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/74f6b063f362ae1a10118296768cc28e5019b7c2))
318
-
319
-
320
- * Merge branch 'tm-4048-spotlights' into 'master' ([4c6cb6d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4c6cb6d3790510355bb12e0fbe07de309888a9be))
321
- * Merge branch 'tm-4314-cta-script-trgger' into 'master' ([60445a9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/60445a9094b94f6833b5c4b3fe4affc97e26d252))
322
- * Merge branch 'tm-4269-multiple-contributors' into 'master' ([299c25a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/299c25a7a0ca332761504955e0f89409bf06fd35))
323
- * Merge branch 'tm-4315-tralingsSlash' into 'master' ([50e7316](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/50e7316ed95d6cbd1cb7b0487fdbb0fd09ce5ff9))
324
- * Merge branch 'master' into tm-4269-multiple-contributors ([9ba628b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9ba628be24138c991be19a3ab87583df1b134bd7))
325
- * Merge branch 'master' into tm-4269-multiple-contributors ([b38eeb0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b38eeb029b406b2dd6c063409c59531e2c25482b))
326
- * Merge branch 'master' into tm-4269-multiple-contributors ([0f149c6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0f149c6ffe2005b5ed284a75631a84039923756e))
327
-
328
-
329
- ### Tests
330
-
331
- * fix test ([8087c7f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8087c7f26878a73585286bcf804ae1062a3a1649))
332
-
333
- ## [30.1.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.1.2...v30.1.3) (2024-05-08)
334
-
335
-
336
- ### Bug Fixes
337
-
338
- * add a checker ([598ca2d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/598ca2dc84c9a488e10cdf23e0a6542b5e5efe5c))
339
- * author box logic ([007ade2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/007ade2a8b3a61c1b161168d01e0d77bddc333ff))
340
-
341
-
342
- * Merge branch 'author-box' into 'master' ([4b94dc6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4b94dc6e96fc1b0c6959ed9e33d74fe572621b37))
343
-
344
- ## [30.1.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.1.1...v30.1.2) (2024-05-06)
12
+ # [34.0.0-beta.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.6...v34.0.0-beta.1) (2024-07-01)
345
13
 
346
14
 
347
15
  ### Bug Fixes
348
16
 
349
- * fixed qa issue ([68ed7ad](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/68ed7ad2e5739104ed3db94145377d642822b892))
350
- * fixed styling plus comment authors ([a92b8d2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a92b8d28ab68dcb74e692724416f2490238f9bfa))
17
+ * beta deploy pipeline ([22727f4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/22727f490ff4cf6b0af42840f59692c2b0833997))
18
+ * beta fixes ([8a3b851](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8a3b851a625beef4fde7ac1bef71bee66cdd68a5))
19
+ * beta version ([e87da2a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e87da2aa24c8cc85b41a2653c3e80755fdc8a92e))
20
+ * conflict ([7a343a6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7a343a6c39a307663ef4f98d485e74c052f70e22))
21
+ * conflict ([10be8b2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/10be8b210bf57d396c95a8bc37bf95ff517b60d2))
22
+ * conflict ([293be9a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/293be9abee28427d4d756c4ec3ad19e3e4d59ace))
23
+ * conflict ([4a38229](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4a38229506e0508003421a7324d7631b730bdf94))
24
+ * conflict ([2dfbf18](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2dfbf18883576bf71b94445a86983f4051ebd671))
25
+ * conflict in beta branch ([9c8a573](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9c8a573bcb1a3c290c8461ef29a5967087309bf5))
26
+ * cookie consent ([b199541](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b19954180e8154d82d9ed7412af5260b2ea46500))
27
+ * fixes ([5269537](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/52695377da4caaab611f6bbc81edb613ac8fb2a5))
28
+ * merged lazy branch ([ad64ae9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ad64ae9e5c06a90f602b604d020c4e16d60b56c1))
29
+ * pipeline ([d135542](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d135542e42940b795aacd9ef1bd2ccbe3104d102))
30
+ * search logic ([4d6322e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4d6322e40f51931979975f0714579684ac7b302a))
31
+ * tests ([f2e4422](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f2e4422b03a2bb3126662b354e7583aac3d38b40))
32
+ * tests ([d9c9334](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d9c93348e46672a09a83587945b63167a4277180))
33
+ * tests ([f5011d6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f5011d64d7a1d72f0ce3caa11786a634088c3fbe))
34
+ * translations fixes ([2fd7d45](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2fd7d4555f5820364ae5a076f8f50312e9da79a4))
351
35
 
352
36
 
353
- * Merge branch 'tm-4307-comment-section' into 'master' ([667695e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/667695e4de8589c87baf8eadcca952a0f0df7b5a))
354
- * Merge branch 'tm-4307-comment-section' into 'master' ([682ae50](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/682ae50eec5db8726bfd54f675f0f7800f67b5e4))
355
-
356
- ## [30.1.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.1.0...v30.1.1) (2024-05-02)
357
-
358
-
359
- ### Bug Fixes
360
-
361
- * add page path in ref name ([46a44e2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/46a44e2dd585731ed4d3975fc2952debc6e03e8d))
362
- * pipelines ([70b9b89](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/70b9b89b7ddca1d51b7c68853f42a2da9a11a445))
363
- * update breadcrumbs to get excluded templates from constant ([40b7457](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/40b74576df2d7efd7ac37249a26decf0bd283f60))
364
- * update breadcrumbs to get excluded templates from constant ([03d52d4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/03d52d4f221e12456a3e7d6463551396949de825))
365
- * update navigation and breadcrumbs to not show on responsible gambling page type ([e9e7b64](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e9e7b64527646ffb409475d3e965d86c299b196b))
366
-
367
-
368
- * Merge branch 'tm-4238-pcsa-changes-to-rg-page' into 'master' ([0410592](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0410592a08c5cceda5e0b96f92a5ceb0a9e01a69))
369
-
370
- # [30.1.0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.116...v30.1.0) (2024-04-29)
371
-
372
-
373
- ### Bug Fixes
37
+ ### chore
374
38
 
375
- * added comment section to accordion ([0c23564](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0c23564bfa9234e81349b0077917791d86db2861))
376
- * added pipeline for beta ([d647aba](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d647abaa1cbf7ab7162430520ba44aabbb680f19))
377
- * added pipeline for beta ([50c2fd5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/50c2fd52092f26b1491cbf853908b44245805359))
378
- * lazy fixes ([b58ed74](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b58ed742cfddcb895e63e95531a95e5f5c7635d1))
379
- * merged with master branch ([3e975d3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3e975d312217d0e3f5782b821f7edf1820a3e33c))
380
- * newsletter ([c9225a3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c9225a3fdd714e0f655d3ad614595c93603b8bfe))
381
- * newsletter ([ca0f963](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ca0f963e986b4178b4932661687cda20350e402d))
382
- * pipeline ([b7adc6b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b7adc6b652b1abb43af7e543b4b1b359fd4056ab))
383
- * pipelines ([16800f6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/16800f67481634c50e9f537aa8eb95ffdb452f6d))
384
- * pipelines ([4afd624](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4afd6243f7dd1e910298c7762344a8ec50d66648))
385
- * pipelines ([4f5f633](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4f5f6331cbf8bd36c1abb1c6bb6659f8dd9aed64))
386
- * pipelines ([b4f3faf](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b4f3faf3854cf673de3a495871877668b9a7e036))
387
- * pipelines ([7ef51c1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7ef51c1e130fbc910d26b6b1e99cabdb744ab7ae))
388
- * pipelines ([f9dae15](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f9dae1556b1b8a1c2ef6bdd6e25eb77b8d3f3bfb))
389
- * pipelines ([f2017f2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f2017f2f11274ca4892755238f951ed9f99b37a5))
390
- * pipelines ([2ee9b03](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2ee9b033c9c8f08a8b683fcf9f7e8ae0d4ac311b))
391
- * pipelines ([0af64aa](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0af64aa0ee1c946237cc617f43e2cd8a126e52bc))
392
- * pipelines ([d469a60](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d469a60774de030c39df32406d92b8c4f4b24e53))
393
- * pipelines ([f955eea](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f955eeab9dbd15bb9fc4d90fcebb3fe6a980d690))
394
- * pipelines ([5465c2d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5465c2d99e0914e79f6e50a7a4d4e67caa107186))
395
- * pipelines ([598bcf4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/598bcf43b1b6e87213f9511f9d5c032c0292ebc9))
396
- * pipelines ([edf018c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/edf018cf6c3fc95c2de5e78eaf67e27b68209950))
397
- * pipelines ([bf6ac66](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/bf6ac66a9ec0e29553767a3f8852cdefda5c6b7b))
398
- * pipelines ([9e413db](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9e413dbc4e93722045ff28e5dc54e94e8f8e1f16))
399
- * pipelines ([0dc4cbe](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0dc4cbebaa5fad867c5e433dec99bf098e1e15b5))
400
- * pipelines ([32dea62](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/32dea6287c2ecd9e0c2542c9e69f659c53a77a9b))
401
- * pipelines ([62daf43](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/62daf43429235a330235b081b66526cec91a30fb))
402
- * pipelines ([19f3d38](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/19f3d381739138240cfccece10670daf1180ba21))
403
- * pipelines ([6d7b294](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6d7b294c0f44743cfefa841bff3ddaa166e63469))
404
- * pipelines ([c9a54d3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c9a54d3db577fe3978e832b016c0ea9a82558110))
405
- * scss mixin warning ([ea7ee58](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ea7ee58322c242871a69cd818957022caaf34552))
406
- * spotlight label to span ([6f37a41](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6f37a4109621933902bd47244ac7b90edce16a34))
407
- * tests ([828ce34](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/828ce34657a460e306b6d26577ba639df578574c))
408
- * tests ([05d885a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/05d885a1ac0fd510aa3f5722b4a63bbed940537a))
409
- * tests ([84381fd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/84381fd55d083918366b5bd5dc5b2a29eb238542))
410
- * update with master branch and fixes ([1b222e9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1b222e98d16166c7ce6cd1244f8e38914a23d7e2))
411
- * update with master branch and fixes ([5c188cd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5c188cd5554f7ca8e6e4571713eb207cbb16723c))
39
+ * **release:** 30.1.0-beta.1 [skip ci] ([c894720](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c8947203f49ea484735f8d7b5888244d2af1a249))
40
+ * **release:** 31.0.0-beta.1 [skip ci] ([f3f2836](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f3f283636bdccda33e67f71fa736f92cb74b1986))
41
+ * **release:** 31.0.0-beta.2 [skip ci] ([7d0faac](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7d0faac22a76e165770c24f291764099c12a14a3))
42
+ * **release:** 31.0.0-beta.3 [skip ci] ([56a2ba9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/56a2ba984c193a98a793cfb1de3945bd1f3225c5))
412
43
 
413
44
 
414
- * Merge branch 'tm-4226-update-and-react-lazy' into 'master' ([1b9328b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1b9328b2370ef5b06a5ad2968f3423c6122c25f0))
415
- * Merge branch 'master' into tm-4226-update-and-react-lazy ([e48e9e7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e48e9e789471e1fb0921ad0b6744590ecec9542c))
416
- * Merge branch 'tm-4307-comment-section' into 'master' ([f23dc91](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f23dc91cd6ad546e3362e595475aa0d29c339667))
417
- * Merge branch 'tm-4239-spotlight-label-to-span' into 'master' ([dbe08f9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/dbe08f980e80ee67ec6c55abd41b10fcf8901c55))
45
+ * Merge branch 'tm-4492-translations-refactoring' into 'beta' ([9285064](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9285064f4c71a16b6bdf081ba76ab7e63e221509))
46
+ * Merge branch 'tm-4226-update-and-react-lazy' into 'beta' ([40b0051](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/40b00514af3faac41a21f2173b00ce861ac036d0))
47
+ * Merge branch 'tm-4226-update-and-react-lazy' into 'beta' ([39e13a7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/39e13a7a6cef84fbbda0bdaab494ec01f54b06f5))
48
+ * Merge branch 'tm-4226-update-and-react-lazy' into 'beta' ([48a133c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/48a133c60e81885a7836c204ec5e4e3797bf5ec9))
49
+ * Merge branch 'tm-4226-update-and-react-lazy' into 'beta' ([7868c74](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7868c74b481284baf4da32ed9ba65f960fa840dc))
418
50
 
419
51
 
420
52
  ### Features
421
53
 
422
- * update packages and use react lazy ([7fc0643](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7fc06439d9626552afb69d30f831849839836e56))
54
+ * translations refactoring ([cd73371](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cd73371f6f0fdf2b84ec7fe00d93ba26e68d382d))
423
55
 
424
- ## [30.0.116](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.115...v30.0.116) (2024-04-26)
425
-
426
-
427
- ### Bug Fixes
428
-
429
- * add the option to translate newsletter per page ([bba0490](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/bba04906c05bc5c925fe3527f6dc1fb33e9783ab))
430
- * add validation ([11e3141](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/11e3141bbf1011c62113c63eb9019c8477ad1e1e))
431
- * fix translation per page ([646e777](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/646e777fac1967a0f7ba56aef5859e704fe73b19))
432
-
433
-
434
- * Merge branch 'tm-4315-newsletter' into 'master' ([2e16682](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2e166829a50958e78f226611711eed9df1b63c95))
435
-
436
- ## [30.0.115](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.114...v30.0.115) (2024-04-22)
437
-
438
-
439
- ### Bug Fixes
440
-
441
- * fix translation key for newsleterr, align with documentation ([b9672be](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b9672beeebaa52a43543067cf9ecbb0fd68a257c))
442
-
443
- ## [30.0.114](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.113...v30.0.114) (2024-04-18)
444
-
445
-
446
- ### Bug Fixes
447
-
448
- * validate phone number ([2e9e39e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2e9e39ef0c026c94babf52e42e9aff653376e642))
449
-
450
- ## [30.0.113](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.112...v30.0.113) (2024-04-18)
451
-
452
-
453
- ### Bug Fixes
454
-
455
- * add validation ([d5ff2d1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d5ff2d165f3d274e3231745eec8b912386f9c235))
456
-
457
- ## [30.0.112](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.111...v30.0.112) (2024-04-17)
458
-
459
-
460
- ### Bug Fixes
461
-
462
- * refactor ([6cb0324](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6cb03242fd0f605251f4221e76bdf0aad928f3f4))
463
-
464
-
465
- * Merge branch 'tm-4099-newsletter-fixes' into 'master' ([f77630c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f77630c7730c02ad9995afc2063609feaa0a0ccc))
466
-
467
- ## [30.0.111](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.110...v30.0.111) (2024-04-16)
56
+ # [31.0.0-beta.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v31.0.0-beta.2...v31.0.0-beta.3) (2024-04-22)
468
57
 
469
58
 
470
59
  ### Bug Fixes
471
60
 
472
61
  * add newsletter core theme ([2d3a306](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2d3a3066ca41c1fd4e1656f15f3832db7342a897))
473
62
  * add required for checkbox, and generator for [link] ([91c419a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/91c419aa6330467b9d183704c944c643ed2b8243))
63
+ * add validation ([d5ff2d1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d5ff2d165f3d274e3231745eec8b912386f9c235))
64
+ * added uploadate and description in iframe schema ([7d78d68](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7d78d687cadc471c025eb8fd0d85c8e76c9ce26c))
474
65
  * fix conflicts ([40aced4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/40aced4b53fef6592787289805908d562b2aff2f))
475
66
  * fix test and make style ([54b61c0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/54b61c02a4a0b3e03d72192c75977fdeef199b28))
476
67
  * fixed website icon ([d31a54d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d31a54dc14032e7d15ad79969e535f0ceef019f9))
68
+ * iframe schema ([947b9cf](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/947b9cf30ddaea004966c9a8003c403bdf8020ea))
477
69
  * isSticky false ([c3e75cb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c3e75cb77a97547119a7dabb869ad129b7b23365))
478
70
  * make logic ([c224482](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c224482ea4aded40e80afa6dfbd66d0a75f4cb93))
479
71
  * make style ([49f4151](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/49f4151df040fe3863e782d3069d4b9df5b38ad7))
72
+ * merged lazy branch ([ad64ae9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ad64ae9e5c06a90f602b604d020c4e16d60b56c1))
73
+ * merged with master branch ([3e975d3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3e975d312217d0e3f5782b821f7edf1820a3e33c))
74
+ * newsletter ([c9225a3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c9225a3fdd714e0f655d3ad614595c93603b8bfe))
75
+ * newsletter ([ca0f963](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ca0f963e986b4178b4932661687cda20350e402d))
76
+ * refactor ([6cb0324](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6cb03242fd0f605251f4221e76bdf0aad928f3f4))
480
77
  * refactor ([470107c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/470107cb1e586dfb21f3055c7d1a849fd86aa306))
481
78
  * refactor ([4c66524](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4c66524e37939b70d0b8552b9bedbd5bc1ab9753))
482
79
  * refactor ([3d5370c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3d5370c739ab93506126184d1f49e44d86f96755))
483
80
  * refactor form component ([661c828](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/661c8288af8c7dd1a0c6a794b2bc0abf889424f8))
484
81
  * reuse the form component ([60b09ef](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/60b09ef4ad4d10684a2dbc8f77d2a303f2d88992))
82
+ * validate phone number ([2e9e39e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2e9e39ef0c026c94babf52e42e9aff653376e642))
83
+
84
+
85
+ ### chore
86
+
87
+ * **release:** 30.0.110 [skip ci] ([1aa59dd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1aa59ddf36cf710d53f65ee1f8749f3db8298462))
88
+ * **release:** 30.0.111 [skip ci] ([12336ea](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/12336ead8e9d1d1bdd95e495e56be5042a25454a))
89
+ * **release:** 30.0.112 [skip ci] ([ea7e0df](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ea7e0dfb784a6440263739cf8658b5e48ea672ef))
90
+ * **release:** 30.0.113 [skip ci] ([ee859ae](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ee859aec63c9dc1620631dae38be8a45b3d0605d))
91
+ * **release:** 30.0.114 [skip ci] ([1fe1a53](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1fe1a53455638ace1434b79b1ed1ee4512be1592))
485
92
 
486
93
 
94
+ * Merge branch 'tm-4226-update-and-react-lazy' into 'beta' ([40b0051](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/40b00514af3faac41a21f2173b00ce861ac036d0))
95
+ * Merge branch 'tm-4099-newsletter-fixes' into 'master' ([f77630c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f77630c7730c02ad9995afc2063609feaa0a0ccc))
487
96
  * Merge branch 'tm-4099-newsletter' into 'master' ([56bdefb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/56bdefbe9561bb3f318bc31ed89892a94cbcda68))
488
97
  * Merge branch 'tm-4215-website-icon' into 'master' ([7f336b3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7f336b3362ef69ba06078940a300c7edd6c37a4b))
489
98
  * Merge branch 'master' into 'tm-4099-newsletter' ([7b1fa8d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7b1fa8df697c73093b93703d85354f71c15c89d5))
490
99
 
491
- ## [30.0.110](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.109...v30.0.110) (2024-04-11)
100
+ # [31.0.0-beta.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v31.0.0-beta.1...v31.0.0-beta.2) (2024-04-15)
492
101
 
493
102
 
494
103
  ### Bug Fixes
495
104
 
496
- * added uploadate and description in iframe schema ([7d78d68](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7d78d687cadc471c025eb8fd0d85c8e76c9ce26c))
497
- * iframe schema ([947b9cf](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/947b9cf30ddaea004966c9a8003c403bdf8020ea))
105
+ * conflict ([2dfbf18](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2dfbf18883576bf71b94445a86983f4051ebd671))
106
+ * lazy fixes ([b58ed74](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b58ed742cfddcb895e63e95531a95e5f5c7635d1))
107
+ * scss mixin warning ([ea7ee58](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ea7ee58322c242871a69cd818957022caaf34552))
108
+ * tests ([828ce34](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/828ce34657a460e306b6d26577ba639df578574c))
498
109
 
499
- ## [30.0.109](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.108...v30.0.109) (2024-04-09)
110
+ # [31.0.0-beta.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.1.0-beta.1...v31.0.0-beta.1) (2024-04-10)
500
111
 
501
112
 
502
113
  ### Bug Fixes
503
114
 
504
115
  * added aria labels to breadcrumbs ([23810a2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/23810a248ed3ebd08f00fd954c2a83eab67e7dbe))
505
-
506
-
507
- * Merge branch 'tm-4220-aria-breadcrumbs' into 'master' ([eb7d3d4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/eb7d3d4e6f369cd0e457a3b0d40d76bb97835fcc))
508
-
509
- ## [30.0.108](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.107...v30.0.108) (2024-04-08)
510
-
511
-
512
- ### Bug Fixes
513
-
116
+ * added required keys to the WebPage schema ([0372ef1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0372ef1f55935ece04f7d2b785a926ce4f355ec6))
117
+ * beta fixes ([8a3b851](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8a3b851a625beef4fde7ac1bef71bee66cdd68a5))
118
+ * breadcrumbs ([6f7f7fc](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6f7f7fc47111c6fb6c304ac4b305adf060786798))
119
+ * cookie consent ([b199541](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b19954180e8154d82d9ed7412af5260b2ea46500))
514
120
  * cookie consent issues ([ad2922c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ad2922cec38e93de703aaa8b9c221ce649cfdb8e))
515
121
  * enabled iframe module and schema changes ([5643c84](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5643c84b7492c29a34391a004e88a361f6d87507))
516
122
  * enabled iframe module and schema changes ([2c8fc11](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/2c8fc117a48c3ea28b076ad96057b1b43353de3a))
517
123
  * enabled iframe module and schema changes ([eb34dfb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/eb34dfb4adf36fcf299a0f9b4e8b539bd23df038))
518
-
519
-
520
- ### Code Refactoring
521
-
522
- * changes to affiliate links ([1b54397](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1b54397d52af9b8790b2bb445e9fde9d6048297b))
523
-
524
-
525
- * Merge branch 'tm-4232-cookie-consent' into 'master' ([8ac5453](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8ac54535e1d568c04f30a602c6b5e0ee18c65025))
526
- * Merge branch 'tm-4225-link-rel' into 'master' ([859a25f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/859a25f5afef2c7c6246bf1054e72d1d04db3baa))
527
-
528
-
529
- ### Tests
530
-
531
- * fix test ([faa5476](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/faa54760f9e98996014875e49ea2d6b52d4785e5))
532
-
533
- ## [30.0.107](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.106...v30.0.107) (2024-04-08)
534
-
535
-
536
- ### Bug Fixes
537
-
538
124
  * exclude pixel ([d6e36d9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d6e36d9e97e348fbe3e5b6ef0466054530d4fe83))
539
- * gatsby name ([76bc8bb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/76bc8bbed46ab4a47cc82d8f11ffb47587b59f02))
540
-
541
-
542
- * Merge branch 'tm-4201-exlude-pixel' into 'master' ([4af6319](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4af63194bde83b087cafc8a9509ddbee677b3008))
543
-
544
- ## [30.0.106](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.105...v30.0.106) (2024-04-05)
545
-
546
-
547
- ### Bug Fixes
548
-
549
125
  * fix test ([e0b3ad1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e0b3ad12515a9754567e0b550a111f4465ea8498))
126
+ * fixed tests for the schema ([54d0c14](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/54d0c14f6abede9a8461d25b12e9d0332e2c6e62))
127
+ * fixes ([5269537](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/52695377da4caaab611f6bbc81edb613ac8fb2a5))
128
+ * gatsby name ([76bc8bb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/76bc8bbed46ab4a47cc82d8f11ffb47587b59f02))
550
129
  * iframe schema ([eb9ef11](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/eb9ef110228958cacaf987c813c20df3f1a1d8b5))
130
+ * increased test coverage ([51cb07f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/51cb07fd0d97b01a58f9afe86ff7fdeda6a6c5fa))
131
+ * pipeline ([b7adc6b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b7adc6b652b1abb43af7e543b4b1b359fd4056ab))
551
132
  * remove console ([3e88ddf](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3e88ddf8ac03d206ae16a424b416992abebc691b))
552
133
  * remove missing alt and null alt ([78ba508](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/78ba508ebf0d986207e640cb50edf6713999d6ac))
134
+ * tests ([05d885a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/05d885a1ac0fd510aa3f5722b4a63bbed940537a))
135
+ * update breadcrumbs translations ([0289c66](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0289c66b97801e32b885e8a3e110ec3bc43ce4c8))
136
+ * update with master branch and fixes ([1b222e9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1b222e98d16166c7ce6cd1244f8e38914a23d7e2))
137
+ * update with master branch and fixes ([5c188cd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5c188cd5554f7ca8e6e4571713eb207cbb16723c))
138
+
139
+
140
+ ### chore
141
+
142
+ * **release:** 30.0.105 [skip ci] ([128bda3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/128bda3b396eccb64c47375dda1d77cfb3fea0d7))
143
+ * **release:** 30.0.106 [skip ci] ([c8585eb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c8585ebb5f618e88217879892005cadcee07c8d3))
144
+ * **release:** 30.0.107 [skip ci] ([12ffb8b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/12ffb8bed5e8e9e8b9ec3f4f734f5760e2816068))
145
+ * **release:** 30.0.108 [skip ci] ([4ee9cb9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4ee9cb945296e6590c648bcc69915f7e1d9aa734))
146
+ * **release:** 30.0.109 [skip ci] ([3502ca5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3502ca5884d70c496504d73c2c5cc92c2de4c757))
553
147
 
554
148
 
555
149
  ### Code Refactoring
556
150
 
557
151
  * change to page rerender when cookie accepted ([0235bea](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0235beaf0f8615db3981e1c59936228c07561071))
152
+ * changes to affiliate links ([1b54397](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1b54397d52af9b8790b2bb445e9fde9d6048297b))
558
153
  * fix order issue ([bec8d45](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/bec8d451ce2473bb6b6834c3dcc551fe00707648))
559
154
 
560
155
 
156
+ * Merge branch 'tm-4220-aria-breadcrumbs' into 'master' ([eb7d3d4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/eb7d3d4e6f369cd0e457a3b0d40d76bb97835fcc))
157
+ * Merge branch 'tm-4232-cookie-consent' into 'master' ([8ac5453](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8ac54535e1d568c04f30a602c6b5e0ee18c65025))
158
+ * Merge branch 'tm-4225-link-rel' into 'master' ([859a25f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/859a25f5afef2c7c6246bf1054e72d1d04db3baa))
159
+ * Merge branch 'tm-4201-exlude-pixel' into 'master' ([4af6319](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/4af63194bde83b087cafc8a9509ddbee677b3008))
561
160
  * Merge branch 'tm-4204-iframe-schema' into 'master' ([830b91d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/830b91de106bfee4116568f868d9096e034f6038))
562
161
  * Merge branch 'tm-4015-cookie' into 'master' ([5d48126](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5d4812668a3f3133317d0dd17bc00b8717154f19))
563
162
  * Merge branch 'tm-4213-image' into 'master' ([b7507d6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b7507d69c637f0cd96a09e65dab28eb05d4bccf1))
163
+ * Merge branch 'tm-4187-webpage-schema' into 'master' ([04ff989](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/04ff989b0fb0b43e8e1c6f7fb77be6f6cbcf38b7))
164
+ * Merge remote-tracking branch 'origin' into tm-4187-webpage-schema ([f080656](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f080656adc8e0c9ce6bb1dcd94f6c650f329d6c7))
165
+ * Merge branch 'tm-4223-breadcrumbs' into 'master' ([a53736d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a53736d18d9f8dddf543f34a65893db6febc6c06))
564
166
 
565
167
 
566
168
  ### Tests
567
169
 
170
+ * fix test ([faa5476](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/faa54760f9e98996014875e49ea2d6b52d4785e5))
568
171
  * fix test ([485c103](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/485c1034727becf5466af35bf17a879f9b330b1e))
569
172
 
570
- ## [30.0.105](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.104...v30.0.105) (2024-04-03)
173
+ # [30.1.0-beta.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.104...v30.1.0-beta.1) (2024-04-02)
571
174
 
572
175
 
573
176
  ### Bug Fixes
574
177
 
575
- * added required keys to the WebPage schema ([0372ef1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0372ef1f55935ece04f7d2b785a926ce4f355ec6))
576
- * breadcrumbs ([6f7f7fc](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6f7f7fc47111c6fb6c304ac4b305adf060786798))
577
- * fixed tests for the schema ([54d0c14](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/54d0c14f6abede9a8461d25b12e9d0332e2c6e62))
578
- * increased test coverage ([51cb07f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/51cb07fd0d97b01a58f9afe86ff7fdeda6a6c5fa))
178
+ * added pipeline for beta ([d647aba](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d647abaa1cbf7ab7162430520ba44aabbb680f19))
179
+ * added pipeline for beta ([50c2fd5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/50c2fd52092f26b1491cbf853908b44245805359))
180
+ * beta version ([e87da2a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e87da2aa24c8cc85b41a2653c3e80755fdc8a92e))
181
+ * pipeline ([d135542](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d135542e42940b795aacd9ef1bd2ccbe3104d102))
182
+ * pipelines ([32dea62](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/32dea6287c2ecd9e0c2542c9e69f659c53a77a9b))
183
+ * pipelines ([62daf43](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/62daf43429235a330235b081b66526cec91a30fb))
184
+ * pipelines ([19f3d38](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/19f3d381739138240cfccece10670daf1180ba21))
185
+ * pipelines ([6d7b294](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6d7b294c0f44743cfefa841bff3ddaa166e63469))
186
+ * pipelines ([c9a54d3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c9a54d3db577fe3978e832b016c0ea9a82558110))
579
187
  * remove continue reading link from author box description ([eae0f9a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/eae0f9a2516dc8e8bc708baba8ecafafedca0f5c))
580
- * update breadcrumbs translations ([0289c66](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0289c66b97801e32b885e8a3e110ec3bc43ce4c8))
188
+ * tests ([84381fd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/84381fd55d083918366b5bd5dc5b2a29eb238542))
581
189
  * update tests ([f15a058](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f15a0582057c413f839211e0c0107cc65bd4b448))
582
190
 
583
191
 
584
- * Merge branch 'tm-4187-webpage-schema' into 'master' ([04ff989](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/04ff989b0fb0b43e8e1c6f7fb77be6f6cbcf38b7))
585
- * Merge remote-tracking branch 'origin' into tm-4187-webpage-schema ([f080656](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f080656adc8e0c9ce6bb1dcd94f6c650f329d6c7))
586
- * Merge branch 'tm-4223-breadcrumbs' into 'master' ([a53736d](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a53736d18d9f8dddf543f34a65893db6febc6c06))
192
+ * Merge branch 'tm-4226-update-and-react-lazy' into 'beta' ([39e13a7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/39e13a7a6cef84fbbda0bdaab494ec01f54b06f5))
193
+ * Merge branch 'tm-4226-update-and-react-lazy' into 'beta' ([48a133c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/48a133c60e81885a7836c204ec5e4e3797bf5ec9))
194
+ * Merge branch 'tm-4226-update-and-react-lazy' into 'beta' ([7868c74](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7868c74b481284baf4da32ed9ba65f960fa840dc))
587
195
  * Merge branch 'tm-4178-author-box-changes' into 'master' ([ca1e276](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ca1e276bb2da842e138527a0da64adffe111e923))
588
196
 
197
+
198
+ ### Features
199
+
200
+ * update packages and use react lazy ([7fc0643](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7fc06439d9626552afb69d30f831849839836e56))
201
+
589
202
  ## [30.0.104](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.103...v30.0.104) (2024-04-02)
590
203
 
591
204