@graphcommerce/docs 9.0.4-canary.0 → 9.0.4-canary.1
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 -20
- package/package.json +2 -2
- package/roadmap.md +1 -3
- package/upgrading/graphcommerce-8-to-9.md +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.4-canary.
|
|
4
|
-
|
|
5
|
-
## 9.0.3
|
|
6
|
-
|
|
7
|
-
## 9.0.3-canary.0
|
|
8
|
-
|
|
9
|
-
## 9.0.2
|
|
3
|
+
## 9.0.4-canary.1
|
|
10
4
|
|
|
11
|
-
## 9.0.
|
|
5
|
+
## 9.0.4-canary.0
|
|
12
6
|
|
|
13
7
|
## 9.0.1
|
|
14
8
|
|
|
@@ -18,18 +12,6 @@
|
|
|
18
12
|
|
|
19
13
|
- [#2454](https://github.com/graphcommerce-org/graphcommerce/pull/2454) [`0f5267b`](https://github.com/graphcommerce-org/graphcommerce/commit/0f5267b92d8561e20164fe2f078097cb52220726) - Update VSCode guide reference ([@emmanuel-ferdman](https://github.com/emmanuel-ferdman))
|
|
20
14
|
|
|
21
|
-
## 9.0.1-canary.1
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- [#2461](https://github.com/graphcommerce-org/graphcommerce/pull/2461) [`7017b60`](https://github.com/graphcommerce-org/graphcommerce/commit/7017b608eb61097c881103c40701ab4a41197d7a) - Solve issue with documentation parsing markdown files as mdx ([@paales](https://github.com/paales))
|
|
26
|
-
|
|
27
|
-
## 9.0.1-canary.0
|
|
28
|
-
|
|
29
|
-
### Patch Changes
|
|
30
|
-
|
|
31
|
-
- [#2454](https://github.com/graphcommerce-org/graphcommerce/pull/2454) [`0f5267b`](https://github.com/graphcommerce-org/graphcommerce/commit/0f5267b92d8561e20164fe2f078097cb52220726) - Update VSCode guide reference ([@emmanuel-ferdman](https://github.com/emmanuel-ferdman))
|
|
32
|
-
|
|
33
15
|
## 9.0.0
|
|
34
16
|
|
|
35
17
|
### Major Changes
|
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.0.4-canary.
|
|
5
|
+
"version": "9.0.4-canary.1",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.4-canary.
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.4-canary.1"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|
package/roadmap.md
CHANGED
|
@@ -24,6 +24,7 @@ roadmap.
|
|
|
24
24
|
configurations that can be made to get a good starting point for your
|
|
25
25
|
project.
|
|
26
26
|
- [ ] Material UI 6 support with CSS variables.
|
|
27
|
+
- [ ] GraphCommerce Pro: Pagebuilder support
|
|
27
28
|
- [ ] GraphCommerce Pro: Login as Customer functionality Magento module +
|
|
28
29
|
GraphCommerce integration.
|
|
29
30
|
- [ ] GraphCommerce Pro: Cache Notifier module + GraphCommerce Integration to
|
|
@@ -33,9 +34,6 @@ roadmap.
|
|
|
33
34
|
|
|
34
35
|
- [ ] Mui 6 support with [pigment-css](https://github.com/mui/pigment-css)
|
|
35
36
|
- [ ] Upgrade to React 19 + Next.js app router support.
|
|
36
|
-
|
|
37
|
-
- [ ] GraphCommerce Pro: Pagebuilder support
|
|
38
|
-
[depends on ↗](https://github.com/magento/magento2/issues/37768)
|
|
39
37
|
- [ ] Adobe Commerce: Reward points functionality
|
|
40
38
|
- [ ] Adobe Commerce: Gift wrapping functionality
|
|
41
39
|
- [ ] Adobe Commerce: Gift card functionality
|
|
@@ -24,7 +24,7 @@ const MyPlugin: ReactPlugin<typeof OriginalComponent> = (props) => {
|
|
|
24
24
|
export const Plugin = MyPlugin
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
With:
|
|
28
28
|
|
|
29
29
|
```tsx
|
|
30
30
|
const MyPlugin = (props: PluginProps<OriginalComponentProps>) => {
|
|
@@ -37,8 +37,7 @@ export const Plugin = MyPlugin
|
|
|
37
37
|
There is a new plugin configuration method by using
|
|
38
38
|
`export config: PluginConfig = {}`.
|
|
39
39
|
|
|
40
|
-
2. linguiLocale now requires an explicit configuration where they differ from
|
|
41
|
-
the locale
|
|
40
|
+
## 2. `linguiLocale` now requires an explicit configuration where they differ from the locale
|
|
42
41
|
|
|
43
42
|
> linguiLocale: Custom locale used to load the .po files. Must be a valid
|
|
44
43
|
> locale, also used for Intl functions.
|
|
@@ -56,15 +55,15 @@ const config = {
|
|
|
56
55
|
}
|
|
57
56
|
```
|
|
58
57
|
|
|
59
|
-
3. `@graphcommerce/graphcms-ui` is now `@graphcommerce/hygraph-ui`
|
|
58
|
+
## 3. `@graphcommerce/graphcms-ui` is now `@graphcommerce/hygraph-ui`
|
|
60
59
|
|
|
61
60
|
Replace all `@graphcommerce/graphcms-ui` with `@graphcommerce/hygraph-ui`.
|
|
62
61
|
|
|
63
|
-
4. `@ducanh2912/next-pwa` replaced by `serwist`
|
|
62
|
+
## 4. `@ducanh2912/next-pwa` replaced by `serwist`
|
|
64
63
|
|
|
65
64
|
Any customizations made to the service worker should
|
|
66
65
|
|
|
67
|
-
5. `next-sitemap` replaced by custom implementation.
|
|
66
|
+
## 5. `next-sitemap` replaced by custom implementation.
|
|
68
67
|
|
|
69
68
|
- pages/robots.txt.tsx
|
|
70
69
|
- pages/sitemap/categories.xml.tsx
|