@graphcommerce/docs 4.9.0 → 4.9.2

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,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.9.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1684](https://github.com/graphcommerce-org/graphcommerce/pull/1684) [`f90933627`](https://github.com/graphcommerce-org/graphcommerce/commit/f909336273ff4b6e14b29acce4acfae178ccb6fa) Thanks [@paales](https://github.com/paales)! - Add instruction to ignore whitespace when creating diff patch
8
+
9
+ ## 4.9.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1656](https://github.com/graphcommerce-org/graphcommerce/pull/1656) [`4ad159784`](https://github.com/graphcommerce-org/graphcommerce/commit/4ad15978407f46574bf6ec561a2f50d6e39138cd) Thanks [@Jessevdpoel](https://github.com/Jessevdpoel)! - Added yarn codegen step to docs
14
+
3
15
  ## 4.9.0
4
16
 
5
17
  ### Minor Changes
@@ -114,6 +114,8 @@ relationship between the Banner model and the Content field of the Page model.
114
114
 
115
115
  ### Validate GraphQL Schema
116
116
 
117
+ - Go to your local environment and run `yarn codegen`, this ensures the changes
118
+ you just made are added to your local environment.
117
119
  - To validate the addition of the Banner model and the relation with the Page
118
120
  model Content field, try out the following GraphQL query in your local GraphQL
119
121
  endpoint (running at http://localhost:3000/api/graphql):
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/docs",
3
3
  "homepage": "https://www.graphcommerce.org/docs",
4
4
  "repository": "github:graphcommerce-org/graphcommerce/docs",
5
- "version": "4.9.0",
5
+ "version": "4.9.2",
6
6
  "sideEffects": true,
7
7
  "devDependencies": {
8
8
  "@graphcommerce/prettier-config-pwa": "^4.0.6"
package/upgrading.md CHANGED
@@ -46,7 +46,7 @@ dependencies, while keeping your customizations.
46
46
  `@graphcommerce/next-ui`:
47
47
 
48
48
  ```bash
49
- git diff --relative=examples/magento-graphcms "@graphcommerce/next-ui@OLD_VERSION" examples/magento-graphcms ':!examples/magento-graphcms/CHANGELOG.md' > changes.patch
49
+ git diff -w --relative=examples/magento-graphcms "@graphcommerce/next-ui@OLD_VERSION" examples/magento-graphcms ':!examples/magento-graphcms/CHANGELOG.md' > changes.patch
50
50
  ```
51
51
 
52
52
  4. Move the `changes.patch` file from the /upgrade directory to the root of your