@graphcommerce/docs 5.1.0-canary.9 → 5.1.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 +17 -0
- package/contributing.md +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.1.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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.
|
|
8
|
+
|
|
9
|
+
- Updated the @mui/material package
|
|
10
|
+
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
11
|
+
- Upgraded dependencies including type-fest and graphql-mesh
|
|
12
|
+
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
13
|
+
|
|
14
|
+
- [#1755](https://github.com/graphcommerce-org/graphcommerce/pull/1755) [`41fa631b1`](https://github.com/graphcommerce-org/graphcommerce/commit/41fa631b15721625e521772da01fd2c3a2ae82de) - Add a chapter about SEO migration ([@paales](https://github.com/paales))
|
|
15
|
+
|
|
16
|
+
## 5.1.0-canary.11
|
|
17
|
+
|
|
18
|
+
## 5.1.0-canary.10
|
|
19
|
+
|
|
3
20
|
## 5.1.0-canary.9
|
|
4
21
|
|
|
5
22
|
## 5.1.0-canary.8
|
package/contributing.md
CHANGED
|
@@ -69,6 +69,12 @@ assure our users of the origin and continuing existence of the code. You only
|
|
|
69
69
|
need to sign the CLA once.
|
|
70
70
|
-->
|
|
71
71
|
|
|
72
|
+
### Creating a branch
|
|
73
|
+
|
|
74
|
+
1. Fork the repository and clone it locally.
|
|
75
|
+
2. Create a branch for your PR based on the `canary` branch. Use the following
|
|
76
|
+
naming convention: `feature/your-branch-name` or `fix/your-branch-name`
|
|
77
|
+
|
|
72
78
|
### Creating a pull request
|
|
73
79
|
|
|
74
80
|
1. Create a pull request. The PR can stay open until you are ready to merge.
|
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": "5.1.0
|
|
5
|
+
"version": "5.1.0",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "5.1.0
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "5.1.0"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|