@graphcommerce/docs 5.1.0-canary.8 → 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 CHANGED
@@ -1,5 +1,24 @@
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
+
20
+ ## 5.1.0-canary.9
21
+
3
22
  ## 5.1.0-canary.8
4
23
 
5
24
  ## 5.1.0-canary.7
package/contributing.md CHANGED
@@ -59,6 +59,7 @@ File structure of GraphCommerce
59
59
  GraphCommerce uses ESLint for linting and Prettier for code formatting. Install
60
60
  the [recommended VS Code extensions](../docs/getting-started/vscode.md)
61
61
 
62
+ <!--
62
63
  ### Contributor License Agreement
63
64
 
64
65
  Please make sure you have signed our Contributor License Agreement. We are not
@@ -66,6 +67,13 @@ asking you to assign copyright to us, but to give us the right to distribute
66
67
  your code without restriction. We ask this of all contributors in order to
67
68
  assure our users of the origin and continuing existence of the code. You only
68
69
  need to sign the CLA once.
70
+ -->
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`
69
77
 
70
78
  ### Creating a pull request
71
79
 
@@ -73,14 +81,14 @@ need to sign the CLA once.
73
81
  2. Add your changes
74
82
  3. Add a changeset
75
83
 
76
- - Run 'yarn changeset' and select minor bump. Commit the changeset that is
77
- created.
84
+ - Run 'yarn changeset' and select 'patch' for bugfixes and 'minor' for new
85
+ features. Commit the changeset that is created.
78
86
 
79
87
  <figure>
80
88
 
81
89
  ![yarn changeset](https://user-images.githubusercontent.com/1251986/157868337-0fa27e88-cf35-4e38-a59c-72c72ef6b054.jpg)
82
90
 
83
- <figcaption>Select minor bump when running `yarn changeset`</figcaption>
91
+ <figcaption>Select 'patch' or 'minor' when running `yarn changeset`</figcaption>
84
92
  </figure>
85
93
 
86
94
  ## Next steps
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-canary.8",
5
+ "version": "5.1.0",
6
6
  "sideEffects": true,
7
7
  "devDependencies": {
8
- "@graphcommerce/prettier-config-pwa": "5.1.0-canary.8"
8
+ "@graphcommerce/prettier-config-pwa": "5.1.0"
9
9
  },
10
10
  "prettier": "@graphcommerce/prettier-config-pwa"
11
11
  }