@graphcommerce/mollie-magento-payment 8.0.6 → 8.0.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -12
  2. package/package.json +16 -16
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
@@ -74,11 +76,9 @@
74
76
 
75
77
  ### Patch Changes
76
78
 
77
- - [#2092](https://github.com/graphcommerce-org/graphcommerce/pull/2092) [`1edd198`](https://github.com/graphcommerce-org/graphcommerce/commit/1edd198dc6b102be423a5285d9fe4437b69ca165) - An error message would be shown when a payment was sucessfull instead of when an error occured.
78
- ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
79
+ - [#2092](https://github.com/graphcommerce-org/graphcommerce/pull/2092) [`1edd198`](https://github.com/graphcommerce-org/graphcommerce/commit/1edd198dc6b102be423a5285d9fe4437b69ca165) - An error message would be shown when a payment was sucessfull instead of when an error occured. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
79
80
 
80
- - [#2124](https://github.com/graphcommerce-org/graphcommerce/pull/2124) [`3bd80b8`](https://github.com/graphcommerce-org/graphcommerce/commit/3bd80b88351963ae95aaa97b2cfa25f8e526a128) - Fixed the issue where a guest returned to a empty cart after a canceled payment with Mollie
81
- ([@mikekeehnen](https://github.com/mikekeehnen))
81
+ - [#2124](https://github.com/graphcommerce-org/graphcommerce/pull/2124) [`3bd80b8`](https://github.com/graphcommerce-org/graphcommerce/commit/3bd80b88351963ae95aaa97b2cfa25f8e526a128) - Fixed the issue where a guest returned to a empty cart after a canceled payment with Mollie ([@mikekeehnen](https://github.com/mikekeehnen))
82
82
 
83
83
  ## 8.0.0-canary.100
84
84
 
@@ -1427,31 +1427,31 @@
1427
1427
  All occurences of `<Trans>` and `t` need to be replaced:
1428
1428
 
1429
1429
  ```tsx
1430
- import { Trans, t } from "@lingui/macro";
1430
+ import { Trans, t } from '@lingui/macro'
1431
1431
 
1432
1432
  function MyComponent() {
1433
- const foo = "bar";
1433
+ const foo = 'bar'
1434
1434
  return (
1435
1435
  <div aria-label={t`Account ${foo}`}>
1436
1436
  <Trans>My Translation {foo}</Trans>
1437
1437
  </div>
1438
- );
1438
+ )
1439
1439
  }
1440
1440
  ```
1441
1441
 
1442
1442
  Needs to be replaced with:
1443
1443
 
1444
1444
  ```tsx
1445
- import { Trans } from "@lingui/react";
1446
- import { i18n } from "@lingui/core";
1445
+ import { Trans } from '@lingui/react'
1446
+ import { i18n } from '@lingui/core'
1447
1447
 
1448
1448
  function MyComponent() {
1449
- const foo = "bar";
1449
+ const foo = 'bar'
1450
1450
  return (
1451
1451
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1452
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1452
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1453
1453
  </div>
1454
- );
1454
+ )
1455
1455
  }
1456
1456
  ```
1457
1457
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/mollie-magento-payment",
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,21 +12,21 @@
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/graphql-mesh": "^8.0.6",
19
- "@graphcommerce/image": "^8.0.6",
20
- "@graphcommerce/magento-cart": "^8.0.6",
21
- "@graphcommerce/magento-cart-payment-method": "^8.0.6",
22
- "@graphcommerce/magento-cart-shipping-address": "^8.0.6",
23
- "@graphcommerce/magento-product": "^8.0.6",
24
- "@graphcommerce/magento-product-configurable": "^8.0.6",
25
- "@graphcommerce/magento-store": "^8.0.6",
26
- "@graphcommerce/next-ui": "^8.0.6",
27
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
28
- "@graphcommerce/react-hook-form": "^8.0.6",
29
- "@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/graphql-mesh": "^8.0.7",
19
+ "@graphcommerce/image": "^8.0.7",
20
+ "@graphcommerce/magento-cart": "^8.0.7",
21
+ "@graphcommerce/magento-cart-payment-method": "^8.0.7",
22
+ "@graphcommerce/magento-cart-shipping-address": "^8.0.7",
23
+ "@graphcommerce/magento-product": "^8.0.7",
24
+ "@graphcommerce/magento-product-configurable": "^8.0.7",
25
+ "@graphcommerce/magento-store": "^8.0.7",
26
+ "@graphcommerce/next-ui": "^8.0.7",
27
+ "@graphcommerce/prettier-config-pwa": "^8.0.7",
28
+ "@graphcommerce/react-hook-form": "^8.0.7",
29
+ "@graphcommerce/typescript-config-pwa": "^8.0.7",
30
30
  "@lingui/core": "^4.2.1",
31
31
  "@lingui/macro": "^4.2.1",
32
32
  "@lingui/react": "^4.2.1",