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