@graphcommerce/magento-payment-braintree 9.0.0-canary.55 → 9.0.0-canary.57
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -16
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 9.0.0-canary.57
|
4
|
+
|
5
|
+
## 9.0.0-canary.56
|
6
|
+
|
3
7
|
## 9.0.0-canary.55
|
4
8
|
|
5
9
|
## 9.0.0-canary.54
|
@@ -78,8 +82,7 @@
|
|
78
82
|
|
79
83
|
### Patch Changes
|
80
84
|
|
81
|
-
- [#2277](https://github.com/graphcommerce-org/graphcommerce/pull/2277) [`f9199f7`](https://github.com/graphcommerce-org/graphcommerce/commit/f9199f798583138a68dd641ea6637375c487f29b) - Solve issue where Braintree wouldn't place the order after successfully validating a Credit Card.
|
82
|
-
([@paales](https://github.com/paales))
|
85
|
+
- [#2277](https://github.com/graphcommerce-org/graphcommerce/pull/2277) [`f9199f7`](https://github.com/graphcommerce-org/graphcommerce/commit/f9199f798583138a68dd641ea6637375c487f29b) - Solve issue where Braintree wouldn't place the order after successfully validating a Credit Card. ([@paales](https://github.com/paales))
|
83
86
|
|
84
87
|
## 8.1.0-canary.17
|
85
88
|
|
@@ -115,8 +118,7 @@
|
|
115
118
|
|
116
119
|
### Patch Changes
|
117
120
|
|
118
|
-
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`43bd04a`](https://github.com/graphcommerce-org/graphcommerce/commit/43bd04a777c5800cc7e01bee1e123a5aad82f194) - Prevent BillingPage query from rerunning on each mutation
|
119
|
-
([@FrankHarland](https://github.com/FrankHarland))
|
121
|
+
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`43bd04a`](https://github.com/graphcommerce-org/graphcommerce/commit/43bd04a777c5800cc7e01bee1e123a5aad82f194) - Prevent BillingPage query from rerunning on each mutation ([@FrankHarland](https://github.com/FrankHarland))
|
120
122
|
|
121
123
|
## 8.0.6-canary.1
|
122
124
|
|
@@ -126,8 +128,7 @@
|
|
126
128
|
|
127
129
|
### Patch Changes
|
128
130
|
|
129
|
-
- [#2188](https://github.com/graphcommerce-org/graphcommerce/pull/2188) [`eec7498`](https://github.com/graphcommerce-org/graphcommerce/commit/eec7498213f34f0f850123b577b77bf678e3c80b) - Braintree Credit Card: Hosted payment fields now have proper styling and all focus/blur and error states are correctly handled.
|
130
|
-
([@paales](https://github.com/paales))
|
131
|
+
- [#2188](https://github.com/graphcommerce-org/graphcommerce/pull/2188) [`eec7498`](https://github.com/graphcommerce-org/graphcommerce/commit/eec7498213f34f0f850123b577b77bf678e3c80b) - Braintree Credit Card: Hosted payment fields now have proper styling and all focus/blur and error states are correctly handled. ([@paales](https://github.com/paales))
|
131
132
|
|
132
133
|
## 8.0.5-canary.10
|
133
134
|
|
@@ -143,8 +144,7 @@
|
|
143
144
|
|
144
145
|
### Patch Changes
|
145
146
|
|
146
|
-
- [#2188](https://github.com/graphcommerce-org/graphcommerce/pull/2188) [`eec7498`](https://github.com/graphcommerce-org/graphcommerce/commit/eec7498213f34f0f850123b577b77bf678e3c80b) - Braintree Credit Card: Hosted payment fields now have proper styling and all focus/blur and error states are correctly handled.
|
147
|
-
([@paales](https://github.com/paales))
|
147
|
+
- [#2188](https://github.com/graphcommerce-org/graphcommerce/pull/2188) [`eec7498`](https://github.com/graphcommerce-org/graphcommerce/commit/eec7498213f34f0f850123b577b77bf678e3c80b) - Braintree Credit Card: Hosted payment fields now have proper styling and all focus/blur and error states are correctly handled. ([@paales](https://github.com/paales))
|
148
148
|
|
149
149
|
## 8.0.5-canary.4
|
150
150
|
|
@@ -1508,31 +1508,31 @@
|
|
1508
1508
|
All occurences of `<Trans>` and `t` need to be replaced:
|
1509
1509
|
|
1510
1510
|
```tsx
|
1511
|
-
import { Trans, t } from
|
1511
|
+
import { Trans, t } from '@lingui/macro'
|
1512
1512
|
|
1513
1513
|
function MyComponent() {
|
1514
|
-
const foo =
|
1514
|
+
const foo = 'bar'
|
1515
1515
|
return (
|
1516
1516
|
<div aria-label={t`Account ${foo}`}>
|
1517
1517
|
<Trans>My Translation {foo}</Trans>
|
1518
1518
|
</div>
|
1519
|
-
)
|
1519
|
+
)
|
1520
1520
|
}
|
1521
1521
|
```
|
1522
1522
|
|
1523
1523
|
Needs to be replaced with:
|
1524
1524
|
|
1525
1525
|
```tsx
|
1526
|
-
import { Trans } from
|
1527
|
-
import { i18n } from
|
1526
|
+
import { Trans } from '@lingui/react'
|
1527
|
+
import { i18n } from '@lingui/core'
|
1528
1528
|
|
1529
1529
|
function MyComponent() {
|
1530
|
-
const foo =
|
1530
|
+
const foo = 'bar'
|
1531
1531
|
return (
|
1532
1532
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
1533
|
-
<Trans key=
|
1533
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
1534
1534
|
</div>
|
1535
|
-
)
|
1535
|
+
)
|
1536
1536
|
}
|
1537
1537
|
```
|
1538
1538
|
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@graphcommerce/magento-payment-braintree",
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
5
|
-
"version": "9.0.0-canary.
|
5
|
+
"version": "9.0.0-canary.57",
|
6
6
|
"sideEffects": false,
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
8
8
|
"eslintConfig": {
|
@@ -12,25 +12,25 @@
|
|
12
12
|
}
|
13
13
|
},
|
14
14
|
"devDependencies": {
|
15
|
-
"@types/braintree-web": "^3.96.
|
15
|
+
"@types/braintree-web": "^3.96.12"
|
16
16
|
},
|
17
17
|
"dependencies": {
|
18
|
-
"braintree-web": "^3.
|
18
|
+
"braintree-web": "^3.103.0"
|
19
19
|
},
|
20
20
|
"peerDependencies": {
|
21
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
22
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
23
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
24
|
-
"@graphcommerce/magento-cart": "^9.0.0-canary.
|
25
|
-
"@graphcommerce/magento-cart-payment-method": "^9.0.0-canary.
|
26
|
-
"@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.
|
27
|
-
"@graphcommerce/magento-product": "^9.0.0-canary.
|
28
|
-
"@graphcommerce/magento-product-configurable": "^9.0.0-canary.
|
29
|
-
"@graphcommerce/magento-store": "^9.0.0-canary.
|
30
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
31
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
32
|
-
"@graphcommerce/react-hook-form": "^9.0.0-canary.
|
33
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
21
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
|
22
|
+
"@graphcommerce/graphql": "^9.0.0-canary.57",
|
23
|
+
"@graphcommerce/image": "^9.0.0-canary.57",
|
24
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.57",
|
25
|
+
"@graphcommerce/magento-cart-payment-method": "^9.0.0-canary.57",
|
26
|
+
"@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.57",
|
27
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.57",
|
28
|
+
"@graphcommerce/magento-product-configurable": "^9.0.0-canary.57",
|
29
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.57",
|
30
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.57",
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
|
32
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.57",
|
33
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
|
34
34
|
"@lingui/core": "^4.2.1",
|
35
35
|
"@lingui/macro": "^4.2.1",
|
36
36
|
"@lingui/react": "^4.2.1",
|