@graphcommerce/magento-cart-email 3.0.1 β†’ 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1276](https://github.com/ho-nl/m2-pwa/pull/1276)
8
+ [`ce09388e0`](https://github.com/ho-nl/m2-pwa/commit/ce09388e0d7ef33aee660612340f6fbae15ceec2)
9
+ Thanks [@paales](https://github.com/paales)! - We've moved lots of internal packages from
10
+ `dependencies` to `peerDependencies`. The result of this is that there will be significantly less
11
+ duplicate packages in the node_modules folders.
12
+
13
+ * [#1274](https://github.com/ho-nl/m2-pwa/pull/1274)
14
+ [`b08a8eb1d`](https://github.com/ho-nl/m2-pwa/commit/b08a8eb1d024b9d3e7712ef034029151670db275)
15
+ Thanks [@paales](https://github.com/paales)! - Fixed extraction of translations and updated
16
+ various translations for english πŸ‡ΊπŸ‡ΈπŸ‡¬πŸ‡§ and dutch πŸ‡³πŸ‡±
17
+
18
+ - [#1276](https://github.com/ho-nl/m2-pwa/pull/1276)
19
+ [`52a45bba4`](https://github.com/ho-nl/m2-pwa/commit/52a45bba4dc6dd6df3c81f5023df7d23ed8a534d)
20
+ Thanks [@paales](https://github.com/paales)! - Upgraded to
21
+ [NextJS 12.1](https://nextjs.org/blog/next-12-1)! This is just for compatibility, but we'll be
22
+ implementing
23
+ [On-demand Incremental Static Regeneration](https://nextjs.org/blog/next-12-1#on-demand-incremental-static-regeneration-beta)
24
+ soon.
25
+
26
+ This will greatly reduce the requirement to rebuid stuff and we'll add a management UI on the
27
+ frontend to be able to revalidate pages manually.
28
+
29
+ - Updated dependencies
30
+ [[`381e4c86a`](https://github.com/ho-nl/m2-pwa/commit/381e4c86a8321ce96e1fa5c7d3c0a0c0ff3e02c7),
31
+ [`ce09388e0`](https://github.com/ho-nl/m2-pwa/commit/ce09388e0d7ef33aee660612340f6fbae15ceec2),
32
+ [`e7c8e2756`](https://github.com/ho-nl/m2-pwa/commit/e7c8e2756d637cbcd2e793d62ef5721d35d9fa7b),
33
+ [`b08a8eb1d`](https://github.com/ho-nl/m2-pwa/commit/b08a8eb1d024b9d3e7712ef034029151670db275),
34
+ [`52a45bba4`](https://github.com/ho-nl/m2-pwa/commit/52a45bba4dc6dd6df3c81f5023df7d23ed8a534d),
35
+ [`5a4809b1a`](https://github.com/ho-nl/m2-pwa/commit/5a4809b1a705aa32f620f520085df48ee25f9949)]:
36
+ - @graphcommerce/magento-cart@4.1.1
37
+ - @graphcommerce/magento-customer@4.1.1
38
+ - @graphcommerce/next-ui@4.1.1
39
+ - @graphcommerce/react-hook-form@3.0.2
40
+ - @graphcommerce/graphql@3.0.2
41
+ - @graphcommerce/image@3.0.2
42
+ - @graphcommerce/magento-product@4.0.2
43
+ - @graphcommerce/magento-store@4.0.2
44
+
3
45
  ## 3.0.1
4
46
 
5
47
  ### Patch Changes
@@ -67,7 +67,7 @@ export default function EmailForm(props: EmailFormProps) {
67
67
  if (mode === 'signin') {
68
68
  endAdornment = (
69
69
  <Button color='secondary' style={{ whiteSpace: 'nowrap' }} onClick={() => setExpand(!expand)}>
70
- {expand ? <Trans>Close</Trans> : <Trans>Sign In</Trans>}
70
+ {expand ? <Trans>Close</Trans> : <Trans>Sign in</Trans>}
71
71
  </Button>
72
72
  )
73
73
  }
@@ -87,7 +87,7 @@ export default function EmailForm(props: EmailFormProps) {
87
87
  <form noValidate onSubmit={submit}>
88
88
  <FormRow>
89
89
  <Typography variant='h5' component='h2' gutterBottom>
90
- <Trans>Login or create an account</Trans>
90
+ <Trans>Log in or create an account</Trans>
91
91
  </Typography>
92
92
  </FormRow>
93
93
  <FormRow className={classes.formRow} sx={{ py: 0 }}>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-cart-email",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.0.1",
5
+ "version": "3.0.2",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,20 +12,22 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^4.0.1",
15
+ "@graphcommerce/eslint-config-pwa": "^4.0.2",
16
16
  "@graphcommerce/prettier-config-pwa": "^4.0.1",
17
17
  "@graphcommerce/typescript-config-pwa": "^4.0.1",
18
- "@playwright/test": "^1.18.1"
18
+ "@playwright/test": "^1.19.1"
19
19
  },
20
20
  "dependencies": {
21
- "@graphcommerce/graphql": "^3.0.1",
22
- "@graphcommerce/image": "^3.0.1",
23
- "@graphcommerce/magento-cart": "^4.0.1",
24
- "@graphcommerce/magento-customer": "^4.0.1",
25
- "@graphcommerce/magento-product": "^4.0.1",
26
- "@graphcommerce/magento-store": "^4.0.1",
27
- "@graphcommerce/next-ui": "^4.0.1",
28
- "@graphcommerce/react-hook-form": "^3.0.1",
21
+ "@graphcommerce/graphql": "^3.0.2",
22
+ "@graphcommerce/image": "^3.0.2",
23
+ "@graphcommerce/magento-cart": "^4.1.1",
24
+ "@graphcommerce/magento-customer": "^4.1.1",
25
+ "@graphcommerce/magento-product": "^4.0.2",
26
+ "@graphcommerce/magento-store": "^4.0.2",
27
+ "@graphcommerce/next-ui": "^4.1.1",
28
+ "@graphcommerce/react-hook-form": "^3.0.2"
29
+ },
30
+ "peerDependencies": {
29
31
  "@lingui/macro": "^3.13.2",
30
32
  "@mui/material": "^5.4.1",
31
33
  "framer-motion": "^6.2.4",