@graphcommerce/magento-payment-braintree 8.0.0-canary.40 → 8.0.0-canary.70

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +58 -10
  2. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,8 +1,56 @@
1
1
  # Change Log
2
2
 
3
- ## 8.0.0-canary.40
3
+ ## 8.0.0-canary.70
4
4
 
5
- ## 7.1.0-canary.39
5
+ ## 8.0.0-canary.69
6
+
7
+ ## 7.1.0-canary.68
8
+
9
+ ## 7.1.0-canary.67
10
+
11
+ ## 7.1.0-canary.66
12
+
13
+ ## 7.1.0-canary.65
14
+
15
+ ## 7.1.0-canary.64
16
+
17
+ ## 7.1.0-canary.63
18
+
19
+ ## 7.1.0-canary.62
20
+
21
+ ## 7.1.0-canary.61
22
+
23
+ ## 7.1.0-canary.60
24
+
25
+ ## 7.1.0-canary.59
26
+
27
+ ## 7.1.0-canary.58
28
+
29
+ ## 7.1.0-canary.57
30
+
31
+ ## 7.1.0-canary.56
32
+
33
+ ## 7.1.0-canary.55
34
+
35
+ ## 7.1.0-canary.54
36
+
37
+ ## 7.1.0-canary.53
38
+
39
+ ## 7.1.0-canary.52
40
+
41
+ ## 7.1.0-canary.51
42
+
43
+ ## 7.1.0-canary.50
44
+
45
+ ## 7.1.0-canary.49
46
+
47
+ ## 7.1.0-canary.48
48
+
49
+ ## 7.1.0-canary.47
50
+
51
+ ## 7.1.0-canary.46
52
+
53
+ ## 7.1.0-canary.45
6
54
 
7
55
  ## 7.1.0-canary.38
8
56
 
@@ -1198,31 +1246,31 @@
1198
1246
  All occurences of `<Trans>` and `t` need to be replaced:
1199
1247
 
1200
1248
  ```tsx
1201
- import { Trans, t } from '@lingui/macro'
1249
+ import { Trans, t } from "@lingui/macro";
1202
1250
 
1203
1251
  function MyComponent() {
1204
- const foo = 'bar'
1252
+ const foo = "bar";
1205
1253
  return (
1206
1254
  <div aria-label={t`Account ${foo}`}>
1207
1255
  <Trans>My Translation {foo}</Trans>
1208
1256
  </div>
1209
- )
1257
+ );
1210
1258
  }
1211
1259
  ```
1212
1260
 
1213
1261
  Needs to be replaced with:
1214
1262
 
1215
1263
  ```tsx
1216
- import { Trans } from '@lingui/react'
1217
- import { i18n } from '@lingui/core'
1264
+ import { Trans } from "@lingui/react";
1265
+ import { i18n } from "@lingui/core";
1218
1266
 
1219
1267
  function MyComponent() {
1220
- const foo = 'bar'
1268
+ const foo = "bar";
1221
1269
  return (
1222
1270
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1223
- <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1271
+ <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1224
1272
  </div>
1225
- )
1273
+ );
1226
1274
  }
1227
1275
  ```
1228
1276
 
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.0-canary.40",
5
+ "version": "8.0.0-canary.70",
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.9"
15
+ "@types/braintree-web": "^3.96.10"
16
16
  },
17
17
  "dependencies": {
18
- "braintree-web": "^3.97.3"
18
+ "braintree-web": "^3.97.4"
19
19
  },
20
20
  "peerDependencies": {
21
- "@graphcommerce/eslint-config-pwa": "8.0.0-canary.40",
22
- "@graphcommerce/graphql": "8.0.0-canary.40",
23
- "@graphcommerce/image": "8.0.0-canary.40",
24
- "@graphcommerce/magento-cart": "8.0.0-canary.40",
25
- "@graphcommerce/magento-cart-payment-method": "8.0.0-canary.40",
26
- "@graphcommerce/magento-cart-shipping-address": "8.0.0-canary.40",
27
- "@graphcommerce/magento-product": "8.0.0-canary.40",
28
- "@graphcommerce/magento-product-configurable": "8.0.0-canary.40",
29
- "@graphcommerce/magento-store": "8.0.0-canary.40",
30
- "@graphcommerce/next-ui": "8.0.0-canary.40",
31
- "@graphcommerce/prettier-config-pwa": "8.0.0-canary.40",
32
- "@graphcommerce/react-hook-form": "8.0.0-canary.40",
33
- "@graphcommerce/typescript-config-pwa": "8.0.0-canary.40",
21
+ "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.70",
22
+ "@graphcommerce/graphql": "^8.0.0-canary.70",
23
+ "@graphcommerce/image": "^8.0.0-canary.70",
24
+ "@graphcommerce/magento-cart": "^8.0.0-canary.70",
25
+ "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.70",
26
+ "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.70",
27
+ "@graphcommerce/magento-product": "^8.0.0-canary.70",
28
+ "@graphcommerce/magento-product-configurable": "^8.0.0-canary.70",
29
+ "@graphcommerce/magento-store": "^8.0.0-canary.70",
30
+ "@graphcommerce/next-ui": "^8.0.0-canary.70",
31
+ "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.70",
32
+ "@graphcommerce/react-hook-form": "^8.0.0-canary.70",
33
+ "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.70",
34
34
  "@lingui/core": "^4.2.1",
35
35
  "@lingui/macro": "^4.2.1",
36
36
  "@lingui/react": "^4.2.1",