@graphcommerce/next-config 9.0.0-canary.100 → 9.0.0-canary.103
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 +85 -1195
- package/__tests__/config/utils/mergeEnvIntoConfig.ts +5 -3
- package/__tests__/config/utils/rewriteLegancyEnv.ts +2 -1
- package/__tests__/interceptors/findPlugins.ts +14 -6
- package/__tests__/interceptors/generateInterceptors.ts +29 -29
- package/__tests__/interceptors/parseStructure.ts +2 -2
- package/__tests__/utils/resolveDependenciesSync.ts +1 -1
- package/dist/config/commands/exportConfig.js +1 -1
- package/dist/config/utils/mergeEnvIntoConfig.js +6 -6
- package/dist/config/utils/rewriteLegacyEnv.js +2 -2
- package/dist/interceptors/InterceptorPlugin.js +3 -3
- package/dist/interceptors/Visitor.js +0 -1
- package/dist/interceptors/commands/codegenInterceptors.js +2 -2
- package/dist/interceptors/findOriginalSource.js +2 -1
- package/dist/interceptors/findPlugins.js +5 -8
- package/dist/interceptors/generateInterceptor.js +5 -5
- package/dist/interceptors/generateInterceptors.js +2 -2
- package/dist/interceptors/parseStructure.js +1 -1
- package/dist/utils/resolveDependenciesSync.js +3 -1
- package/package.json +15 -13
- package/src/config/commands/exportConfig.ts +1 -1
- package/src/config/demoConfig.ts +2 -2
- package/src/config/index.ts +1 -1
- package/src/config/utils/exportConfigToEnv.ts +1 -1
- package/src/config/utils/mergeEnvIntoConfig.ts +7 -9
- package/src/config/utils/replaceConfigInString.ts +1 -1
- package/src/config/utils/rewriteLegacyEnv.ts +5 -4
- package/src/generated/config.ts +2 -0
- package/src/index.ts +2 -1
- package/src/interceptors/InterceptorPlugin.ts +9 -7
- package/src/interceptors/RenameVisitor.ts +1 -1
- package/src/interceptors/Visitor.ts +1 -2
- package/src/interceptors/commands/codegenInterceptors.ts +2 -2
- package/src/interceptors/extractExports.ts +1 -0
- package/src/interceptors/findOriginalSource.ts +5 -4
- package/src/interceptors/findPlugins.ts +8 -9
- package/src/interceptors/generateInterceptor.ts +8 -7
- package/src/interceptors/generateInterceptors.ts +6 -12
- package/src/interceptors/parseStructure.ts +4 -4
- package/src/interceptors/swc.ts +2 -1
- package/src/interceptors/writeInterceptors.ts +1 -1
- package/src/utils/packageRoots.ts +1 -1
- package/src/utils/resolveDependenciesSync.ts +4 -1
- package/src/withGraphCommerce.ts +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,32 +1,31 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.0-canary.
|
|
3
|
+
## 9.0.0-canary.103
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
## 9.0.0-canary.98
|
|
5
|
+
### Patch Changes
|
|
8
6
|
|
|
9
|
-
|
|
7
|
+
- [#2421](https://github.com/graphcommerce-org/graphcommerce/pull/2421) [`d500643`](https://github.com/graphcommerce-org/graphcommerce/commit/d500643138799b6db1610cb10a1d065d6219d8ea) - Resolve peer dependency issues so we get a clean install ([@paales](https://github.com/paales))
|
|
10
8
|
|
|
11
|
-
## 9.0.0-canary.
|
|
9
|
+
## 9.0.0-canary.102
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
### Minor Changes
|
|
14
12
|
|
|
15
|
-
|
|
13
|
+
- [#2418](https://github.com/graphcommerce-org/graphcommerce/pull/2418) [`e0a5b98`](https://github.com/graphcommerce-org/graphcommerce/commit/e0a5b9858a3b675ce749609ffa122d293c6e2a62) - To have additional namespaces be considered as a graphcommerce package, set PRIVATE_PACKAGE_NAMESPACES ([@paales](https://github.com/paales))
|
|
16
14
|
|
|
17
|
-
|
|
15
|
+
### Patch Changes
|
|
18
16
|
|
|
19
|
-
|
|
17
|
+
- [#2418](https://github.com/graphcommerce-org/graphcommerce/pull/2418) [`22a0ef2`](https://github.com/graphcommerce-org/graphcommerce/commit/22a0ef2ffd2841d050a413a885ff54331e1e7ebf) - Solve peer dependency issues for webpack and framer-motion ([@paales](https://github.com/paales))
|
|
20
18
|
|
|
21
|
-
## 9.0.0-canary.
|
|
19
|
+
## 9.0.0-canary.101
|
|
22
20
|
|
|
23
|
-
|
|
21
|
+
### Minor Changes
|
|
24
22
|
|
|
25
|
-
|
|
23
|
+
- [#2380](https://github.com/graphcommerce-org/graphcommerce/pull/2380) [`3710d8b`](https://github.com/graphcommerce-org/graphcommerce/commit/3710d8bf1cceb5a991e5cfdfc15d42e462704c6d) - Solves the issue `TypeError: url?.startsWith is not a function`. The generated `.mesh/index.ts` would be generated as a requirejs module while next.js expects an esm module. In the end we properly generated the mesh correctly and now there is an `import.meta.url` instead of using `require('node:url')`. To solve this we needed to solve a chain of issues:
|
|
26
24
|
|
|
27
|
-
|
|
25
|
+
1. The generation of the mesh is based on the version of the mesh that is imported (esm or commonjs). See [source](https://github.com/ardatan/graphql-mesh/blob/bf588d372c0078378aaa24beea2da794af7949e6/scripts/replace-import-meta-url-in-cjs.ts#L9-L10) for the lines that need to be different. This meant that we needed to change the @graphcommerce/cli package to be of type:module instead of a commonjs module.
|
|
28
26
|
|
|
29
|
-
|
|
27
|
+
2) To properly convert the module to an esm module we've migrated the build of the cli package to use 'pkgroll' instead of tsc, because tsc is limited in what it outputs and can't really convert classic imports to esm.
|
|
28
|
+
3) To load possible mesh plugins we require additional .ts files to be loaded with [tsx](https://tsx.is/). To get the tsx loader to work properly in combination with esm modules, we need at least [node 18.19.0](https://nodejs.org/en/blog/release/v18.19.0#new-nodemodule-api-register-for-module-customization-hooks-new-initialize-hook). Minimal Node version upped to 18.19.0 and add support for node 22. ([@paales](https://github.com/paales))
|
|
30
29
|
|
|
31
30
|
## 9.0.0-canary.86
|
|
32
31
|
|
|
@@ -34,88 +33,12 @@
|
|
|
34
33
|
|
|
35
34
|
- [#2379](https://github.com/graphcommerce-org/graphcommerce/pull/2379) [`9828754`](https://github.com/graphcommerce-org/graphcommerce/commit/9828754192348b966fb9736d7b0e1c78c4a909fa) - All automatically generated interceptor files are now read-only in vscode to prevent accedental changes. ([@paales](https://github.com/paales))
|
|
36
35
|
|
|
37
|
-
## 9.0.0-canary.85
|
|
38
|
-
|
|
39
|
-
## 9.0.0-canary.84
|
|
40
|
-
|
|
41
|
-
## 9.0.0-canary.83
|
|
42
|
-
|
|
43
|
-
## 9.0.0-canary.82
|
|
44
|
-
|
|
45
|
-
## 9.0.0-canary.81
|
|
46
|
-
|
|
47
|
-
## 9.0.0-canary.80
|
|
48
|
-
|
|
49
|
-
## 9.0.0-canary.79
|
|
50
|
-
|
|
51
|
-
## 9.0.0-canary.78
|
|
52
|
-
|
|
53
|
-
## 9.0.0-canary.77
|
|
54
|
-
|
|
55
|
-
## 9.0.0-canary.76
|
|
56
|
-
|
|
57
|
-
## 9.0.0-canary.75
|
|
58
|
-
|
|
59
|
-
## 9.0.0-canary.74
|
|
60
|
-
|
|
61
|
-
## 9.0.0-canary.73
|
|
62
|
-
|
|
63
|
-
## 9.0.0-canary.72
|
|
64
|
-
|
|
65
|
-
## 9.0.0-canary.71
|
|
66
|
-
|
|
67
|
-
## 9.0.0-canary.70
|
|
68
|
-
|
|
69
|
-
## 9.0.0-canary.69
|
|
70
|
-
|
|
71
|
-
## 9.0.0-canary.68
|
|
72
|
-
|
|
73
|
-
## 9.0.0-canary.67
|
|
74
|
-
|
|
75
|
-
## 9.0.0-canary.66
|
|
76
|
-
|
|
77
|
-
## 9.0.0-canary.65
|
|
78
|
-
|
|
79
|
-
## 9.0.0-canary.64
|
|
80
|
-
|
|
81
|
-
## 9.0.0-canary.63
|
|
82
|
-
|
|
83
|
-
## 9.0.0-canary.62
|
|
84
|
-
|
|
85
|
-
## 9.0.0-canary.61
|
|
86
|
-
|
|
87
|
-
## 9.0.0-canary.60
|
|
88
|
-
|
|
89
|
-
## 9.0.0-canary.59
|
|
90
|
-
|
|
91
36
|
## 9.0.0-canary.58
|
|
92
37
|
|
|
93
38
|
### Minor Changes
|
|
94
39
|
|
|
95
40
|
- [#2330](https://github.com/graphcommerce-org/graphcommerce/pull/2330) [`5701e71`](https://github.com/graphcommerce-org/graphcommerce/commit/5701e71454ffb52880cd15c3341826d9502284d0) - Added support for boolean `ifConfig: ['customerXMagentoCacheIdDisable', true]` values in plugin configurations ([@paales](https://github.com/paales))
|
|
96
41
|
|
|
97
|
-
## 9.0.0-canary.57
|
|
98
|
-
|
|
99
|
-
## 9.0.0-canary.56
|
|
100
|
-
|
|
101
|
-
## 9.0.0-canary.55
|
|
102
|
-
|
|
103
|
-
## 9.0.0-canary.54
|
|
104
|
-
|
|
105
|
-
## 8.1.0-canary.53
|
|
106
|
-
|
|
107
|
-
## 8.1.0-canary.52
|
|
108
|
-
|
|
109
|
-
## 8.1.0-canary.51
|
|
110
|
-
|
|
111
|
-
## 8.1.0-canary.50
|
|
112
|
-
|
|
113
|
-
## 8.1.0-canary.49
|
|
114
|
-
|
|
115
|
-
## 8.1.0-canary.48
|
|
116
|
-
|
|
117
|
-
## 8.1.0-canary.47
|
|
118
|
-
|
|
119
42
|
## 8.1.0-canary.46
|
|
120
43
|
|
|
121
44
|
### Minor Changes
|
|
@@ -126,14 +49,6 @@
|
|
|
126
49
|
|
|
127
50
|
- [#2314](https://github.com/graphcommerce-org/graphcommerce/pull/2314) [`ccd218c`](https://github.com/graphcommerce-org/graphcommerce/commit/ccd218c827d8ba7e632fa40ed75ad63a38620275) - Solve an issue where interceptors were immediately deleted after generating ([@paales](https://github.com/paales))
|
|
128
51
|
|
|
129
|
-
## 8.1.0-canary.45
|
|
130
|
-
|
|
131
|
-
## 8.1.0-canary.44
|
|
132
|
-
|
|
133
|
-
## 8.1.0-canary.43
|
|
134
|
-
|
|
135
|
-
## 8.1.0-canary.42
|
|
136
|
-
|
|
137
52
|
## 8.1.0-canary.41
|
|
138
53
|
|
|
139
54
|
### Patch Changes
|
|
@@ -146,76 +61,24 @@
|
|
|
146
61
|
|
|
147
62
|
- [#2306](https://github.com/graphcommerce-org/graphcommerce/pull/2306) [`5e188e8`](https://github.com/graphcommerce-org/graphcommerce/commit/5e188e830dca4730c73830858f59a94e9d41ed12) - Add delete account functionality to the account section. Disabled by default and can be enabled through the config. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
148
63
|
|
|
149
|
-
## 8.1.0-canary.39
|
|
150
|
-
|
|
151
64
|
## 8.1.0-canary.38
|
|
152
65
|
|
|
153
66
|
### Minor Changes
|
|
154
67
|
|
|
155
68
|
- [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Add company and vat fields to shipping and billing forms ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
156
69
|
|
|
157
|
-
## 8.1.0-canary.37
|
|
158
|
-
|
|
159
|
-
## 8.1.0-canary.36
|
|
160
|
-
|
|
161
|
-
## 8.1.0-canary.35
|
|
162
|
-
|
|
163
|
-
## 8.1.0-canary.34
|
|
164
|
-
|
|
165
|
-
## 8.1.0-canary.33
|
|
166
|
-
|
|
167
70
|
## 8.1.0-canary.32
|
|
168
71
|
|
|
169
72
|
### Patch Changes
|
|
170
73
|
|
|
171
74
|
- [#2299](https://github.com/graphcommerce-org/graphcommerce/pull/2299) [`85d258a`](https://github.com/graphcommerce-org/graphcommerce/commit/85d258a0d1a48bb1b502cccba30a9844f2257814) - Solve an issue where an env variable wouldn't be coerced to a Number if a Config.graphqls value is defined as an Int/Float ([@paales](https://github.com/paales))
|
|
172
75
|
|
|
173
|
-
## 8.1.0-canary.31
|
|
174
|
-
|
|
175
|
-
## 8.1.0-canary.30
|
|
176
|
-
|
|
177
|
-
## 8.1.0-canary.29
|
|
178
|
-
|
|
179
76
|
## 8.1.0-canary.28
|
|
180
77
|
|
|
181
78
|
### Patch Changes
|
|
182
79
|
|
|
183
80
|
- [#2292](https://github.com/graphcommerce-org/graphcommerce/pull/2292) [`6258adb`](https://github.com/graphcommerce-org/graphcommerce/commit/6258adbe294590ba52d3aaf65712cdc561f32c4c) - Be able to handle plugin runtime values values when parsing the source. Also, make sure parsed plugin sources do not return duplicate plugins. ([@paales](https://github.com/paales))
|
|
184
81
|
|
|
185
|
-
## 8.1.0-canary.27
|
|
186
|
-
|
|
187
|
-
## 8.1.0-canary.26
|
|
188
|
-
|
|
189
|
-
## 8.1.0-canary.25
|
|
190
|
-
|
|
191
|
-
## 8.1.0-canary.24
|
|
192
|
-
|
|
193
|
-
## 8.1.0-canary.23
|
|
194
|
-
|
|
195
|
-
## 8.1.0-canary.22
|
|
196
|
-
|
|
197
|
-
## 8.1.0-canary.21
|
|
198
|
-
|
|
199
|
-
## 8.1.0-canary.20
|
|
200
|
-
|
|
201
|
-
## 8.1.0-canary.19
|
|
202
|
-
|
|
203
|
-
## 8.1.0-canary.18
|
|
204
|
-
|
|
205
|
-
## 8.1.0-canary.17
|
|
206
|
-
|
|
207
|
-
## 8.1.0-canary.16
|
|
208
|
-
|
|
209
|
-
## 8.1.0-canary.15
|
|
210
|
-
|
|
211
|
-
## 8.1.0-canary.14
|
|
212
|
-
|
|
213
|
-
## 8.1.0-canary.13
|
|
214
|
-
|
|
215
|
-
## 8.1.0-canary.12
|
|
216
|
-
|
|
217
|
-
## 8.1.0-canary.11
|
|
218
|
-
|
|
219
82
|
## 8.1.0-canary.10
|
|
220
83
|
|
|
221
84
|
### Patch Changes
|
|
@@ -246,10 +109,6 @@
|
|
|
246
109
|
|
|
247
110
|
- [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`3f9d8f5`](https://github.com/graphcommerce-org/graphcommerce/commit/3f9d8f5ee9437fa90589ebd8ba8d1e790006b6ae) - Added better interceptor comments and link to original files ([@paales](https://github.com/paales))
|
|
248
111
|
|
|
249
|
-
## 8.1.0-canary.7
|
|
250
|
-
|
|
251
|
-
## 8.1.0-canary.6
|
|
252
|
-
|
|
253
112
|
## 8.1.0-canary.5
|
|
254
113
|
|
|
255
114
|
### Minor Changes
|
|
@@ -308,8 +167,6 @@
|
|
|
308
167
|
|
|
309
168
|
- [#2227](https://github.com/graphcommerce-org/graphcommerce/pull/2227) [`d597719`](https://github.com/graphcommerce-org/graphcommerce/commit/d597719baaabbe079660ac063fd021d871831511) - Added option to change sort order (ASC / DESC) for sort options (Name, price, position etc) on catalog and search pages. ([@FrankHarland](https://github.com/FrankHarland))
|
|
310
169
|
|
|
311
|
-
## 8.0.6-canary.3
|
|
312
|
-
|
|
313
170
|
## 8.0.6-canary.2
|
|
314
171
|
|
|
315
172
|
### Patch Changes
|
|
@@ -334,76 +191,6 @@
|
|
|
334
191
|
|
|
335
192
|
- [#2236](https://github.com/graphcommerce-org/graphcommerce/pull/2236) [`1a20a34`](https://github.com/graphcommerce-org/graphcommerce/commit/1a20a34a8b55781ee3e88731b5e2623a85c64ccd) - Enable bundlePagesExternals for Vercel environments ([@paales](https://github.com/paales))
|
|
336
193
|
|
|
337
|
-
## 8.0.5-canary.10
|
|
338
|
-
|
|
339
|
-
## 8.0.5-canary.9
|
|
340
|
-
|
|
341
|
-
## 8.0.5-canary.8
|
|
342
|
-
|
|
343
|
-
## 8.0.5-canary.7
|
|
344
|
-
|
|
345
|
-
## 8.0.5-canary.6
|
|
346
|
-
|
|
347
|
-
## 8.0.5-canary.5
|
|
348
|
-
|
|
349
|
-
## 8.0.5-canary.4
|
|
350
|
-
|
|
351
|
-
## 8.0.5-canary.3
|
|
352
|
-
|
|
353
|
-
### Patch Changes
|
|
354
|
-
|
|
355
|
-
- [#2236](https://github.com/graphcommerce-org/graphcommerce/pull/2236) [`1a20a34`](https://github.com/graphcommerce-org/graphcommerce/commit/1a20a34a8b55781ee3e88731b5e2623a85c64ccd) - Enable bundlePagesExternals for Vercel environments ([@paales](https://github.com/paales))
|
|
356
|
-
|
|
357
|
-
## 8.0.5-canary.2
|
|
358
|
-
|
|
359
|
-
## 8.0.5-canary.1
|
|
360
|
-
|
|
361
|
-
## 8.0.5-canary.0
|
|
362
|
-
|
|
363
|
-
## 8.0.4
|
|
364
|
-
|
|
365
|
-
## 8.0.4-canary.1
|
|
366
|
-
|
|
367
|
-
## 8.0.4-canary.0
|
|
368
|
-
|
|
369
|
-
## 8.0.3
|
|
370
|
-
|
|
371
|
-
## 8.0.3-canary.6
|
|
372
|
-
|
|
373
|
-
## 8.0.3-canary.5
|
|
374
|
-
|
|
375
|
-
## 8.0.3-canary.4
|
|
376
|
-
|
|
377
|
-
## 8.0.3-canary.3
|
|
378
|
-
|
|
379
|
-
## 8.0.3-canary.2
|
|
380
|
-
|
|
381
|
-
## 8.0.3-canary.1
|
|
382
|
-
|
|
383
|
-
## 8.0.3-canary.0
|
|
384
|
-
|
|
385
|
-
## 8.0.2
|
|
386
|
-
|
|
387
|
-
## 8.0.2-canary.3
|
|
388
|
-
|
|
389
|
-
## 8.0.2-canary.2
|
|
390
|
-
|
|
391
|
-
## 8.0.2-canary.1
|
|
392
|
-
|
|
393
|
-
## 8.0.2-canary.0
|
|
394
|
-
|
|
395
|
-
## 8.0.1
|
|
396
|
-
|
|
397
|
-
## 8.0.1-canary.4
|
|
398
|
-
|
|
399
|
-
## 8.0.1-canary.3
|
|
400
|
-
|
|
401
|
-
## 8.0.1-canary.2
|
|
402
|
-
|
|
403
|
-
## 8.0.1-canary.1
|
|
404
|
-
|
|
405
|
-
## 8.0.1-canary.0
|
|
406
|
-
|
|
407
194
|
## 8.0.0
|
|
408
195
|
|
|
409
196
|
### Minor Changes
|
|
@@ -430,1056 +217,159 @@
|
|
|
430
217
|
|
|
431
218
|
- [#2169](https://github.com/graphcommerce-org/graphcommerce/pull/2169) [`eab3f0b`](https://github.com/graphcommerce-org/graphcommerce/commit/eab3f0b0b459f5b6cc4e50d787ac1e8ae545b708) - Solve issue where a Hygraph DynamicRow conditions were missing fields in the OrCondition ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
432
219
|
|
|
433
|
-
##
|
|
434
|
-
|
|
435
|
-
## 8.0.0-canary.99
|
|
436
|
-
|
|
437
|
-
## 8.0.0-canary.98
|
|
438
|
-
|
|
439
|
-
## 8.0.0-canary.97
|
|
440
|
-
|
|
441
|
-
## 8.0.0-canary.96
|
|
442
|
-
|
|
443
|
-
## 8.0.0-canary.95
|
|
444
|
-
|
|
445
|
-
## 8.0.0-canary.94
|
|
446
|
-
|
|
447
|
-
### Patch Changes
|
|
448
|
-
|
|
449
|
-
- [#2169](https://github.com/graphcommerce-org/graphcommerce/pull/2169) [`eab3f0b`](https://github.com/graphcommerce-org/graphcommerce/commit/eab3f0b0b459f5b6cc4e50d787ac1e8ae545b708) - Solve issue where a Hygraph DynamicRow conditions were missing fields in the OrCondition ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
450
|
-
|
|
451
|
-
## 8.0.0-canary.93
|
|
452
|
-
|
|
453
|
-
### Patch Changes
|
|
454
|
-
|
|
455
|
-
- [`d267f19`](https://github.com/graphcommerce-org/graphcommerce/commit/d267f19d6ab85f7dc1088974b3fee6148a537c20) - Disable the pagination thumbnails ([@paales](https://github.com/paales))
|
|
456
|
-
|
|
457
|
-
## 8.0.0-canary.92
|
|
458
|
-
|
|
459
|
-
## 8.0.0-canary.91
|
|
220
|
+
## 7.0.1
|
|
460
221
|
|
|
461
222
|
### Patch Changes
|
|
462
223
|
|
|
463
|
-
- [
|
|
464
|
-
|
|
465
|
-
## 8.0.0-canary.90
|
|
466
|
-
|
|
467
|
-
## 8.0.0-canary.89
|
|
468
|
-
|
|
469
|
-
## 8.0.0-canary.88
|
|
470
|
-
|
|
471
|
-
## 8.0.0-canary.87
|
|
472
|
-
|
|
473
|
-
## 8.0.0-canary.86
|
|
474
|
-
|
|
475
|
-
## 8.0.0-canary.85
|
|
476
|
-
|
|
477
|
-
## 8.0.0-canary.84
|
|
478
|
-
|
|
479
|
-
## 8.0.0-canary.83
|
|
480
|
-
|
|
481
|
-
## 8.0.0-canary.82
|
|
482
|
-
|
|
483
|
-
## 8.0.0-canary.81
|
|
484
|
-
|
|
485
|
-
## 8.0.0-canary.80
|
|
486
|
-
|
|
487
|
-
## 8.0.0-canary.79
|
|
488
|
-
|
|
489
|
-
## 8.0.0-canary.78
|
|
490
|
-
|
|
491
|
-
## 8.0.0-canary.77
|
|
492
|
-
|
|
493
|
-
## 8.0.0-canary.76
|
|
494
|
-
|
|
495
|
-
## 8.0.0-canary.75
|
|
496
|
-
|
|
497
|
-
## 8.0.0-canary.74
|
|
498
|
-
|
|
499
|
-
## 8.0.0-canary.73
|
|
224
|
+
- [`5652342e1`](https://github.com/graphcommerce-org/graphcommerce/commit/5652342e10754cc0b4fa0596e55125539b69c442) - Add missing dependency @types/react-is as it would cause build errors. ([@paales](https://github.com/paales))
|
|
500
225
|
|
|
501
|
-
|
|
226
|
+
- [`2e3b9d64e`](https://github.com/graphcommerce-org/graphcommerce/commit/2e3b9d64e0cf610d27c05a067a3c5a25e2681dde) - Pin version of graphql-jit to 0.8.2 to prevent error: `Got unexpected PRIMITIVES type: RichTextAST` ([@paales](https://github.com/paales))
|
|
502
227
|
|
|
503
|
-
|
|
228
|
+
- [#2043](https://github.com/graphcommerce-org/graphcommerce/pull/2043) [`b5584f689`](https://github.com/graphcommerce-org/graphcommerce/commit/b5584f689d22a3d2c043ecf5eb4ef02920fc5bdd) - Support for node 20 ([@paales](https://github.com/paales))
|
|
504
229
|
|
|
505
|
-
|
|
230
|
+
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`ca9ce846c`](https://github.com/graphcommerce-org/graphcommerce/commit/ca9ce846cb24a2ab0e365df6e60a962187151030) - Solved an issue where any dynamic route like product pages or search pages would give a 404 during development. ([@paales](https://github.com/paales))
|
|
506
231
|
|
|
507
|
-
|
|
232
|
+
- [#2063](https://github.com/graphcommerce-org/graphcommerce/pull/2063) [`12842a28e`](https://github.com/graphcommerce-org/graphcommerce/commit/12842a28e226ef970f250fad4100e46eebc53118) - Update graphql dependency to 16.8.1 and loosen constraint so that it doesn’t fail during installation ([@paales](https://github.com/paales))
|
|
508
233
|
|
|
509
|
-
|
|
234
|
+
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`136580b39`](https://github.com/graphcommerce-org/graphcommerce/commit/136580b39e3cffdd07e3fa087e049bd532c3e8f1) - Updated all dependencies to the latest version where possible. ([@paales](https://github.com/paales))
|
|
510
235
|
|
|
511
|
-
## 7.
|
|
236
|
+
## 7.0.0
|
|
512
237
|
|
|
513
|
-
|
|
238
|
+
### Major Changes
|
|
514
239
|
|
|
515
|
-
|
|
240
|
+
- [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
|
|
516
241
|
|
|
517
|
-
|
|
242
|
+
### Minor Changes
|
|
518
243
|
|
|
519
|
-
|
|
244
|
+
- [#1988](https://github.com/graphcommerce-org/graphcommerce/pull/1988) [`af8e0d176`](https://github.com/graphcommerce-org/graphcommerce/commit/af8e0d176af8197a0c13b9a29b438cb54cc29ce4) - Multi website with multiple duplicates locales support. Use website suffixes like `en-us-website1` and `en-us-website2` as the locale declaration. ([@hnsr](https://github.com/hnsr))
|
|
520
245
|
|
|
521
|
-
|
|
246
|
+
- [#1915](https://github.com/graphcommerce-org/graphcommerce/pull/1915) [`f4a8c3881`](https://github.com/graphcommerce-org/graphcommerce/commit/f4a8c388183e17c52e7f66536c5448749f494d7f) - Added the ability to create function-plugins for usage in non-component areas and hooks ([@paales](https://github.com/paales))
|
|
522
247
|
|
|
523
248
|
### Patch Changes
|
|
524
249
|
|
|
525
|
-
- [#
|
|
526
|
-
|
|
527
|
-
## 7.1.0-canary.63
|
|
528
|
-
|
|
529
|
-
## 7.1.0-canary.62
|
|
530
|
-
|
|
531
|
-
## 7.1.0-canary.61
|
|
250
|
+
- [#2034](https://github.com/graphcommerce-org/graphcommerce/pull/2034) [`6fca47484`](https://github.com/graphcommerce-org/graphcommerce/commit/6fca474847fe52f004a6ac0abbd88492512b46ad) - Pre-resolve the customFetch in mesh config, so that it works with the new mesh version. ([@paales](https://github.com/paales))
|
|
532
251
|
|
|
533
|
-
|
|
252
|
+
- [#1925](https://github.com/graphcommerce-org/graphcommerce/pull/1925) [`2b595bf13`](https://github.com/graphcommerce-org/graphcommerce/commit/2b595bf13f3725a77661586cce021ce8d4791558) - Fixed bug for type error in `demoConfig.ts`. All storefront config values in the demo config are now optional. ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
534
253
|
|
|
535
|
-
|
|
254
|
+
- [#1924](https://github.com/graphcommerce-org/graphcommerce/pull/1924) [`04581f619`](https://github.com/graphcommerce-org/graphcommerce/commit/04581f619c609f2f6ca5268ee5effb6a1db3f0eb) - Use the latest branch from graphql-mesh so that all versions are in sync ([@paales](https://github.com/paales))
|
|
536
255
|
|
|
537
|
-
|
|
256
|
+
- [#1936](https://github.com/graphcommerce-org/graphcommerce/pull/1936) [`2869ac874`](https://github.com/graphcommerce-org/graphcommerce/commit/2869ac87401d5f00f41cfc9d976fd2c2b23ffac3) - Added redirect for /customer/account so links in (transactional) emails function properly ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
538
257
|
|
|
539
|
-
|
|
258
|
+
- [#1960](https://github.com/graphcommerce-org/graphcommerce/pull/1960) [`86e14569b`](https://github.com/graphcommerce-org/graphcommerce/commit/86e14569b1f68f73be7f93b614e36b382c5debff) - Updated to the latest release of GraphQL codegen and solve compatibility issues with our own generator ([@paales](https://github.com/paales))
|
|
540
259
|
|
|
541
|
-
|
|
260
|
+
- [#2030](https://github.com/graphcommerce-org/graphcommerce/pull/2030) [`15939ca62`](https://github.com/graphcommerce-org/graphcommerce/commit/15939ca62021c28f7d60382c65927aed15c1ac84) - next-pwa dependency change and next-image caching optimalization ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
542
261
|
|
|
543
|
-
|
|
262
|
+
- [#1982](https://github.com/graphcommerce-org/graphcommerce/pull/1982) [`e1fab2f6d`](https://github.com/graphcommerce-org/graphcommerce/commit/e1fab2f6d8f57d0488d8a915596d5c19cb7718e6) - Better detection what the package roots are when a custom node_modules directory is used ([@paales](https://github.com/paales))
|
|
544
263
|
|
|
545
|
-
|
|
264
|
+
- [#1959](https://github.com/graphcommerce-org/graphcommerce/pull/1959) [`d0809b132`](https://github.com/graphcommerce-org/graphcommerce/commit/d0809b132a0e4cbdfeb86164f6c16a89ebecd987) - Added support for default values in the Config.graphqls files for the documentation ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
546
265
|
|
|
547
|
-
##
|
|
266
|
+
## 6.1.0
|
|
548
267
|
|
|
549
|
-
|
|
268
|
+
### Minor Changes
|
|
550
269
|
|
|
551
|
-
|
|
270
|
+
- [#1874](https://github.com/graphcommerce-org/graphcommerce/pull/1874) [`2a60491c2`](https://github.com/graphcommerce-org/graphcommerce/commit/2a60491c23a9cd0bfd79296d29f6c9ee31faada5) - Big Magento performance improvements; Magento couldn't respond with any cached Varnish responses because there was an empty authorization header sent with each request. ([@paales](https://github.com/paales))
|
|
552
271
|
|
|
553
272
|
### Patch Changes
|
|
554
273
|
|
|
555
|
-
- [#
|
|
556
|
-
|
|
557
|
-
## 7.1.0-canary.50
|
|
558
|
-
|
|
559
|
-
## 7.1.0-canary.49
|
|
560
|
-
|
|
561
|
-
## 7.1.0-canary.48
|
|
274
|
+
- [#1876](https://github.com/graphcommerce-org/graphcommerce/pull/1876) [`8dffc59c0`](https://github.com/graphcommerce-org/graphcommerce/commit/8dffc59c04bf6f2a6000b73db13592e10afd936c) - Added an configuration `wishlistShowFeedbackMessage` to show a feedback message when a product is added to the wishlist. ([@paales](https://github.com/paales))
|
|
562
275
|
|
|
563
|
-
|
|
276
|
+
- [#1872](https://github.com/graphcommerce-org/graphcommerce/pull/1872) [`05522796f`](https://github.com/graphcommerce-org/graphcommerce/commit/05522796f3f132db50e7b4c26089740a12a9153a) - Fix issue where a deeper plugin from the root of the project doesn't have a correct relative path ([@paales](https://github.com/paales))
|
|
564
277
|
|
|
565
|
-
##
|
|
278
|
+
## 6.0.1
|
|
566
279
|
|
|
567
280
|
### Patch Changes
|
|
568
281
|
|
|
569
|
-
- [`
|
|
570
|
-
|
|
571
|
-
## 7.1.0-canary.45
|
|
282
|
+
- [#1863](https://github.com/graphcommerce-org/graphcommerce/pull/1863) [`ce6c990b2`](https://github.com/graphcommerce-org/graphcommerce/commit/ce6c990b25286bed393470a818f8daab2bb51457) - Solve issue where intercepters coudn’t be properly deleted because it was already deleted, fixe ([@paales](https://github.com/paales))
|
|
572
283
|
|
|
573
|
-
|
|
284
|
+
## 6.0.0
|
|
574
285
|
|
|
575
|
-
|
|
286
|
+
### Major Changes
|
|
576
287
|
|
|
577
|
-
|
|
288
|
+
- [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
|
|
578
289
|
|
|
579
|
-
-
|
|
290
|
+
- NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
|
|
291
|
+
- NextLink automatically adds `target="_blank"` when the href is external.
|
|
292
|
+
- NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
|
|
580
293
|
|
|
581
|
-
- [#
|
|
294
|
+
- [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`b76679204`](https://github.com/graphcommerce-org/graphcommerce/commit/b766792049e1e6ebe45671c0b36e78746ef159e2) - Created a completely new [GraphCommerce config system](https://www.graphcommerce.org/docs/framework/config) to allow for greater confiugration options and rely less on a .env file to configuration.
|
|
582
295
|
|
|
583
|
-
|
|
296
|
+
- GraphCommerce can be configured in the graphcommerce.config.js
|
|
297
|
+
- The configuration is automatically validated on startup.
|
|
298
|
+
- All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
|
|
584
299
|
|
|
585
|
-
|
|
300
|
+
### Minor Changes
|
|
586
301
|
|
|
587
|
-
|
|
302
|
+
- [#1828](https://github.com/graphcommerce-org/graphcommerce/pull/1828) [`3df85faf1`](https://github.com/graphcommerce-org/graphcommerce/commit/3df85faf189b95e2c7d9c3fc756474fcafb1c8b4) - Added a new `productRoute` configuration to create freedom in the actual product route used (default: /p/). Simplified redirects from legacy product routes to new routes by creating redirects. ([@paales](https://github.com/paales))
|
|
588
303
|
|
|
589
|
-
|
|
304
|
+
- [#1810](https://github.com/graphcommerce-org/graphcommerce/pull/1810) [`543c5d5b2`](https://github.com/graphcommerce-org/graphcommerce/commit/543c5d5b2b6f29c1f6a0a405524d4cc86f399596) - Added `limitSsg: Boolean` configuration option to limit the getStaticPaths generation during build. This is useful to make quick deployments on preview environments. ([@paales](https://github.com/paales))
|
|
590
305
|
|
|
591
|
-
|
|
306
|
+
- [#1833](https://github.com/graphcommerce-org/graphcommerce/pull/1833) [`7dc3e036c`](https://github.com/graphcommerce-org/graphcommerce/commit/7dc3e036c776224aa184e03cc957dcb8d3faa55c) - Added ability to have local plugins and added example plugin in the plugins directory ([@paales](https://github.com/paales))
|
|
592
307
|
|
|
593
308
|
### Patch Changes
|
|
594
309
|
|
|
595
|
-
- [#
|
|
596
|
-
|
|
597
|
-
## 7.1.0-canary.33
|
|
598
|
-
|
|
599
|
-
## 7.1.0-canary.32
|
|
600
|
-
|
|
601
|
-
## 7.1.0-canary.31
|
|
602
|
-
|
|
603
|
-
## 7.1.0-canary.30
|
|
604
|
-
|
|
605
|
-
## 7.1.0-canary.29
|
|
606
|
-
|
|
607
|
-
## 7.1.0-canary.28
|
|
608
|
-
|
|
609
|
-
## 7.1.0-canary.27
|
|
610
|
-
|
|
611
|
-
## 7.1.0-canary.26
|
|
612
|
-
|
|
613
|
-
## 7.1.0-canary.25
|
|
614
|
-
|
|
615
|
-
## 7.1.0-canary.24
|
|
616
|
-
|
|
617
|
-
## 7.1.0-canary.23
|
|
310
|
+
- [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`fff2420c6`](https://github.com/graphcommerce-org/graphcommerce/commit/fff2420c62472edfd2c3d6eba1012dbf48efa3db) - Added `debug.webpackCircularDependencyPlugin`, `debug.webpackDuplicatesPlugin` and `debug.pluginStatus` to be able to run some debugging commands. ([@paales](https://github.com/paales))
|
|
618
311
|
|
|
619
|
-
|
|
312
|
+
- [#1844](https://github.com/graphcommerce-org/graphcommerce/pull/1844) [`929cffafb`](https://github.com/graphcommerce-org/graphcommerce/commit/929cffafbc8b2e57433b6448c95234fb057880b1) - Plugins now are correctly sorted and local plugins will always be closest to the original component. ([@paales](https://github.com/paales))
|
|
620
313
|
|
|
621
|
-
|
|
314
|
+
- [#1831](https://github.com/graphcommerce-org/graphcommerce/pull/1831) [`4d4a3464c`](https://github.com/graphcommerce-org/graphcommerce/commit/4d4a3464c807e34a36952d01e63a5c556176b0b6) - Removed of next-transpile-modules and use transpilePackages option of nextjs. ([@paales](https://github.com/paales))
|
|
622
315
|
|
|
623
|
-
##
|
|
316
|
+
## 5.1.0
|
|
624
317
|
|
|
625
|
-
|
|
318
|
+
### Patch Changes
|
|
626
319
|
|
|
627
|
-
|
|
320
|
+
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`225a69dc9`](https://github.com/graphcommerce-org/graphcommerce/commit/225a69dc9eb76d85adee1c6ea8c4eff16a5fed63) - When a plugin doesn't target a file anymore, it will now cleanup the existing interceptor file. ([@paales](https://github.com/paales))
|
|
628
321
|
|
|
629
|
-
|
|
322
|
+
- [#1760](https://github.com/graphcommerce-org/graphcommerce/pull/1760) [`8badc8550`](https://github.com/graphcommerce-org/graphcommerce/commit/8badc8550c402ac7b80c8d3238d313550c28a055) - Updated dependencies ([@paales](https://github.com/paales))
|
|
630
323
|
|
|
631
|
-
|
|
324
|
+
- [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
|
|
632
325
|
|
|
633
|
-
|
|
326
|
+
- Updated the @mui/material package
|
|
327
|
+
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
328
|
+
- Upgraded dependencies including type-fest and graphql-mesh
|
|
329
|
+
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
634
330
|
|
|
635
|
-
|
|
331
|
+
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`4759c1781`](https://github.com/graphcommerce-org/graphcommerce/commit/4759c1781ebe94c18f557e2ba189000580a05692) - Interceptors are regenerated when a plugin contains a faulty configuration (happens a lot when building a plugin). ([@paales](https://github.com/paales))
|
|
636
332
|
|
|
637
|
-
|
|
333
|
+
- [#1745](https://github.com/graphcommerce-org/graphcommerce/pull/1745) [`2a859970d`](https://github.com/graphcommerce-org/graphcommerce/commit/2a859970de34ad768a0ba54f50d53ad17823cc15) - Make sure the interceptors aren't cleaned up constantly ([@github-actions](https://github.com/apps/github-actions))
|
|
638
334
|
|
|
639
|
-
##
|
|
335
|
+
## 5.0.0
|
|
640
336
|
|
|
641
|
-
|
|
337
|
+
### Major Changes
|
|
642
338
|
|
|
643
|
-
|
|
339
|
+
- [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
|
|
644
340
|
|
|
645
|
-
|
|
341
|
+
### Minor Changes
|
|
646
342
|
|
|
647
|
-
|
|
343
|
+
- [#1729](https://github.com/graphcommerce-org/graphcommerce/pull/1729) [`4f85e4878`](https://github.com/graphcommerce-org/graphcommerce/commit/4f85e4878e4ad0dd528d60ad35826da0677059a9) - Add the ability to specificy plugins on the package name (e.g. `@graphcommerce/magento-cart-payment-method`) ([@paales](https://github.com/paales))
|
|
648
344
|
|
|
649
|
-
|
|
345
|
+
- [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`16abc9995`](https://github.com/graphcommerce-org/graphcommerce/commit/16abc9995377f5c00032674de0a1ea3ebad88c4c) - Introducing a new **Plugin system for GraphCommerce** which allows you to extend GraphCommerce in a plug-and-play manner. [Read the documentation to learn more](https://github.com/graphcommerce-org/graphcommerce/blob/main/docs/framework/plugins.md) ([@paales](https://github.com/paales))
|
|
650
346
|
|
|
651
|
-
|
|
347
|
+
- [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`6171ad02c`](https://github.com/graphcommerce-org/graphcommerce/commit/6171ad02c19782b1e1f0eb00ea25ea6b764250b5) - Added topological sorting to plugins and added ifEnv export to plugins to conditionally load plugins ([@paales](https://github.com/paales))
|
|
652
348
|
|
|
653
349
|
### Patch Changes
|
|
654
350
|
|
|
655
|
-
- [#
|
|
656
|
-
|
|
657
|
-
## 7.0.2-canary.5
|
|
351
|
+
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`b2d73c726`](https://github.com/graphcommerce-org/graphcommerce/commit/b2d73c726fa123435fa6c54b4e0fd0db2df7c4ab) - Move to <Prev/> instead of <Component/> to call the plugin component ([@paales](https://github.com/paales))
|
|
658
352
|
|
|
659
|
-
|
|
353
|
+
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`d6abe2646`](https://github.com/graphcommerce-org/graphcommerce/commit/d6abe26461d92e6f6c39da1cb7e6ac896bb9475f) - Added comments to generated interceptor ([@paales](https://github.com/paales))
|
|
660
354
|
|
|
661
|
-
- [`
|
|
355
|
+
- [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`fdb33b4e6`](https://github.com/graphcommerce-org/graphcommerce/commit/fdb33b4e6cace84a370aa000bf86c9c3c377aaae) - Make sure the root package is always included even if it doesn't include graphcommerce in the name ([@github-actions](https://github.com/apps/github-actions))
|
|
662
356
|
|
|
663
|
-
##
|
|
357
|
+
## 4.30.1
|
|
664
358
|
|
|
665
359
|
### Patch Changes
|
|
666
360
|
|
|
667
|
-
- [`
|
|
668
|
-
|
|
669
|
-
- [`2e3b9d64e`](https://github.com/graphcommerce-org/graphcommerce/commit/2e3b9d64e0cf610d27c05a067a3c5a25e2681dde) - Pin version of graphql-jit to 0.8.2 to prevent error: `Got unexpected PRIMITIVES type: RichTextAST` ([@paales](https://github.com/paales))
|
|
670
|
-
|
|
671
|
-
- [#2043](https://github.com/graphcommerce-org/graphcommerce/pull/2043) [`b5584f689`](https://github.com/graphcommerce-org/graphcommerce/commit/b5584f689d22a3d2c043ecf5eb4ef02920fc5bdd) - Support for node 20 ([@paales](https://github.com/paales))
|
|
672
|
-
|
|
673
|
-
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`ca9ce846c`](https://github.com/graphcommerce-org/graphcommerce/commit/ca9ce846cb24a2ab0e365df6e60a962187151030) - Solved an issue where any dynamic route like product pages or search pages would give a 404 during development. ([@paales](https://github.com/paales))
|
|
674
|
-
|
|
675
|
-
- [#2063](https://github.com/graphcommerce-org/graphcommerce/pull/2063) [`12842a28e`](https://github.com/graphcommerce-org/graphcommerce/commit/12842a28e226ef970f250fad4100e46eebc53118) - Update graphql dependency to 16.8.1 and loosen constraint so that it doesn’t fail during installation ([@paales](https://github.com/paales))
|
|
361
|
+
- [#1724](https://github.com/graphcommerce-org/graphcommerce/pull/1724) [`0c54f0b78`](https://github.com/graphcommerce-org/graphcommerce/commit/0c54f0b7828d78df373a96dc6d6dcd1ee108704f) Thanks [@paales](https://github.com/paales)! - Fix issue where the build version of next-config wasn't available
|
|
676
362
|
|
|
677
|
-
|
|
363
|
+
## 4.30.0
|
|
678
364
|
|
|
679
|
-
|
|
365
|
+
### Minor Changes
|
|
680
366
|
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
### Patch Changes
|
|
684
|
-
|
|
685
|
-
- [`5652342e1`](https://github.com/graphcommerce-org/graphcommerce/commit/5652342e10754cc0b4fa0596e55125539b69c442) - Add missing dependency @types/react-is as it would cause build errors. ([@paales](https://github.com/paales))
|
|
686
|
-
|
|
687
|
-
## 7.0.1-canary.13
|
|
688
|
-
|
|
689
|
-
## 7.0.1-canary.12
|
|
690
|
-
|
|
691
|
-
### Patch Changes
|
|
692
|
-
|
|
693
|
-
- [`2e3b9d64e`](https://github.com/graphcommerce-org/graphcommerce/commit/2e3b9d64e0cf610d27c05a067a3c5a25e2681dde) - Pin version of graphql-jit to 0.8.2 to prevent error: `Got unexpected PRIMITIVES type: RichTextAST` ([@paales](https://github.com/paales))
|
|
694
|
-
|
|
695
|
-
## 7.0.1-canary.11
|
|
696
|
-
|
|
697
|
-
## 7.0.1-canary.10
|
|
698
|
-
|
|
699
|
-
### Patch Changes
|
|
700
|
-
|
|
701
|
-
- [#2063](https://github.com/graphcommerce-org/graphcommerce/pull/2063) [`12842a28e`](https://github.com/graphcommerce-org/graphcommerce/commit/12842a28e226ef970f250fad4100e46eebc53118) - Update graphql dependency to 16.8.1 and loosen constraint so that it doesn’t fail during installation ([@paales](https://github.com/paales))
|
|
702
|
-
|
|
703
|
-
## 7.0.1-canary.9
|
|
704
|
-
|
|
705
|
-
## 7.0.1-canary.8
|
|
706
|
-
|
|
707
|
-
## 7.0.1-canary.7
|
|
708
|
-
|
|
709
|
-
## 7.0.1-canary.6
|
|
710
|
-
|
|
711
|
-
## 7.0.1-canary.5
|
|
712
|
-
|
|
713
|
-
## 7.0.1-canary.4
|
|
714
|
-
|
|
715
|
-
## 7.0.1-canary.3
|
|
716
|
-
|
|
717
|
-
## 7.0.1-canary.2
|
|
718
|
-
|
|
719
|
-
### Patch Changes
|
|
720
|
-
|
|
721
|
-
- [#2043](https://github.com/graphcommerce-org/graphcommerce/pull/2043) [`b5584f689`](https://github.com/graphcommerce-org/graphcommerce/commit/b5584f689d22a3d2c043ecf5eb4ef02920fc5bdd) - Support for node 20 ([@paales](https://github.com/paales))
|
|
722
|
-
|
|
723
|
-
## 7.0.1-canary.1
|
|
724
|
-
|
|
725
|
-
## 7.0.1-canary.0
|
|
726
|
-
|
|
727
|
-
### Patch Changes
|
|
728
|
-
|
|
729
|
-
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`ca9ce846c`](https://github.com/graphcommerce-org/graphcommerce/commit/ca9ce846cb24a2ab0e365df6e60a962187151030) - Solved an issue where any dynamic route like product pages or search pages would give a 404 during development. ([@paales](https://github.com/paales))
|
|
730
|
-
|
|
731
|
-
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`136580b39`](https://github.com/graphcommerce-org/graphcommerce/commit/136580b39e3cffdd07e3fa087e049bd532c3e8f1) - Updated all dependencies to the latest version where possible. ([@paales](https://github.com/paales))
|
|
732
|
-
|
|
733
|
-
## 7.0.0
|
|
734
|
-
|
|
735
|
-
### Major Changes
|
|
736
|
-
|
|
737
|
-
- [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
|
|
738
|
-
|
|
739
|
-
### Minor Changes
|
|
740
|
-
|
|
741
|
-
- [#1988](https://github.com/graphcommerce-org/graphcommerce/pull/1988) [`af8e0d176`](https://github.com/graphcommerce-org/graphcommerce/commit/af8e0d176af8197a0c13b9a29b438cb54cc29ce4) - Multi website with multiple duplicates locales support. Use website suffixes like `en-us-website1` and `en-us-website2` as the locale declaration. ([@hnsr](https://github.com/hnsr))
|
|
742
|
-
|
|
743
|
-
- [#1915](https://github.com/graphcommerce-org/graphcommerce/pull/1915) [`f4a8c3881`](https://github.com/graphcommerce-org/graphcommerce/commit/f4a8c388183e17c52e7f66536c5448749f494d7f) - Added the ability to create function-plugins for usage in non-component areas and hooks ([@paales](https://github.com/paales))
|
|
744
|
-
|
|
745
|
-
### Patch Changes
|
|
746
|
-
|
|
747
|
-
- [#2034](https://github.com/graphcommerce-org/graphcommerce/pull/2034) [`6fca47484`](https://github.com/graphcommerce-org/graphcommerce/commit/6fca474847fe52f004a6ac0abbd88492512b46ad) - Pre-resolve the customFetch in mesh config, so that it works with the new mesh version. ([@paales](https://github.com/paales))
|
|
748
|
-
|
|
749
|
-
- [#1925](https://github.com/graphcommerce-org/graphcommerce/pull/1925) [`2b595bf13`](https://github.com/graphcommerce-org/graphcommerce/commit/2b595bf13f3725a77661586cce021ce8d4791558) - Fixed bug for type error in `demoConfig.ts`. All storefront config values in the demo config are now optional. ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
750
|
-
|
|
751
|
-
- [#1924](https://github.com/graphcommerce-org/graphcommerce/pull/1924) [`04581f619`](https://github.com/graphcommerce-org/graphcommerce/commit/04581f619c609f2f6ca5268ee5effb6a1db3f0eb) - Use the latest branch from graphql-mesh so that all versions are in sync ([@paales](https://github.com/paales))
|
|
752
|
-
|
|
753
|
-
- [#1936](https://github.com/graphcommerce-org/graphcommerce/pull/1936) [`2869ac874`](https://github.com/graphcommerce-org/graphcommerce/commit/2869ac87401d5f00f41cfc9d976fd2c2b23ffac3) - Added redirect for /customer/account so links in (transactional) emails function properly ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
754
|
-
|
|
755
|
-
- [#1960](https://github.com/graphcommerce-org/graphcommerce/pull/1960) [`86e14569b`](https://github.com/graphcommerce-org/graphcommerce/commit/86e14569b1f68f73be7f93b614e36b382c5debff) - Updated to the latest release of GraphQL codegen and solve compatibility issues with our own generator ([@paales](https://github.com/paales))
|
|
756
|
-
|
|
757
|
-
- [#2030](https://github.com/graphcommerce-org/graphcommerce/pull/2030) [`15939ca62`](https://github.com/graphcommerce-org/graphcommerce/commit/15939ca62021c28f7d60382c65927aed15c1ac84) - next-pwa dependency change and next-image caching optimalization ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
758
|
-
|
|
759
|
-
- [#1982](https://github.com/graphcommerce-org/graphcommerce/pull/1982) [`e1fab2f6d`](https://github.com/graphcommerce-org/graphcommerce/commit/e1fab2f6d8f57d0488d8a915596d5c19cb7718e6) - Better detection what the package roots are when a custom node_modules directory is used ([@paales](https://github.com/paales))
|
|
760
|
-
|
|
761
|
-
- [#1959](https://github.com/graphcommerce-org/graphcommerce/pull/1959) [`d0809b132`](https://github.com/graphcommerce-org/graphcommerce/commit/d0809b132a0e4cbdfeb86164f6c16a89ebecd987) - Added support for default values in the Config.graphqls files for the documentation ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
762
|
-
|
|
763
|
-
## 6.2.0-canary.98
|
|
764
|
-
|
|
765
|
-
## 6.2.0-canary.97
|
|
766
|
-
|
|
767
|
-
## 6.2.0-canary.96
|
|
768
|
-
|
|
769
|
-
## 6.2.0-canary.95
|
|
770
|
-
|
|
771
|
-
### Patch Changes
|
|
772
|
-
|
|
773
|
-
- [#2030](https://github.com/graphcommerce-org/graphcommerce/pull/2030) [`15939ca62`](https://github.com/graphcommerce-org/graphcommerce/commit/15939ca62021c28f7d60382c65927aed15c1ac84) - next-pwa dependency change and next-image caching optimalization ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
774
|
-
|
|
775
|
-
## 6.2.0-canary.94
|
|
776
|
-
|
|
777
|
-
## 6.2.0-canary.93
|
|
778
|
-
|
|
779
|
-
### Patch Changes
|
|
780
|
-
|
|
781
|
-
- [#2038](https://github.com/graphcommerce-org/graphcommerce/pull/2038) [`9b872e6f1`](https://github.com/graphcommerce-org/graphcommerce/commit/9b872e6f11a83cd13f8bbe00ad911c410bcd5b65) - Updated dependencies ([@paales](https://github.com/paales))
|
|
782
|
-
|
|
783
|
-
## 6.2.0-canary.92
|
|
784
|
-
|
|
785
|
-
## 6.2.0-canary.91
|
|
786
|
-
|
|
787
|
-
## 6.2.0-canary.90
|
|
788
|
-
|
|
789
|
-
### Patch Changes
|
|
790
|
-
|
|
791
|
-
- [#2034](https://github.com/graphcommerce-org/graphcommerce/pull/2034) [`6fca47484`](https://github.com/graphcommerce-org/graphcommerce/commit/6fca474847fe52f004a6ac0abbd88492512b46ad) - Pre-resolve the customFetch in mesh config ([@paales](https://github.com/paales))
|
|
792
|
-
|
|
793
|
-
## 6.2.0-canary.89
|
|
794
|
-
|
|
795
|
-
## 6.2.0-canary.88
|
|
796
|
-
|
|
797
|
-
## 6.2.0-canary.87
|
|
798
|
-
|
|
799
|
-
### Patch Changes
|
|
800
|
-
|
|
801
|
-
- [#2022](https://github.com/graphcommerce-org/graphcommerce/pull/2022) [`0495db84d`](https://github.com/graphcommerce-org/graphcommerce/commit/0495db84d1d450750bd74b94a379b4e7764a5753) - add documentation for the GraphCommerceStorefrontConfig gallery option. ([@carlocarels90](https://github.com/carlocarels90))
|
|
802
|
-
|
|
803
|
-
## 6.2.0-canary.86
|
|
804
|
-
|
|
805
|
-
## 6.2.0-canary.85
|
|
806
|
-
|
|
807
|
-
## 6.2.0-canary.84
|
|
808
|
-
|
|
809
|
-
### Patch Changes
|
|
810
|
-
|
|
811
|
-
- [#2024](https://github.com/graphcommerce-org/graphcommerce/pull/2024) [`1ae747e85`](https://github.com/graphcommerce-org/graphcommerce/commit/1ae747e85faab75168718cb5ea930111d3223cc4) - Hot reloading didn't work because of a broken lingui version ([@paales](https://github.com/paales))
|
|
812
|
-
|
|
813
|
-
## 6.2.0-canary.83
|
|
814
|
-
|
|
815
|
-
## 6.2.0-canary.82
|
|
816
|
-
|
|
817
|
-
## 6.2.0-canary.81
|
|
818
|
-
|
|
819
|
-
## 6.2.0-canary.80
|
|
820
|
-
|
|
821
|
-
## 6.2.0-canary.79
|
|
822
|
-
|
|
823
|
-
## 6.2.0-canary.78
|
|
824
|
-
|
|
825
|
-
### Minor Changes
|
|
826
|
-
|
|
827
|
-
- [#1988](https://github.com/graphcommerce-org/graphcommerce/pull/1988) [`af8e0d176`](https://github.com/graphcommerce-org/graphcommerce/commit/af8e0d176af8197a0c13b9a29b438cb54cc29ce4) - Multi website with multiple duplicates locales support. Use `en-us-website1`, `en-us-website2` as the locale declaration. ([@hnsr](https://github.com/hnsr))
|
|
828
|
-
|
|
829
|
-
## 6.2.0-canary.77
|
|
830
|
-
|
|
831
|
-
## 6.2.0-canary.76
|
|
832
|
-
|
|
833
|
-
## 6.2.0-canary.75
|
|
834
|
-
|
|
835
|
-
## 6.2.0-canary.74
|
|
836
|
-
|
|
837
|
-
## 6.2.0-canary.73
|
|
838
|
-
|
|
839
|
-
## 6.2.0-canary.72
|
|
840
|
-
|
|
841
|
-
## 6.2.0-canary.71
|
|
842
|
-
|
|
843
|
-
## 6.2.0-canary.70
|
|
844
|
-
|
|
845
|
-
## 6.2.0-canary.69
|
|
846
|
-
|
|
847
|
-
## 6.2.0-canary.68
|
|
848
|
-
|
|
849
|
-
## 6.2.0-canary.67
|
|
850
|
-
|
|
851
|
-
### Patch Changes
|
|
852
|
-
|
|
853
|
-
- [#2002](https://github.com/graphcommerce-org/graphcommerce/pull/2002) [`1234bb61f`](https://github.com/graphcommerce-org/graphcommerce/commit/1234bb61f8332da8a9e4dd7262b0c70beaed8c91) - Updated next and apollo/client ([@paales](https://github.com/paales))
|
|
854
|
-
|
|
855
|
-
## 6.2.0-canary.66
|
|
856
|
-
|
|
857
|
-
## 6.2.0-canary.65
|
|
858
|
-
|
|
859
|
-
## 6.2.0-canary.64
|
|
860
|
-
|
|
861
|
-
## 6.2.0-canary.63
|
|
862
|
-
|
|
863
|
-
## 6.2.0-canary.62
|
|
864
|
-
|
|
865
|
-
## 6.2.0-canary.61
|
|
866
|
-
|
|
867
|
-
## 6.2.0-canary.60
|
|
868
|
-
|
|
869
|
-
## 6.2.0-canary.59
|
|
870
|
-
|
|
871
|
-
## 6.2.0-canary.58
|
|
872
|
-
|
|
873
|
-
## 6.2.0-canary.57
|
|
874
|
-
|
|
875
|
-
### Patch Changes
|
|
876
|
-
|
|
877
|
-
- [#1982](https://github.com/graphcommerce-org/graphcommerce/pull/1982) [`e1fab2f6d`](https://github.com/graphcommerce-org/graphcommerce/commit/e1fab2f6d8f57d0488d8a915596d5c19cb7718e6) - Better detection what the package roots are when a custom node_modules directory is used ([@paales](https://github.com/paales))
|
|
878
|
-
|
|
879
|
-
## 6.2.0-canary.56
|
|
880
|
-
|
|
881
|
-
## 6.2.0-canary.55
|
|
882
|
-
|
|
883
|
-
## 6.2.0-canary.54
|
|
884
|
-
|
|
885
|
-
## 6.2.0-canary.53
|
|
886
|
-
|
|
887
|
-
## 6.2.0-canary.52
|
|
888
|
-
|
|
889
|
-
## 6.2.0-canary.51
|
|
890
|
-
|
|
891
|
-
## 6.2.0-canary.50
|
|
892
|
-
|
|
893
|
-
### Minor Changes
|
|
894
|
-
|
|
895
|
-
- [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
|
|
896
|
-
|
|
897
|
-
## 6.2.0-canary.49
|
|
898
|
-
|
|
899
|
-
### Patch Changes
|
|
900
|
-
|
|
901
|
-
- [#1959](https://github.com/graphcommerce-org/graphcommerce/pull/1959) [`d0809b132`](https://github.com/graphcommerce-org/graphcommerce/commit/d0809b132a0e4cbdfeb86164f6c16a89ebecd987) - Added support for default values in the Config.graphqls files for the documentation ([@JoshuaS98](https://github.com/JoshuaS98))
|
|
902
|
-
|
|
903
|
-
## 6.2.0-canary.48
|
|
904
|
-
|
|
905
|
-
## 6.2.0-canary.47
|
|
906
|
-
|
|
907
|
-
## 6.2.0-canary.46
|
|
908
|
-
|
|
909
|
-
## 6.2.0-canary.45
|
|
910
|
-
|
|
911
|
-
## 6.2.0-canary.44
|
|
912
|
-
|
|
913
|
-
## 6.2.0-canary.43
|
|
914
|
-
|
|
915
|
-
## 6.2.0-canary.42
|
|
916
|
-
|
|
917
|
-
## 6.2.0-canary.41
|
|
918
|
-
|
|
919
|
-
### Patch Changes
|
|
920
|
-
|
|
921
|
-
- [#1960](https://github.com/graphcommerce-org/graphcommerce/pull/1960) [`86e14569b`](https://github.com/graphcommerce-org/graphcommerce/commit/86e14569b1f68f73be7f93b614e36b382c5debff) - Updated to the latest release of GraphQL codegen and solve compatibility issues with our own generator ([@paales](https://github.com/paales))
|
|
922
|
-
|
|
923
|
-
## 6.2.0-canary.40
|
|
924
|
-
|
|
925
|
-
## 6.2.0-canary.39
|
|
926
|
-
|
|
927
|
-
## 6.2.0-canary.38
|
|
928
|
-
|
|
929
|
-
## 6.2.0-canary.37
|
|
930
|
-
|
|
931
|
-
## 6.2.0-canary.36
|
|
932
|
-
|
|
933
|
-
## 6.2.0-canary.35
|
|
934
|
-
|
|
935
|
-
## 6.2.0-canary.34
|
|
936
|
-
|
|
937
|
-
## 6.2.0-canary.33
|
|
938
|
-
|
|
939
|
-
## 6.2.0-canary.32
|
|
940
|
-
|
|
941
|
-
## 6.2.0-canary.31
|
|
942
|
-
|
|
943
|
-
## 6.2.0-canary.30
|
|
944
|
-
|
|
945
|
-
## 6.2.0-canary.29
|
|
946
|
-
|
|
947
|
-
## 6.2.0-canary.28
|
|
948
|
-
|
|
949
|
-
## 6.2.0-canary.27
|
|
950
|
-
|
|
951
|
-
## 6.2.0-canary.26
|
|
952
|
-
|
|
953
|
-
## 6.2.0-canary.25
|
|
954
|
-
|
|
955
|
-
## 6.2.0-canary.24
|
|
956
|
-
|
|
957
|
-
## 6.2.0-canary.23
|
|
958
|
-
|
|
959
|
-
## 6.2.0-canary.22
|
|
960
|
-
|
|
961
|
-
## 6.2.0-canary.21
|
|
962
|
-
|
|
963
|
-
## 6.2.0-canary.20
|
|
964
|
-
|
|
965
|
-
### Patch Changes
|
|
966
|
-
|
|
967
|
-
- [#1928](https://github.com/graphcommerce-org/graphcommerce/pull/1928) [`09d6a7abd`](https://github.com/graphcommerce-org/graphcommerce/commit/09d6a7abdf44c04a37f59432e9fc0c0722e6df76) - Added number to config value formatter, so Graphcommerce config accepts number values. ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
968
|
-
|
|
969
|
-
## 6.2.0-canary.19
|
|
970
|
-
|
|
971
|
-
## 6.2.0-canary.18
|
|
972
|
-
|
|
973
|
-
## 6.2.0-canary.17
|
|
974
|
-
|
|
975
|
-
## 6.2.0-canary.16
|
|
976
|
-
|
|
977
|
-
## 6.2.0-canary.15
|
|
978
|
-
|
|
979
|
-
## 6.2.0-canary.14
|
|
980
|
-
|
|
981
|
-
### Patch Changes
|
|
982
|
-
|
|
983
|
-
- [#1925](https://github.com/graphcommerce-org/graphcommerce/pull/1925) [`2b595bf13`](https://github.com/graphcommerce-org/graphcommerce/commit/2b595bf13f3725a77661586cce021ce8d4791558) - Fixed bug for type error in `demoConfig.ts`. All storefront config values in the demo config are now optional. ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
984
|
-
|
|
985
|
-
## 6.2.0-canary.13
|
|
986
|
-
|
|
987
|
-
### Patch Changes
|
|
988
|
-
|
|
989
|
-
- [#1924](https://github.com/graphcommerce-org/graphcommerce/pull/1924) [`04581f619`](https://github.com/graphcommerce-org/graphcommerce/commit/04581f619c609f2f6ca5268ee5effb6a1db3f0eb) - Use the latest branch from graphql-mesh so that all versions are in sync ([@paales](https://github.com/paales))
|
|
990
|
-
|
|
991
|
-
## 6.2.0-canary.12
|
|
992
|
-
|
|
993
|
-
## 6.2.0-canary.11
|
|
994
|
-
|
|
995
|
-
## 6.2.0-canary.10
|
|
996
|
-
|
|
997
|
-
## 6.2.0-canary.9
|
|
998
|
-
|
|
999
|
-
## 6.2.0-canary.8
|
|
1000
|
-
|
|
1001
|
-
## 6.2.0-canary.7
|
|
1002
|
-
|
|
1003
|
-
## 6.2.0-canary.6
|
|
1004
|
-
|
|
1005
|
-
### Minor Changes
|
|
1006
|
-
|
|
1007
|
-
- [#1915](https://github.com/graphcommerce-org/graphcommerce/pull/1915) [`f4a8c3881`](https://github.com/graphcommerce-org/graphcommerce/commit/f4a8c388183e17c52e7f66536c5448749f494d7f) - Added the ability to create functional plugins for usage in non-component areas and hooks ([@paales](https://github.com/paales))
|
|
1008
|
-
|
|
1009
|
-
## 6.1.1-canary.5
|
|
1010
|
-
|
|
1011
|
-
## 6.1.1-canary.4
|
|
1012
|
-
|
|
1013
|
-
## 6.1.1-canary.3
|
|
1014
|
-
|
|
1015
|
-
## 6.1.1-canary.2
|
|
1016
|
-
|
|
1017
|
-
## 6.1.1-canary.1
|
|
1018
|
-
|
|
1019
|
-
## 6.1.1-canary.0
|
|
1020
|
-
|
|
1021
|
-
## 6.1.0
|
|
1022
|
-
|
|
1023
|
-
### Minor Changes
|
|
1024
|
-
|
|
1025
|
-
- [#1874](https://github.com/graphcommerce-org/graphcommerce/pull/1874) [`2a60491c2`](https://github.com/graphcommerce-org/graphcommerce/commit/2a60491c23a9cd0bfd79296d29f6c9ee31faada5) - Big Magento performance improvements; Magento couldn't respond with any cached Varnish responses because there was an empty authorization header sent with each request. ([@paales](https://github.com/paales))
|
|
1026
|
-
|
|
1027
|
-
### Patch Changes
|
|
1028
|
-
|
|
1029
|
-
- [#1876](https://github.com/graphcommerce-org/graphcommerce/pull/1876) [`8dffc59c0`](https://github.com/graphcommerce-org/graphcommerce/commit/8dffc59c04bf6f2a6000b73db13592e10afd936c) - Added an configuration `wishlistShowFeedbackMessage` to show a feedback message when a product is added to the wishlist. ([@paales](https://github.com/paales))
|
|
1030
|
-
|
|
1031
|
-
- [#1872](https://github.com/graphcommerce-org/graphcommerce/pull/1872) [`05522796f`](https://github.com/graphcommerce-org/graphcommerce/commit/05522796f3f132db50e7b4c26089740a12a9153a) - Fix issue where a deeper plugin from the root of the project doesn't have a correct relative path ([@paales](https://github.com/paales))
|
|
1032
|
-
|
|
1033
|
-
## 6.0.2-canary.22
|
|
1034
|
-
|
|
1035
|
-
## 6.0.2-canary.21
|
|
1036
|
-
|
|
1037
|
-
## 6.0.2-canary.20
|
|
1038
|
-
|
|
1039
|
-
## 6.0.2-canary.19
|
|
1040
|
-
|
|
1041
|
-
## 6.0.2-canary.18
|
|
1042
|
-
|
|
1043
|
-
## 6.0.2-canary.17
|
|
1044
|
-
|
|
1045
|
-
## 6.0.2-canary.16
|
|
1046
|
-
|
|
1047
|
-
## 6.0.2-canary.15
|
|
1048
|
-
|
|
1049
|
-
## 6.0.2-canary.14
|
|
1050
|
-
|
|
1051
|
-
## 6.0.2-canary.13
|
|
1052
|
-
|
|
1053
|
-
## 6.0.2-canary.12
|
|
1054
|
-
|
|
1055
|
-
## 6.0.2-canary.11
|
|
1056
|
-
|
|
1057
|
-
## 6.0.2-canary.10
|
|
1058
|
-
|
|
1059
|
-
## 6.0.2-canary.9
|
|
1060
|
-
|
|
1061
|
-
## 6.0.2-canary.8
|
|
1062
|
-
|
|
1063
|
-
## 6.0.2-canary.7
|
|
1064
|
-
|
|
1065
|
-
### Patch Changes
|
|
1066
|
-
|
|
1067
|
-
- [#1876](https://github.com/graphcommerce-org/graphcommerce/pull/1876) [`8dffc59c0`](https://github.com/graphcommerce-org/graphcommerce/commit/8dffc59c04bf6f2a6000b73db13592e10afd936c) - Added an configuration to the wishlist: `wishlistShowFeedbackMessage` to show a feedback message when a product is added to the wishlist. ([@paales](https://github.com/paales))
|
|
1068
|
-
|
|
1069
|
-
## 6.0.2-canary.6
|
|
1070
|
-
|
|
1071
|
-
## 6.0.2-canary.5
|
|
1072
|
-
|
|
1073
|
-
## 6.0.2-canary.4
|
|
1074
|
-
|
|
1075
|
-
### Patch Changes
|
|
1076
|
-
|
|
1077
|
-
- [#1874](https://github.com/graphcommerce-org/graphcommerce/pull/1874) [`2a60491c2`](https://github.com/graphcommerce-org/graphcommerce/commit/2a60491c23a9cd0bfd79296d29f6c9ee31faada5) - Magento couldn't respond with any cached Varnish responses because there was an empty authorization header sent with each request. ([@paales](https://github.com/paales))
|
|
1078
|
-
|
|
1079
|
-
## 6.0.2-canary.3
|
|
1080
|
-
|
|
1081
|
-
### Patch Changes
|
|
1082
|
-
|
|
1083
|
-
- [#1872](https://github.com/graphcommerce-org/graphcommerce/pull/1872) [`05522796f`](https://github.com/graphcommerce-org/graphcommerce/commit/05522796f3f132db50e7b4c26089740a12a9153a) - Fix issue where a deeper plugin from the root of the project doesn't have a correct relative path ([@paales](https://github.com/paales))
|
|
1084
|
-
|
|
1085
|
-
## 6.0.2-canary.2
|
|
1086
|
-
|
|
1087
|
-
## 6.0.2-canary.1
|
|
1088
|
-
|
|
1089
|
-
## 6.0.2-canary.0
|
|
1090
|
-
|
|
1091
|
-
## 6.0.1
|
|
1092
|
-
|
|
1093
|
-
### Patch Changes
|
|
1094
|
-
|
|
1095
|
-
- [#1863](https://github.com/graphcommerce-org/graphcommerce/pull/1863) [`ce6c990b2`](https://github.com/graphcommerce-org/graphcommerce/commit/ce6c990b25286bed393470a818f8daab2bb51457) - Solve issue where intercepters coudn’t be properly deleted because it was already deleted, fixe ([@paales](https://github.com/paales))
|
|
1096
|
-
|
|
1097
|
-
## 6.0.1-canary.7
|
|
1098
|
-
|
|
1099
|
-
## 6.0.1-canary.6
|
|
1100
|
-
|
|
1101
|
-
## 6.0.1-canary.5
|
|
1102
|
-
|
|
1103
|
-
### Patch Changes
|
|
1104
|
-
|
|
1105
|
-
- [#1863](https://github.com/graphcommerce-org/graphcommerce/pull/1863) [`ce6c990b2`](https://github.com/graphcommerce-org/graphcommerce/commit/ce6c990b25286bed393470a818f8daab2bb51457) - Solve issue where intercepters coudn’t be properly deleted because it was already deleted, fixe ([@paales](https://github.com/paales))
|
|
1106
|
-
|
|
1107
|
-
## 6.0.1-canary.4
|
|
1108
|
-
|
|
1109
|
-
## 6.0.1-canary.3
|
|
1110
|
-
|
|
1111
|
-
## 6.0.1-canary.2
|
|
1112
|
-
|
|
1113
|
-
## 6.0.1-canary.1
|
|
1114
|
-
|
|
1115
|
-
## 6.0.1-canary.0
|
|
1116
|
-
|
|
1117
|
-
## 6.0.0
|
|
1118
|
-
|
|
1119
|
-
### Major Changes
|
|
1120
|
-
|
|
1121
|
-
- [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
|
|
1122
|
-
|
|
1123
|
-
- NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
|
|
1124
|
-
- NextLink automatically adds `target="_blank"` when the href is external.
|
|
1125
|
-
- NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
|
|
1126
|
-
|
|
1127
|
-
- [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`b76679204`](https://github.com/graphcommerce-org/graphcommerce/commit/b766792049e1e6ebe45671c0b36e78746ef159e2) - Created a completely new [GraphCommerce config system](https://www.graphcommerce.org/docs/framework/config) to allow for greater confiugration options and rely less on a .env file to configuration.
|
|
1128
|
-
|
|
1129
|
-
- GraphCommerce can be configured in the graphcommerce.config.js
|
|
1130
|
-
- The configuration is automatically validated on startup.
|
|
1131
|
-
- All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
|
|
1132
|
-
|
|
1133
|
-
### Minor Changes
|
|
1134
|
-
|
|
1135
|
-
- [#1828](https://github.com/graphcommerce-org/graphcommerce/pull/1828) [`3df85faf1`](https://github.com/graphcommerce-org/graphcommerce/commit/3df85faf189b95e2c7d9c3fc756474fcafb1c8b4) - Added a new `productRoute` configuration to create freedom in the actual product route used (default: /p/). Simplified redirects from legacy product routes to new routes by creating redirects. ([@paales](https://github.com/paales))
|
|
1136
|
-
|
|
1137
|
-
- [#1810](https://github.com/graphcommerce-org/graphcommerce/pull/1810) [`543c5d5b2`](https://github.com/graphcommerce-org/graphcommerce/commit/543c5d5b2b6f29c1f6a0a405524d4cc86f399596) - Added `limitSsg: Boolean` configuration option to limit the getStaticPaths generation during build. This is useful to make quick deployments on preview environments. ([@paales](https://github.com/paales))
|
|
1138
|
-
|
|
1139
|
-
- [#1833](https://github.com/graphcommerce-org/graphcommerce/pull/1833) [`7dc3e036c`](https://github.com/graphcommerce-org/graphcommerce/commit/7dc3e036c776224aa184e03cc957dcb8d3faa55c) - Added ability to have local plugins and added example plugin in the plugins directory ([@paales](https://github.com/paales))
|
|
1140
|
-
|
|
1141
|
-
### Patch Changes
|
|
1142
|
-
|
|
1143
|
-
- [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`fff2420c6`](https://github.com/graphcommerce-org/graphcommerce/commit/fff2420c62472edfd2c3d6eba1012dbf48efa3db) - Added `debug.webpackCircularDependencyPlugin`, `debug.webpackDuplicatesPlugin` and `debug.pluginStatus` to be able to run some debugging commands. ([@paales](https://github.com/paales))
|
|
1144
|
-
|
|
1145
|
-
- [#1844](https://github.com/graphcommerce-org/graphcommerce/pull/1844) [`929cffafb`](https://github.com/graphcommerce-org/graphcommerce/commit/929cffafbc8b2e57433b6448c95234fb057880b1) - Plugins now are correctly sorted and local plugins will always be closest to the original component. ([@paales](https://github.com/paales))
|
|
1146
|
-
|
|
1147
|
-
- [#1831](https://github.com/graphcommerce-org/graphcommerce/pull/1831) [`4d4a3464c`](https://github.com/graphcommerce-org/graphcommerce/commit/4d4a3464c807e34a36952d01e63a5c556176b0b6) - Removed of next-transpile-modules and use transpilePackages option of nextjs. ([@paales](https://github.com/paales))
|
|
1148
|
-
|
|
1149
|
-
## 6.0.0-canary.54
|
|
1150
|
-
|
|
1151
|
-
## 6.0.0-canary.53
|
|
1152
|
-
|
|
1153
|
-
## 6.0.0-canary.52
|
|
1154
|
-
|
|
1155
|
-
## 6.0.0-canary.51
|
|
1156
|
-
|
|
1157
|
-
## 6.0.0-canary.50
|
|
1158
|
-
|
|
1159
|
-
## 6.0.0-canary.49
|
|
1160
|
-
|
|
1161
|
-
## 6.0.0-canary.48
|
|
1162
|
-
|
|
1163
|
-
## 6.0.0-canary.47
|
|
1164
|
-
|
|
1165
|
-
## 6.0.0-canary.46
|
|
1166
|
-
|
|
1167
|
-
### Patch Changes
|
|
1168
|
-
|
|
1169
|
-
- [#1844](https://github.com/graphcommerce-org/graphcommerce/pull/1844) [`929cffafb`](https://github.com/graphcommerce-org/graphcommerce/commit/929cffafbc8b2e57433b6448c95234fb057880b1) - Plugins were incorrectly sorted and local plugins didn't get preference ([@paales](https://github.com/paales))
|
|
1170
|
-
|
|
1171
|
-
## 6.0.0-canary.45
|
|
1172
|
-
|
|
1173
|
-
## 6.0.0-canary.44
|
|
1174
|
-
|
|
1175
|
-
### Patch Changes
|
|
1176
|
-
|
|
1177
|
-
- [#1842](https://github.com/graphcommerce-org/graphcommerce/pull/1842) [`7b67d84bd`](https://github.com/graphcommerce-org/graphcommerce/commit/7b67d84bd269c3fc91afbd69f6683c5d12808d36) - Renamed i18n to storefront in configuration ([@paales](https://github.com/paales))
|
|
1178
|
-
|
|
1179
|
-
## 6.0.0-canary.43
|
|
1180
|
-
|
|
1181
|
-
## 6.0.0-canary.42
|
|
1182
|
-
|
|
1183
|
-
## 6.0.0-canary.41
|
|
1184
|
-
|
|
1185
|
-
### Patch Changes
|
|
1186
|
-
|
|
1187
|
-
- [#1839](https://github.com/graphcommerce-org/graphcommerce/pull/1839) [`e4a3f5e98`](https://github.com/graphcommerce-org/graphcommerce/commit/e4a3f5e986287b78c3e048d8a33611c61070b79e) - Make sure the configuration is validated before executing ([@paales](https://github.com/paales))
|
|
1188
|
-
|
|
1189
|
-
- [#1839](https://github.com/graphcommerce-org/graphcommerce/pull/1839) [`8eb310409`](https://github.com/graphcommerce-org/graphcommerce/commit/8eb3104098749a6b08d2affb6cdc8a7e6698866f) - Use graphCommerce._ instead of import.meta.graphCommerce._ in .meshrc.yml ([@paales](https://github.com/paales))
|
|
1190
|
-
|
|
1191
|
-
## 6.0.0-canary.40
|
|
1192
|
-
|
|
1193
|
-
## 6.0.0-canary.39
|
|
1194
|
-
|
|
1195
|
-
## 6.0.0-canary.38
|
|
1196
|
-
|
|
1197
|
-
## 6.0.0-canary.37
|
|
1198
|
-
|
|
1199
|
-
## 6.0.0-canary.36
|
|
1200
|
-
|
|
1201
|
-
### Minor Changes
|
|
1202
|
-
|
|
1203
|
-
- [#1833](https://github.com/graphcommerce-org/graphcommerce/pull/1833) [`7dc3e036c`](https://github.com/graphcommerce-org/graphcommerce/commit/7dc3e036c776224aa184e03cc957dcb8d3faa55c) - Added ability to have local plugins and added example plugin in the plugins directory ([@paales](https://github.com/paales))
|
|
1204
|
-
|
|
1205
|
-
## 6.0.0-canary.35
|
|
1206
|
-
|
|
1207
|
-
## 6.0.0-canary.34
|
|
1208
|
-
|
|
1209
|
-
## 6.0.0-canary.33
|
|
1210
|
-
|
|
1211
|
-
### Patch Changes
|
|
1212
|
-
|
|
1213
|
-
- [#1831](https://github.com/graphcommerce-org/graphcommerce/pull/1831) [`4d4a3464c`](https://github.com/graphcommerce-org/graphcommerce/commit/4d4a3464c807e34a36952d01e63a5c556176b0b6) - Make sure packages are transpiled in node_modules with nextjs’ transpilePackages option ([@paales](https://github.com/paales))
|
|
1214
|
-
|
|
1215
|
-
## 6.0.0-canary.32
|
|
1216
|
-
|
|
1217
|
-
## 6.0.0-canary.31
|
|
1218
|
-
|
|
1219
|
-
## 6.0.0-canary.30
|
|
1220
|
-
|
|
1221
|
-
## 6.0.0-canary.29
|
|
1222
|
-
|
|
1223
|
-
### Minor Changes
|
|
1224
|
-
|
|
1225
|
-
- [#1828](https://github.com/graphcommerce-org/graphcommerce/pull/1828) [`3df85faf1`](https://github.com/graphcommerce-org/graphcommerce/commit/3df85faf189b95e2c7d9c3fc756474fcafb1c8b4) - Added new `productRoute` configuration to create freedom in the actual product route used (default: /p/). Simplified redirects from legacy product routes to new routes by creating redirects. ([@paales](https://github.com/paales))
|
|
1226
|
-
|
|
1227
|
-
## 6.0.0-canary.28
|
|
1228
|
-
|
|
1229
|
-
## 6.0.0-canary.27
|
|
1230
|
-
|
|
1231
|
-
## 6.0.0-canary.26
|
|
1232
|
-
|
|
1233
|
-
## 6.0.0-canary.25
|
|
1234
|
-
|
|
1235
|
-
## 6.0.0-canary.24
|
|
1236
|
-
|
|
1237
|
-
## 6.0.0-canary.23
|
|
1238
|
-
|
|
1239
|
-
### Minor Changes
|
|
1240
|
-
|
|
1241
|
-
- [#1810](https://github.com/graphcommerce-org/graphcommerce/pull/1810) [`543c5d5b2`](https://github.com/graphcommerce-org/graphcommerce/commit/543c5d5b2b6f29c1f6a0a405524d4cc86f399596) - Added `limitSsg: Boolean` configuration option to limit the getStaticPaths generation during build. This is useful to make quick deployments on preview environments. ([@paales](https://github.com/paales))
|
|
1242
|
-
|
|
1243
|
-
## 6.0.0-canary.22
|
|
1244
|
-
|
|
1245
|
-
## 6.0.0-canary.21
|
|
1246
|
-
|
|
1247
|
-
## 6.0.0-canary.20
|
|
1248
|
-
|
|
1249
|
-
### Minor Changes
|
|
1250
|
-
|
|
1251
|
-
- [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`b76679204`](https://github.com/graphcommerce-org/graphcommerce/commit/b766792049e1e6ebe45671c0b36e78746ef159e2) - Added a new graphcommerce.config.ts which can be accessed with import.mete.graphCommerce.myConfig ([@paales](https://github.com/paales))
|
|
1252
|
-
|
|
1253
|
-
### Patch Changes
|
|
1254
|
-
|
|
1255
|
-
- [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`fff2420c6`](https://github.com/graphcommerce-org/graphcommerce/commit/fff2420c62472edfd2c3d6eba1012dbf48efa3db) - Added configuration for webpackDuplicatesPlugin ([@paales](https://github.com/paales))
|
|
1256
|
-
|
|
1257
|
-
## 5.2.0-canary.19
|
|
1258
|
-
|
|
1259
|
-
## 5.2.0-canary.18
|
|
1260
|
-
|
|
1261
|
-
## 5.2.0-canary.17
|
|
1262
|
-
|
|
1263
|
-
## 5.2.0-canary.16
|
|
1264
|
-
|
|
1265
|
-
## 5.2.0-canary.15
|
|
1266
|
-
|
|
1267
|
-
## 5.2.0-canary.14
|
|
1268
|
-
|
|
1269
|
-
## 5.2.0-canary.13
|
|
1270
|
-
|
|
1271
|
-
## 5.2.0-canary.12
|
|
1272
|
-
|
|
1273
|
-
## 5.2.0-canary.11
|
|
1274
|
-
|
|
1275
|
-
## 5.2.0-canary.10
|
|
1276
|
-
|
|
1277
|
-
## 5.2.0-canary.9
|
|
1278
|
-
|
|
1279
|
-
## 5.2.0-canary.8
|
|
1280
|
-
|
|
1281
|
-
## 5.2.0-canary.7
|
|
1282
|
-
|
|
1283
|
-
## 5.2.0-canary.6
|
|
1284
|
-
|
|
1285
|
-
## 5.2.0-canary.5
|
|
1286
|
-
|
|
1287
|
-
## 5.2.0-canary.4
|
|
1288
|
-
|
|
1289
|
-
## 5.2.0-canary.3
|
|
1290
|
-
|
|
1291
|
-
### Minor Changes
|
|
1292
|
-
|
|
1293
|
-
- [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
|
|
1294
|
-
|
|
1295
|
-
- NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
|
|
1296
|
-
- NextLink automatically adds `target="_blank"` when the href is external.
|
|
1297
|
-
- NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`.
|
|
1298
|
-
|
|
1299
|
-
Upgrade instructions: https://www.graphcommerce.org/docs/framework/links#upgrading-from-nextjs-12 ([@paales](https://github.com/paales))
|
|
1300
|
-
|
|
1301
|
-
## 5.2.0-canary.2
|
|
1302
|
-
|
|
1303
|
-
## 5.2.0-canary.1
|
|
1304
|
-
|
|
1305
|
-
## 5.2.0-canary.0
|
|
1306
|
-
|
|
1307
|
-
## 5.1.1
|
|
1308
|
-
|
|
1309
|
-
## 5.1.1-canary.1
|
|
1310
|
-
|
|
1311
|
-
## 5.1.1-canary.0
|
|
1312
|
-
|
|
1313
|
-
### Patch Changes
|
|
1314
|
-
|
|
1315
|
-
- [#1762](https://github.com/graphcommerce-org/graphcommerce/pull/1762) [`0aab0bcc2`](https://github.com/graphcommerce-org/graphcommerce/commit/0aab0bcc2048793f43a76bf981ca18d9f3ccaf16) - yarn can not completele successfully when runnin in a monorepo setup if codegen hasn’t ran ([@paales](https://github.com/paales))
|
|
1316
|
-
|
|
1317
|
-
## 5.1.0
|
|
1318
|
-
|
|
1319
|
-
### Patch Changes
|
|
1320
|
-
|
|
1321
|
-
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`225a69dc9`](https://github.com/graphcommerce-org/graphcommerce/commit/225a69dc9eb76d85adee1c6ea8c4eff16a5fed63) - When a plugin doesn't target a file anymore, it will now cleanup the existing interceptor file. ([@paales](https://github.com/paales))
|
|
1322
|
-
|
|
1323
|
-
- [#1760](https://github.com/graphcommerce-org/graphcommerce/pull/1760) [`8badc8550`](https://github.com/graphcommerce-org/graphcommerce/commit/8badc8550c402ac7b80c8d3238d313550c28a055) - Updated dependencies ([@paales](https://github.com/paales))
|
|
1324
|
-
|
|
1325
|
-
- [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
|
|
1326
|
-
|
|
1327
|
-
- Updated the @mui/material package
|
|
1328
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
1329
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1330
|
-
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
1331
|
-
|
|
1332
|
-
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`4759c1781`](https://github.com/graphcommerce-org/graphcommerce/commit/4759c1781ebe94c18f557e2ba189000580a05692) - Interceptors are regenerated when a plugin contains a faulty configuration (happens a lot when building a plugin). ([@paales](https://github.com/paales))
|
|
1333
|
-
|
|
1334
|
-
- [#1745](https://github.com/graphcommerce-org/graphcommerce/pull/1745) [`2a859970d`](https://github.com/graphcommerce-org/graphcommerce/commit/2a859970de34ad768a0ba54f50d53ad17823cc15) - Make sure the interceptors aren't cleaned up constantly ([@github-actions](https://github.com/apps/github-actions))
|
|
1335
|
-
|
|
1336
|
-
## 5.1.0-canary.11
|
|
1337
|
-
|
|
1338
|
-
## 5.1.0-canary.10
|
|
1339
|
-
|
|
1340
|
-
### Patch Changes
|
|
1341
|
-
|
|
1342
|
-
- [#1760](https://github.com/graphcommerce-org/graphcommerce/pull/1760) [`8badc8550`](https://github.com/graphcommerce-org/graphcommerce/commit/8badc8550c402ac7b80c8d3238d313550c28a055) - Updated dependencies ([@paales](https://github.com/paales))
|
|
1343
|
-
|
|
1344
|
-
## 5.1.0-canary.9
|
|
1345
|
-
|
|
1346
|
-
## 5.1.0-canary.8
|
|
1347
|
-
|
|
1348
|
-
## 5.1.0-canary.7
|
|
1349
|
-
|
|
1350
|
-
## 5.1.0-canary.6
|
|
1351
|
-
|
|
1352
|
-
## 5.1.0-canary.5
|
|
1353
|
-
|
|
1354
|
-
### Patch Changes
|
|
1355
|
-
|
|
1356
|
-
- [`2a859970d`](https://github.com/graphcommerce-org/graphcommerce/commit/2a859970de34ad768a0ba54f50d53ad17823cc15) - Make sure the interceptors aren't cleaned up constantly ([@paales](https://github.com/paales))
|
|
1357
|
-
|
|
1358
|
-
## 5.1.0-canary.4
|
|
1359
|
-
|
|
1360
|
-
### Patch Changes
|
|
1361
|
-
|
|
1362
|
-
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`225a69dc9`](https://github.com/graphcommerce-org/graphcommerce/commit/225a69dc9eb76d85adee1c6ea8c4eff16a5fed63) - When a plugin doesn't target a file anymore, it will now cleanup the existing interceptor file. ([@paales](https://github.com/paales))
|
|
1363
|
-
|
|
1364
|
-
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`4759c1781`](https://github.com/graphcommerce-org/graphcommerce/commit/4759c1781ebe94c18f557e2ba189000580a05692) - Interceptors are regenerated when a plugin contains a faulty configuration (happens a lot when building a plugin). ([@paales](https://github.com/paales))
|
|
1365
|
-
|
|
1366
|
-
## 5.1.0-canary.3
|
|
1367
|
-
|
|
1368
|
-
### Patch Changes
|
|
1369
|
-
|
|
1370
|
-
- [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
|
|
1371
|
-
|
|
1372
|
-
- Updated the @mui/material package
|
|
1373
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
1374
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1375
|
-
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
1376
|
-
|
|
1377
|
-
## 5.1.0-canary.2
|
|
1378
|
-
|
|
1379
|
-
## 5.1.0-canary.1
|
|
1380
|
-
|
|
1381
|
-
## 5.1.0-canary.0
|
|
1382
|
-
|
|
1383
|
-
## 5.0.0
|
|
1384
|
-
|
|
1385
|
-
### Major Changes
|
|
1386
|
-
|
|
1387
|
-
- [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
|
|
1388
|
-
|
|
1389
|
-
### Minor Changes
|
|
1390
|
-
|
|
1391
|
-
- [#1729](https://github.com/graphcommerce-org/graphcommerce/pull/1729) [`4f85e4878`](https://github.com/graphcommerce-org/graphcommerce/commit/4f85e4878e4ad0dd528d60ad35826da0677059a9) - Add the ability to specificy plugins on the package name (e.g. `@graphcommerce/magento-cart-payment-method`) ([@paales](https://github.com/paales))
|
|
1392
|
-
|
|
1393
|
-
- [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`16abc9995`](https://github.com/graphcommerce-org/graphcommerce/commit/16abc9995377f5c00032674de0a1ea3ebad88c4c) - Introducing a new **Plugin system for GraphCommerce** which allows you to extend GraphCommerce in a plug-and-play manner. [Read the documentation to learn more](https://github.com/graphcommerce-org/graphcommerce/blob/main/docs/framework/plugins.md) ([@paales](https://github.com/paales))
|
|
1394
|
-
|
|
1395
|
-
- [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`6171ad02c`](https://github.com/graphcommerce-org/graphcommerce/commit/6171ad02c19782b1e1f0eb00ea25ea6b764250b5) - Added topological sorting to plugins and added ifEnv export to plugins to conditionally load plugins ([@paales](https://github.com/paales))
|
|
1396
|
-
|
|
1397
|
-
### Patch Changes
|
|
1398
|
-
|
|
1399
|
-
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`b2d73c726`](https://github.com/graphcommerce-org/graphcommerce/commit/b2d73c726fa123435fa6c54b4e0fd0db2df7c4ab) - Move to <Prev/> instead of <Component/> to call the plugin component ([@paales](https://github.com/paales))
|
|
1400
|
-
|
|
1401
|
-
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`d6abe2646`](https://github.com/graphcommerce-org/graphcommerce/commit/d6abe26461d92e6f6c39da1cb7e6ac896bb9475f) - Added comments to generated interceptor ([@paales](https://github.com/paales))
|
|
1402
|
-
|
|
1403
|
-
- [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`fdb33b4e6`](https://github.com/graphcommerce-org/graphcommerce/commit/fdb33b4e6cace84a370aa000bf86c9c3c377aaae) - Make sure the root package is always included even if it doesn't include graphcommerce in the name ([@github-actions](https://github.com/apps/github-actions))
|
|
1404
|
-
|
|
1405
|
-
## 5.0.0-canary.14
|
|
1406
|
-
|
|
1407
|
-
## 5.0.0-canary.9
|
|
1408
|
-
|
|
1409
|
-
### Major Changes
|
|
1410
|
-
|
|
1411
|
-
- [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
|
|
1412
|
-
|
|
1413
|
-
## 4.31.0-canary.8
|
|
1414
|
-
|
|
1415
|
-
## 4.31.0-canary.7
|
|
1416
|
-
|
|
1417
|
-
### Patch Changes
|
|
1418
|
-
|
|
1419
|
-
- [`fdb33b4e6`](https://github.com/graphcommerce-org/graphcommerce/commit/fdb33b4e6cace84a370aa000bf86c9c3c377aaae) - Make sure the root package is always included even if it doesn't include graphcommerce in the name ([@paales](https://github.com/paales))
|
|
1420
|
-
|
|
1421
|
-
## 4.31.0-canary.6
|
|
1422
|
-
|
|
1423
|
-
## 4.31.0-canary.5
|
|
1424
|
-
|
|
1425
|
-
### Minor Changes
|
|
1426
|
-
|
|
1427
|
-
- [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`6171ad02c`](https://github.com/graphcommerce-org/graphcommerce/commit/6171ad02c19782b1e1f0eb00ea25ea6b764250b5) - Added topological sorting to plugins and added ifEnv export to plugins to conditionally load plugins ([@paales](https://github.com/paales))
|
|
1428
|
-
|
|
1429
|
-
## 4.31.0-canary.4
|
|
1430
|
-
|
|
1431
|
-
## 4.31.0-canary.3
|
|
1432
|
-
|
|
1433
|
-
### Patch Changes
|
|
1434
|
-
|
|
1435
|
-
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`b2d73c726`](https://github.com/graphcommerce-org/graphcommerce/commit/b2d73c726fa123435fa6c54b4e0fd0db2df7c4ab) - Move to <Prev/> instead of <Component/> to call the plugin component ([@paales](https://github.com/paales))
|
|
1436
|
-
|
|
1437
|
-
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`d6abe2646`](https://github.com/graphcommerce-org/graphcommerce/commit/d6abe26461d92e6f6c39da1cb7e6ac896bb9475f) - Added comments to generated interceptor ([@paales](https://github.com/paales))
|
|
1438
|
-
|
|
1439
|
-
## 4.31.0-canary.2
|
|
1440
|
-
|
|
1441
|
-
### Minor Changes
|
|
1442
|
-
|
|
1443
|
-
- [#1729](https://github.com/graphcommerce-org/graphcommerce/pull/1729) [`4f85e4878`](https://github.com/graphcommerce-org/graphcommerce/commit/4f85e4878e4ad0dd528d60ad35826da0677059a9) - Add the ability to specificy plugins on the package name (e.g. `@graphcommerce/magento-cart-payment-method`) ([@paales](https://github.com/paales))
|
|
1444
|
-
|
|
1445
|
-
## 4.31.0-canary.1
|
|
1446
|
-
|
|
1447
|
-
### Minor Changes
|
|
1448
|
-
|
|
1449
|
-
- [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`16abc9995`](https://github.com/graphcommerce-org/graphcommerce/commit/16abc9995377f5c00032674de0a1ea3ebad88c4c) - Introducing a new **Plugin system for GraphCommerce** which allows you to extend GraphCommerce in a plug-and-play manner. [Read the documentation to learn more](https://github.com/graphcommerce-org/graphcommerce/blob/main/docs/framework/plugins.md) ([@paales](https://github.com/paales))
|
|
1450
|
-
|
|
1451
|
-
## 4.31.0-canary.0
|
|
1452
|
-
|
|
1453
|
-
## 4.30.2
|
|
1454
|
-
|
|
1455
|
-
## 4.30.1
|
|
1456
|
-
|
|
1457
|
-
### Patch Changes
|
|
1458
|
-
|
|
1459
|
-
- [#1724](https://github.com/graphcommerce-org/graphcommerce/pull/1724) [`0c54f0b78`](https://github.com/graphcommerce-org/graphcommerce/commit/0c54f0b7828d78df373a96dc6d6dcd1ee108704f) Thanks [@paales](https://github.com/paales)! - Fix issue where the build version of next-config wasn't available
|
|
1460
|
-
|
|
1461
|
-
## 4.30.0
|
|
1462
|
-
|
|
1463
|
-
### Minor Changes
|
|
1464
|
-
|
|
1465
|
-
- [#1613](https://github.com/graphcommerce-org/graphcommerce/pull/1613) [`6c1c69ca4`](https://github.com/graphcommerce-org/graphcommerce/commit/6c1c69ca45ea1c8737cc7dcdc341fe5d825ed380) Thanks [@paales](https://github.com/paales)! - Refactor next-config to also use the new resolveDependenciesSync by exposing withGraphCommerce
|
|
367
|
+
- [#1613](https://github.com/graphcommerce-org/graphcommerce/pull/1613) [`6c1c69ca4`](https://github.com/graphcommerce-org/graphcommerce/commit/6c1c69ca45ea1c8737cc7dcdc341fe5d825ed380) Thanks [@paales](https://github.com/paales)! - Refactor next-config to also use the new resolveDependenciesSync by exposing withGraphCommerce
|
|
1466
368
|
|
|
1467
369
|
### Patch Changes
|
|
1468
370
|
|
|
1469
371
|
- [#1702](https://github.com/graphcommerce-org/graphcommerce/pull/1702) [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
1470
372
|
|
|
1471
|
-
## 4.30.0-canary.1
|
|
1472
|
-
|
|
1473
|
-
### Patch Changes
|
|
1474
|
-
|
|
1475
|
-
- [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
1476
|
-
|
|
1477
|
-
## 4.30.0-canary.0
|
|
1478
|
-
|
|
1479
|
-
### Minor Changes
|
|
1480
|
-
|
|
1481
|
-
- [#1613](https://github.com/graphcommerce-org/graphcommerce/pull/1613) [`6c1c69ca4`](https://github.com/graphcommerce-org/graphcommerce/commit/6c1c69ca45ea1c8737cc7dcdc341fe5d825ed380) Thanks [@paales](https://github.com/paales)! - Refactor next-config to also use the new resolveDependenciesSync by exposing withGraphCommerce
|
|
1482
|
-
|
|
1483
373
|
## 3.2.0
|
|
1484
374
|
|
|
1485
375
|
### Minor Changes
|