@graphcommerce/magento-payment-braintree 8.0.6 → 8.0.8

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