@graphcommerce/magento-payment-braintree 9.0.0-canary.56 → 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 +14 -16
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 9.0.0-canary.57
|
4
|
+
|
3
5
|
## 9.0.0-canary.56
|
4
6
|
|
5
7
|
## 9.0.0-canary.55
|
@@ -80,8 +82,7 @@
|
|
80
82
|
|
81
83
|
### Patch Changes
|
82
84
|
|
83
|
-
- [#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.
|
84
|
-
([@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))
|
85
86
|
|
86
87
|
## 8.1.0-canary.17
|
87
88
|
|
@@ -117,8 +118,7 @@
|
|
117
118
|
|
118
119
|
### Patch Changes
|
119
120
|
|
120
|
-
- [#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
|
121
|
-
([@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))
|
122
122
|
|
123
123
|
## 8.0.6-canary.1
|
124
124
|
|
@@ -128,8 +128,7 @@
|
|
128
128
|
|
129
129
|
### Patch Changes
|
130
130
|
|
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.
|
132
|
-
([@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))
|
133
132
|
|
134
133
|
## 8.0.5-canary.10
|
135
134
|
|
@@ -145,8 +144,7 @@
|
|
145
144
|
|
146
145
|
### Patch Changes
|
147
146
|
|
148
|
-
- [#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.
|
149
|
-
([@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))
|
150
148
|
|
151
149
|
## 8.0.5-canary.4
|
152
150
|
|
@@ -1510,31 +1508,31 @@
|
|
1510
1508
|
All occurences of `<Trans>` and `t` need to be replaced:
|
1511
1509
|
|
1512
1510
|
```tsx
|
1513
|
-
import { Trans, t } from
|
1511
|
+
import { Trans, t } from '@lingui/macro'
|
1514
1512
|
|
1515
1513
|
function MyComponent() {
|
1516
|
-
const foo =
|
1514
|
+
const foo = 'bar'
|
1517
1515
|
return (
|
1518
1516
|
<div aria-label={t`Account ${foo}`}>
|
1519
1517
|
<Trans>My Translation {foo}</Trans>
|
1520
1518
|
</div>
|
1521
|
-
)
|
1519
|
+
)
|
1522
1520
|
}
|
1523
1521
|
```
|
1524
1522
|
|
1525
1523
|
Needs to be replaced with:
|
1526
1524
|
|
1527
1525
|
```tsx
|
1528
|
-
import { Trans } from
|
1529
|
-
import { i18n } from
|
1526
|
+
import { Trans } from '@lingui/react'
|
1527
|
+
import { i18n } from '@lingui/core'
|
1530
1528
|
|
1531
1529
|
function MyComponent() {
|
1532
|
-
const foo =
|
1530
|
+
const foo = 'bar'
|
1533
1531
|
return (
|
1534
1532
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
1535
|
-
<Trans key=
|
1533
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
1536
1534
|
</div>
|
1537
|
-
)
|
1535
|
+
)
|
1538
1536
|
}
|
1539
1537
|
```
|
1540
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",
|