@graphcommerce/next-config 9.0.0-canary.99 → 9.0.1-canary.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.
- package/CHANGELOG.md +220 -1150
- package/__tests__/commands/copyFiles.ts +512 -0
- package/__tests__/config/utils/__snapshots__/mergeEnvIntoConfig.ts.snap +6 -0
- package/__tests__/config/utils/mergeEnvIntoConfig.ts +9 -20
- package/__tests__/config/utils/rewriteLegancyEnv.ts +32 -36
- package/__tests__/interceptors/findPlugins.ts +76 -78
- package/__tests__/interceptors/generateInterceptors.ts +78 -135
- package/__tests__/interceptors/parseStructure.ts +2 -2
- package/__tests__/utils/resolveDependenciesSync.ts +11 -10
- package/dist/commands/codegen.js +18 -0
- package/dist/commands/copyFiles.js +292 -0
- package/dist/commands/copyRoutes.js +20 -0
- package/dist/config/commands/exportConfig.js +1 -1
- package/dist/config/commands/generateConfig.js +2 -2
- package/dist/config/demoConfig.js +2 -2
- package/dist/config/utils/mergeEnvIntoConfig.js +18 -20
- package/dist/config/utils/rewriteLegacyEnv.js +2 -2
- package/dist/generated/config.js +13 -1
- package/dist/index.js +3 -1
- package/dist/interceptors/InterceptorPlugin.js +4 -3
- package/dist/interceptors/Visitor.js +5 -9
- package/dist/interceptors/commands/codegenInterceptors.js +2 -2
- package/dist/interceptors/extractExports.js +9 -54
- package/dist/interceptors/findOriginalSource.js +2 -1
- package/dist/interceptors/findPlugins.js +5 -8
- package/dist/interceptors/generateInterceptor.js +12 -10
- package/dist/interceptors/generateInterceptors.js +3 -2
- package/dist/interceptors/parseStructure.js +1 -1
- package/dist/interceptors/writeInterceptors.js +2 -2
- package/dist/utils/TopologicalSort.js +4 -0
- package/dist/utils/isMonorepo.js +40 -6
- package/dist/utils/resolveDependenciesSync.js +9 -2
- package/dist/utils/sig.js +34 -0
- package/dist/withGraphCommerce.js +3 -2
- package/package.json +17 -16
- package/src/commands/codegen.ts +18 -0
- package/src/commands/copyFiles.ts +328 -0
- package/src/config/commands/exportConfig.ts +1 -1
- package/src/config/commands/generateConfig.ts +3 -3
- package/src/config/demoConfig.ts +5 -5
- package/src/config/index.ts +1 -1
- package/src/config/utils/exportConfigToEnv.ts +1 -1
- package/src/config/utils/mergeEnvIntoConfig.ts +22 -25
- package/src/config/utils/replaceConfigInString.ts +1 -1
- package/src/config/utils/rewriteLegacyEnv.ts +5 -4
- package/src/generated/config.ts +36 -0
- package/src/index.ts +6 -5
- package/src/interceptors/InterceptorPlugin.ts +10 -7
- package/src/interceptors/RenameVisitor.ts +1 -1
- package/src/interceptors/Visitor.ts +10 -15
- package/src/interceptors/commands/codegenInterceptors.ts +2 -2
- package/src/interceptors/extractExports.ts +4 -46
- package/src/interceptors/findOriginalSource.ts +5 -4
- package/src/interceptors/findPlugins.ts +8 -9
- package/src/interceptors/generateInterceptor.ts +15 -12
- package/src/interceptors/generateInterceptors.ts +7 -13
- package/src/interceptors/parseStructure.ts +4 -4
- package/src/interceptors/swc.ts +2 -1
- package/src/interceptors/writeInterceptors.ts +3 -3
- package/src/utils/TopologicalSort.ts +4 -0
- package/src/utils/isMonorepo.ts +46 -5
- package/src/utils/packageRoots.ts +1 -1
- package/src/utils/resolveDependenciesSync.ts +14 -2
- package/src/utils/sig.ts +37 -0
- package/src/withGraphCommerce.ts +7 -5
- package/dist/config/commands/generateIntercetors.js +0 -9
- package/dist/interceptors/commands/generateIntercetors.js +0 -9
- package/dist/runtimeCachingOptimizations.js +0 -28
- package/src/runtimeCachingOptimizations.ts +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,218 +1,261 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.
|
|
3
|
+
## 9.0.1-canary.0
|
|
4
4
|
|
|
5
|
-
## 9.0.0
|
|
5
|
+
## 9.0.0
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### Minor Changes
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
- [#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
10
|
|
|
11
|
-
|
|
11
|
+
- [#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
12
|
|
|
13
|
-
|
|
13
|
+
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
14
|
|
|
15
|
-
|
|
15
|
+
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.
|
|
16
|
+
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
17
|
|
|
17
|
-
|
|
18
|
+
- [#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
19
|
|
|
19
|
-
|
|
20
|
+
- [#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
21
|
|
|
21
|
-
|
|
22
|
+
- [#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
23
|
|
|
23
|
-
|
|
24
|
+
- [#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
25
|
|
|
25
|
-
|
|
26
|
+
- [#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
27
|
|
|
27
|
-
|
|
28
|
+
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).
|
|
29
|
+
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.
|
|
30
|
+
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`.
|
|
31
|
+
4. A new configuration object for plugins is created instead of separate exports (the legacy format is still supported though):
|
|
28
32
|
|
|
29
|
-
|
|
33
|
+
```tsx
|
|
34
|
+
export const config: PluginConfig = {
|
|
35
|
+
type: 'component'
|
|
36
|
+
module: '@graphcommerce/magento-product',
|
|
37
|
+
ifConfig: 'demoMode',
|
|
38
|
+
}
|
|
39
|
+
```
|
|
30
40
|
|
|
31
|
-
|
|
41
|
+
This also means that the _name of the export_ dictates the name of the component/function the plugin is applied.
|
|
32
42
|
|
|
33
|
-
|
|
43
|
+
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
44
|
|
|
35
|
-
|
|
45
|
+
```tsx
|
|
46
|
+
import { ProductPageNameProps } from '@graphcommerce/magento-product'
|
|
47
|
+
import { PluginConfig } from '@graphcommerce/next-config'
|
|
36
48
|
|
|
37
|
-
|
|
49
|
+
export const config: PluginConfig = {
|
|
50
|
+
type: 'replace',
|
|
51
|
+
module: '@graphcommerce/magento-product',
|
|
52
|
+
}
|
|
38
53
|
|
|
39
|
-
|
|
54
|
+
export function ProductPageName(props: ProductPageNameProps) {
|
|
55
|
+
const { product } = props
|
|
56
|
+
return <div>REPLACEMENT {product.url_key}</div>
|
|
57
|
+
}
|
|
58
|
+
```
|
|
40
59
|
|
|
41
|
-
|
|
60
|
+
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
61
|
|
|
43
|
-
|
|
62
|
+
6. We now support `ifConfig` tuple which allows you to apply a plugin only if a certain configuration is set.
|
|
44
63
|
|
|
45
|
-
|
|
64
|
+
```tsx
|
|
65
|
+
export const config: PluginConfig = {
|
|
66
|
+
type: 'replace',
|
|
67
|
+
module: '@graphcommerce/magento-product',
|
|
68
|
+
ifConfig: ['theme', 'my-theme'],
|
|
69
|
+
}
|
|
70
|
+
```
|
|
46
71
|
|
|
47
|
-
|
|
72
|
+
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
73
|
|
|
49
|
-
|
|
74
|
+
- [#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
75
|
|
|
51
|
-
|
|
76
|
+
- [#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
77
|
|
|
53
|
-
|
|
78
|
+
- [#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
79
|
|
|
55
|
-
|
|
80
|
+
- `COMPACT` means: `< Page X of Y >`
|
|
81
|
+
- `EXTENDED` means: `< 1 2 ... [5] ... 10 11 >` ([@FrankHarland](https://github.com/FrankHarland))
|
|
56
82
|
|
|
57
|
-
|
|
83
|
+
- [#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
84
|
|
|
59
|
-
|
|
85
|
+
- [#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
86
|
|
|
61
|
-
|
|
87
|
+
### Patch Changes
|
|
62
88
|
|
|
63
|
-
|
|
89
|
+
- [#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
90
|
|
|
65
|
-
|
|
91
|
+
- [#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
92
|
|
|
67
|
-
|
|
93
|
+
- [#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
94
|
|
|
69
|
-
|
|
95
|
+
- [#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
96
|
|
|
71
|
-
|
|
97
|
+
- [#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
98
|
|
|
73
|
-
|
|
99
|
+
- [#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
100
|
|
|
75
|
-
|
|
101
|
+
- [#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
102
|
|
|
77
|
-
|
|
103
|
+
- [#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
104
|
|
|
79
|
-
|
|
105
|
+
- [#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
106
|
|
|
81
|
-
|
|
107
|
+
- [#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
108
|
|
|
83
|
-
|
|
109
|
+
- [#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
110
|
|
|
85
|
-
|
|
111
|
+
- [#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
112
|
|
|
87
|
-
|
|
113
|
+
- [#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
114
|
|
|
89
|
-
|
|
115
|
+
- [#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
116
|
|
|
91
|
-
|
|
117
|
+
- [#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
118
|
|
|
93
|
-
- [
|
|
119
|
+
- [`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
120
|
|
|
95
|
-
|
|
121
|
+
- [#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
122
|
|
|
97
|
-
|
|
123
|
+
- [#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
124
|
|
|
99
|
-
|
|
125
|
+
- [#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
126
|
|
|
101
|
-
|
|
127
|
+
- [#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
128
|
|
|
103
|
-
|
|
129
|
+
- [#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
130
|
|
|
105
|
-
##
|
|
131
|
+
## 9.0.0-canary.118
|
|
106
132
|
|
|
107
|
-
|
|
133
|
+
### Patch Changes
|
|
108
134
|
|
|
109
|
-
|
|
135
|
+
- [`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
136
|
|
|
111
|
-
##
|
|
137
|
+
## 9.0.0-canary.117
|
|
112
138
|
|
|
113
|
-
##
|
|
139
|
+
## 9.0.0-canary.116
|
|
114
140
|
|
|
115
|
-
|
|
141
|
+
### Minor Changes
|
|
116
142
|
|
|
117
|
-
|
|
143
|
+
- [#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
144
|
|
|
119
|
-
|
|
145
|
+
## 9.0.0-canary.115
|
|
120
146
|
|
|
121
|
-
|
|
147
|
+
## 9.0.0-canary.114
|
|
122
148
|
|
|
123
149
|
### Patch Changes
|
|
124
150
|
|
|
125
|
-
- [#
|
|
151
|
+
- [#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
152
|
|
|
127
|
-
##
|
|
153
|
+
## 9.0.0-canary.113
|
|
128
154
|
|
|
129
|
-
##
|
|
155
|
+
## 9.0.0-canary.112
|
|
130
156
|
|
|
131
|
-
##
|
|
157
|
+
## 9.0.0-canary.111
|
|
132
158
|
|
|
133
|
-
##
|
|
159
|
+
## 9.0.0-canary.110
|
|
134
160
|
|
|
135
|
-
##
|
|
161
|
+
## 9.0.0-canary.109
|
|
136
162
|
|
|
137
|
-
|
|
163
|
+
## 9.0.0-canary.108
|
|
138
164
|
|
|
139
|
-
|
|
165
|
+
## 9.0.0-canary.107
|
|
140
166
|
|
|
141
|
-
##
|
|
167
|
+
## 9.0.0-canary.106
|
|
142
168
|
|
|
143
169
|
### Minor Changes
|
|
144
170
|
|
|
145
|
-
- [#
|
|
171
|
+
- [#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
172
|
|
|
147
|
-
##
|
|
173
|
+
## 9.0.0-canary.105
|
|
148
174
|
|
|
149
|
-
##
|
|
175
|
+
## 9.0.0-canary.104
|
|
150
176
|
|
|
151
|
-
###
|
|
177
|
+
### Patch Changes
|
|
152
178
|
|
|
153
|
-
- [#
|
|
179
|
+
- [#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
180
|
|
|
155
|
-
##
|
|
181
|
+
## 9.0.0-canary.103
|
|
156
182
|
|
|
157
|
-
|
|
183
|
+
### Patch Changes
|
|
158
184
|
|
|
159
|
-
|
|
185
|
+
- [#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
186
|
|
|
161
|
-
##
|
|
187
|
+
## 9.0.0-canary.102
|
|
162
188
|
|
|
163
|
-
|
|
189
|
+
### Minor Changes
|
|
164
190
|
|
|
165
|
-
|
|
191
|
+
- [#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
192
|
|
|
167
193
|
### Patch Changes
|
|
168
194
|
|
|
169
|
-
- [#
|
|
195
|
+
- [#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))
|
|
170
196
|
|
|
171
|
-
##
|
|
197
|
+
## 9.0.0-canary.101
|
|
172
198
|
|
|
173
|
-
|
|
199
|
+
### Minor Changes
|
|
174
200
|
|
|
175
|
-
|
|
201
|
+
- [#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:
|
|
176
202
|
|
|
177
|
-
|
|
203
|
+
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.
|
|
204
|
+
|
|
205
|
+
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.
|
|
206
|
+
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))
|
|
207
|
+
|
|
208
|
+
## 9.0.0-canary.86
|
|
178
209
|
|
|
179
210
|
### Patch Changes
|
|
180
211
|
|
|
181
|
-
- [#
|
|
212
|
+
- [#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))
|
|
213
|
+
|
|
214
|
+
## 9.0.0-canary.58
|
|
215
|
+
|
|
216
|
+
### Minor Changes
|
|
217
|
+
|
|
218
|
+
- [#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))
|
|
219
|
+
|
|
220
|
+
## 8.1.0-canary.46
|
|
221
|
+
|
|
222
|
+
### Minor Changes
|
|
223
|
+
|
|
224
|
+
- [#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))
|
|
182
225
|
|
|
183
|
-
|
|
226
|
+
### Patch Changes
|
|
184
227
|
|
|
185
|
-
|
|
228
|
+
- [#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
229
|
|
|
187
|
-
## 8.1.0-canary.
|
|
230
|
+
## 8.1.0-canary.41
|
|
188
231
|
|
|
189
|
-
|
|
232
|
+
### Patch Changes
|
|
190
233
|
|
|
191
|
-
|
|
234
|
+
- [#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
235
|
|
|
193
|
-
## 8.1.0-canary.
|
|
236
|
+
## 8.1.0-canary.40
|
|
194
237
|
|
|
195
|
-
|
|
238
|
+
### Minor Changes
|
|
196
239
|
|
|
197
|
-
|
|
240
|
+
- [#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
241
|
|
|
199
|
-
## 8.1.0-canary.
|
|
242
|
+
## 8.1.0-canary.38
|
|
200
243
|
|
|
201
|
-
|
|
244
|
+
### Minor Changes
|
|
202
245
|
|
|
203
|
-
|
|
246
|
+
- [#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
247
|
|
|
205
|
-
## 8.1.0-canary.
|
|
248
|
+
## 8.1.0-canary.32
|
|
206
249
|
|
|
207
|
-
|
|
250
|
+
### Patch Changes
|
|
208
251
|
|
|
209
|
-
|
|
252
|
+
- [#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
253
|
|
|
211
|
-
## 8.1.0-canary.
|
|
254
|
+
## 8.1.0-canary.28
|
|
212
255
|
|
|
213
|
-
|
|
256
|
+
### Patch Changes
|
|
214
257
|
|
|
215
|
-
|
|
258
|
+
- [#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
259
|
|
|
217
260
|
## 8.1.0-canary.10
|
|
218
261
|
|
|
@@ -244,10 +287,6 @@
|
|
|
244
287
|
|
|
245
288
|
- [#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
289
|
|
|
247
|
-
## 8.1.0-canary.7
|
|
248
|
-
|
|
249
|
-
## 8.1.0-canary.6
|
|
250
|
-
|
|
251
290
|
## 8.1.0-canary.5
|
|
252
291
|
|
|
253
292
|
### Minor Changes
|
|
@@ -306,8 +345,6 @@
|
|
|
306
345
|
|
|
307
346
|
- [#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
347
|
|
|
309
|
-
## 8.0.6-canary.3
|
|
310
|
-
|
|
311
348
|
## 8.0.6-canary.2
|
|
312
349
|
|
|
313
350
|
### Patch Changes
|
|
@@ -332,76 +369,6 @@
|
|
|
332
369
|
|
|
333
370
|
- [#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
371
|
|
|
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
372
|
## 8.0.0
|
|
406
373
|
|
|
407
374
|
### Minor Changes
|
|
@@ -428,1056 +395,159 @@
|
|
|
428
395
|
|
|
429
396
|
- [#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
397
|
|
|
431
|
-
##
|
|
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
|
|
398
|
+
## 7.0.1
|
|
458
399
|
|
|
459
400
|
### Patch Changes
|
|
460
401
|
|
|
461
|
-
- [
|
|
462
|
-
|
|
463
|
-
## 8.0.0-canary.90
|
|
464
|
-
|
|
465
|
-
## 8.0.0-canary.89
|
|
402
|
+
- [`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
403
|
|
|
467
|
-
|
|
404
|
+
- [`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
405
|
|
|
469
|
-
|
|
406
|
+
- [#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
407
|
|
|
471
|
-
|
|
408
|
+
- [#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
409
|
|
|
473
|
-
|
|
410
|
+
- [#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
411
|
|
|
475
|
-
|
|
412
|
+
- [#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
413
|
|
|
477
|
-
##
|
|
414
|
+
## 7.0.0
|
|
478
415
|
|
|
479
|
-
|
|
416
|
+
### Major Changes
|
|
480
417
|
|
|
481
|
-
|
|
418
|
+
- [`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
419
|
|
|
483
|
-
|
|
420
|
+
### Minor Changes
|
|
484
421
|
|
|
485
|
-
|
|
422
|
+
- [#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
423
|
|
|
487
|
-
|
|
424
|
+
- [#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
425
|
|
|
489
|
-
|
|
426
|
+
### Patch Changes
|
|
490
427
|
|
|
491
|
-
|
|
428
|
+
- [#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
429
|
|
|
493
|
-
|
|
430
|
+
- [#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
431
|
|
|
495
|
-
|
|
432
|
+
- [#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
433
|
|
|
497
|
-
|
|
434
|
+
- [#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
435
|
|
|
499
|
-
|
|
436
|
+
- [#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
437
|
|
|
501
|
-
|
|
438
|
+
- [#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
439
|
|
|
503
|
-
|
|
440
|
+
- [#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
441
|
|
|
505
|
-
|
|
442
|
+
- [#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
443
|
|
|
507
|
-
##
|
|
444
|
+
## 6.1.0
|
|
508
445
|
|
|
509
|
-
|
|
446
|
+
### Minor Changes
|
|
510
447
|
|
|
511
|
-
|
|
448
|
+
- [#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
449
|
|
|
513
450
|
### Patch Changes
|
|
514
451
|
|
|
515
|
-
- [#
|
|
452
|
+
- [#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
453
|
|
|
517
|
-
|
|
454
|
+
- [#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
455
|
|
|
519
|
-
##
|
|
456
|
+
## 6.0.1
|
|
520
457
|
|
|
521
458
|
### Patch Changes
|
|
522
459
|
|
|
523
|
-
- [#
|
|
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
|
|
460
|
+
- [#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
461
|
|
|
545
|
-
##
|
|
462
|
+
## 6.0.0
|
|
546
463
|
|
|
547
|
-
|
|
464
|
+
### Major Changes
|
|
548
465
|
|
|
549
|
-
|
|
466
|
+
- [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
|
|
550
467
|
|
|
551
|
-
|
|
468
|
+
- NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
|
|
469
|
+
- NextLink automatically adds `target="_blank"` when the href is external.
|
|
470
|
+
- NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
|
|
552
471
|
|
|
553
|
-
- [#
|
|
472
|
+
- [#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
473
|
|
|
555
|
-
|
|
474
|
+
- GraphCommerce can be configured in the graphcommerce.config.js
|
|
475
|
+
- The configuration is automatically validated on startup.
|
|
476
|
+
- All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
|
|
556
477
|
|
|
557
|
-
|
|
478
|
+
### Minor Changes
|
|
558
479
|
|
|
559
|
-
|
|
480
|
+
- [#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
481
|
|
|
561
|
-
|
|
482
|
+
- [#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
483
|
|
|
563
|
-
|
|
484
|
+
- [#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
485
|
|
|
565
486
|
### Patch Changes
|
|
566
487
|
|
|
567
|
-
- [`
|
|
488
|
+
- [#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
489
|
|
|
569
|
-
|
|
490
|
+
- [#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
491
|
|
|
571
|
-
|
|
492
|
+
- [#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
493
|
|
|
573
|
-
|
|
494
|
+
## 5.1.0
|
|
574
495
|
|
|
575
496
|
### Patch Changes
|
|
576
497
|
|
|
577
|
-
- [#
|
|
578
|
-
|
|
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
|
+
- [#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))
|
|
580
499
|
|
|
581
|
-
|
|
500
|
+
- [#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))
|
|
582
501
|
|
|
583
|
-
|
|
502
|
+
- [#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.
|
|
584
503
|
|
|
585
|
-
|
|
504
|
+
- Updated the @mui/material package
|
|
505
|
+
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
506
|
+
- Upgraded dependencies including type-fest and graphql-mesh
|
|
507
|
+
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
586
508
|
|
|
587
|
-
|
|
509
|
+
- [#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))
|
|
588
510
|
|
|
589
|
-
|
|
511
|
+
- [#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))
|
|
590
512
|
|
|
591
|
-
|
|
513
|
+
## 5.0.0
|
|
592
514
|
|
|
593
|
-
|
|
515
|
+
### Major Changes
|
|
594
516
|
|
|
595
|
-
|
|
517
|
+
- [#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))
|
|
596
518
|
|
|
597
|
-
|
|
519
|
+
### Minor Changes
|
|
598
520
|
|
|
599
|
-
|
|
521
|
+
- [#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))
|
|
600
522
|
|
|
601
|
-
|
|
523
|
+
- [#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))
|
|
602
524
|
|
|
603
|
-
|
|
525
|
+
- [#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))
|
|
604
526
|
|
|
605
|
-
|
|
527
|
+
### Patch Changes
|
|
606
528
|
|
|
607
|
-
|
|
529
|
+
- [#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))
|
|
608
530
|
|
|
609
|
-
|
|
531
|
+
- [#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))
|
|
610
532
|
|
|
611
|
-
|
|
533
|
+
- [#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))
|
|
612
534
|
|
|
613
|
-
##
|
|
535
|
+
## 4.30.1
|
|
614
536
|
|
|
615
|
-
|
|
537
|
+
### Patch Changes
|
|
616
538
|
|
|
617
|
-
|
|
539
|
+
- [#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
|
|
618
540
|
|
|
619
|
-
##
|
|
541
|
+
## 4.30.0
|
|
620
542
|
|
|
621
|
-
|
|
543
|
+
### Minor Changes
|
|
622
544
|
|
|
623
|
-
|
|
545
|
+
- [#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
|
|
624
546
|
|
|
625
|
-
|
|
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
|
|
547
|
+
### Patch Changes
|
|
1466
548
|
|
|
1467
549
|
- [#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
550
|
|
|
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
551
|
## 3.2.0
|
|
1482
552
|
|
|
1483
553
|
### Minor Changes
|