@graphcommerce/magento-payment-paypal 6.0.0-canary.54 → 6.0.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 +12 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @graphcommerce/magento-payment-paypal
|
|
2
2
|
|
|
3
|
+
## 6.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1841](https://github.com/graphcommerce-org/graphcommerce/pull/1841) [`03c104d7f`](https://github.com/graphcommerce-org/graphcommerce/commit/03c104d7f5d4ffd71eb9e26fe4fd4b77fd4c23c8) - Split `PayPalPaymentOptionsAndPlaceOrder` in `PaymentOptionsNoop` and `PayPalPaymentPlaceOrder` components to allow for surcharges when selecting a payment method. ([@paales](https://github.com/paales))
|
|
8
|
+
|
|
9
|
+
- [#1841](https://github.com/graphcommerce-org/graphcommerce/pull/1841) [`1ff022c4b`](https://github.com/graphcommerce-org/graphcommerce/commit/1ff022c4bd8ad1d9fa8c1760076f003af06ce421) - PaymentMethodUpdated is now @injectable to allow for easier customisation. ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
11
|
+
- [#1851](https://github.com/graphcommerce-org/graphcommerce/pull/1851) [`5adadf4ba`](https://github.com/graphcommerce-org/graphcommerce/commit/5adadf4ba023e861409a3925b5cda1e20dbb256c) - Make sure the PayerID isn’t required for non-paypal method ([@paales](https://github.com/paales))
|
|
12
|
+
|
|
13
|
+
- [#1790](https://github.com/graphcommerce-org/graphcommerce/pull/1790) [`ab4d6d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/ab4d6d8e18485b4ca4ca98f534e4f64f6849d952) - Make sure the payment method is set before we’re creating a paypal express token, so possible surcharges get applied ([@LaurensFranken](https://github.com/LaurensFranken))
|
|
14
|
+
|
|
3
15
|
## 6.0.0-canary.54
|
|
4
16
|
|
|
5
17
|
## 6.0.0-canary.53
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-payment-paypal",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "6.0.0
|
|
5
|
+
"version": "6.0.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "6.0.0
|
|
16
|
-
"@graphcommerce/prettier-config-pwa": "6.0.0
|
|
17
|
-
"@graphcommerce/typescript-config-pwa": "6.0.0
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "6.0.0",
|
|
16
|
+
"@graphcommerce/prettier-config-pwa": "6.0.0",
|
|
17
|
+
"@graphcommerce/typescript-config-pwa": "6.0.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@graphcommerce/ecommerce-ui": "6.0.0
|
|
21
|
-
"@graphcommerce/graphql": "6.0.0
|
|
22
|
-
"@graphcommerce/image": "6.0.0
|
|
23
|
-
"@graphcommerce/magento-cart": "6.0.0
|
|
24
|
-
"@graphcommerce/magento-cart-payment-method": "6.0.0
|
|
25
|
-
"@graphcommerce/magento-store": "6.0.0
|
|
26
|
-
"@graphcommerce/next-ui": "6.0.0
|
|
20
|
+
"@graphcommerce/ecommerce-ui": "6.0.0",
|
|
21
|
+
"@graphcommerce/graphql": "6.0.0",
|
|
22
|
+
"@graphcommerce/image": "6.0.0",
|
|
23
|
+
"@graphcommerce/magento-cart": "6.0.0",
|
|
24
|
+
"@graphcommerce/magento-cart-payment-method": "6.0.0",
|
|
25
|
+
"@graphcommerce/magento-store": "6.0.0",
|
|
26
|
+
"@graphcommerce/next-ui": "6.0.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"@lingui/react": "^3.13.2",
|