@graphcommerce/magento-payment-braintree 9.0.0-canary.56 → 9.0.0-canary.58
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.58
|
4
|
+
|
5
|
+
## 9.0.0-canary.57
|
6
|
+
|
3
7
|
## 9.0.0-canary.56
|
4
8
|
|
5
9
|
## 9.0.0-canary.55
|
@@ -80,8 +84,7 @@
|
|
80
84
|
|
81
85
|
### Patch Changes
|
82
86
|
|
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))
|
87
|
+
- [#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
88
|
|
86
89
|
## 8.1.0-canary.17
|
87
90
|
|
@@ -117,8 +120,7 @@
|
|
117
120
|
|
118
121
|
### Patch Changes
|
119
122
|
|
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))
|
123
|
+
- [#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
124
|
|
123
125
|
## 8.0.6-canary.1
|
124
126
|
|
@@ -128,8 +130,7 @@
|
|
128
130
|
|
129
131
|
### Patch Changes
|
130
132
|
|
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))
|
133
|
+
- [#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
134
|
|
134
135
|
## 8.0.5-canary.10
|
135
136
|
|
@@ -145,8 +146,7 @@
|
|
145
146
|
|
146
147
|
### Patch Changes
|
147
148
|
|
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))
|
149
|
+
- [#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
150
|
|
151
151
|
## 8.0.5-canary.4
|
152
152
|
|
@@ -1510,31 +1510,31 @@
|
|
1510
1510
|
All occurences of `<Trans>` and `t` need to be replaced:
|
1511
1511
|
|
1512
1512
|
```tsx
|
1513
|
-
import { Trans, t } from
|
1513
|
+
import { Trans, t } from '@lingui/macro'
|
1514
1514
|
|
1515
1515
|
function MyComponent() {
|
1516
|
-
const foo =
|
1516
|
+
const foo = 'bar'
|
1517
1517
|
return (
|
1518
1518
|
<div aria-label={t`Account ${foo}`}>
|
1519
1519
|
<Trans>My Translation {foo}</Trans>
|
1520
1520
|
</div>
|
1521
|
-
)
|
1521
|
+
)
|
1522
1522
|
}
|
1523
1523
|
```
|
1524
1524
|
|
1525
1525
|
Needs to be replaced with:
|
1526
1526
|
|
1527
1527
|
```tsx
|
1528
|
-
import { Trans } from
|
1529
|
-
import { i18n } from
|
1528
|
+
import { Trans } from '@lingui/react'
|
1529
|
+
import { i18n } from '@lingui/core'
|
1530
1530
|
|
1531
1531
|
function MyComponent() {
|
1532
|
-
const foo =
|
1532
|
+
const foo = 'bar'
|
1533
1533
|
return (
|
1534
1534
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
1535
|
-
<Trans key=
|
1535
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
1536
1536
|
</div>
|
1537
|
-
)
|
1537
|
+
)
|
1538
1538
|
}
|
1539
1539
|
```
|
1540
1540
|
|
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.58",
|
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.58",
|
22
|
+
"@graphcommerce/graphql": "^9.0.0-canary.58",
|
23
|
+
"@graphcommerce/image": "^9.0.0-canary.58",
|
24
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.58",
|
25
|
+
"@graphcommerce/magento-cart-payment-method": "^9.0.0-canary.58",
|
26
|
+
"@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.58",
|
27
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.58",
|
28
|
+
"@graphcommerce/magento-product-configurable": "^9.0.0-canary.58",
|
29
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.58",
|
30
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.58",
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.58",
|
32
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.58",
|
33
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.58",
|
34
34
|
"@lingui/core": "^4.2.1",
|
35
35
|
"@lingui/macro": "^4.2.1",
|
36
36
|
"@lingui/react": "^4.2.1",
|