@graphcommerce/mollie-magento-payment 8.0.6 → 8.0.8
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 +14 -12
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
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
|
|
@@ -74,11 +78,9 @@
|
|
|
74
78
|
|
|
75
79
|
### Patch Changes
|
|
76
80
|
|
|
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))
|
|
81
|
+
- [#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
82
|
|
|
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))
|
|
83
|
+
- [#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
84
|
|
|
83
85
|
## 8.0.0-canary.100
|
|
84
86
|
|
|
@@ -1427,31 +1429,31 @@
|
|
|
1427
1429
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1428
1430
|
|
|
1429
1431
|
```tsx
|
|
1430
|
-
import { Trans, t } from
|
|
1432
|
+
import { Trans, t } from '@lingui/macro'
|
|
1431
1433
|
|
|
1432
1434
|
function MyComponent() {
|
|
1433
|
-
const foo =
|
|
1435
|
+
const foo = 'bar'
|
|
1434
1436
|
return (
|
|
1435
1437
|
<div aria-label={t`Account ${foo}`}>
|
|
1436
1438
|
<Trans>My Translation {foo}</Trans>
|
|
1437
1439
|
</div>
|
|
1438
|
-
)
|
|
1440
|
+
)
|
|
1439
1441
|
}
|
|
1440
1442
|
```
|
|
1441
1443
|
|
|
1442
1444
|
Needs to be replaced with:
|
|
1443
1445
|
|
|
1444
1446
|
```tsx
|
|
1445
|
-
import { Trans } from
|
|
1446
|
-
import { i18n } from
|
|
1447
|
+
import { Trans } from '@lingui/react'
|
|
1448
|
+
import { i18n } from '@lingui/core'
|
|
1447
1449
|
|
|
1448
1450
|
function MyComponent() {
|
|
1449
|
-
const foo =
|
|
1451
|
+
const foo = 'bar'
|
|
1450
1452
|
return (
|
|
1451
1453
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1452
|
-
<Trans key=
|
|
1454
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1453
1455
|
</div>
|
|
1454
|
-
)
|
|
1456
|
+
)
|
|
1455
1457
|
}
|
|
1456
1458
|
```
|
|
1457
1459
|
|
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.
|
|
5
|
+
"version": "8.0.8",
|
|
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.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
17
|
-
"@graphcommerce/graphql": "^8.0.
|
|
18
|
-
"@graphcommerce/graphql-mesh": "^8.0.
|
|
19
|
-
"@graphcommerce/image": "^8.0.
|
|
20
|
-
"@graphcommerce/magento-cart": "^8.0.
|
|
21
|
-
"@graphcommerce/magento-cart-payment-method": "^8.0.
|
|
22
|
-
"@graphcommerce/magento-cart-shipping-address": "^8.0.
|
|
23
|
-
"@graphcommerce/magento-product": "^8.0.
|
|
24
|
-
"@graphcommerce/magento-product-configurable": "^8.0.
|
|
25
|
-
"@graphcommerce/magento-store": "^8.0.
|
|
26
|
-
"@graphcommerce/next-ui": "^8.0.
|
|
27
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
28
|
-
"@graphcommerce/react-hook-form": "^8.0.
|
|
29
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^8.0.8",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.8",
|
|
17
|
+
"@graphcommerce/graphql": "^8.0.8",
|
|
18
|
+
"@graphcommerce/graphql-mesh": "^8.0.8",
|
|
19
|
+
"@graphcommerce/image": "^8.0.8",
|
|
20
|
+
"@graphcommerce/magento-cart": "^8.0.8",
|
|
21
|
+
"@graphcommerce/magento-cart-payment-method": "^8.0.8",
|
|
22
|
+
"@graphcommerce/magento-cart-shipping-address": "^8.0.8",
|
|
23
|
+
"@graphcommerce/magento-product": "^8.0.8",
|
|
24
|
+
"@graphcommerce/magento-product-configurable": "^8.0.8",
|
|
25
|
+
"@graphcommerce/magento-store": "^8.0.8",
|
|
26
|
+
"@graphcommerce/next-ui": "^8.0.8",
|
|
27
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.8",
|
|
28
|
+
"@graphcommerce/react-hook-form": "^8.0.8",
|
|
29
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.8",
|
|
30
30
|
"@lingui/core": "^4.2.1",
|
|
31
31
|
"@lingui/macro": "^4.2.1",
|
|
32
32
|
"@lingui/react": "^4.2.1",
|