@graphcommerce/magento-payment-braintree 8.0.6-canary.4 → 8.0.7
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -1,26 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## 8.0.
|
3
|
+
## 8.0.7
|
4
4
|
|
5
|
-
## 8.0.6
|
6
|
-
|
7
|
-
## 8.0.6-canary.2
|
8
|
-
|
9
|
-
### Patch Changes
|
10
|
-
|
11
|
-
- [#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
|
12
|
-
([@FrankHarland](https://github.com/FrankHarland))
|
13
|
-
|
14
|
-
## 8.0.6-canary.1
|
15
|
-
|
16
|
-
## 8.0.6-canary.0
|
5
|
+
## 8.0.6
|
17
6
|
|
18
7
|
## 8.0.5
|
19
8
|
|
20
9
|
### Patch Changes
|
21
10
|
|
22
|
-
- [#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.
|
23
|
-
([@paales](https://github.com/paales))
|
11
|
+
- [#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))
|
24
12
|
|
25
13
|
## 8.0.5-canary.10
|
26
14
|
|
@@ -36,8 +24,7 @@
|
|
36
24
|
|
37
25
|
### Patch Changes
|
38
26
|
|
39
|
-
- [#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.
|
40
|
-
([@paales](https://github.com/paales))
|
27
|
+
- [#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))
|
41
28
|
|
42
29
|
## 8.0.5-canary.4
|
43
30
|
|
@@ -1401,31 +1388,31 @@
|
|
1401
1388
|
All occurences of `<Trans>` and `t` need to be replaced:
|
1402
1389
|
|
1403
1390
|
```tsx
|
1404
|
-
import { Trans, t } from
|
1391
|
+
import { Trans, t } from '@lingui/macro'
|
1405
1392
|
|
1406
1393
|
function MyComponent() {
|
1407
|
-
const foo =
|
1394
|
+
const foo = 'bar'
|
1408
1395
|
return (
|
1409
1396
|
<div aria-label={t`Account ${foo}`}>
|
1410
1397
|
<Trans>My Translation {foo}</Trans>
|
1411
1398
|
</div>
|
1412
|
-
)
|
1399
|
+
)
|
1413
1400
|
}
|
1414
1401
|
```
|
1415
1402
|
|
1416
1403
|
Needs to be replaced with:
|
1417
1404
|
|
1418
1405
|
```tsx
|
1419
|
-
import { Trans } from
|
1420
|
-
import { i18n } from
|
1406
|
+
import { Trans } from '@lingui/react'
|
1407
|
+
import { i18n } from '@lingui/core'
|
1421
1408
|
|
1422
1409
|
function MyComponent() {
|
1423
|
-
const foo =
|
1410
|
+
const foo = 'bar'
|
1424
1411
|
return (
|
1425
1412
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
1426
|
-
<Trans key=
|
1413
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
1427
1414
|
</div>
|
1428
|
-
)
|
1415
|
+
)
|
1429
1416
|
}
|
1430
1417
|
```
|
1431
1418
|
|
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": "8.0.
|
5
|
+
"version": "8.0.7",
|
6
6
|
"sideEffects": false,
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
8
8
|
"eslintConfig": {
|
@@ -18,19 +18,19 @@
|
|
18
18
|
"braintree-web": "^3.99.0"
|
19
19
|
},
|
20
20
|
"peerDependencies": {
|
21
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
22
|
-
"@graphcommerce/graphql": "^8.0.
|
23
|
-
"@graphcommerce/image": "^8.0.
|
24
|
-
"@graphcommerce/magento-cart": "^8.0.
|
25
|
-
"@graphcommerce/magento-cart-payment-method": "^8.0.
|
26
|
-
"@graphcommerce/magento-cart-shipping-address": "^8.0.
|
27
|
-
"@graphcommerce/magento-product": "^8.0.
|
28
|
-
"@graphcommerce/magento-product-configurable": "^8.0.
|
29
|
-
"@graphcommerce/magento-store": "^8.0.
|
30
|
-
"@graphcommerce/next-ui": "^8.0.
|
31
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
32
|
-
"@graphcommerce/react-hook-form": "^8.0.
|
33
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
21
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.7",
|
22
|
+
"@graphcommerce/graphql": "^8.0.7",
|
23
|
+
"@graphcommerce/image": "^8.0.7",
|
24
|
+
"@graphcommerce/magento-cart": "^8.0.7",
|
25
|
+
"@graphcommerce/magento-cart-payment-method": "^8.0.7",
|
26
|
+
"@graphcommerce/magento-cart-shipping-address": "^8.0.7",
|
27
|
+
"@graphcommerce/magento-product": "^8.0.7",
|
28
|
+
"@graphcommerce/magento-product-configurable": "^8.0.7",
|
29
|
+
"@graphcommerce/magento-store": "^8.0.7",
|
30
|
+
"@graphcommerce/next-ui": "^8.0.7",
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.7",
|
32
|
+
"@graphcommerce/react-hook-form": "^8.0.7",
|
33
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.7",
|
34
34
|
"@lingui/core": "^4.2.1",
|
35
35
|
"@lingui/macro": "^4.2.1",
|
36
36
|
"@lingui/react": "^4.2.1",
|