@graphcommerce/docs 8.0.2-canary.0 → 8.0.2-canary.3
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 +11 -0
- package/feature-list.md +8 -6
- package/framework/troubleshooting.md +10 -20
- package/getting-started/create.md +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.2-canary.3
|
|
4
|
+
|
|
5
|
+
## 8.0.2-canary.2
|
|
6
|
+
|
|
7
|
+
## 8.0.2-canary.1
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#2193](https://github.com/graphcommerce-org/graphcommerce/pull/2193) [`317250a`](https://github.com/graphcommerce-org/graphcommerce/commit/317250a580b9f0b5175d9df93ba2cf62193ea383) - Updated docs to reflect featurelist more accurately
|
|
12
|
+
([@paales](https://github.com/paales))
|
|
13
|
+
|
|
3
14
|
## 8.0.2-canary.0
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/feature-list.md
CHANGED
|
@@ -87,15 +87,15 @@ Features taken from the Magento Commerce 2 Feature List
|
|
|
87
87
|
- [x] Blend content and commerce by adding products to content pages and rich
|
|
88
88
|
content to product pages. — [Enhanced]
|
|
89
89
|
- [x] Create reusable dynamic blocks targeted to customer segments. — [Commerce]
|
|
90
|
-
- [x] Easily stage and preview content for seamless updates. — [
|
|
91
|
-
- [x] Manage upcoming site changes with a timeline dashboard.
|
|
90
|
+
- [x] Easily stage and preview content for seamless updates. — [Partial]
|
|
91
|
+
- [x] Manage upcoming site changes with a timeline dashboard. - [Commerce]
|
|
92
92
|
- [x] Organize content pages and add pagination, navigation, and menus with a
|
|
93
93
|
page hierarchy tool. — [Enhanced]
|
|
94
94
|
- [x] Track and restore previous versions of content pages. — [Enhanced]
|
|
95
95
|
- [x] Engage customers with exciting imagery from Adobe Stock, straight from
|
|
96
96
|
your Adobe Commerce instance.
|
|
97
97
|
- [x] Save content and layouts as templates. Apply them to new areas across
|
|
98
|
-
sites and store views.
|
|
98
|
+
sites and store views.
|
|
99
99
|
- [x] Provide creatives, designers, and agencies with direct, controlled access
|
|
100
100
|
to the Media Gallery.
|
|
101
101
|
|
|
@@ -214,7 +214,7 @@ Features taken from the Magento Commerce 2 Feature List
|
|
|
214
214
|
### Checkout
|
|
215
215
|
|
|
216
216
|
- [x] Include a mini cart on store pages to summarize products in the cart.
|
|
217
|
-
- [x] Display an order summary with product images in checkout.
|
|
217
|
+
- [x] Display an order summary with product images in checkout. [Todo]
|
|
218
218
|
- [x] Offer guest and registered user checkout. Registered customers are
|
|
219
219
|
automatically recognized when they enter their email addresses.
|
|
220
220
|
- [ ] Boost conversion rates with an Instant Purchase option that uses saved
|
|
@@ -382,7 +382,7 @@ Features taken from the Magento Commerce 2 Feature List
|
|
|
382
382
|
APIs with REST and GraphQL support. — [Enhanced]
|
|
383
383
|
- [x] Smoothly manage interactions between extensions using plug-ins and
|
|
384
384
|
dependency injection software design patterns. —
|
|
385
|
-
[Plugins](https://www.graphcommerce.org/docs/framework/plugins-
|
|
385
|
+
[Plugins](https://www.graphcommerce.org/docs/framework/plugins-react)
|
|
386
386
|
- [ ] Accelerate time-to-market and improve code quality with a fully-automated
|
|
387
387
|
testing framework.
|
|
388
388
|
- [ ] Update code with a standalone installer that checks for prerequisites
|
|
@@ -404,10 +404,12 @@ Features taken from the Magento Commerce 2 Feature List
|
|
|
404
404
|
- [x] Feel confident with regular scanning, external penetration testing, and
|
|
405
405
|
bug bounty programs that promote core platform security.
|
|
406
406
|
- [x] Stay informed about security issues through the Adobe Security Center and
|
|
407
|
-
mailing list.
|
|
407
|
+
mailing list. [Commerce]
|
|
408
408
|
- [x] Prevent private data from sending to third parties with Egress Filtering.
|
|
409
|
+
[Commerce]
|
|
409
410
|
- [x] Support for leading iPaaS platforms to enable enterprise integrations
|
|
410
411
|
- [x] Optimize your upgrade process with the Upgrade Compatibility Tool.
|
|
412
|
+
[Commerce]
|
|
411
413
|
|
|
412
414
|
### Layout and theming
|
|
413
415
|
|
|
@@ -5,17 +5,24 @@
|
|
|
5
5
|
If any errors are detected during the build phase, the console and browser will
|
|
6
6
|
display an error message. Common causes for errors are:
|
|
7
7
|
|
|
8
|
+
```bash
|
|
9
|
+
[next] [GraphQL Errors] failed to fetch to https://magento.test/graphql products
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
You are connecting with a local endpoint with a self signed SSL certicate, start
|
|
13
|
+
your dev server with `NODE_TLS_REJECT_UNAUTHORIZED=0 yarn dev`
|
|
14
|
+
|
|
8
15
|
```bash
|
|
9
16
|
[next] 🕸️ - m2: Failed to generate schema: request to [...] failed, reason: connect ETIMEDOUT
|
|
10
17
|
```
|
|
11
18
|
|
|
12
|
-
Missing
|
|
19
|
+
Missing `magentoEndpoint` in your graphcommerce.config.js
|
|
13
20
|
|
|
14
21
|
```bash
|
|
15
22
|
🕸️ - m2: Failed to generate schema: invalid json response body at [...] reason: Unexpected '<'
|
|
16
23
|
```
|
|
17
24
|
|
|
18
|
-
|
|
25
|
+
`magentoEndpoint` environment variable is not pointing to a Magento graphql
|
|
19
26
|
endpoint
|
|
20
27
|
|
|
21
28
|
```bash
|
|
@@ -28,24 +35,7 @@ The Magento version is outdated. Make sure you are running Magento 2.4.3 and up
|
|
|
28
35
|
Error: Invalid src prop ([...]) on 'next/image', hostname "[...]" is not configured under images in your 'next.config.js'
|
|
29
36
|
```
|
|
30
37
|
|
|
31
|
-
Add the image domain to
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
File /[...]/node_modules/@graphcommerce/magento-payment-braint
|
|
35
|
-
ree/hooks/UseBraintree.graphql caused error: Unable to find field "createBraintreeClientToken" on type "Mutation"!
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
Remove "@graphcommerce/magento-payment-braintree" from your dependencies in
|
|
39
|
-
package.json. Run `yarn` to update dependencies, then run `yarn dev`.
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
File /[...]/node_modules/@graphcommerce/mollie-magento-payment
|
|
43
|
-
/components/MolliePlaceOrder/MolliePlaceOrder.graphql caused error: Unable to
|
|
44
|
-
find field "mollie_redirect_url" on type "Order"!
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
Remove "@graphcommerce/mollie-magento-payment" from your dependencies in
|
|
48
|
-
package.json. Run `yarn` to update dependencies, then run `yarn dev`.
|
|
38
|
+
Add the image domain to the next.config.js
|
|
49
39
|
|
|
50
40
|
```bash
|
|
51
41
|
node_modules/@graphcommerce/graphql/generated/fragments.json
|
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": "8.0.2-canary.
|
|
5
|
+
"version": "8.0.2-canary.3",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.2-canary.
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.2-canary.3"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|