@graphcommerce/next-config 9.0.0-canary.101 → 9.0.0-canary.104
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 +89 -1204
- 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 +34 -35
- 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/commands/generateConfig.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 +4 -7
- package/dist/interceptors/commands/codegenInterceptors.js +2 -2
- package/dist/interceptors/extractExports.js +1 -0
- 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 +3 -2
- package/dist/interceptors/parseStructure.js +1 -1
- package/dist/interceptors/writeInterceptors.js +2 -2
- package/dist/utils/resolveDependenciesSync.js +3 -1
- package/dist/withGraphCommerce.js +1 -0
- package/package.json +12 -10
- package/src/config/commands/exportConfig.ts +1 -1
- package/src/config/commands/generateConfig.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 +16 -18
- package/src/config/utils/replaceConfigInString.ts +1 -1
- package/src/config/utils/rewriteLegacyEnv.ts +5 -4
- 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 +7 -10
- package/src/interceptors/commands/codegenInterceptors.ts +2 -2
- package/src/interceptors/extractExports.ts +3 -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 +7 -13
- package/src/interceptors/parseStructure.ts +4 -4
- package/src/interceptors/swc.ts +2 -1
- package/src/interceptors/writeInterceptors.ts +3 -3
- package/src/utils/packageRoots.ts +1 -1
- package/src/utils/resolveDependenciesSync.ts +4 -1
- package/src/withGraphCommerce.ts +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,43 +1,37 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.0-canary.
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- [#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:
|
|
8
|
-
|
|
9
|
-
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.
|
|
3
|
+
## 9.0.0-canary.104
|
|
10
4
|
|
|
11
|
-
|
|
12
|
-
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))
|
|
5
|
+
### Patch Changes
|
|
13
6
|
|
|
14
|
-
|
|
7
|
+
- [#2423](https://github.com/graphcommerce-org/graphcommerce/pull/2423) [`dbf233b`](https://github.com/graphcommerce-org/graphcommerce/commit/dbf233bb6d11432a8effc38fd4672aaa0856e1aa) - Added graphql.config.ts to projects ([@paales](https://github.com/paales))
|
|
15
8
|
|
|
16
|
-
## 9.0.0-canary.
|
|
9
|
+
## 9.0.0-canary.103
|
|
17
10
|
|
|
18
|
-
|
|
11
|
+
### Patch Changes
|
|
19
12
|
|
|
20
|
-
|
|
13
|
+
- [#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))
|
|
21
14
|
|
|
22
|
-
## 9.0.0-canary.
|
|
15
|
+
## 9.0.0-canary.102
|
|
23
16
|
|
|
24
|
-
|
|
17
|
+
### Minor Changes
|
|
25
18
|
|
|
26
|
-
|
|
19
|
+
- [#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))
|
|
27
20
|
|
|
28
|
-
|
|
21
|
+
### Patch Changes
|
|
29
22
|
|
|
30
|
-
|
|
23
|
+
- [#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))
|
|
31
24
|
|
|
32
|
-
## 9.0.0-canary.
|
|
25
|
+
## 9.0.0-canary.101
|
|
33
26
|
|
|
34
|
-
|
|
27
|
+
### Minor Changes
|
|
35
28
|
|
|
36
|
-
|
|
29
|
+
- [#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:
|
|
37
30
|
|
|
38
|
-
|
|
31
|
+
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.
|
|
39
32
|
|
|
40
|
-
|
|
33
|
+
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.
|
|
34
|
+
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))
|
|
41
35
|
|
|
42
36
|
## 9.0.0-canary.86
|
|
43
37
|
|
|
@@ -45,88 +39,12 @@
|
|
|
45
39
|
|
|
46
40
|
- [#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))
|
|
47
41
|
|
|
48
|
-
## 9.0.0-canary.85
|
|
49
|
-
|
|
50
|
-
## 9.0.0-canary.84
|
|
51
|
-
|
|
52
|
-
## 9.0.0-canary.83
|
|
53
|
-
|
|
54
|
-
## 9.0.0-canary.82
|
|
55
|
-
|
|
56
|
-
## 9.0.0-canary.81
|
|
57
|
-
|
|
58
|
-
## 9.0.0-canary.80
|
|
59
|
-
|
|
60
|
-
## 9.0.0-canary.79
|
|
61
|
-
|
|
62
|
-
## 9.0.0-canary.78
|
|
63
|
-
|
|
64
|
-
## 9.0.0-canary.77
|
|
65
|
-
|
|
66
|
-
## 9.0.0-canary.76
|
|
67
|
-
|
|
68
|
-
## 9.0.0-canary.75
|
|
69
|
-
|
|
70
|
-
## 9.0.0-canary.74
|
|
71
|
-
|
|
72
|
-
## 9.0.0-canary.73
|
|
73
|
-
|
|
74
|
-
## 9.0.0-canary.72
|
|
75
|
-
|
|
76
|
-
## 9.0.0-canary.71
|
|
77
|
-
|
|
78
|
-
## 9.0.0-canary.70
|
|
79
|
-
|
|
80
|
-
## 9.0.0-canary.69
|
|
81
|
-
|
|
82
|
-
## 9.0.0-canary.68
|
|
83
|
-
|
|
84
|
-
## 9.0.0-canary.67
|
|
85
|
-
|
|
86
|
-
## 9.0.0-canary.66
|
|
87
|
-
|
|
88
|
-
## 9.0.0-canary.65
|
|
89
|
-
|
|
90
|
-
## 9.0.0-canary.64
|
|
91
|
-
|
|
92
|
-
## 9.0.0-canary.63
|
|
93
|
-
|
|
94
|
-
## 9.0.0-canary.62
|
|
95
|
-
|
|
96
|
-
## 9.0.0-canary.61
|
|
97
|
-
|
|
98
|
-
## 9.0.0-canary.60
|
|
99
|
-
|
|
100
|
-
## 9.0.0-canary.59
|
|
101
|
-
|
|
102
42
|
## 9.0.0-canary.58
|
|
103
43
|
|
|
104
44
|
### Minor Changes
|
|
105
45
|
|
|
106
46
|
- [#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))
|
|
107
47
|
|
|
108
|
-
## 9.0.0-canary.57
|
|
109
|
-
|
|
110
|
-
## 9.0.0-canary.56
|
|
111
|
-
|
|
112
|
-
## 9.0.0-canary.55
|
|
113
|
-
|
|
114
|
-
## 9.0.0-canary.54
|
|
115
|
-
|
|
116
|
-
## 8.1.0-canary.53
|
|
117
|
-
|
|
118
|
-
## 8.1.0-canary.52
|
|
119
|
-
|
|
120
|
-
## 8.1.0-canary.51
|
|
121
|
-
|
|
122
|
-
## 8.1.0-canary.50
|
|
123
|
-
|
|
124
|
-
## 8.1.0-canary.49
|
|
125
|
-
|
|
126
|
-
## 8.1.0-canary.48
|
|
127
|
-
|
|
128
|
-
## 8.1.0-canary.47
|
|
129
|
-
|
|
130
48
|
## 8.1.0-canary.46
|
|
131
49
|
|
|
132
50
|
### Minor Changes
|
|
@@ -137,14 +55,6 @@
|
|
|
137
55
|
|
|
138
56
|
- [#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))
|
|
139
57
|
|
|
140
|
-
## 8.1.0-canary.45
|
|
141
|
-
|
|
142
|
-
## 8.1.0-canary.44
|
|
143
|
-
|
|
144
|
-
## 8.1.0-canary.43
|
|
145
|
-
|
|
146
|
-
## 8.1.0-canary.42
|
|
147
|
-
|
|
148
58
|
## 8.1.0-canary.41
|
|
149
59
|
|
|
150
60
|
### Patch Changes
|
|
@@ -157,76 +67,24 @@
|
|
|
157
67
|
|
|
158
68
|
- [#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))
|
|
159
69
|
|
|
160
|
-
## 8.1.0-canary.39
|
|
161
|
-
|
|
162
70
|
## 8.1.0-canary.38
|
|
163
71
|
|
|
164
72
|
### Minor Changes
|
|
165
73
|
|
|
166
74
|
- [#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))
|
|
167
75
|
|
|
168
|
-
## 8.1.0-canary.37
|
|
169
|
-
|
|
170
|
-
## 8.1.0-canary.36
|
|
171
|
-
|
|
172
|
-
## 8.1.0-canary.35
|
|
173
|
-
|
|
174
|
-
## 8.1.0-canary.34
|
|
175
|
-
|
|
176
|
-
## 8.1.0-canary.33
|
|
177
|
-
|
|
178
76
|
## 8.1.0-canary.32
|
|
179
77
|
|
|
180
78
|
### Patch Changes
|
|
181
79
|
|
|
182
80
|
- [#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))
|
|
183
81
|
|
|
184
|
-
## 8.1.0-canary.31
|
|
185
|
-
|
|
186
|
-
## 8.1.0-canary.30
|
|
187
|
-
|
|
188
|
-
## 8.1.0-canary.29
|
|
189
|
-
|
|
190
82
|
## 8.1.0-canary.28
|
|
191
83
|
|
|
192
84
|
### Patch Changes
|
|
193
85
|
|
|
194
86
|
- [#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))
|
|
195
87
|
|
|
196
|
-
## 8.1.0-canary.27
|
|
197
|
-
|
|
198
|
-
## 8.1.0-canary.26
|
|
199
|
-
|
|
200
|
-
## 8.1.0-canary.25
|
|
201
|
-
|
|
202
|
-
## 8.1.0-canary.24
|
|
203
|
-
|
|
204
|
-
## 8.1.0-canary.23
|
|
205
|
-
|
|
206
|
-
## 8.1.0-canary.22
|
|
207
|
-
|
|
208
|
-
## 8.1.0-canary.21
|
|
209
|
-
|
|
210
|
-
## 8.1.0-canary.20
|
|
211
|
-
|
|
212
|
-
## 8.1.0-canary.19
|
|
213
|
-
|
|
214
|
-
## 8.1.0-canary.18
|
|
215
|
-
|
|
216
|
-
## 8.1.0-canary.17
|
|
217
|
-
|
|
218
|
-
## 8.1.0-canary.16
|
|
219
|
-
|
|
220
|
-
## 8.1.0-canary.15
|
|
221
|
-
|
|
222
|
-
## 8.1.0-canary.14
|
|
223
|
-
|
|
224
|
-
## 8.1.0-canary.13
|
|
225
|
-
|
|
226
|
-
## 8.1.0-canary.12
|
|
227
|
-
|
|
228
|
-
## 8.1.0-canary.11
|
|
229
|
-
|
|
230
88
|
## 8.1.0-canary.10
|
|
231
89
|
|
|
232
90
|
### Patch Changes
|
|
@@ -257,10 +115,6 @@
|
|
|
257
115
|
|
|
258
116
|
- [#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))
|
|
259
117
|
|
|
260
|
-
## 8.1.0-canary.7
|
|
261
|
-
|
|
262
|
-
## 8.1.0-canary.6
|
|
263
|
-
|
|
264
118
|
## 8.1.0-canary.5
|
|
265
119
|
|
|
266
120
|
### Minor Changes
|
|
@@ -319,8 +173,6 @@
|
|
|
319
173
|
|
|
320
174
|
- [#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))
|
|
321
175
|
|
|
322
|
-
## 8.0.6-canary.3
|
|
323
|
-
|
|
324
176
|
## 8.0.6-canary.2
|
|
325
177
|
|
|
326
178
|
### Patch Changes
|
|
@@ -345,76 +197,6 @@
|
|
|
345
197
|
|
|
346
198
|
- [#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))
|
|
347
199
|
|
|
348
|
-
## 8.0.5-canary.10
|
|
349
|
-
|
|
350
|
-
## 8.0.5-canary.9
|
|
351
|
-
|
|
352
|
-
## 8.0.5-canary.8
|
|
353
|
-
|
|
354
|
-
## 8.0.5-canary.7
|
|
355
|
-
|
|
356
|
-
## 8.0.5-canary.6
|
|
357
|
-
|
|
358
|
-
## 8.0.5-canary.5
|
|
359
|
-
|
|
360
|
-
## 8.0.5-canary.4
|
|
361
|
-
|
|
362
|
-
## 8.0.5-canary.3
|
|
363
|
-
|
|
364
|
-
### Patch Changes
|
|
365
|
-
|
|
366
|
-
- [#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))
|
|
367
|
-
|
|
368
|
-
## 8.0.5-canary.2
|
|
369
|
-
|
|
370
|
-
## 8.0.5-canary.1
|
|
371
|
-
|
|
372
|
-
## 8.0.5-canary.0
|
|
373
|
-
|
|
374
|
-
## 8.0.4
|
|
375
|
-
|
|
376
|
-
## 8.0.4-canary.1
|
|
377
|
-
|
|
378
|
-
## 8.0.4-canary.0
|
|
379
|
-
|
|
380
|
-
## 8.0.3
|
|
381
|
-
|
|
382
|
-
## 8.0.3-canary.6
|
|
383
|
-
|
|
384
|
-
## 8.0.3-canary.5
|
|
385
|
-
|
|
386
|
-
## 8.0.3-canary.4
|
|
387
|
-
|
|
388
|
-
## 8.0.3-canary.3
|
|
389
|
-
|
|
390
|
-
## 8.0.3-canary.2
|
|
391
|
-
|
|
392
|
-
## 8.0.3-canary.1
|
|
393
|
-
|
|
394
|
-
## 8.0.3-canary.0
|
|
395
|
-
|
|
396
|
-
## 8.0.2
|
|
397
|
-
|
|
398
|
-
## 8.0.2-canary.3
|
|
399
|
-
|
|
400
|
-
## 8.0.2-canary.2
|
|
401
|
-
|
|
402
|
-
## 8.0.2-canary.1
|
|
403
|
-
|
|
404
|
-
## 8.0.2-canary.0
|
|
405
|
-
|
|
406
|
-
## 8.0.1
|
|
407
|
-
|
|
408
|
-
## 8.0.1-canary.4
|
|
409
|
-
|
|
410
|
-
## 8.0.1-canary.3
|
|
411
|
-
|
|
412
|
-
## 8.0.1-canary.2
|
|
413
|
-
|
|
414
|
-
## 8.0.1-canary.1
|
|
415
|
-
|
|
416
|
-
## 8.0.1-canary.0
|
|
417
|
-
|
|
418
200
|
## 8.0.0
|
|
419
201
|
|
|
420
202
|
### Minor Changes
|
|
@@ -441,1056 +223,159 @@
|
|
|
441
223
|
|
|
442
224
|
- [#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))
|
|
443
225
|
|
|
444
|
-
##
|
|
445
|
-
|
|
446
|
-
## 8.0.0-canary.99
|
|
447
|
-
|
|
448
|
-
## 8.0.0-canary.98
|
|
449
|
-
|
|
450
|
-
## 8.0.0-canary.97
|
|
451
|
-
|
|
452
|
-
## 8.0.0-canary.96
|
|
453
|
-
|
|
454
|
-
## 8.0.0-canary.95
|
|
455
|
-
|
|
456
|
-
## 8.0.0-canary.94
|
|
457
|
-
|
|
458
|
-
### Patch Changes
|
|
459
|
-
|
|
460
|
-
- [#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))
|
|
461
|
-
|
|
462
|
-
## 8.0.0-canary.93
|
|
463
|
-
|
|
464
|
-
### Patch Changes
|
|
465
|
-
|
|
466
|
-
- [`d267f19`](https://github.com/graphcommerce-org/graphcommerce/commit/d267f19d6ab85f7dc1088974b3fee6148a537c20) - Disable the pagination thumbnails ([@paales](https://github.com/paales))
|
|
467
|
-
|
|
468
|
-
## 8.0.0-canary.92
|
|
469
|
-
|
|
470
|
-
## 8.0.0-canary.91
|
|
226
|
+
## 7.0.1
|
|
471
227
|
|
|
472
228
|
### Patch Changes
|
|
473
229
|
|
|
474
|
-
- [
|
|
475
|
-
|
|
476
|
-
## 8.0.0-canary.90
|
|
477
|
-
|
|
478
|
-
## 8.0.0-canary.89
|
|
479
|
-
|
|
480
|
-
## 8.0.0-canary.88
|
|
481
|
-
|
|
482
|
-
## 8.0.0-canary.87
|
|
483
|
-
|
|
484
|
-
## 8.0.0-canary.86
|
|
485
|
-
|
|
486
|
-
## 8.0.0-canary.85
|
|
487
|
-
|
|
488
|
-
## 8.0.0-canary.84
|
|
489
|
-
|
|
490
|
-
## 8.0.0-canary.83
|
|
491
|
-
|
|
492
|
-
## 8.0.0-canary.82
|
|
493
|
-
|
|
494
|
-
## 8.0.0-canary.81
|
|
495
|
-
|
|
496
|
-
## 8.0.0-canary.80
|
|
497
|
-
|
|
498
|
-
## 8.0.0-canary.79
|
|
499
|
-
|
|
500
|
-
## 8.0.0-canary.78
|
|
501
|
-
|
|
502
|
-
## 8.0.0-canary.77
|
|
503
|
-
|
|
504
|
-
## 8.0.0-canary.76
|
|
505
|
-
|
|
506
|
-
## 8.0.0-canary.75
|
|
507
|
-
|
|
508
|
-
## 8.0.0-canary.74
|
|
509
|
-
|
|
510
|
-
## 8.0.0-canary.73
|
|
230
|
+
- [`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))
|
|
511
231
|
|
|
512
|
-
|
|
232
|
+
- [`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))
|
|
513
233
|
|
|
514
|
-
|
|
234
|
+
- [#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))
|
|
515
235
|
|
|
516
|
-
|
|
236
|
+
- [#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))
|
|
517
237
|
|
|
518
|
-
|
|
238
|
+
- [#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))
|
|
519
239
|
|
|
520
|
-
|
|
240
|
+
- [#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))
|
|
521
241
|
|
|
522
|
-
## 7.
|
|
242
|
+
## 7.0.0
|
|
523
243
|
|
|
524
|
-
|
|
244
|
+
### Major Changes
|
|
525
245
|
|
|
526
|
-
|
|
246
|
+
- [`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))
|
|
527
247
|
|
|
528
|
-
|
|
248
|
+
### Minor Changes
|
|
529
249
|
|
|
530
|
-
|
|
250
|
+
- [#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))
|
|
531
251
|
|
|
532
|
-
|
|
252
|
+
- [#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))
|
|
533
253
|
|
|
534
254
|
### Patch Changes
|
|
535
255
|
|
|
536
|
-
- [#
|
|
537
|
-
|
|
538
|
-
## 7.1.0-canary.63
|
|
539
|
-
|
|
540
|
-
## 7.1.0-canary.62
|
|
541
|
-
|
|
542
|
-
## 7.1.0-canary.61
|
|
256
|
+
- [#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))
|
|
543
257
|
|
|
544
|
-
|
|
258
|
+
- [#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))
|
|
545
259
|
|
|
546
|
-
|
|
260
|
+
- [#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))
|
|
547
261
|
|
|
548
|
-
|
|
262
|
+
- [#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))
|
|
549
263
|
|
|
550
|
-
|
|
264
|
+
- [#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))
|
|
551
265
|
|
|
552
|
-
|
|
266
|
+
- [#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))
|
|
553
267
|
|
|
554
|
-
|
|
268
|
+
- [#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))
|
|
555
269
|
|
|
556
|
-
|
|
270
|
+
- [#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))
|
|
557
271
|
|
|
558
|
-
##
|
|
272
|
+
## 6.1.0
|
|
559
273
|
|
|
560
|
-
|
|
274
|
+
### Minor Changes
|
|
561
275
|
|
|
562
|
-
|
|
276
|
+
- [#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))
|
|
563
277
|
|
|
564
278
|
### Patch Changes
|
|
565
279
|
|
|
566
|
-
- [#
|
|
567
|
-
|
|
568
|
-
## 7.1.0-canary.50
|
|
569
|
-
|
|
570
|
-
## 7.1.0-canary.49
|
|
571
|
-
|
|
572
|
-
## 7.1.0-canary.48
|
|
280
|
+
- [#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))
|
|
573
281
|
|
|
574
|
-
|
|
282
|
+
- [#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))
|
|
575
283
|
|
|
576
|
-
##
|
|
284
|
+
## 6.0.1
|
|
577
285
|
|
|
578
286
|
### Patch Changes
|
|
579
287
|
|
|
580
|
-
- [`
|
|
581
|
-
|
|
582
|
-
## 7.1.0-canary.45
|
|
288
|
+
- [#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))
|
|
583
289
|
|
|
584
|
-
|
|
290
|
+
## 6.0.0
|
|
585
291
|
|
|
586
|
-
|
|
292
|
+
### Major Changes
|
|
587
293
|
|
|
588
|
-
|
|
294
|
+
- [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
|
|
589
295
|
|
|
590
|
-
-
|
|
296
|
+
- NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
|
|
297
|
+
- NextLink automatically adds `target="_blank"` when the href is external.
|
|
298
|
+
- NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
|
|
591
299
|
|
|
592
|
-
- [#
|
|
300
|
+
- [#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.
|
|
593
301
|
|
|
594
|
-
|
|
302
|
+
- GraphCommerce can be configured in the graphcommerce.config.js
|
|
303
|
+
- The configuration is automatically validated on startup.
|
|
304
|
+
- All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
|
|
595
305
|
|
|
596
|
-
|
|
306
|
+
### Minor Changes
|
|
597
307
|
|
|
598
|
-
|
|
308
|
+
- [#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))
|
|
599
309
|
|
|
600
|
-
|
|
310
|
+
- [#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))
|
|
601
311
|
|
|
602
|
-
|
|
312
|
+
- [#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))
|
|
603
313
|
|
|
604
314
|
### Patch Changes
|
|
605
315
|
|
|
606
|
-
- [#
|
|
607
|
-
|
|
608
|
-
## 7.1.0-canary.33
|
|
609
|
-
|
|
610
|
-
## 7.1.0-canary.32
|
|
611
|
-
|
|
612
|
-
## 7.1.0-canary.31
|
|
613
|
-
|
|
614
|
-
## 7.1.0-canary.30
|
|
615
|
-
|
|
616
|
-
## 7.1.0-canary.29
|
|
617
|
-
|
|
618
|
-
## 7.1.0-canary.28
|
|
316
|
+
- [#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))
|
|
619
317
|
|
|
620
|
-
|
|
318
|
+
- [#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))
|
|
621
319
|
|
|
622
|
-
|
|
320
|
+
- [#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))
|
|
623
321
|
|
|
624
|
-
##
|
|
322
|
+
## 5.1.0
|
|
625
323
|
|
|
626
|
-
|
|
324
|
+
### Patch Changes
|
|
627
325
|
|
|
628
|
-
|
|
326
|
+
- [#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))
|
|
629
327
|
|
|
630
|
-
|
|
328
|
+
- [#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))
|
|
631
329
|
|
|
632
|
-
|
|
330
|
+
- [#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.
|
|
633
331
|
|
|
634
|
-
|
|
332
|
+
- Updated the @mui/material package
|
|
333
|
+
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
334
|
+
- Upgraded dependencies including type-fest and graphql-mesh
|
|
335
|
+
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
635
336
|
|
|
636
|
-
|
|
337
|
+
- [#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))
|
|
637
338
|
|
|
638
|
-
|
|
339
|
+
- [#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))
|
|
639
340
|
|
|
640
|
-
##
|
|
341
|
+
## 5.0.0
|
|
641
342
|
|
|
642
|
-
|
|
343
|
+
### Major Changes
|
|
643
344
|
|
|
644
|
-
|
|
345
|
+
- [#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))
|
|
645
346
|
|
|
646
|
-
|
|
347
|
+
### Minor Changes
|
|
647
348
|
|
|
648
|
-
|
|
349
|
+
- [#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))
|
|
649
350
|
|
|
650
|
-
|
|
351
|
+
- [#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))
|
|
651
352
|
|
|
652
|
-
|
|
353
|
+
- [#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))
|
|
653
354
|
|
|
654
|
-
|
|
355
|
+
### Patch Changes
|
|
655
356
|
|
|
656
|
-
|
|
357
|
+
- [#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))
|
|
657
358
|
|
|
658
|
-
|
|
359
|
+
- [#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))
|
|
659
360
|
|
|
660
|
-
|
|
361
|
+
- [#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))
|
|
661
362
|
|
|
662
|
-
##
|
|
363
|
+
## 4.30.1
|
|
663
364
|
|
|
664
365
|
### Patch Changes
|
|
665
366
|
|
|
666
|
-
- [#
|
|
667
|
-
|
|
668
|
-
## 7.0.2-canary.5
|
|
367
|
+
- [#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
|
|
669
368
|
|
|
670
|
-
|
|
369
|
+
## 4.30.0
|
|
671
370
|
|
|
672
|
-
|
|
371
|
+
### Minor Changes
|
|
673
372
|
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
### Patch Changes
|
|
677
|
-
|
|
678
|
-
- [`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))
|
|
679
|
-
|
|
680
|
-
- [`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))
|
|
681
|
-
|
|
682
|
-
- [#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))
|
|
683
|
-
|
|
684
|
-
- [#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))
|
|
685
|
-
|
|
686
|
-
- [#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))
|
|
687
|
-
|
|
688
|
-
- [#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))
|
|
689
|
-
|
|
690
|
-
## 7.0.1-canary.15
|
|
691
|
-
|
|
692
|
-
## 7.0.1-canary.14
|
|
693
|
-
|
|
694
|
-
### Patch Changes
|
|
695
|
-
|
|
696
|
-
- [`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))
|
|
697
|
-
|
|
698
|
-
## 7.0.1-canary.13
|
|
699
|
-
|
|
700
|
-
## 7.0.1-canary.12
|
|
701
|
-
|
|
702
|
-
### Patch Changes
|
|
703
|
-
|
|
704
|
-
- [`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))
|
|
705
|
-
|
|
706
|
-
## 7.0.1-canary.11
|
|
707
|
-
|
|
708
|
-
## 7.0.1-canary.10
|
|
709
|
-
|
|
710
|
-
### Patch Changes
|
|
711
|
-
|
|
712
|
-
- [#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))
|
|
713
|
-
|
|
714
|
-
## 7.0.1-canary.9
|
|
715
|
-
|
|
716
|
-
## 7.0.1-canary.8
|
|
717
|
-
|
|
718
|
-
## 7.0.1-canary.7
|
|
719
|
-
|
|
720
|
-
## 7.0.1-canary.6
|
|
721
|
-
|
|
722
|
-
## 7.0.1-canary.5
|
|
723
|
-
|
|
724
|
-
## 7.0.1-canary.4
|
|
725
|
-
|
|
726
|
-
## 7.0.1-canary.3
|
|
727
|
-
|
|
728
|
-
## 7.0.1-canary.2
|
|
729
|
-
|
|
730
|
-
### Patch Changes
|
|
731
|
-
|
|
732
|
-
- [#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))
|
|
733
|
-
|
|
734
|
-
## 7.0.1-canary.1
|
|
735
|
-
|
|
736
|
-
## 7.0.1-canary.0
|
|
737
|
-
|
|
738
|
-
### Patch Changes
|
|
739
|
-
|
|
740
|
-
- [#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))
|
|
741
|
-
|
|
742
|
-
- [#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))
|
|
743
|
-
|
|
744
|
-
## 7.0.0
|
|
745
|
-
|
|
746
|
-
### Major Changes
|
|
747
|
-
|
|
748
|
-
- [`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))
|
|
749
|
-
|
|
750
|
-
### Minor Changes
|
|
751
|
-
|
|
752
|
-
- [#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))
|
|
753
|
-
|
|
754
|
-
- [#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))
|
|
755
|
-
|
|
756
|
-
### Patch Changes
|
|
757
|
-
|
|
758
|
-
- [#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))
|
|
759
|
-
|
|
760
|
-
- [#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))
|
|
761
|
-
|
|
762
|
-
- [#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))
|
|
763
|
-
|
|
764
|
-
- [#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))
|
|
765
|
-
|
|
766
|
-
- [#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))
|
|
767
|
-
|
|
768
|
-
- [#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))
|
|
769
|
-
|
|
770
|
-
- [#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))
|
|
771
|
-
|
|
772
|
-
- [#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))
|
|
773
|
-
|
|
774
|
-
## 6.2.0-canary.98
|
|
775
|
-
|
|
776
|
-
## 6.2.0-canary.97
|
|
777
|
-
|
|
778
|
-
## 6.2.0-canary.96
|
|
779
|
-
|
|
780
|
-
## 6.2.0-canary.95
|
|
781
|
-
|
|
782
|
-
### Patch Changes
|
|
783
|
-
|
|
784
|
-
- [#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))
|
|
785
|
-
|
|
786
|
-
## 6.2.0-canary.94
|
|
787
|
-
|
|
788
|
-
## 6.2.0-canary.93
|
|
789
|
-
|
|
790
|
-
### Patch Changes
|
|
791
|
-
|
|
792
|
-
- [#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))
|
|
793
|
-
|
|
794
|
-
## 6.2.0-canary.92
|
|
795
|
-
|
|
796
|
-
## 6.2.0-canary.91
|
|
797
|
-
|
|
798
|
-
## 6.2.0-canary.90
|
|
799
|
-
|
|
800
|
-
### Patch Changes
|
|
801
|
-
|
|
802
|
-
- [#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))
|
|
803
|
-
|
|
804
|
-
## 6.2.0-canary.89
|
|
805
|
-
|
|
806
|
-
## 6.2.0-canary.88
|
|
807
|
-
|
|
808
|
-
## 6.2.0-canary.87
|
|
809
|
-
|
|
810
|
-
### Patch Changes
|
|
811
|
-
|
|
812
|
-
- [#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))
|
|
813
|
-
|
|
814
|
-
## 6.2.0-canary.86
|
|
815
|
-
|
|
816
|
-
## 6.2.0-canary.85
|
|
817
|
-
|
|
818
|
-
## 6.2.0-canary.84
|
|
819
|
-
|
|
820
|
-
### Patch Changes
|
|
821
|
-
|
|
822
|
-
- [#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))
|
|
823
|
-
|
|
824
|
-
## 6.2.0-canary.83
|
|
825
|
-
|
|
826
|
-
## 6.2.0-canary.82
|
|
827
|
-
|
|
828
|
-
## 6.2.0-canary.81
|
|
829
|
-
|
|
830
|
-
## 6.2.0-canary.80
|
|
831
|
-
|
|
832
|
-
## 6.2.0-canary.79
|
|
833
|
-
|
|
834
|
-
## 6.2.0-canary.78
|
|
835
|
-
|
|
836
|
-
### Minor Changes
|
|
837
|
-
|
|
838
|
-
- [#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))
|
|
839
|
-
|
|
840
|
-
## 6.2.0-canary.77
|
|
841
|
-
|
|
842
|
-
## 6.2.0-canary.76
|
|
843
|
-
|
|
844
|
-
## 6.2.0-canary.75
|
|
845
|
-
|
|
846
|
-
## 6.2.0-canary.74
|
|
847
|
-
|
|
848
|
-
## 6.2.0-canary.73
|
|
849
|
-
|
|
850
|
-
## 6.2.0-canary.72
|
|
851
|
-
|
|
852
|
-
## 6.2.0-canary.71
|
|
853
|
-
|
|
854
|
-
## 6.2.0-canary.70
|
|
855
|
-
|
|
856
|
-
## 6.2.0-canary.69
|
|
857
|
-
|
|
858
|
-
## 6.2.0-canary.68
|
|
859
|
-
|
|
860
|
-
## 6.2.0-canary.67
|
|
861
|
-
|
|
862
|
-
### Patch Changes
|
|
863
|
-
|
|
864
|
-
- [#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))
|
|
865
|
-
|
|
866
|
-
## 6.2.0-canary.66
|
|
867
|
-
|
|
868
|
-
## 6.2.0-canary.65
|
|
869
|
-
|
|
870
|
-
## 6.2.0-canary.64
|
|
871
|
-
|
|
872
|
-
## 6.2.0-canary.63
|
|
873
|
-
|
|
874
|
-
## 6.2.0-canary.62
|
|
875
|
-
|
|
876
|
-
## 6.2.0-canary.61
|
|
877
|
-
|
|
878
|
-
## 6.2.0-canary.60
|
|
879
|
-
|
|
880
|
-
## 6.2.0-canary.59
|
|
881
|
-
|
|
882
|
-
## 6.2.0-canary.58
|
|
883
|
-
|
|
884
|
-
## 6.2.0-canary.57
|
|
885
|
-
|
|
886
|
-
### Patch Changes
|
|
887
|
-
|
|
888
|
-
- [#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))
|
|
889
|
-
|
|
890
|
-
## 6.2.0-canary.56
|
|
891
|
-
|
|
892
|
-
## 6.2.0-canary.55
|
|
893
|
-
|
|
894
|
-
## 6.2.0-canary.54
|
|
895
|
-
|
|
896
|
-
## 6.2.0-canary.53
|
|
897
|
-
|
|
898
|
-
## 6.2.0-canary.52
|
|
899
|
-
|
|
900
|
-
## 6.2.0-canary.51
|
|
901
|
-
|
|
902
|
-
## 6.2.0-canary.50
|
|
903
|
-
|
|
904
|
-
### Minor Changes
|
|
905
|
-
|
|
906
|
-
- [`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))
|
|
907
|
-
|
|
908
|
-
## 6.2.0-canary.49
|
|
909
|
-
|
|
910
|
-
### Patch Changes
|
|
911
|
-
|
|
912
|
-
- [#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))
|
|
913
|
-
|
|
914
|
-
## 6.2.0-canary.48
|
|
915
|
-
|
|
916
|
-
## 6.2.0-canary.47
|
|
917
|
-
|
|
918
|
-
## 6.2.0-canary.46
|
|
919
|
-
|
|
920
|
-
## 6.2.0-canary.45
|
|
921
|
-
|
|
922
|
-
## 6.2.0-canary.44
|
|
923
|
-
|
|
924
|
-
## 6.2.0-canary.43
|
|
925
|
-
|
|
926
|
-
## 6.2.0-canary.42
|
|
927
|
-
|
|
928
|
-
## 6.2.0-canary.41
|
|
929
|
-
|
|
930
|
-
### Patch Changes
|
|
931
|
-
|
|
932
|
-
- [#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))
|
|
933
|
-
|
|
934
|
-
## 6.2.0-canary.40
|
|
935
|
-
|
|
936
|
-
## 6.2.0-canary.39
|
|
937
|
-
|
|
938
|
-
## 6.2.0-canary.38
|
|
939
|
-
|
|
940
|
-
## 6.2.0-canary.37
|
|
941
|
-
|
|
942
|
-
## 6.2.0-canary.36
|
|
943
|
-
|
|
944
|
-
## 6.2.0-canary.35
|
|
945
|
-
|
|
946
|
-
## 6.2.0-canary.34
|
|
947
|
-
|
|
948
|
-
## 6.2.0-canary.33
|
|
949
|
-
|
|
950
|
-
## 6.2.0-canary.32
|
|
951
|
-
|
|
952
|
-
## 6.2.0-canary.31
|
|
953
|
-
|
|
954
|
-
## 6.2.0-canary.30
|
|
955
|
-
|
|
956
|
-
## 6.2.0-canary.29
|
|
957
|
-
|
|
958
|
-
## 6.2.0-canary.28
|
|
959
|
-
|
|
960
|
-
## 6.2.0-canary.27
|
|
961
|
-
|
|
962
|
-
## 6.2.0-canary.26
|
|
963
|
-
|
|
964
|
-
## 6.2.0-canary.25
|
|
965
|
-
|
|
966
|
-
## 6.2.0-canary.24
|
|
967
|
-
|
|
968
|
-
## 6.2.0-canary.23
|
|
969
|
-
|
|
970
|
-
## 6.2.0-canary.22
|
|
971
|
-
|
|
972
|
-
## 6.2.0-canary.21
|
|
973
|
-
|
|
974
|
-
## 6.2.0-canary.20
|
|
975
|
-
|
|
976
|
-
### Patch Changes
|
|
977
|
-
|
|
978
|
-
- [#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))
|
|
979
|
-
|
|
980
|
-
## 6.2.0-canary.19
|
|
981
|
-
|
|
982
|
-
## 6.2.0-canary.18
|
|
983
|
-
|
|
984
|
-
## 6.2.0-canary.17
|
|
985
|
-
|
|
986
|
-
## 6.2.0-canary.16
|
|
987
|
-
|
|
988
|
-
## 6.2.0-canary.15
|
|
989
|
-
|
|
990
|
-
## 6.2.0-canary.14
|
|
991
|
-
|
|
992
|
-
### Patch Changes
|
|
993
|
-
|
|
994
|
-
- [#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))
|
|
995
|
-
|
|
996
|
-
## 6.2.0-canary.13
|
|
997
|
-
|
|
998
|
-
### Patch Changes
|
|
999
|
-
|
|
1000
|
-
- [#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))
|
|
1001
|
-
|
|
1002
|
-
## 6.2.0-canary.12
|
|
1003
|
-
|
|
1004
|
-
## 6.2.0-canary.11
|
|
1005
|
-
|
|
1006
|
-
## 6.2.0-canary.10
|
|
1007
|
-
|
|
1008
|
-
## 6.2.0-canary.9
|
|
1009
|
-
|
|
1010
|
-
## 6.2.0-canary.8
|
|
1011
|
-
|
|
1012
|
-
## 6.2.0-canary.7
|
|
1013
|
-
|
|
1014
|
-
## 6.2.0-canary.6
|
|
1015
|
-
|
|
1016
|
-
### Minor Changes
|
|
1017
|
-
|
|
1018
|
-
- [#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))
|
|
1019
|
-
|
|
1020
|
-
## 6.1.1-canary.5
|
|
1021
|
-
|
|
1022
|
-
## 6.1.1-canary.4
|
|
1023
|
-
|
|
1024
|
-
## 6.1.1-canary.3
|
|
1025
|
-
|
|
1026
|
-
## 6.1.1-canary.2
|
|
1027
|
-
|
|
1028
|
-
## 6.1.1-canary.1
|
|
1029
|
-
|
|
1030
|
-
## 6.1.1-canary.0
|
|
1031
|
-
|
|
1032
|
-
## 6.1.0
|
|
1033
|
-
|
|
1034
|
-
### Minor Changes
|
|
1035
|
-
|
|
1036
|
-
- [#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))
|
|
1037
|
-
|
|
1038
|
-
### Patch Changes
|
|
1039
|
-
|
|
1040
|
-
- [#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))
|
|
1041
|
-
|
|
1042
|
-
- [#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))
|
|
1043
|
-
|
|
1044
|
-
## 6.0.2-canary.22
|
|
1045
|
-
|
|
1046
|
-
## 6.0.2-canary.21
|
|
1047
|
-
|
|
1048
|
-
## 6.0.2-canary.20
|
|
1049
|
-
|
|
1050
|
-
## 6.0.2-canary.19
|
|
1051
|
-
|
|
1052
|
-
## 6.0.2-canary.18
|
|
1053
|
-
|
|
1054
|
-
## 6.0.2-canary.17
|
|
1055
|
-
|
|
1056
|
-
## 6.0.2-canary.16
|
|
1057
|
-
|
|
1058
|
-
## 6.0.2-canary.15
|
|
1059
|
-
|
|
1060
|
-
## 6.0.2-canary.14
|
|
1061
|
-
|
|
1062
|
-
## 6.0.2-canary.13
|
|
1063
|
-
|
|
1064
|
-
## 6.0.2-canary.12
|
|
1065
|
-
|
|
1066
|
-
## 6.0.2-canary.11
|
|
1067
|
-
|
|
1068
|
-
## 6.0.2-canary.10
|
|
1069
|
-
|
|
1070
|
-
## 6.0.2-canary.9
|
|
1071
|
-
|
|
1072
|
-
## 6.0.2-canary.8
|
|
1073
|
-
|
|
1074
|
-
## 6.0.2-canary.7
|
|
1075
|
-
|
|
1076
|
-
### Patch Changes
|
|
1077
|
-
|
|
1078
|
-
- [#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))
|
|
1079
|
-
|
|
1080
|
-
## 6.0.2-canary.6
|
|
1081
|
-
|
|
1082
|
-
## 6.0.2-canary.5
|
|
1083
|
-
|
|
1084
|
-
## 6.0.2-canary.4
|
|
1085
|
-
|
|
1086
|
-
### Patch Changes
|
|
1087
|
-
|
|
1088
|
-
- [#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))
|
|
1089
|
-
|
|
1090
|
-
## 6.0.2-canary.3
|
|
1091
|
-
|
|
1092
|
-
### Patch Changes
|
|
1093
|
-
|
|
1094
|
-
- [#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))
|
|
1095
|
-
|
|
1096
|
-
## 6.0.2-canary.2
|
|
1097
|
-
|
|
1098
|
-
## 6.0.2-canary.1
|
|
1099
|
-
|
|
1100
|
-
## 6.0.2-canary.0
|
|
1101
|
-
|
|
1102
|
-
## 6.0.1
|
|
1103
|
-
|
|
1104
|
-
### Patch Changes
|
|
1105
|
-
|
|
1106
|
-
- [#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))
|
|
1107
|
-
|
|
1108
|
-
## 6.0.1-canary.7
|
|
1109
|
-
|
|
1110
|
-
## 6.0.1-canary.6
|
|
1111
|
-
|
|
1112
|
-
## 6.0.1-canary.5
|
|
1113
|
-
|
|
1114
|
-
### Patch Changes
|
|
1115
|
-
|
|
1116
|
-
- [#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))
|
|
1117
|
-
|
|
1118
|
-
## 6.0.1-canary.4
|
|
1119
|
-
|
|
1120
|
-
## 6.0.1-canary.3
|
|
1121
|
-
|
|
1122
|
-
## 6.0.1-canary.2
|
|
1123
|
-
|
|
1124
|
-
## 6.0.1-canary.1
|
|
1125
|
-
|
|
1126
|
-
## 6.0.1-canary.0
|
|
1127
|
-
|
|
1128
|
-
## 6.0.0
|
|
1129
|
-
|
|
1130
|
-
### Major Changes
|
|
1131
|
-
|
|
1132
|
-
- [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
|
|
1133
|
-
|
|
1134
|
-
- NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
|
|
1135
|
-
- NextLink automatically adds `target="_blank"` when the href is external.
|
|
1136
|
-
- NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
|
|
1137
|
-
|
|
1138
|
-
- [#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.
|
|
1139
|
-
|
|
1140
|
-
- GraphCommerce can be configured in the graphcommerce.config.js
|
|
1141
|
-
- The configuration is automatically validated on startup.
|
|
1142
|
-
- All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
|
|
1143
|
-
|
|
1144
|
-
### Minor Changes
|
|
1145
|
-
|
|
1146
|
-
- [#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))
|
|
1147
|
-
|
|
1148
|
-
- [#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))
|
|
1149
|
-
|
|
1150
|
-
- [#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))
|
|
1151
|
-
|
|
1152
|
-
### Patch Changes
|
|
1153
|
-
|
|
1154
|
-
- [#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))
|
|
1155
|
-
|
|
1156
|
-
- [#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))
|
|
1157
|
-
|
|
1158
|
-
- [#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))
|
|
1159
|
-
|
|
1160
|
-
## 6.0.0-canary.54
|
|
1161
|
-
|
|
1162
|
-
## 6.0.0-canary.53
|
|
1163
|
-
|
|
1164
|
-
## 6.0.0-canary.52
|
|
1165
|
-
|
|
1166
|
-
## 6.0.0-canary.51
|
|
1167
|
-
|
|
1168
|
-
## 6.0.0-canary.50
|
|
1169
|
-
|
|
1170
|
-
## 6.0.0-canary.49
|
|
1171
|
-
|
|
1172
|
-
## 6.0.0-canary.48
|
|
1173
|
-
|
|
1174
|
-
## 6.0.0-canary.47
|
|
1175
|
-
|
|
1176
|
-
## 6.0.0-canary.46
|
|
1177
|
-
|
|
1178
|
-
### Patch Changes
|
|
1179
|
-
|
|
1180
|
-
- [#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))
|
|
1181
|
-
|
|
1182
|
-
## 6.0.0-canary.45
|
|
1183
|
-
|
|
1184
|
-
## 6.0.0-canary.44
|
|
1185
|
-
|
|
1186
|
-
### Patch Changes
|
|
1187
|
-
|
|
1188
|
-
- [#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))
|
|
1189
|
-
|
|
1190
|
-
## 6.0.0-canary.43
|
|
1191
|
-
|
|
1192
|
-
## 6.0.0-canary.42
|
|
1193
|
-
|
|
1194
|
-
## 6.0.0-canary.41
|
|
1195
|
-
|
|
1196
|
-
### Patch Changes
|
|
1197
|
-
|
|
1198
|
-
- [#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))
|
|
1199
|
-
|
|
1200
|
-
- [#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))
|
|
1201
|
-
|
|
1202
|
-
## 6.0.0-canary.40
|
|
1203
|
-
|
|
1204
|
-
## 6.0.0-canary.39
|
|
1205
|
-
|
|
1206
|
-
## 6.0.0-canary.38
|
|
1207
|
-
|
|
1208
|
-
## 6.0.0-canary.37
|
|
1209
|
-
|
|
1210
|
-
## 6.0.0-canary.36
|
|
1211
|
-
|
|
1212
|
-
### Minor Changes
|
|
1213
|
-
|
|
1214
|
-
- [#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))
|
|
1215
|
-
|
|
1216
|
-
## 6.0.0-canary.35
|
|
1217
|
-
|
|
1218
|
-
## 6.0.0-canary.34
|
|
1219
|
-
|
|
1220
|
-
## 6.0.0-canary.33
|
|
1221
|
-
|
|
1222
|
-
### Patch Changes
|
|
1223
|
-
|
|
1224
|
-
- [#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))
|
|
1225
|
-
|
|
1226
|
-
## 6.0.0-canary.32
|
|
1227
|
-
|
|
1228
|
-
## 6.0.0-canary.31
|
|
1229
|
-
|
|
1230
|
-
## 6.0.0-canary.30
|
|
1231
|
-
|
|
1232
|
-
## 6.0.0-canary.29
|
|
1233
|
-
|
|
1234
|
-
### Minor Changes
|
|
1235
|
-
|
|
1236
|
-
- [#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))
|
|
1237
|
-
|
|
1238
|
-
## 6.0.0-canary.28
|
|
1239
|
-
|
|
1240
|
-
## 6.0.0-canary.27
|
|
1241
|
-
|
|
1242
|
-
## 6.0.0-canary.26
|
|
1243
|
-
|
|
1244
|
-
## 6.0.0-canary.25
|
|
1245
|
-
|
|
1246
|
-
## 6.0.0-canary.24
|
|
1247
|
-
|
|
1248
|
-
## 6.0.0-canary.23
|
|
1249
|
-
|
|
1250
|
-
### Minor Changes
|
|
1251
|
-
|
|
1252
|
-
- [#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))
|
|
1253
|
-
|
|
1254
|
-
## 6.0.0-canary.22
|
|
1255
|
-
|
|
1256
|
-
## 6.0.0-canary.21
|
|
1257
|
-
|
|
1258
|
-
## 6.0.0-canary.20
|
|
1259
|
-
|
|
1260
|
-
### Minor Changes
|
|
1261
|
-
|
|
1262
|
-
- [#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))
|
|
1263
|
-
|
|
1264
|
-
### Patch Changes
|
|
1265
|
-
|
|
1266
|
-
- [#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))
|
|
1267
|
-
|
|
1268
|
-
## 5.2.0-canary.19
|
|
1269
|
-
|
|
1270
|
-
## 5.2.0-canary.18
|
|
1271
|
-
|
|
1272
|
-
## 5.2.0-canary.17
|
|
1273
|
-
|
|
1274
|
-
## 5.2.0-canary.16
|
|
1275
|
-
|
|
1276
|
-
## 5.2.0-canary.15
|
|
1277
|
-
|
|
1278
|
-
## 5.2.0-canary.14
|
|
1279
|
-
|
|
1280
|
-
## 5.2.0-canary.13
|
|
1281
|
-
|
|
1282
|
-
## 5.2.0-canary.12
|
|
1283
|
-
|
|
1284
|
-
## 5.2.0-canary.11
|
|
1285
|
-
|
|
1286
|
-
## 5.2.0-canary.10
|
|
1287
|
-
|
|
1288
|
-
## 5.2.0-canary.9
|
|
1289
|
-
|
|
1290
|
-
## 5.2.0-canary.8
|
|
1291
|
-
|
|
1292
|
-
## 5.2.0-canary.7
|
|
1293
|
-
|
|
1294
|
-
## 5.2.0-canary.6
|
|
1295
|
-
|
|
1296
|
-
## 5.2.0-canary.5
|
|
1297
|
-
|
|
1298
|
-
## 5.2.0-canary.4
|
|
1299
|
-
|
|
1300
|
-
## 5.2.0-canary.3
|
|
1301
|
-
|
|
1302
|
-
### Minor Changes
|
|
1303
|
-
|
|
1304
|
-
- [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
|
|
1305
|
-
|
|
1306
|
-
- NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
|
|
1307
|
-
- NextLink automatically adds `target="_blank"` when the href is external.
|
|
1308
|
-
- NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`.
|
|
1309
|
-
|
|
1310
|
-
Upgrade instructions: https://www.graphcommerce.org/docs/framework/links#upgrading-from-nextjs-12 ([@paales](https://github.com/paales))
|
|
1311
|
-
|
|
1312
|
-
## 5.2.0-canary.2
|
|
1313
|
-
|
|
1314
|
-
## 5.2.0-canary.1
|
|
1315
|
-
|
|
1316
|
-
## 5.2.0-canary.0
|
|
1317
|
-
|
|
1318
|
-
## 5.1.1
|
|
1319
|
-
|
|
1320
|
-
## 5.1.1-canary.1
|
|
1321
|
-
|
|
1322
|
-
## 5.1.1-canary.0
|
|
1323
|
-
|
|
1324
|
-
### Patch Changes
|
|
1325
|
-
|
|
1326
|
-
- [#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))
|
|
1327
|
-
|
|
1328
|
-
## 5.1.0
|
|
1329
|
-
|
|
1330
|
-
### Patch Changes
|
|
1331
|
-
|
|
1332
|
-
- [#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))
|
|
1333
|
-
|
|
1334
|
-
- [#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))
|
|
1335
|
-
|
|
1336
|
-
- [#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.
|
|
1337
|
-
|
|
1338
|
-
- Updated the @mui/material package
|
|
1339
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
1340
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1341
|
-
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
1342
|
-
|
|
1343
|
-
- [#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))
|
|
1344
|
-
|
|
1345
|
-
- [#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))
|
|
1346
|
-
|
|
1347
|
-
## 5.1.0-canary.11
|
|
1348
|
-
|
|
1349
|
-
## 5.1.0-canary.10
|
|
1350
|
-
|
|
1351
|
-
### Patch Changes
|
|
1352
|
-
|
|
1353
|
-
- [#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))
|
|
1354
|
-
|
|
1355
|
-
## 5.1.0-canary.9
|
|
1356
|
-
|
|
1357
|
-
## 5.1.0-canary.8
|
|
1358
|
-
|
|
1359
|
-
## 5.1.0-canary.7
|
|
1360
|
-
|
|
1361
|
-
## 5.1.0-canary.6
|
|
1362
|
-
|
|
1363
|
-
## 5.1.0-canary.5
|
|
1364
|
-
|
|
1365
|
-
### Patch Changes
|
|
1366
|
-
|
|
1367
|
-
- [`2a859970d`](https://github.com/graphcommerce-org/graphcommerce/commit/2a859970de34ad768a0ba54f50d53ad17823cc15) - Make sure the interceptors aren't cleaned up constantly ([@paales](https://github.com/paales))
|
|
1368
|
-
|
|
1369
|
-
## 5.1.0-canary.4
|
|
1370
|
-
|
|
1371
|
-
### Patch Changes
|
|
1372
|
-
|
|
1373
|
-
- [#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))
|
|
1374
|
-
|
|
1375
|
-
- [#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))
|
|
1376
|
-
|
|
1377
|
-
## 5.1.0-canary.3
|
|
1378
|
-
|
|
1379
|
-
### Patch Changes
|
|
1380
|
-
|
|
1381
|
-
- [#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.
|
|
1382
|
-
|
|
1383
|
-
- Updated the @mui/material package
|
|
1384
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
1385
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1386
|
-
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
1387
|
-
|
|
1388
|
-
## 5.1.0-canary.2
|
|
1389
|
-
|
|
1390
|
-
## 5.1.0-canary.1
|
|
1391
|
-
|
|
1392
|
-
## 5.1.0-canary.0
|
|
1393
|
-
|
|
1394
|
-
## 5.0.0
|
|
1395
|
-
|
|
1396
|
-
### Major Changes
|
|
1397
|
-
|
|
1398
|
-
- [#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))
|
|
1399
|
-
|
|
1400
|
-
### Minor Changes
|
|
1401
|
-
|
|
1402
|
-
- [#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))
|
|
1403
|
-
|
|
1404
|
-
- [#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))
|
|
1405
|
-
|
|
1406
|
-
- [#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))
|
|
1407
|
-
|
|
1408
|
-
### Patch Changes
|
|
1409
|
-
|
|
1410
|
-
- [#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))
|
|
1411
|
-
|
|
1412
|
-
- [#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))
|
|
1413
|
-
|
|
1414
|
-
- [#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))
|
|
1415
|
-
|
|
1416
|
-
## 5.0.0-canary.14
|
|
1417
|
-
|
|
1418
|
-
## 5.0.0-canary.9
|
|
1419
|
-
|
|
1420
|
-
### Major Changes
|
|
1421
|
-
|
|
1422
|
-
- [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
|
|
1423
|
-
|
|
1424
|
-
## 4.31.0-canary.8
|
|
1425
|
-
|
|
1426
|
-
## 4.31.0-canary.7
|
|
1427
|
-
|
|
1428
|
-
### Patch Changes
|
|
1429
|
-
|
|
1430
|
-
- [`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))
|
|
1431
|
-
|
|
1432
|
-
## 4.31.0-canary.6
|
|
1433
|
-
|
|
1434
|
-
## 4.31.0-canary.5
|
|
1435
|
-
|
|
1436
|
-
### Minor Changes
|
|
1437
|
-
|
|
1438
|
-
- [#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))
|
|
1439
|
-
|
|
1440
|
-
## 4.31.0-canary.4
|
|
1441
|
-
|
|
1442
|
-
## 4.31.0-canary.3
|
|
1443
|
-
|
|
1444
|
-
### Patch Changes
|
|
1445
|
-
|
|
1446
|
-
- [#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))
|
|
1447
|
-
|
|
1448
|
-
- [#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))
|
|
1449
|
-
|
|
1450
|
-
## 4.31.0-canary.2
|
|
1451
|
-
|
|
1452
|
-
### Minor Changes
|
|
1453
|
-
|
|
1454
|
-
- [#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))
|
|
1455
|
-
|
|
1456
|
-
## 4.31.0-canary.1
|
|
1457
|
-
|
|
1458
|
-
### Minor Changes
|
|
1459
|
-
|
|
1460
|
-
- [#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))
|
|
1461
|
-
|
|
1462
|
-
## 4.31.0-canary.0
|
|
1463
|
-
|
|
1464
|
-
## 4.30.2
|
|
1465
|
-
|
|
1466
|
-
## 4.30.1
|
|
1467
|
-
|
|
1468
|
-
### Patch Changes
|
|
1469
|
-
|
|
1470
|
-
- [#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
|
|
1471
|
-
|
|
1472
|
-
## 4.30.0
|
|
1473
|
-
|
|
1474
|
-
### Minor Changes
|
|
1475
|
-
|
|
1476
|
-
- [#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
|
|
373
|
+
- [#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
|
|
1477
374
|
|
|
1478
375
|
### Patch Changes
|
|
1479
376
|
|
|
1480
377
|
- [#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
|
|
1481
378
|
|
|
1482
|
-
## 4.30.0-canary.1
|
|
1483
|
-
|
|
1484
|
-
### Patch Changes
|
|
1485
|
-
|
|
1486
|
-
- [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
1487
|
-
|
|
1488
|
-
## 4.30.0-canary.0
|
|
1489
|
-
|
|
1490
|
-
### Minor Changes
|
|
1491
|
-
|
|
1492
|
-
- [#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
|
|
1493
|
-
|
|
1494
379
|
## 3.2.0
|
|
1495
380
|
|
|
1496
381
|
### Minor Changes
|