@graphcommerce/mollie-magento-payment 9.0.0-canary.56 → 9.0.0-canary.58
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 +16 -16
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.0.0-canary.58
|
|
4
|
+
|
|
5
|
+
## 9.0.0-canary.57
|
|
6
|
+
|
|
3
7
|
## 9.0.0-canary.56
|
|
4
8
|
|
|
5
9
|
## 9.0.0-canary.55
|
|
@@ -40,8 +44,7 @@
|
|
|
40
44
|
|
|
41
45
|
### Patch Changes
|
|
42
46
|
|
|
43
|
-
- [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Fix bug with persist not applying saved changes by moving <FromPersist/> below the form components
|
|
44
|
-
([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
47
|
+
- [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Fix bug with persist not applying saved changes by moving <FromPersist/> below the form components ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
45
48
|
|
|
46
49
|
## 8.1.0-canary.37
|
|
47
50
|
|
|
@@ -117,8 +120,7 @@
|
|
|
117
120
|
|
|
118
121
|
### Patch Changes
|
|
119
122
|
|
|
120
|
-
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`530076e`](https://github.com/graphcommerce-org/graphcommerce/commit/530076e3664703cb8b577b7fcf1998a420819f60) - Moved all usages of useFormPersist to the <FormPersist/> component to prevent rerenders.
|
|
121
|
-
([@FrankHarland](https://github.com/FrankHarland))
|
|
123
|
+
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`530076e`](https://github.com/graphcommerce-org/graphcommerce/commit/530076e3664703cb8b577b7fcf1998a420819f60) - Moved all usages of useFormPersist to the <FormPersist/> component to prevent rerenders. ([@FrankHarland](https://github.com/FrankHarland))
|
|
122
124
|
|
|
123
125
|
## 8.0.6-canary.1
|
|
124
126
|
|
|
@@ -196,11 +198,9 @@
|
|
|
196
198
|
|
|
197
199
|
### Patch Changes
|
|
198
200
|
|
|
199
|
-
- [#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.
|
|
200
|
-
([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
201
|
+
- [#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))
|
|
201
202
|
|
|
202
|
-
- [#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
|
|
203
|
-
([@mikekeehnen](https://github.com/mikekeehnen))
|
|
203
|
+
- [#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))
|
|
204
204
|
|
|
205
205
|
## 8.0.0-canary.100
|
|
206
206
|
|
|
@@ -1549,31 +1549,31 @@
|
|
|
1549
1549
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1550
1550
|
|
|
1551
1551
|
```tsx
|
|
1552
|
-
import { Trans, t } from
|
|
1552
|
+
import { Trans, t } from '@lingui/macro'
|
|
1553
1553
|
|
|
1554
1554
|
function MyComponent() {
|
|
1555
|
-
const foo =
|
|
1555
|
+
const foo = 'bar'
|
|
1556
1556
|
return (
|
|
1557
1557
|
<div aria-label={t`Account ${foo}`}>
|
|
1558
1558
|
<Trans>My Translation {foo}</Trans>
|
|
1559
1559
|
</div>
|
|
1560
|
-
)
|
|
1560
|
+
)
|
|
1561
1561
|
}
|
|
1562
1562
|
```
|
|
1563
1563
|
|
|
1564
1564
|
Needs to be replaced with:
|
|
1565
1565
|
|
|
1566
1566
|
```tsx
|
|
1567
|
-
import { Trans } from
|
|
1568
|
-
import { i18n } from
|
|
1567
|
+
import { Trans } from '@lingui/react'
|
|
1568
|
+
import { i18n } from '@lingui/core'
|
|
1569
1569
|
|
|
1570
1570
|
function MyComponent() {
|
|
1571
|
-
const foo =
|
|
1571
|
+
const foo = 'bar'
|
|
1572
1572
|
return (
|
|
1573
1573
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1574
|
-
<Trans key=
|
|
1574
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1575
1575
|
</div>
|
|
1576
|
-
)
|
|
1576
|
+
)
|
|
1577
1577
|
}
|
|
1578
1578
|
```
|
|
1579
1579
|
|
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": "9.0.0-canary.
|
|
5
|
+
"version": "9.0.0-canary.58",
|
|
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": "^9.0.0-canary.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
|
17
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
|
18
|
-
"@graphcommerce/graphql-mesh": "^9.0.0-canary.
|
|
19
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
|
20
|
-
"@graphcommerce/magento-cart": "^9.0.0-canary.
|
|
21
|
-
"@graphcommerce/magento-cart-payment-method": "^9.0.0-canary.
|
|
22
|
-
"@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.
|
|
23
|
-
"@graphcommerce/magento-product": "^9.0.0-canary.
|
|
24
|
-
"@graphcommerce/magento-product-configurable": "^9.0.0-canary.
|
|
25
|
-
"@graphcommerce/magento-store": "^9.0.0-canary.
|
|
26
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
|
27
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
|
28
|
-
"@graphcommerce/react-hook-form": "^9.0.0-canary.
|
|
29
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.0.0-canary.58",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.58",
|
|
17
|
+
"@graphcommerce/graphql": "^9.0.0-canary.58",
|
|
18
|
+
"@graphcommerce/graphql-mesh": "^9.0.0-canary.58",
|
|
19
|
+
"@graphcommerce/image": "^9.0.0-canary.58",
|
|
20
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.58",
|
|
21
|
+
"@graphcommerce/magento-cart-payment-method": "^9.0.0-canary.58",
|
|
22
|
+
"@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.58",
|
|
23
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.58",
|
|
24
|
+
"@graphcommerce/magento-product-configurable": "^9.0.0-canary.58",
|
|
25
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.58",
|
|
26
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.58",
|
|
27
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.58",
|
|
28
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.58",
|
|
29
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.58",
|
|
30
30
|
"@lingui/core": "^4.2.1",
|
|
31
31
|
"@lingui/macro": "^4.2.1",
|
|
32
32
|
"@lingui/react": "^4.2.1",
|