@graphcommerce/next-config 9.0.0-canary.98 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/CHANGELOG.md +219 -1149
  2. package/__tests__/commands/copyFiles.ts +512 -0
  3. package/__tests__/config/utils/__snapshots__/mergeEnvIntoConfig.ts.snap +6 -0
  4. package/__tests__/config/utils/mergeEnvIntoConfig.ts +9 -20
  5. package/__tests__/config/utils/rewriteLegancyEnv.ts +32 -36
  6. package/__tests__/interceptors/findPlugins.ts +80 -74
  7. package/__tests__/interceptors/generateInterceptors.ts +78 -135
  8. package/__tests__/interceptors/parseStructure.ts +2 -2
  9. package/__tests__/utils/resolveDependenciesSync.ts +11 -10
  10. package/dist/commands/codegen.js +18 -0
  11. package/dist/commands/copyFiles.js +292 -0
  12. package/dist/commands/copyRoutes.js +20 -0
  13. package/dist/config/commands/exportConfig.js +1 -1
  14. package/dist/config/commands/generateConfig.js +2 -2
  15. package/dist/config/demoConfig.js +2 -2
  16. package/dist/config/utils/mergeEnvIntoConfig.js +18 -20
  17. package/dist/config/utils/rewriteLegacyEnv.js +2 -2
  18. package/dist/generated/config.js +13 -1
  19. package/dist/index.js +3 -1
  20. package/dist/interceptors/InterceptorPlugin.js +4 -3
  21. package/dist/interceptors/Visitor.js +5 -9
  22. package/dist/interceptors/commands/codegenInterceptors.js +2 -2
  23. package/dist/interceptors/extractExports.js +9 -54
  24. package/dist/interceptors/findOriginalSource.js +2 -1
  25. package/dist/interceptors/findPlugins.js +5 -8
  26. package/dist/interceptors/generateInterceptor.js +12 -10
  27. package/dist/interceptors/generateInterceptors.js +3 -2
  28. package/dist/interceptors/parseStructure.js +1 -1
  29. package/dist/interceptors/writeInterceptors.js +2 -2
  30. package/dist/utils/TopologicalSort.js +4 -0
  31. package/dist/utils/isMonorepo.js +40 -6
  32. package/dist/utils/resolveDependenciesSync.js +9 -2
  33. package/dist/utils/sig.js +34 -0
  34. package/dist/withGraphCommerce.js +3 -2
  35. package/package.json +17 -16
  36. package/src/commands/codegen.ts +18 -0
  37. package/src/commands/copyFiles.ts +328 -0
  38. package/src/config/commands/exportConfig.ts +1 -1
  39. package/src/config/commands/generateConfig.ts +3 -3
  40. package/src/config/demoConfig.ts +5 -5
  41. package/src/config/index.ts +1 -1
  42. package/src/config/utils/exportConfigToEnv.ts +1 -1
  43. package/src/config/utils/mergeEnvIntoConfig.ts +22 -25
  44. package/src/config/utils/replaceConfigInString.ts +1 -1
  45. package/src/config/utils/rewriteLegacyEnv.ts +5 -4
  46. package/src/generated/config.ts +36 -0
  47. package/src/index.ts +6 -5
  48. package/src/interceptors/InterceptorPlugin.ts +10 -7
  49. package/src/interceptors/RenameVisitor.ts +1 -1
  50. package/src/interceptors/Visitor.ts +10 -15
  51. package/src/interceptors/commands/codegenInterceptors.ts +2 -2
  52. package/src/interceptors/extractExports.ts +4 -46
  53. package/src/interceptors/findOriginalSource.ts +5 -4
  54. package/src/interceptors/findPlugins.ts +8 -9
  55. package/src/interceptors/generateInterceptor.ts +15 -12
  56. package/src/interceptors/generateInterceptors.ts +7 -13
  57. package/src/interceptors/parseStructure.ts +4 -4
  58. package/src/interceptors/swc.ts +2 -1
  59. package/src/interceptors/writeInterceptors.ts +3 -3
  60. package/src/utils/TopologicalSort.ts +4 -0
  61. package/src/utils/isMonorepo.ts +46 -5
  62. package/src/utils/packageRoots.ts +1 -1
  63. package/src/utils/resolveDependenciesSync.ts +14 -2
  64. package/src/utils/sig.ts +37 -0
  65. package/src/withGraphCommerce.ts +7 -5
  66. package/dist/config/commands/generateIntercetors.js +0 -9
  67. package/dist/interceptors/commands/generateIntercetors.js +0 -9
  68. package/dist/runtimeCachingOptimizations.js +0 -28
  69. package/src/runtimeCachingOptimizations.ts +0 -27
package/CHANGELOG.md CHANGED
@@ -1,216 +1,259 @@
1
1
  # Change Log
2
2
 
3
- ## 9.0.0-canary.98
3
+ ## 9.0.0
4
4
 
5
- ## 9.0.0-canary.97
5
+ ### Minor Changes
6
6
 
7
- ## 9.0.0-canary.96
7
+ - [#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))
8
8
 
9
- ## 9.0.0-canary.95
9
+ - [#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:
10
10
 
11
- ## 9.0.0-canary.94
11
+ 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.
12
12
 
13
- ## 9.0.0-canary.93
13
+ 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.
14
+ 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))
14
15
 
15
- ## 9.0.0-canary.92
16
+ - [#2306](https://github.com/graphcommerce-org/graphcommerce/pull/2306) [`5e188e8`](https://github.com/graphcommerce-org/graphcommerce/commit/5e188e830dca4730c73830858f59a94e9d41ed12) - Added delete account functionality to the account section. Disabled by default and can be enabled through the config. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
16
17
 
17
- ## 9.0.0-canary.91
18
+ - [#2223](https://github.com/graphcommerce-org/graphcommerce/pull/2223) [`4ef6765`](https://github.com/graphcommerce-org/graphcommerce/commit/4ef6765d52fa56cfbe12b7e4e81aa183cc590a87) - Move products sitemap to the sitemap folder. ([@bramvanderholst](https://github.com/bramvanderholst))
18
19
 
19
- ## 9.0.0-canary.90
20
+ - [#2452](https://github.com/graphcommerce-org/graphcommerce/pull/2452) [`aab290f`](https://github.com/graphcommerce-org/graphcommerce/commit/aab290f9c905be06e742cd8ad50d7d415930828a) - Migrated to next.config.ts ([@paales](https://github.com/paales))
20
21
 
21
- ## 9.0.0-canary.89
22
+ - [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Added `<CompanyFields/>` with `<CompanyName />` and `<CompanyVAT />` to shipping and billing forms. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
22
23
 
23
- ## 9.0.0-canary.88
24
+ - [#2226](https://github.com/graphcommerce-org/graphcommerce/pull/2226) [`8939df2`](https://github.com/graphcommerce-org/graphcommerce/commit/8939df22eda57e681f83076707e856700f8b2e21) - Big improvements to the plugin system: Typescript validated, deeper resolution, new configuration object, replace plugins, and more ifConfig options.
24
25
 
25
- ## 9.0.0-canary.87
26
+ 1. Plugins now use TypeScript's `"moduleSuffixes": [".interceptor", ""]` [functionality](https://www.typescriptlang.org/tsconfig#moduleSuffixes) which means that plugins now correctly resolve via TypeScript. So if you _go to reference_ in VSCode (or any other editor), you go to the interceptor directly and see which plugins are applied there. This also means that plugins are automatically checked during build (and will fail if there are errors).
27
+ 2. The exported type of an _intercepted component_ now has the types of all plugins applied. This means that plugins can modify the props of components (and is still validated with TypeScript). To make this work a plugin must always forward props to the `<Prev>` to ensure that values are correctly passed on.
28
+ 3. Plugins will now always be applied to deepest resolved path. This means that a plugin automatically applies to internal usages as well. This thus means that plugins do not need to be written with an internal path, but can keep the parent path. Istead of writing `@graphcommerce/magento-cart-items/components/RemoveItemFromCart/RemoveItemFromCartFab` you can now write `@graphcommerce/magento-cart-items`.
29
+ 4. A new configuration object for plugins is created instead of separate exports (the legacy format is still supported though):
26
30
 
27
- ## 9.0.0-canary.86
31
+ ```tsx
32
+ export const config: PluginConfig = {
33
+ type: 'component'
34
+ module: '@graphcommerce/magento-product',
35
+ ifConfig: 'demoMode',
36
+ }
37
+ ```
28
38
 
29
- ### Patch Changes
39
+ This also means that the _name of the export_ dictates the name of the component/function the plugin is applied.
30
40
 
31
- - [#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))
41
+ 5. We now support replace plugins (`type: 'replace'`), which allow you to replace the original component/function/const completely (and type checked of course).
32
42
 
33
- ## 9.0.0-canary.85
43
+ ```tsx
44
+ import { ProductPageNameProps } from '@graphcommerce/magento-product'
45
+ import { PluginConfig } from '@graphcommerce/next-config'
34
46
 
35
- ## 9.0.0-canary.84
47
+ export const config: PluginConfig = {
48
+ type: 'replace',
49
+ module: '@graphcommerce/magento-product',
50
+ }
36
51
 
37
- ## 9.0.0-canary.83
52
+ export function ProductPageName(props: ProductPageNameProps) {
53
+ const { product } = props
54
+ return <div>REPLACEMENT {product.url_key}</div>
55
+ }
56
+ ```
38
57
 
39
- ## 9.0.0-canary.82
58
+ Plugin files can now have multiple exports for the same configuration. So next to the `ProductPageName` you can also have a `ProductPagePrice` export for example in the same file.
40
59
 
41
- ## 9.0.0-canary.81
60
+ 6. We now support `ifConfig` tuple which allows you to apply a plugin only if a certain configuration is set.
42
61
 
43
- ## 9.0.0-canary.80
62
+ ```tsx
63
+ export const config: PluginConfig = {
64
+ type: 'replace',
65
+ module: '@graphcommerce/magento-product',
66
+ ifConfig: ['theme', 'my-theme'],
67
+ }
68
+ ```
44
69
 
45
- ## 9.0.0-canary.79
70
+ This allows you to support multiple builds with different plugins applied. For example one build with `GC_THEME=my-theme` and another with `GC_THEME=my-other-theme`. ([@paales](https://github.com/paales))
46
71
 
47
- ## 9.0.0-canary.78
72
+ - [#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))
48
73
 
49
- ## 9.0.0-canary.77
74
+ - [#2223](https://github.com/graphcommerce-org/graphcommerce/pull/2223) [`4543c8d`](https://github.com/graphcommerce-org/graphcommerce/commit/4543c8d3af455b709a4cb3cad2e9d5d70cffb969) - Added separate sitemap for categories ([@bramvanderholst](https://github.com/bramvanderholst))
50
75
 
51
- ## 9.0.0-canary.76
76
+ - [#2242](https://github.com/graphcommerce-org/graphcommerce/pull/2242) [`a4cce76`](https://github.com/graphcommerce-org/graphcommerce/commit/a4cce76ca37af2bec604e953ada4bb11bd91f55d) - Add option to show an extended version of the pagination component. Configurable via the `productListPaginationVariant` key in your `graphcommerce.config.js`.
52
77
 
53
- ## 9.0.0-canary.75
78
+ - `COMPACT` means: `< Page X of Y >`
79
+ - `EXTENDED` means: `< 1 2 ... [5] ... 10 11 >` ([@FrankHarland](https://github.com/FrankHarland))
54
80
 
55
- ## 9.0.0-canary.74
81
+ - [#2385](https://github.com/graphcommerce-org/graphcommerce/pull/2385) [`3434ede`](https://github.com/graphcommerce-org/graphcommerce/commit/3434ede37855c36949711d05d13eb01906b29ad0) - Added a functionality to copy directories from packages to the project and keep them managed with GraphCommerce ([@paales](https://github.com/paales))
56
82
 
57
- ## 9.0.0-canary.73
83
+ - [#2313](https://github.com/graphcommerce-org/graphcommerce/pull/2313) [`511e75c`](https://github.com/graphcommerce-org/graphcommerce/commit/511e75c3f8c077e617ed17e5042796e2411f312f) - Add the `customerNote` field to the shipping and customer address forms. Added configuration `customerAddressNoteEnable` to enable or disable the field. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
58
84
 
59
- ## 9.0.0-canary.72
85
+ ### Patch Changes
60
86
 
61
- ## 9.0.0-canary.71
87
+ - [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`5153904`](https://github.com/graphcommerce-org/graphcommerce/commit/51539045cb3e14424141a65a1fd89216d3ee6fc2) - Added `PRIVATE_ADDITIONAL_DEPENDENCIES` env variable support to enable packages that we do not want to have in the examples directory but we do want to be able to demo. ([@paales](https://github.com/paales))
62
88
 
63
- ## 9.0.0-canary.70
89
+ - [#2213](https://github.com/graphcommerce-org/graphcommerce/pull/2213) [`9b8349f`](https://github.com/graphcommerce-org/graphcommerce/commit/9b8349f0001a786f9b1666f050ae226316bd16f3) - Removed the `ProductPage.graphql` query from the examples directory as it isn't used anymore. ([@paales](https://github.com/paales))
64
90
 
65
- ## 9.0.0-canary.69
91
+ - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use `muiRegister`, which improves INP scores. ([@FrankHarland](https://github.com/FrankHarland))
66
92
 
67
- ## 9.0.0-canary.68
93
+ - [#2450](https://github.com/graphcommerce-org/graphcommerce/pull/2450) [`c37d1ec`](https://github.com/graphcommerce-org/graphcommerce/commit/c37d1ec016bc26c2a59296b0c76c14b513d94306) - Make sure categories and products create the correct URL's in sitemaps ([@paales](https://github.com/paales))
68
94
 
69
- ## 9.0.0-canary.67
95
+ - [#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))
70
96
 
71
- ## 9.0.0-canary.66
97
+ - [#2223](https://github.com/graphcommerce-org/graphcommerce/pull/2223) [`4f7fe02`](https://github.com/graphcommerce-org/graphcommerce/commit/4f7fe02c6f0f017d7a52559df1972551eb0cba47) - Added robotsAllow to storefront config ([@bramvanderholst](https://github.com/bramvanderholst))
72
98
 
73
- ## 9.0.0-canary.65
99
+ - [#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 accidental changes. ([@paales](https://github.com/paales))
74
100
 
75
- ## 9.0.0-canary.64
101
+ - [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`6831040`](https://github.com/graphcommerce-org/graphcommerce/commit/68310401448b7b42b53757db4a84de4a01e35aa2) - Reduce bundlesize of `@apollo/client`. ([@paales](https://github.com/paales))
76
102
 
77
- ## 9.0.0-canary.63
103
+ - [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`81c6c81`](https://github.com/graphcommerce-org/graphcommerce/commit/81c6c81e1b4a31df3c400a3ee4311bdf2b46a2b5) - Solved an issue where the plugins would be generated with the wrong path ([@paales](https://github.com/paales))
78
104
 
79
- ## 9.0.0-canary.62
105
+ - [#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))
80
106
 
81
- ## 9.0.0-canary.61
107
+ - [#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))
82
108
 
83
- ## 9.0.0-canary.60
109
+ - [#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))
84
110
 
85
- ## 9.0.0-canary.59
111
+ - [#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))
86
112
 
87
- ## 9.0.0-canary.58
113
+ - [#2196](https://github.com/graphcommerce-org/graphcommerce/pull/2196) [`84c50e4`](https://github.com/graphcommerce-org/graphcommerce/commit/84c50e49a1a7f154d4a8f4045c37e773e20283ad) - Allow Lingui to use `linguiLocale` with country identifiers like `en-us`, it would always load `en` in this case. Introduced a new `useLocale` hook to use the correct locale string to use in Intl methods. ([@paales](https://github.com/paales))
88
114
 
89
- ### Minor Changes
115
+ - [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`6831040`](https://github.com/graphcommerce-org/graphcommerce/commit/68310401448b7b42b53757db4a84de4a01e35aa2) - Suppress warning where a dependency is an expression, Added uglify-es and long as the dependencies couldn’t be found ([@paales](https://github.com/paales))
90
116
 
91
- - [#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))
117
+ - [`a04fae0`](https://github.com/graphcommerce-org/graphcommerce/commit/a04fae00ce294c8cdf4da85a96b98b8deb3e2fb9) - Configure the maxBatchSize for the release when getting information from github ([@paales](https://github.com/paales))
92
118
 
93
- ## 9.0.0-canary.57
119
+ - [#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))
94
120
 
95
- ## 9.0.0-canary.56
121
+ - [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`cfc0f4e`](https://github.com/graphcommerce-org/graphcommerce/commit/cfc0f4e015f3b3a7348b882eb7440222b3e26a07) - Make sure the interceptors are generated before the typecheck is ran. ([@paales](https://github.com/paales))
96
122
 
97
- ## 9.0.0-canary.55
123
+ - [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`444e446`](https://github.com/graphcommerce-org/graphcommerce/commit/444e446a218cc9da3defb940a6d5cce0229ff845) - Added clear upgrade instructions for `linguiLocale`. ([@paales](https://github.com/paales))
98
124
 
99
- ## 9.0.0-canary.54
125
+ - [#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))
100
126
 
101
- ## 8.1.0-canary.53
127
+ - [#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))
102
128
 
103
- ## 8.1.0-canary.52
129
+ ## 9.0.0-canary.118
104
130
 
105
- ## 8.1.0-canary.51
131
+ ### Patch Changes
106
132
 
107
- ## 8.1.0-canary.50
133
+ - [`a04fae0`](https://github.com/graphcommerce-org/graphcommerce/commit/a04fae00ce294c8cdf4da85a96b98b8deb3e2fb9) - Configure the maxBatchSize for the release when getting information from github ([@paales](https://github.com/paales))
108
134
 
109
- ## 8.1.0-canary.49
135
+ ## 9.0.0-canary.117
110
136
 
111
- ## 8.1.0-canary.48
137
+ ## 9.0.0-canary.116
112
138
 
113
- ## 8.1.0-canary.47
139
+ ### Minor Changes
114
140
 
115
- ## 8.1.0-canary.46
141
+ - [#2452](https://github.com/graphcommerce-org/graphcommerce/pull/2452) [`aab290f`](https://github.com/graphcommerce-org/graphcommerce/commit/aab290f9c905be06e742cd8ad50d7d415930828a) - Migrated to next.config.ts ([@paales](https://github.com/paales))
116
142
 
117
- ### Minor Changes
143
+ ## 9.0.0-canary.115
118
144
 
119
- - [#2313](https://github.com/graphcommerce-org/graphcommerce/pull/2313) [`511e75c`](https://github.com/graphcommerce-org/graphcommerce/commit/511e75c3f8c077e617ed17e5042796e2411f312f) - Add the customerNote field to the shipping and customer address forms ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
145
+ ## 9.0.0-canary.114
120
146
 
121
147
  ### Patch Changes
122
148
 
123
- - [#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))
149
+ - [#2450](https://github.com/graphcommerce-org/graphcommerce/pull/2450) [`c37d1ec`](https://github.com/graphcommerce-org/graphcommerce/commit/c37d1ec016bc26c2a59296b0c76c14b513d94306) - Make sure categories and products create the correct URL's in sitemaps ([@paales](https://github.com/paales))
124
150
 
125
- ## 8.1.0-canary.45
151
+ ## 9.0.0-canary.113
126
152
 
127
- ## 8.1.0-canary.44
153
+ ## 9.0.0-canary.112
128
154
 
129
- ## 8.1.0-canary.43
155
+ ## 9.0.0-canary.111
130
156
 
131
- ## 8.1.0-canary.42
157
+ ## 9.0.0-canary.110
132
158
 
133
- ## 8.1.0-canary.41
159
+ ## 9.0.0-canary.109
134
160
 
135
- ### Patch Changes
161
+ ## 9.0.0-canary.108
136
162
 
137
- - [#2242](https://github.com/graphcommerce-org/graphcommerce/pull/2242) [`a4cce76`](https://github.com/graphcommerce-org/graphcommerce/commit/a4cce76ca37af2bec604e953ada4bb11bd91f55d) - Add option to show an extended version of the pagination component. Configurable via the "productListPaginationVariant" key in your graphcommerce.config.js COMPACT means: "< Page X of Y >" EXTENDED means: "< 1 2 ... [5] ... 10 11 >" ([@FrankHarland](https://github.com/FrankHarland))
163
+ ## 9.0.0-canary.107
138
164
 
139
- ## 8.1.0-canary.40
165
+ ## 9.0.0-canary.106
140
166
 
141
167
  ### Minor Changes
142
168
 
143
- - [#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))
169
+ - [#2385](https://github.com/graphcommerce-org/graphcommerce/pull/2385) [`3434ede`](https://github.com/graphcommerce-org/graphcommerce/commit/3434ede37855c36949711d05d13eb01906b29ad0) - Added a functionality to copy directories from packages to the project and keep them managed with GraphCommerce ([@paales](https://github.com/paales))
144
170
 
145
- ## 8.1.0-canary.39
171
+ ## 9.0.0-canary.105
146
172
 
147
- ## 8.1.0-canary.38
173
+ ## 9.0.0-canary.104
148
174
 
149
- ### Minor Changes
175
+ ### Patch Changes
150
176
 
151
- - [#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))
177
+ - [#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))
152
178
 
153
- ## 8.1.0-canary.37
179
+ ## 9.0.0-canary.103
154
180
 
155
- ## 8.1.0-canary.36
181
+ ### Patch Changes
156
182
 
157
- ## 8.1.0-canary.35
183
+ - [#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))
158
184
 
159
- ## 8.1.0-canary.34
185
+ ## 9.0.0-canary.102
160
186
 
161
- ## 8.1.0-canary.33
187
+ ### Minor Changes
162
188
 
163
- ## 8.1.0-canary.32
189
+ - [#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))
164
190
 
165
191
  ### Patch Changes
166
192
 
167
- - [#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))
193
+ - [#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))
168
194
 
169
- ## 8.1.0-canary.31
195
+ ## 9.0.0-canary.101
170
196
 
171
- ## 8.1.0-canary.30
197
+ ### Minor Changes
172
198
 
173
- ## 8.1.0-canary.29
199
+ - [#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:
174
200
 
175
- ## 8.1.0-canary.28
201
+ 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.
202
+
203
+ 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.
204
+ 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))
205
+
206
+ ## 9.0.0-canary.86
176
207
 
177
208
  ### Patch Changes
178
209
 
179
- - [#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))
210
+ - [#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))
211
+
212
+ ## 9.0.0-canary.58
213
+
214
+ ### Minor Changes
215
+
216
+ - [#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))
217
+
218
+ ## 8.1.0-canary.46
219
+
220
+ ### Minor Changes
221
+
222
+ - [#2313](https://github.com/graphcommerce-org/graphcommerce/pull/2313) [`511e75c`](https://github.com/graphcommerce-org/graphcommerce/commit/511e75c3f8c077e617ed17e5042796e2411f312f) - Add the customerNote field to the shipping and customer address forms ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
180
223
 
181
- ## 8.1.0-canary.27
224
+ ### Patch Changes
182
225
 
183
- ## 8.1.0-canary.26
226
+ - [#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))
184
227
 
185
- ## 8.1.0-canary.25
228
+ ## 8.1.0-canary.41
186
229
 
187
- ## 8.1.0-canary.24
230
+ ### Patch Changes
188
231
 
189
- ## 8.1.0-canary.23
232
+ - [#2242](https://github.com/graphcommerce-org/graphcommerce/pull/2242) [`a4cce76`](https://github.com/graphcommerce-org/graphcommerce/commit/a4cce76ca37af2bec604e953ada4bb11bd91f55d) - Add option to show an extended version of the pagination component. Configurable via the "productListPaginationVariant" key in your graphcommerce.config.js COMPACT means: "< Page X of Y >" EXTENDED means: "< 1 2 ... [5] ... 10 11 >" ([@FrankHarland](https://github.com/FrankHarland))
190
233
 
191
- ## 8.1.0-canary.22
234
+ ## 8.1.0-canary.40
192
235
 
193
- ## 8.1.0-canary.21
236
+ ### Minor Changes
194
237
 
195
- ## 8.1.0-canary.20
238
+ - [#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))
196
239
 
197
- ## 8.1.0-canary.19
240
+ ## 8.1.0-canary.38
198
241
 
199
- ## 8.1.0-canary.18
242
+ ### Minor Changes
200
243
 
201
- ## 8.1.0-canary.17
244
+ - [#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))
202
245
 
203
- ## 8.1.0-canary.16
246
+ ## 8.1.0-canary.32
204
247
 
205
- ## 8.1.0-canary.15
248
+ ### Patch Changes
206
249
 
207
- ## 8.1.0-canary.14
250
+ - [#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))
208
251
 
209
- ## 8.1.0-canary.13
252
+ ## 8.1.0-canary.28
210
253
 
211
- ## 8.1.0-canary.12
254
+ ### Patch Changes
212
255
 
213
- ## 8.1.0-canary.11
256
+ - [#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))
214
257
 
215
258
  ## 8.1.0-canary.10
216
259
 
@@ -242,10 +285,6 @@
242
285
 
243
286
  - [#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))
244
287
 
245
- ## 8.1.0-canary.7
246
-
247
- ## 8.1.0-canary.6
248
-
249
288
  ## 8.1.0-canary.5
250
289
 
251
290
  ### Minor Changes
@@ -304,8 +343,6 @@
304
343
 
305
344
  - [#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))
306
345
 
307
- ## 8.0.6-canary.3
308
-
309
346
  ## 8.0.6-canary.2
310
347
 
311
348
  ### Patch Changes
@@ -330,76 +367,6 @@
330
367
 
331
368
  - [#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))
332
369
 
333
- ## 8.0.5-canary.10
334
-
335
- ## 8.0.5-canary.9
336
-
337
- ## 8.0.5-canary.8
338
-
339
- ## 8.0.5-canary.7
340
-
341
- ## 8.0.5-canary.6
342
-
343
- ## 8.0.5-canary.5
344
-
345
- ## 8.0.5-canary.4
346
-
347
- ## 8.0.5-canary.3
348
-
349
- ### Patch Changes
350
-
351
- - [#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))
352
-
353
- ## 8.0.5-canary.2
354
-
355
- ## 8.0.5-canary.1
356
-
357
- ## 8.0.5-canary.0
358
-
359
- ## 8.0.4
360
-
361
- ## 8.0.4-canary.1
362
-
363
- ## 8.0.4-canary.0
364
-
365
- ## 8.0.3
366
-
367
- ## 8.0.3-canary.6
368
-
369
- ## 8.0.3-canary.5
370
-
371
- ## 8.0.3-canary.4
372
-
373
- ## 8.0.3-canary.3
374
-
375
- ## 8.0.3-canary.2
376
-
377
- ## 8.0.3-canary.1
378
-
379
- ## 8.0.3-canary.0
380
-
381
- ## 8.0.2
382
-
383
- ## 8.0.2-canary.3
384
-
385
- ## 8.0.2-canary.2
386
-
387
- ## 8.0.2-canary.1
388
-
389
- ## 8.0.2-canary.0
390
-
391
- ## 8.0.1
392
-
393
- ## 8.0.1-canary.4
394
-
395
- ## 8.0.1-canary.3
396
-
397
- ## 8.0.1-canary.2
398
-
399
- ## 8.0.1-canary.1
400
-
401
- ## 8.0.1-canary.0
402
-
403
370
  ## 8.0.0
404
371
 
405
372
  ### Minor Changes
@@ -426,1056 +393,159 @@
426
393
 
427
394
  - [#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))
428
395
 
429
- ## 8.0.0-canary.100
430
-
431
- ## 8.0.0-canary.99
432
-
433
- ## 8.0.0-canary.98
434
-
435
- ## 8.0.0-canary.97
436
-
437
- ## 8.0.0-canary.96
438
-
439
- ## 8.0.0-canary.95
440
-
441
- ## 8.0.0-canary.94
442
-
443
- ### Patch Changes
444
-
445
- - [#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))
446
-
447
- ## 8.0.0-canary.93
448
-
449
- ### Patch Changes
450
-
451
- - [`d267f19`](https://github.com/graphcommerce-org/graphcommerce/commit/d267f19d6ab85f7dc1088974b3fee6148a537c20) - Disable the pagination thumbnails ([@paales](https://github.com/paales))
452
-
453
- ## 8.0.0-canary.92
454
-
455
- ## 8.0.0-canary.91
396
+ ## 7.0.1
456
397
 
457
398
  ### Patch Changes
458
399
 
459
- - [#2172](https://github.com/graphcommerce-org/graphcommerce/pull/2172) [`279599e`](https://github.com/graphcommerce-org/graphcommerce/commit/279599e7a86bd96ea9e36065af3c367df9e02a63) - Updated documentation to reflect recent code changes ([@paales](https://github.com/paales))
460
-
461
- ## 8.0.0-canary.90
462
-
463
- ## 8.0.0-canary.89
400
+ - [`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))
464
401
 
465
- ## 8.0.0-canary.88
402
+ - [`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))
466
403
 
467
- ## 8.0.0-canary.87
404
+ - [#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))
468
405
 
469
- ## 8.0.0-canary.86
406
+ - [#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))
470
407
 
471
- ## 8.0.0-canary.85
408
+ - [#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))
472
409
 
473
- ## 8.0.0-canary.84
410
+ - [#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))
474
411
 
475
- ## 8.0.0-canary.83
412
+ ## 7.0.0
476
413
 
477
- ## 8.0.0-canary.82
414
+ ### Major Changes
478
415
 
479
- ## 8.0.0-canary.81
416
+ - [`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))
480
417
 
481
- ## 8.0.0-canary.80
418
+ ### Minor Changes
482
419
 
483
- ## 8.0.0-canary.79
420
+ - [#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))
484
421
 
485
- ## 8.0.0-canary.78
422
+ - [#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))
486
423
 
487
- ## 8.0.0-canary.77
424
+ ### Patch Changes
488
425
 
489
- ## 8.0.0-canary.76
426
+ - [#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))
490
427
 
491
- ## 8.0.0-canary.75
428
+ - [#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))
492
429
 
493
- ## 8.0.0-canary.74
430
+ - [#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))
494
431
 
495
- ## 8.0.0-canary.73
432
+ - [#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))
496
433
 
497
- ## 8.0.0-canary.72
434
+ - [#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))
498
435
 
499
- ## 8.0.0-canary.71
436
+ - [#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))
500
437
 
501
- ## 8.0.0-canary.70
438
+ - [#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))
502
439
 
503
- ## 8.0.0-canary.69
440
+ - [#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))
504
441
 
505
- ## 7.1.0-canary.68
442
+ ## 6.1.0
506
443
 
507
- ## 7.1.0-canary.67
444
+ ### Minor Changes
508
445
 
509
- ## 7.1.0-canary.66
446
+ - [#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))
510
447
 
511
448
  ### Patch Changes
512
449
 
513
- - [#2156](https://github.com/graphcommerce-org/graphcommerce/pull/2156) [`69b816c`](https://github.com/graphcommerce-org/graphcommerce/commit/69b816cd739af2999ec2a5053f09b9bb10379c52) - Updated dependencies. Fixed trace-to-tree.mjs to debug build perf and added trace-to-event-format.mjs for compatibility with about://tracing. ([@paales](https://github.com/paales))
450
+ - [#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))
514
451
 
515
- ## 7.1.0-canary.65
452
+ - [#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))
516
453
 
517
- ## 7.1.0-canary.64
454
+ ## 6.0.1
518
455
 
519
456
  ### Patch Changes
520
457
 
521
- - [#2129](https://github.com/graphcommerce-org/graphcommerce/pull/2129) [`dca4490b9`](https://github.com/graphcommerce-org/graphcommerce/commit/dca4490b97319e9d4117277719adef395ed1e7b4) - Created ./devcontainer/devcontainer.json to automatically run Graphcommerce after opening Codespaces ([@action-simon](https://github.com/action-simon))
522
-
523
- ## 7.1.0-canary.63
524
-
525
- ## 7.1.0-canary.62
526
-
527
- ## 7.1.0-canary.61
528
-
529
- ## 7.1.0-canary.60
530
-
531
- ## 7.1.0-canary.59
532
-
533
- ## 7.1.0-canary.58
534
-
535
- ## 7.1.0-canary.57
536
-
537
- ## 7.1.0-canary.56
538
-
539
- ## 7.1.0-canary.55
540
-
541
- ## 7.1.0-canary.54
458
+ - [#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))
542
459
 
543
- ## 7.1.0-canary.53
460
+ ## 6.0.0
544
461
 
545
- ## 7.1.0-canary.52
462
+ ### Major Changes
546
463
 
547
- ## 7.1.0-canary.51
464
+ - [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
548
465
 
549
- ### Patch Changes
466
+ - NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
467
+ - NextLink automatically adds `target="_blank"` when the href is external.
468
+ - NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
550
469
 
551
- - [#2116](https://github.com/graphcommerce-org/graphcommerce/pull/2116) [`e0e5e82af`](https://github.com/graphcommerce-org/graphcommerce/commit/e0e5e82af36ca38a78fc031e0c680daaab5909ad) - Node.js version of gitpod updated to node 18 ([@action-simon](https://github.com/action-simon))
470
+ - [#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.
552
471
 
553
- ## 7.1.0-canary.50
472
+ - GraphCommerce can be configured in the graphcommerce.config.js
473
+ - The configuration is automatically validated on startup.
474
+ - All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
554
475
 
555
- ## 7.1.0-canary.49
476
+ ### Minor Changes
556
477
 
557
- ## 7.1.0-canary.48
478
+ - [#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))
558
479
 
559
- ## 7.1.0-canary.47
480
+ - [#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))
560
481
 
561
- ## 7.1.0-canary.46
482
+ - [#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))
562
483
 
563
484
  ### Patch Changes
564
485
 
565
- - [`0d4a5a776`](https://github.com/graphcommerce-org/graphcommerce/commit/0d4a5a776e67c7cab39d964f2f47364f167c1951) - When releasing there will be changes to the yarn.lock file, but those weren't committed. ([@paales](https://github.com/paales))
486
+ - [#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))
566
487
 
567
- ## 7.1.0-canary.45
488
+ - [#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))
568
489
 
569
- ### Minor Changes
490
+ - [#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))
570
491
 
571
- - [#2113](https://github.com/graphcommerce-org/graphcommerce/pull/2113) [`437f467ce`](https://github.com/graphcommerce-org/graphcommerce/commit/437f467ce1bd9182954be753f1ce17056ab62e85) - Upgraded to yarn 4 package manager ([@paales](https://github.com/paales))
492
+ ## 5.1.0
572
493
 
573
494
  ### Patch Changes
574
495
 
575
- - [#2113](https://github.com/graphcommerce-org/graphcommerce/pull/2113) [`630618219`](https://github.com/graphcommerce-org/graphcommerce/commit/6306182196321bdab509a8dcfe09eb00da10303a) - Moved all internal @graphcommerce/\* dependencies to peerDependencies and resolve remaining peerDependency issues ([@paales](https://github.com/paales))
576
-
577
- - [#2113](https://github.com/graphcommerce-org/graphcommerce/pull/2113) [`77b1bac4d`](https://github.com/graphcommerce-org/graphcommerce/commit/77b1bac4db9c903a29c3969823da663875408be0) - Upgraded to nextjs 14.0.2, and updated other related dependencies. Removed @mui/material/modern alias as that doesnt work in combination with nextjs 14.0.2. ([@paales](https://github.com/paales))
496
+ - [#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))
578
497
 
579
- ## 7.1.0-canary.38
498
+ - [#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))
580
499
 
581
- ## 7.1.0-canary.37
500
+ - [#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.
582
501
 
583
- ## 7.1.0-canary.36
502
+ - Updated the @mui/material package
503
+ - Removed dependencies on react-hook-form-mui and @playwright/test
504
+ - Upgraded dependencies including type-fest and graphql-mesh
505
+ - Solved peer dependency issues ([@paales](https://github.com/paales))
584
506
 
585
- ## 7.1.0-canary.35
507
+ - [#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))
586
508
 
587
- ## 7.1.0-canary.34
509
+ - [#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))
588
510
 
589
- ### Patch Changes
511
+ ## 5.0.0
590
512
 
591
- - [#2078](https://github.com/graphcommerce-org/graphcommerce/pull/2078) [`5f409e617`](https://github.com/graphcommerce-org/graphcommerce/commit/5f409e617afae36d5c6224f3c6eb8d085fc2e84c) - Added @graphcommerce packages in node_modules to nextjs watch options ([@KMalkowski](https://github.com/KMalkowski))
513
+ ### Major Changes
592
514
 
593
- ## 7.1.0-canary.33
515
+ - [#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))
594
516
 
595
- ## 7.1.0-canary.32
517
+ ### Minor Changes
596
518
 
597
- ## 7.1.0-canary.31
519
+ - [#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))
598
520
 
599
- ## 7.1.0-canary.30
521
+ - [#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))
600
522
 
601
- ## 7.1.0-canary.29
523
+ - [#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))
602
524
 
603
- ## 7.1.0-canary.28
525
+ ### Patch Changes
604
526
 
605
- ## 7.1.0-canary.27
527
+ - [#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))
606
528
 
607
- ## 7.1.0-canary.26
529
+ - [#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))
608
530
 
609
- ## 7.1.0-canary.25
531
+ - [#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))
610
532
 
611
- ## 7.1.0-canary.24
533
+ ## 4.30.1
612
534
 
613
- ## 7.1.0-canary.23
535
+ ### Patch Changes
614
536
 
615
- ## 7.1.0-canary.22
537
+ - [#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
616
538
 
617
- ## 7.1.0-canary.21
539
+ ## 4.30.0
618
540
 
619
- ## 7.1.0-canary.20
541
+ ### Minor Changes
620
542
 
621
- ## 7.1.0-canary.19
543
+ - [#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
622
544
 
623
- ## 7.1.0-canary.18
624
-
625
- ## 7.1.0-canary.17
626
-
627
- ## 7.1.0-canary.16
628
-
629
- ## 7.1.0-canary.15
630
-
631
- ## 7.1.0-canary.14
632
-
633
- ## 7.1.0-canary.13
634
-
635
- ## 7.1.0-canary.12
636
-
637
- ## 7.1.0-canary.11
638
-
639
- ## 7.1.0-canary.10
640
-
641
- ## 7.1.0-canary.9
642
-
643
- ## 7.1.0-canary.8
644
-
645
- ## 7.0.2-canary.7
646
-
647
- ## 7.0.2-canary.6
648
-
649
- ### Patch Changes
650
-
651
- - [#2068](https://github.com/graphcommerce-org/graphcommerce/pull/2068) [`4c04ac40e`](https://github.com/graphcommerce-org/graphcommerce/commit/4c04ac40e993c872fc0a302fd4216e6c89e05028) - Removed old yarn version ([@paales](https://github.com/paales))
652
-
653
- ## 7.0.2-canary.5
654
-
655
- ### Patch Changes
656
-
657
- - [`3e4092db1`](https://github.com/graphcommerce-org/graphcommerce/commit/3e4092db1f74b693b14b43f49a11938b7bc8fb2f) - Try and fix gihtub releases ([@paales](https://github.com/paales))
658
-
659
- ## 7.0.1
660
-
661
- ### Patch Changes
662
-
663
- - [`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))
664
-
665
- - [`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))
666
-
667
- - [#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))
668
-
669
- - [#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))
670
-
671
- - [#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))
672
-
673
- - [#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))
674
-
675
- ## 7.0.1-canary.15
676
-
677
- ## 7.0.1-canary.14
678
-
679
- ### Patch Changes
680
-
681
- - [`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))
682
-
683
- ## 7.0.1-canary.13
684
-
685
- ## 7.0.1-canary.12
686
-
687
- ### Patch Changes
688
-
689
- - [`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))
690
-
691
- ## 7.0.1-canary.11
692
-
693
- ## 7.0.1-canary.10
694
-
695
- ### Patch Changes
696
-
697
- - [#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))
698
-
699
- ## 7.0.1-canary.9
700
-
701
- ## 7.0.1-canary.8
702
-
703
- ## 7.0.1-canary.7
704
-
705
- ## 7.0.1-canary.6
706
-
707
- ## 7.0.1-canary.5
708
-
709
- ## 7.0.1-canary.4
710
-
711
- ## 7.0.1-canary.3
712
-
713
- ## 7.0.1-canary.2
714
-
715
- ### Patch Changes
716
-
717
- - [#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))
718
-
719
- ## 7.0.1-canary.1
720
-
721
- ## 7.0.1-canary.0
722
-
723
- ### Patch Changes
724
-
725
- - [#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))
726
-
727
- - [#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))
728
-
729
- ## 7.0.0
730
-
731
- ### Major Changes
732
-
733
- - [`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))
734
-
735
- ### Minor Changes
736
-
737
- - [#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))
738
-
739
- - [#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))
740
-
741
- ### Patch Changes
742
-
743
- - [#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))
744
-
745
- - [#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))
746
-
747
- - [#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))
748
-
749
- - [#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))
750
-
751
- - [#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))
752
-
753
- - [#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))
754
-
755
- - [#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))
756
-
757
- - [#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))
758
-
759
- ## 6.2.0-canary.98
760
-
761
- ## 6.2.0-canary.97
762
-
763
- ## 6.2.0-canary.96
764
-
765
- ## 6.2.0-canary.95
766
-
767
- ### Patch Changes
768
-
769
- - [#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))
770
-
771
- ## 6.2.0-canary.94
772
-
773
- ## 6.2.0-canary.93
774
-
775
- ### Patch Changes
776
-
777
- - [#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))
778
-
779
- ## 6.2.0-canary.92
780
-
781
- ## 6.2.0-canary.91
782
-
783
- ## 6.2.0-canary.90
784
-
785
- ### Patch Changes
786
-
787
- - [#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))
788
-
789
- ## 6.2.0-canary.89
790
-
791
- ## 6.2.0-canary.88
792
-
793
- ## 6.2.0-canary.87
794
-
795
- ### Patch Changes
796
-
797
- - [#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))
798
-
799
- ## 6.2.0-canary.86
800
-
801
- ## 6.2.0-canary.85
802
-
803
- ## 6.2.0-canary.84
804
-
805
- ### Patch Changes
806
-
807
- - [#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))
808
-
809
- ## 6.2.0-canary.83
810
-
811
- ## 6.2.0-canary.82
812
-
813
- ## 6.2.0-canary.81
814
-
815
- ## 6.2.0-canary.80
816
-
817
- ## 6.2.0-canary.79
818
-
819
- ## 6.2.0-canary.78
820
-
821
- ### Minor Changes
822
-
823
- - [#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))
824
-
825
- ## 6.2.0-canary.77
826
-
827
- ## 6.2.0-canary.76
828
-
829
- ## 6.2.0-canary.75
830
-
831
- ## 6.2.0-canary.74
832
-
833
- ## 6.2.0-canary.73
834
-
835
- ## 6.2.0-canary.72
836
-
837
- ## 6.2.0-canary.71
838
-
839
- ## 6.2.0-canary.70
840
-
841
- ## 6.2.0-canary.69
842
-
843
- ## 6.2.0-canary.68
844
-
845
- ## 6.2.0-canary.67
846
-
847
- ### Patch Changes
848
-
849
- - [#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))
850
-
851
- ## 6.2.0-canary.66
852
-
853
- ## 6.2.0-canary.65
854
-
855
- ## 6.2.0-canary.64
856
-
857
- ## 6.2.0-canary.63
858
-
859
- ## 6.2.0-canary.62
860
-
861
- ## 6.2.0-canary.61
862
-
863
- ## 6.2.0-canary.60
864
-
865
- ## 6.2.0-canary.59
866
-
867
- ## 6.2.0-canary.58
868
-
869
- ## 6.2.0-canary.57
870
-
871
- ### Patch Changes
872
-
873
- - [#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))
874
-
875
- ## 6.2.0-canary.56
876
-
877
- ## 6.2.0-canary.55
878
-
879
- ## 6.2.0-canary.54
880
-
881
- ## 6.2.0-canary.53
882
-
883
- ## 6.2.0-canary.52
884
-
885
- ## 6.2.0-canary.51
886
-
887
- ## 6.2.0-canary.50
888
-
889
- ### Minor Changes
890
-
891
- - [`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))
892
-
893
- ## 6.2.0-canary.49
894
-
895
- ### Patch Changes
896
-
897
- - [#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))
898
-
899
- ## 6.2.0-canary.48
900
-
901
- ## 6.2.0-canary.47
902
-
903
- ## 6.2.0-canary.46
904
-
905
- ## 6.2.0-canary.45
906
-
907
- ## 6.2.0-canary.44
908
-
909
- ## 6.2.0-canary.43
910
-
911
- ## 6.2.0-canary.42
912
-
913
- ## 6.2.0-canary.41
914
-
915
- ### Patch Changes
916
-
917
- - [#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))
918
-
919
- ## 6.2.0-canary.40
920
-
921
- ## 6.2.0-canary.39
922
-
923
- ## 6.2.0-canary.38
924
-
925
- ## 6.2.0-canary.37
926
-
927
- ## 6.2.0-canary.36
928
-
929
- ## 6.2.0-canary.35
930
-
931
- ## 6.2.0-canary.34
932
-
933
- ## 6.2.0-canary.33
934
-
935
- ## 6.2.0-canary.32
936
-
937
- ## 6.2.0-canary.31
938
-
939
- ## 6.2.0-canary.30
940
-
941
- ## 6.2.0-canary.29
942
-
943
- ## 6.2.0-canary.28
944
-
945
- ## 6.2.0-canary.27
946
-
947
- ## 6.2.0-canary.26
948
-
949
- ## 6.2.0-canary.25
950
-
951
- ## 6.2.0-canary.24
952
-
953
- ## 6.2.0-canary.23
954
-
955
- ## 6.2.0-canary.22
956
-
957
- ## 6.2.0-canary.21
958
-
959
- ## 6.2.0-canary.20
960
-
961
- ### Patch Changes
962
-
963
- - [#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))
964
-
965
- ## 6.2.0-canary.19
966
-
967
- ## 6.2.0-canary.18
968
-
969
- ## 6.2.0-canary.17
970
-
971
- ## 6.2.0-canary.16
972
-
973
- ## 6.2.0-canary.15
974
-
975
- ## 6.2.0-canary.14
976
-
977
- ### Patch Changes
978
-
979
- - [#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))
980
-
981
- ## 6.2.0-canary.13
982
-
983
- ### Patch Changes
984
-
985
- - [#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))
986
-
987
- ## 6.2.0-canary.12
988
-
989
- ## 6.2.0-canary.11
990
-
991
- ## 6.2.0-canary.10
992
-
993
- ## 6.2.0-canary.9
994
-
995
- ## 6.2.0-canary.8
996
-
997
- ## 6.2.0-canary.7
998
-
999
- ## 6.2.0-canary.6
1000
-
1001
- ### Minor Changes
1002
-
1003
- - [#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))
1004
-
1005
- ## 6.1.1-canary.5
1006
-
1007
- ## 6.1.1-canary.4
1008
-
1009
- ## 6.1.1-canary.3
1010
-
1011
- ## 6.1.1-canary.2
1012
-
1013
- ## 6.1.1-canary.1
1014
-
1015
- ## 6.1.1-canary.0
1016
-
1017
- ## 6.1.0
1018
-
1019
- ### Minor Changes
1020
-
1021
- - [#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))
1022
-
1023
- ### Patch Changes
1024
-
1025
- - [#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))
1026
-
1027
- - [#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))
1028
-
1029
- ## 6.0.2-canary.22
1030
-
1031
- ## 6.0.2-canary.21
1032
-
1033
- ## 6.0.2-canary.20
1034
-
1035
- ## 6.0.2-canary.19
1036
-
1037
- ## 6.0.2-canary.18
1038
-
1039
- ## 6.0.2-canary.17
1040
-
1041
- ## 6.0.2-canary.16
1042
-
1043
- ## 6.0.2-canary.15
1044
-
1045
- ## 6.0.2-canary.14
1046
-
1047
- ## 6.0.2-canary.13
1048
-
1049
- ## 6.0.2-canary.12
1050
-
1051
- ## 6.0.2-canary.11
1052
-
1053
- ## 6.0.2-canary.10
1054
-
1055
- ## 6.0.2-canary.9
1056
-
1057
- ## 6.0.2-canary.8
1058
-
1059
- ## 6.0.2-canary.7
1060
-
1061
- ### Patch Changes
1062
-
1063
- - [#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))
1064
-
1065
- ## 6.0.2-canary.6
1066
-
1067
- ## 6.0.2-canary.5
1068
-
1069
- ## 6.0.2-canary.4
1070
-
1071
- ### Patch Changes
1072
-
1073
- - [#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))
1074
-
1075
- ## 6.0.2-canary.3
1076
-
1077
- ### Patch Changes
1078
-
1079
- - [#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))
1080
-
1081
- ## 6.0.2-canary.2
1082
-
1083
- ## 6.0.2-canary.1
1084
-
1085
- ## 6.0.2-canary.0
1086
-
1087
- ## 6.0.1
1088
-
1089
- ### Patch Changes
1090
-
1091
- - [#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))
1092
-
1093
- ## 6.0.1-canary.7
1094
-
1095
- ## 6.0.1-canary.6
1096
-
1097
- ## 6.0.1-canary.5
1098
-
1099
- ### Patch Changes
1100
-
1101
- - [#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))
1102
-
1103
- ## 6.0.1-canary.4
1104
-
1105
- ## 6.0.1-canary.3
1106
-
1107
- ## 6.0.1-canary.2
1108
-
1109
- ## 6.0.1-canary.1
1110
-
1111
- ## 6.0.1-canary.0
1112
-
1113
- ## 6.0.0
1114
-
1115
- ### Major Changes
1116
-
1117
- - [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
1118
-
1119
- - NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
1120
- - NextLink automatically adds `target="_blank"` when the href is external.
1121
- - NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
1122
-
1123
- - [#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.
1124
-
1125
- - GraphCommerce can be configured in the graphcommerce.config.js
1126
- - The configuration is automatically validated on startup.
1127
- - All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
1128
-
1129
- ### Minor Changes
1130
-
1131
- - [#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))
1132
-
1133
- - [#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))
1134
-
1135
- - [#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))
1136
-
1137
- ### Patch Changes
1138
-
1139
- - [#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))
1140
-
1141
- - [#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))
1142
-
1143
- - [#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))
1144
-
1145
- ## 6.0.0-canary.54
1146
-
1147
- ## 6.0.0-canary.53
1148
-
1149
- ## 6.0.0-canary.52
1150
-
1151
- ## 6.0.0-canary.51
1152
-
1153
- ## 6.0.0-canary.50
1154
-
1155
- ## 6.0.0-canary.49
1156
-
1157
- ## 6.0.0-canary.48
1158
-
1159
- ## 6.0.0-canary.47
1160
-
1161
- ## 6.0.0-canary.46
1162
-
1163
- ### Patch Changes
1164
-
1165
- - [#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))
1166
-
1167
- ## 6.0.0-canary.45
1168
-
1169
- ## 6.0.0-canary.44
1170
-
1171
- ### Patch Changes
1172
-
1173
- - [#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))
1174
-
1175
- ## 6.0.0-canary.43
1176
-
1177
- ## 6.0.0-canary.42
1178
-
1179
- ## 6.0.0-canary.41
1180
-
1181
- ### Patch Changes
1182
-
1183
- - [#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))
1184
-
1185
- - [#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))
1186
-
1187
- ## 6.0.0-canary.40
1188
-
1189
- ## 6.0.0-canary.39
1190
-
1191
- ## 6.0.0-canary.38
1192
-
1193
- ## 6.0.0-canary.37
1194
-
1195
- ## 6.0.0-canary.36
1196
-
1197
- ### Minor Changes
1198
-
1199
- - [#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))
1200
-
1201
- ## 6.0.0-canary.35
1202
-
1203
- ## 6.0.0-canary.34
1204
-
1205
- ## 6.0.0-canary.33
1206
-
1207
- ### Patch Changes
1208
-
1209
- - [#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))
1210
-
1211
- ## 6.0.0-canary.32
1212
-
1213
- ## 6.0.0-canary.31
1214
-
1215
- ## 6.0.0-canary.30
1216
-
1217
- ## 6.0.0-canary.29
1218
-
1219
- ### Minor Changes
1220
-
1221
- - [#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))
1222
-
1223
- ## 6.0.0-canary.28
1224
-
1225
- ## 6.0.0-canary.27
1226
-
1227
- ## 6.0.0-canary.26
1228
-
1229
- ## 6.0.0-canary.25
1230
-
1231
- ## 6.0.0-canary.24
1232
-
1233
- ## 6.0.0-canary.23
1234
-
1235
- ### Minor Changes
1236
-
1237
- - [#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))
1238
-
1239
- ## 6.0.0-canary.22
1240
-
1241
- ## 6.0.0-canary.21
1242
-
1243
- ## 6.0.0-canary.20
1244
-
1245
- ### Minor Changes
1246
-
1247
- - [#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))
1248
-
1249
- ### Patch Changes
1250
-
1251
- - [#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))
1252
-
1253
- ## 5.2.0-canary.19
1254
-
1255
- ## 5.2.0-canary.18
1256
-
1257
- ## 5.2.0-canary.17
1258
-
1259
- ## 5.2.0-canary.16
1260
-
1261
- ## 5.2.0-canary.15
1262
-
1263
- ## 5.2.0-canary.14
1264
-
1265
- ## 5.2.0-canary.13
1266
-
1267
- ## 5.2.0-canary.12
1268
-
1269
- ## 5.2.0-canary.11
1270
-
1271
- ## 5.2.0-canary.10
1272
-
1273
- ## 5.2.0-canary.9
1274
-
1275
- ## 5.2.0-canary.8
1276
-
1277
- ## 5.2.0-canary.7
1278
-
1279
- ## 5.2.0-canary.6
1280
-
1281
- ## 5.2.0-canary.5
1282
-
1283
- ## 5.2.0-canary.4
1284
-
1285
- ## 5.2.0-canary.3
1286
-
1287
- ### Minor Changes
1288
-
1289
- - [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
1290
-
1291
- - NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
1292
- - NextLink automatically adds `target="_blank"` when the href is external.
1293
- - NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`.
1294
-
1295
- Upgrade instructions: https://www.graphcommerce.org/docs/framework/links#upgrading-from-nextjs-12 ([@paales](https://github.com/paales))
1296
-
1297
- ## 5.2.0-canary.2
1298
-
1299
- ## 5.2.0-canary.1
1300
-
1301
- ## 5.2.0-canary.0
1302
-
1303
- ## 5.1.1
1304
-
1305
- ## 5.1.1-canary.1
1306
-
1307
- ## 5.1.1-canary.0
1308
-
1309
- ### Patch Changes
1310
-
1311
- - [#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))
1312
-
1313
- ## 5.1.0
1314
-
1315
- ### Patch Changes
1316
-
1317
- - [#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))
1318
-
1319
- - [#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))
1320
-
1321
- - [#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.
1322
-
1323
- - Updated the @mui/material package
1324
- - Removed dependencies on react-hook-form-mui and @playwright/test
1325
- - Upgraded dependencies including type-fest and graphql-mesh
1326
- - Solved peer dependency issues ([@paales](https://github.com/paales))
1327
-
1328
- - [#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))
1329
-
1330
- - [#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))
1331
-
1332
- ## 5.1.0-canary.11
1333
-
1334
- ## 5.1.0-canary.10
1335
-
1336
- ### Patch Changes
1337
-
1338
- - [#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))
1339
-
1340
- ## 5.1.0-canary.9
1341
-
1342
- ## 5.1.0-canary.8
1343
-
1344
- ## 5.1.0-canary.7
1345
-
1346
- ## 5.1.0-canary.6
1347
-
1348
- ## 5.1.0-canary.5
1349
-
1350
- ### Patch Changes
1351
-
1352
- - [`2a859970d`](https://github.com/graphcommerce-org/graphcommerce/commit/2a859970de34ad768a0ba54f50d53ad17823cc15) - Make sure the interceptors aren't cleaned up constantly ([@paales](https://github.com/paales))
1353
-
1354
- ## 5.1.0-canary.4
1355
-
1356
- ### Patch Changes
1357
-
1358
- - [#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))
1359
-
1360
- - [#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))
1361
-
1362
- ## 5.1.0-canary.3
1363
-
1364
- ### Patch Changes
1365
-
1366
- - [#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.
1367
-
1368
- - Updated the @mui/material package
1369
- - Removed dependencies on react-hook-form-mui and @playwright/test
1370
- - Upgraded dependencies including type-fest and graphql-mesh
1371
- - Solved peer dependency issues ([@paales](https://github.com/paales))
1372
-
1373
- ## 5.1.0-canary.2
1374
-
1375
- ## 5.1.0-canary.1
1376
-
1377
- ## 5.1.0-canary.0
1378
-
1379
- ## 5.0.0
1380
-
1381
- ### Major Changes
1382
-
1383
- - [#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))
1384
-
1385
- ### Minor Changes
1386
-
1387
- - [#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))
1388
-
1389
- - [#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))
1390
-
1391
- - [#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))
1392
-
1393
- ### Patch Changes
1394
-
1395
- - [#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))
1396
-
1397
- - [#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))
1398
-
1399
- - [#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))
1400
-
1401
- ## 5.0.0-canary.14
1402
-
1403
- ## 5.0.0-canary.9
1404
-
1405
- ### Major Changes
1406
-
1407
- - [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
1408
-
1409
- ## 4.31.0-canary.8
1410
-
1411
- ## 4.31.0-canary.7
1412
-
1413
- ### Patch Changes
1414
-
1415
- - [`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))
1416
-
1417
- ## 4.31.0-canary.6
1418
-
1419
- ## 4.31.0-canary.5
1420
-
1421
- ### Minor Changes
1422
-
1423
- - [#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))
1424
-
1425
- ## 4.31.0-canary.4
1426
-
1427
- ## 4.31.0-canary.3
1428
-
1429
- ### Patch Changes
1430
-
1431
- - [#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))
1432
-
1433
- - [#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))
1434
-
1435
- ## 4.31.0-canary.2
1436
-
1437
- ### Minor Changes
1438
-
1439
- - [#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))
1440
-
1441
- ## 4.31.0-canary.1
1442
-
1443
- ### Minor Changes
1444
-
1445
- - [#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))
1446
-
1447
- ## 4.31.0-canary.0
1448
-
1449
- ## 4.30.2
1450
-
1451
- ## 4.30.1
1452
-
1453
- ### Patch Changes
1454
-
1455
- - [#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
1456
-
1457
- ## 4.30.0
1458
-
1459
- ### Minor Changes
1460
-
1461
- - [#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
1462
-
1463
- ### Patch Changes
545
+ ### Patch Changes
1464
546
 
1465
547
  - [#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
1466
548
 
1467
- ## 4.30.0-canary.1
1468
-
1469
- ### Patch Changes
1470
-
1471
- - [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
1472
-
1473
- ## 4.30.0-canary.0
1474
-
1475
- ### Minor Changes
1476
-
1477
- - [#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
1478
-
1479
549
  ## 3.2.0
1480
550
 
1481
551
  ### Minor Changes