@graphcommerce/magento-graphql 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 +23 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1756](https://github.com/graphcommerce-org/graphcommerce/pull/1756) [`1abaaedde`](https://github.com/graphcommerce-org/graphcommerce/commit/1abaaedde4062d3b19696e333d0016972681afaf) - Show cart item error messages when running Magento >= 2.4.5 or this [patch is applied](https://raw.githubusercontent.com/graphcommerce-org/graphcommerce/main/packages/magento-cart/243-244-magento-module-quote-graphql-cart-item-errors.patch)
|
|
8
|
+
|
|
9
|
+
- Fixes an issue where the cart can get into a broken state, if items contain errors.
|
|
10
|
+
- AddToCartForm now shows a success message if there is an error but the error is related to another item in the cart.
|
|
11
|
+
- Disable checkout buttons when there are cart item errors and show a message. ([@paales](https://github.com/paales))
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#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.
|
|
16
|
+
|
|
17
|
+
- Updated the @mui/material package
|
|
18
|
+
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
19
|
+
- Upgraded dependencies including type-fest and graphql-mesh
|
|
20
|
+
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
21
|
+
|
|
22
|
+
## 5.1.0-canary.11
|
|
23
|
+
|
|
24
|
+
## 5.1.0-canary.10
|
|
25
|
+
|
|
3
26
|
## 5.1.0-canary.9
|
|
4
27
|
|
|
5
28
|
## 5.1.0-canary.8
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-graphql",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "5.1.0
|
|
5
|
+
"version": "5.1.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "index.ts",
|
|
8
8
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "5.1.0
|
|
17
|
-
"@graphcommerce/prettier-config-pwa": "5.1.0
|
|
18
|
-
"@graphcommerce/typescript-config-pwa": "5.1.0
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "5.1.0",
|
|
17
|
+
"@graphcommerce/prettier-config-pwa": "5.1.0",
|
|
18
|
+
"@graphcommerce/typescript-config-pwa": "5.1.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@graphcommerce/graphql": "5.1.0
|
|
21
|
+
"@graphcommerce/graphql": "5.1.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"next": "^12.1.2",
|