@graphcommerce/magento-newsletter 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 +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.0.7
4
+
3
5
  ## 8.0.6
4
6
 
5
7
  ## 8.0.5
@@ -36,8 +38,7 @@
36
38
 
37
39
  ### Patch Changes
38
40
 
39
- - [#2205](https://github.com/graphcommerce-org/graphcommerce/pull/2205) [`d67c89d`](https://github.com/graphcommerce-org/graphcommerce/commit/d67c89d464a60f0e2618dab670b63a39f6291341) - Deprecate the allowUrl option for useCartQuery, it was already enabled by default and should never be set to false.
40
- ([@paales](https://github.com/paales))
41
+ - [#2205](https://github.com/graphcommerce-org/graphcommerce/pull/2205) [`d67c89d`](https://github.com/graphcommerce-org/graphcommerce/commit/d67c89d464a60f0e2618dab670b63a39f6291341) - Deprecate the allowUrl option for useCartQuery, it was already enabled by default and should never be set to false. ([@paales](https://github.com/paales))
41
42
 
42
43
  ## 8.0.3-canary.6
43
44
 
@@ -51,8 +52,7 @@
51
52
 
52
53
  ### Patch Changes
53
54
 
54
- - [#2205](https://github.com/graphcommerce-org/graphcommerce/pull/2205) [`d67c89d`](https://github.com/graphcommerce-org/graphcommerce/commit/d67c89d464a60f0e2618dab670b63a39f6291341) - Deprecate the allowUrl option for useCartQuery, it was already enabled by default and should never be set to false.
55
- ([@paales](https://github.com/paales))
55
+ - [#2205](https://github.com/graphcommerce-org/graphcommerce/pull/2205) [`d67c89d`](https://github.com/graphcommerce-org/graphcommerce/commit/d67c89d464a60f0e2618dab670b63a39f6291341) - Deprecate the allowUrl option for useCartQuery, it was already enabled by default and should never be set to false. ([@paales](https://github.com/paales))
56
56
 
57
57
  ## 8.0.3-canary.1
58
58
 
@@ -1289,31 +1289,31 @@
1289
1289
  All occurences of `<Trans>` and `t` need to be replaced:
1290
1290
 
1291
1291
  ```tsx
1292
- import { Trans, t } from "@lingui/macro";
1292
+ import { Trans, t } from '@lingui/macro'
1293
1293
 
1294
1294
  function MyComponent() {
1295
- const foo = "bar";
1295
+ const foo = 'bar'
1296
1296
  return (
1297
1297
  <div aria-label={t`Account ${foo}`}>
1298
1298
  <Trans>My Translation {foo}</Trans>
1299
1299
  </div>
1300
- );
1300
+ )
1301
1301
  }
1302
1302
  ```
1303
1303
 
1304
1304
  Needs to be replaced with:
1305
1305
 
1306
1306
  ```tsx
1307
- import { Trans } from "@lingui/react";
1308
- import { i18n } from "@lingui/core";
1307
+ import { Trans } from '@lingui/react'
1308
+ import { i18n } from '@lingui/core'
1309
1309
 
1310
1310
  function MyComponent() {
1311
- const foo = "bar";
1311
+ const foo = 'bar'
1312
1312
  return (
1313
1313
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1314
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1314
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1315
1315
  </div>
1316
- );
1316
+ )
1317
1317
  }
1318
1318
  ```
1319
1319
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-newsletter",
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": {
@@ -12,15 +12,15 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/ecommerce-ui": "^8.0.6",
16
- "@graphcommerce/eslint-config-pwa": "^8.0.6",
17
- "@graphcommerce/graphql": "^8.0.6",
18
- "@graphcommerce/magento-cart": "^8.0.6",
19
- "@graphcommerce/magento-customer": "^8.0.6",
20
- "@graphcommerce/next-ui": "^8.0.6",
21
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
22
- "@graphcommerce/react-hook-form": "^8.0.6",
23
- "@graphcommerce/typescript-config-pwa": "^8.0.6",
15
+ "@graphcommerce/ecommerce-ui": "^8.0.7",
16
+ "@graphcommerce/eslint-config-pwa": "^8.0.7",
17
+ "@graphcommerce/graphql": "^8.0.7",
18
+ "@graphcommerce/magento-cart": "^8.0.7",
19
+ "@graphcommerce/magento-customer": "^8.0.7",
20
+ "@graphcommerce/next-ui": "^8.0.7",
21
+ "@graphcommerce/prettier-config-pwa": "^8.0.7",
22
+ "@graphcommerce/react-hook-form": "^8.0.7",
23
+ "@graphcommerce/typescript-config-pwa": "^8.0.7",
24
24
  "@lingui/core": "^4.2.1",
25
25
  "@lingui/macro": "^4.2.1",
26
26
  "@lingui/react": "^4.2.1",