@graphcommerce/docs 9.1.0-canary.44 → 9.1.0-canary.45
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 +2 -5
- package/framework/config.md +3 -3
- package/package.json +2 -2
- package/upgrading/readme.md +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.1.0-canary.45
|
|
4
|
+
|
|
3
5
|
## 9.1.0-canary.44
|
|
4
6
|
|
|
5
7
|
## 9.1.0-canary.43
|
|
@@ -203,7 +205,6 @@
|
|
|
203
205
|
- [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`26239ef73`](https://github.com/graphcommerce-org/graphcommerce/commit/26239ef73e49731224b227f1eb850dde56d40584) - Updated the supported NodeJS versions to 16 and 18, removed support for NodeJS 14. ([@paales](https://github.com/paales))
|
|
204
206
|
|
|
205
207
|
- [#1766](https://github.com/graphcommerce-org/graphcommerce/pull/1766) [`e34169ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/e34169ee2e0fdc052ff589ceca0bc67557584c1f) - Upgraded to Next.js 13
|
|
206
|
-
|
|
207
208
|
- NextLink integrates the next/link functionality with @mui/material's Link and ButtonBase (and all it's derivatives) components.
|
|
208
209
|
- NextLink automatically adds `target="_blank"` when the href is external.
|
|
209
210
|
- NextLink makes all relative href absolute. `href="my-page"` will be rendered as `href="/my-page"`. ([@paales](https://github.com/paales))
|
|
@@ -227,7 +228,6 @@
|
|
|
227
228
|
### Patch Changes
|
|
228
229
|
|
|
229
230
|
- [#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.
|
|
230
|
-
|
|
231
231
|
- Updated the @mui/material package
|
|
232
232
|
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
233
233
|
- Upgraded dependencies including type-fest and graphql-mesh
|
|
@@ -246,7 +246,6 @@
|
|
|
246
246
|
- [#1729](https://github.com/graphcommerce-org/graphcommerce/pull/1729) [`c37187a51`](https://github.com/graphcommerce-org/graphcommerce/commit/c37187a513670ebcf09e99eb4a762c8bdb5df7e4) - Moved Magento Cart Pickup shipping method to the [GraphCommerce plugin system](https://www.graphcommerce.org/docs/framework/plugins)
|
|
247
247
|
|
|
248
248
|
Upgrade guide:
|
|
249
|
-
|
|
250
249
|
- The upgrade removes `@graphcommerce/magento-cart-pickup` package from your `package.json`, remove them for now.
|
|
251
250
|
- Proceed to upgrade normally
|
|
252
251
|
- Add back `@graphcommerce/magento-cart-pickup`, following the [GraphCommerce Magento docs](https://graphcommerce.org/docs/magento). ([@paales](https://github.com/paales))
|
|
@@ -264,7 +263,6 @@
|
|
|
264
263
|
- [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`f08bffd63`](https://github.com/graphcommerce-org/graphcommerce/commit/f08bffd63780cb626f072b25c2fd4da37543b6f7) - Moved all Payment methods to the [GraphCommerce plugin system](https://www.graphcommerce.org/docs/framework/plugins)
|
|
265
264
|
|
|
266
265
|
Upgrade guide:
|
|
267
|
-
|
|
268
266
|
- The upgrade removes all the payment gateway packages from the `package.json`, remove them for now.
|
|
269
267
|
- Proceed to upgrade normally
|
|
270
268
|
- Add back all the payment modules following the [GraphCommerce Magento docs](https://graphcommerce.org/docs/magento).
|
|
@@ -570,7 +568,6 @@
|
|
|
570
568
|
* [#1278](https://github.com/ho-nl/m2-pwa/pull/1278) [`81ea406d5`](https://github.com/ho-nl/m2-pwa/commit/81ea406d54d6b5c662c030a7fea444abc4117a20) Thanks [@ErwinOtten](https://github.com/ErwinOtten)! - Written documentation for GraphCommerce! 👩🏫🧑🏫📚📖
|
|
571
569
|
|
|
572
570
|
- [#1284](https://github.com/ho-nl/m2-pwa/pull/1284) [`5ffcb56bf`](https://github.com/ho-nl/m2-pwa/commit/5ffcb56bfcbe49ebeaf24f9341e819a145ab9a14) Thanks [@paales](https://github.com/paales)! - SvgIcon is now more extenable and flexible:
|
|
573
|
-
|
|
574
571
|
- It will automatically calculate the stroke-width of the SVG based on the rendered size, allowing for a more flexible use for icons.
|
|
575
572
|
|
|
576
573
|
- Make SvgIcon themable in your own Theme.
|
package/framework/config.md
CHANGED
|
@@ -71,10 +71,10 @@ You can export configuration by running `yarn graphcommerce export-config`
|
|
|
71
71
|
Create a graphql/Config.graphqls file in your project and extend the GraphCommerceConfig, GraphCommerceStorefrontConfig inputs to add configuration.
|
|
72
72
|
|
|
73
73
|
```graphql
|
|
74
|
-
input GraphCommerceConfig {
|
|
74
|
+
extend input GraphCommerceConfig {
|
|
75
75
|
myConfig: String # or Boolean, or Int, or Float, make required with `!`
|
|
76
76
|
}
|
|
77
|
-
input GraphCommerceStorefrontConfig {
|
|
77
|
+
extend input GraphCommerceStorefrontConfig {
|
|
78
78
|
myField: Boolean
|
|
79
79
|
}
|
|
80
80
|
```
|
|
@@ -541,4 +541,4 @@ SidebarGalleryConfig will contain all configuration values for the Sidebar Galle
|
|
|
541
541
|
|
|
542
542
|
#### paginationVariant: DOTS | THUMBNAILS_BOTTOM
|
|
543
543
|
|
|
544
|
-
Variant used for the pagination
|
|
544
|
+
Variant used for the pagination
|
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "@graphcommerce/docs",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/docs",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce/docs",
|
|
5
|
-
"version": "9.1.0-canary.
|
|
5
|
+
"version": "9.1.0-canary.45",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.45"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|
package/upgrading/readme.md
CHANGED
|
@@ -65,9 +65,7 @@ Compare your local /package.json with the example's
|
|
|
65
65
|
`/upgrade/examples/magento-graphcms/package.json` you just downloaded and:
|
|
66
66
|
|
|
67
67
|
1. Replace your local `dependencies` with the example's `dependencies`. Keep any
|
|
68
|
-
additional installed local dependencies and
|
|
69
|
-
[remove PSP's](./getting-started/create.md#remove-unused-psps) your backend
|
|
70
|
-
doesn't support.
|
|
68
|
+
additional installed local dependencies and.
|
|
71
69
|
2. Replace your local `devDependencies` with the example's `devDependencies`
|
|
72
70
|
3. Replace your local `resolutions` with the example's `resolutions`
|
|
73
71
|
|