@graphcommerce/magento-payment-braintree 8.0.6 → 8.0.7

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 +12 -12
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,13 +1,14 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.0.7
4
+
3
5
  ## 8.0.6
4
6
 
5
7
  ## 8.0.5
6
8
 
7
9
  ### Patch Changes
8
10
 
9
- - [#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.
10
- ([@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))
11
12
 
12
13
  ## 8.0.5-canary.10
13
14
 
@@ -23,8 +24,7 @@
23
24
 
24
25
  ### Patch Changes
25
26
 
26
- - [#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.
27
- ([@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))
28
28
 
29
29
  ## 8.0.5-canary.4
30
30
 
@@ -1388,31 +1388,31 @@
1388
1388
  All occurences of `<Trans>` and `t` need to be replaced:
1389
1389
 
1390
1390
  ```tsx
1391
- import { Trans, t } from "@lingui/macro";
1391
+ import { Trans, t } from '@lingui/macro'
1392
1392
 
1393
1393
  function MyComponent() {
1394
- const foo = "bar";
1394
+ const foo = 'bar'
1395
1395
  return (
1396
1396
  <div aria-label={t`Account ${foo}`}>
1397
1397
  <Trans>My Translation {foo}</Trans>
1398
1398
  </div>
1399
- );
1399
+ )
1400
1400
  }
1401
1401
  ```
1402
1402
 
1403
1403
  Needs to be replaced with:
1404
1404
 
1405
1405
  ```tsx
1406
- import { Trans } from "@lingui/react";
1407
- import { i18n } from "@lingui/core";
1406
+ import { Trans } from '@lingui/react'
1407
+ import { i18n } from '@lingui/core'
1408
1408
 
1409
1409
  function MyComponent() {
1410
- const foo = "bar";
1410
+ const foo = 'bar'
1411
1411
  return (
1412
1412
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1413
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1413
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1414
1414
  </div>
1415
- );
1415
+ )
1416
1416
  }
1417
1417
  ```
1418
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.6",
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.6",
22
- "@graphcommerce/graphql": "^8.0.6",
23
- "@graphcommerce/image": "^8.0.6",
24
- "@graphcommerce/magento-cart": "^8.0.6",
25
- "@graphcommerce/magento-cart-payment-method": "^8.0.6",
26
- "@graphcommerce/magento-cart-shipping-address": "^8.0.6",
27
- "@graphcommerce/magento-product": "^8.0.6",
28
- "@graphcommerce/magento-product-configurable": "^8.0.6",
29
- "@graphcommerce/magento-store": "^8.0.6",
30
- "@graphcommerce/next-ui": "^8.0.6",
31
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
32
- "@graphcommerce/react-hook-form": "^8.0.6",
33
- "@graphcommerce/typescript-config-pwa": "^8.0.6",
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",