@graphcommerce/magento-payment-multisafepay 10.0.0 → 10.0.1-canary.1

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 +4 -240
  2. package/package.json +17 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @graphcommerce/magento-payment-multisafepay
2
2
 
3
+ ## 10.0.1-canary.1
4
+
5
+ ## 10.0.1-canary.0
6
+
3
7
  ## 10.0.0
4
8
 
5
9
  ### Major Changes
@@ -92,246 +96,6 @@
92
96
 
93
97
  - [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`6a55be4`](https://github.com/graphcommerce-org/graphcommerce/commit/6a55be43ab1f53eb689abf8ad742383daf65822e) - Solve issue where the MSPPaymentHandler query would be executed multiple times. ([@paales](https://github.com/paales))
94
98
 
95
- ## 10.0.0-canary.72
96
-
97
- ## 10.0.0-canary.71
98
-
99
- ## 10.0.0-canary.70
100
-
101
- ## 10.0.0-canary.69
102
-
103
- ## 10.0.0-canary.68
104
-
105
- ## 10.0.0-canary.67
106
-
107
- ## 10.0.0-canary.66
108
-
109
- ## 10.0.0-canary.65
110
-
111
- ## 10.0.0-canary.64
112
-
113
- ## 10.0.0-canary.63
114
-
115
- ## 10.0.0-canary.62
116
-
117
- ## 10.0.0-canary.61
118
-
119
- ### Patch Changes
120
-
121
- - [`686722c`](https://github.com/graphcommerce-org/graphcommerce/commit/686722cb35dadbbe0dc1c8d144b1f5e2b65d433d) - docs ([@paales](https://github.com/paales))
122
-
123
- ## 10.0.0-canary.60
124
-
125
- ## 10.0.0-canary.59
126
-
127
- ## 10.0.0-canary.58
128
-
129
- ## 10.0.0-canary.57
130
-
131
- ## 10.0.0-canary.56
132
-
133
- ### Major Changes
134
-
135
- - [#2546](https://github.com/graphcommerce-org/graphcommerce/pull/2546) [`ed9332a`](https://github.com/graphcommerce-org/graphcommerce/commit/ed9332a7f78966d932041d9a7725641edc92b28d) - ## GraphCommerce 10 - Turbopack Support
136
-
137
- This major release brings full Turbopack compatibility, dramatically improving development speed.
138
-
139
- ### 🚀 Turbopack-Compatible Interceptor System
140
-
141
- The entire plugin/interceptor system has been rewritten to work with Turbopack:
142
-
143
- - **No more Webpack plugins** - Removed `InterceptorPlugin` webpack plugin entirely
144
- - **File-based interception** - Original files are moved to `.original.tsx` and replaced with interceptor content
145
- - **Direct imports** - Interceptors import from `.original` files instead of embedding source
146
- - **New CLI commands**:
147
- - `graphcommerce codegen-interceptors` - Generate interceptor files
148
- - `graphcommerce cleanup-interceptors` - Reset interceptor system, restore original files
149
- - **Stable file hashing** - Deterministic interceptor generation for better caching
150
-
151
- ### ⚙️ Treeshakable Configuration System
152
-
153
- Replaced Webpack `DefinePlugin`-based `import.meta.graphCommerce` with a new generated configuration system:
154
-
155
- - **New `codegen-config-values` command** - Generates TypeScript files with precise typing
156
- - **Schema-driven** - Dynamically introspects Zod schemas to determine all available properties
157
- - **Fully treeshakable** - Unused config values are eliminated from the bundle
158
- - **Type-safe** - Uses `Get<GraphCommerceConfig, 'path'>` for nested property access
159
- - **Separate files for nested objects** - Optimal treeshaking for complex configurations
160
-
161
- ### 🔧 withGraphCommerce Changes
162
-
163
- - **Removed** `InterceptorPlugin` - No longer needed with file-based interception
164
- - **Removed** `DefinePlugin` for `import.meta.graphCommerce` - Replaced with generated config
165
- - **Removed** `@mui/*` alias rewrites - No longer required
166
- - **Added** Turbopack loader rules for `.yaml`, `.yml`, and `.po` files
167
- - **Added** `serverExternalPackages` for all `@whatwg-node/*` packages
168
- - **Added** `optimizePackageImports` for better bundle optimization
169
- - **Added** `images.qualities: [52, 75]` for Next.js image optimization
170
-
171
- ### 📦 Lingui Configuration
172
-
173
- - **Renamed** `lingui.config.js` → `lingui.config.ts` with TypeScript support
174
- - **Updated** `@graphcommerce/lingui-next/config` to TypeScript with proper exports
175
- - **Simplified** formatter options
176
-
177
- ### ⚛️ React 19 & Next.js 16 Compatibility
178
-
179
- - Updated `RefObject<T>` types for React 19 (now includes `null` by default)
180
- - Replaced deprecated `React.VFC` with `React.FC`
181
- - Fixed `useRef` calls to require explicit initial values
182
- - Updated `MutableRefObject` usage in `framer-scroller`
183
-
184
- ### 📋 ESLint 9 Flat Config
185
-
186
- - Migrated from legacy `.eslintrc` to new flat config format (`eslint.config.mjs`)
187
- - Updated `@typescript-eslint/*` packages to v8
188
- - Fixed AST selector for `SxProps` rule (`typeParameters` → `typeArguments`)
189
-
190
- ### 🔄 Apollo Client
191
-
192
- - Fixed deprecated `name` option → `clientAwareness: { name: 'ssr' }`
193
- - Updated error handling types to accept `ApolloError | null | undefined`
194
-
195
- ### ⚠️ Breaking Changes
196
-
197
- - **Node.js 24.x not supported** - Restricted to `>=20 <24.0.0` due to [nodejs/undici#4290](https://github.com/nodejs/undici/issues/4290)
198
- - **Interceptor files changed** - Original components now at `.original.tsx`
199
- - **Config access changed** - Use generated config values instead of `import.meta.graphCommerce`
200
- - **ESLint config format** - Must use flat config (`eslint.config.mjs`)
201
- - **Lingui config** - Rename `lingui.config.js` to `lingui.config.ts`
202
-
203
- ### 🗑️ Removed
204
-
205
- - `InterceptorPlugin` webpack plugin
206
- - `configToImportMeta` utility
207
- - Webpack `DefinePlugin` usage for config
208
- - `@mui/*` modern alias rewrites
209
- - Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
210
-
211
- ## 9.1.0-canary.55
212
-
213
- ### Patch Changes
214
-
215
- - [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`21dc35d`](https://github.com/graphcommerce-org/graphcommerce/commit/21dc35d09521f47b7f91dc868ca776603e2da4a2) - Solve issue where the cart would remain locked if a user would return to the website without going through the checkout/payment step. ([@paales](https://github.com/paales))
216
-
217
- - [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`6a55be4`](https://github.com/graphcommerce-org/graphcommerce/commit/6a55be43ab1f53eb689abf8ad742383daf65822e) - Solve issue where the MSPPaymentHandler query would be executed multiple times. ([@paales](https://github.com/paales))
218
-
219
- ## 9.1.0-canary.54
220
-
221
- ## 9.1.0-canary.53
222
-
223
- ## 9.1.0-canary.52
224
-
225
- ## 9.1.0-canary.51
226
-
227
- ## 9.1.0-canary.50
228
-
229
- ## 9.1.0-canary.49
230
-
231
- ## 9.1.0-canary.48
232
-
233
- ## 9.1.0-canary.47
234
-
235
- ## 9.1.0-canary.46
236
-
237
- ## 9.1.0-canary.45
238
-
239
- ## 9.1.0-canary.44
240
-
241
- ## 9.1.0-canary.43
242
-
243
- ## 9.1.0-canary.42
244
-
245
- ## 9.1.0-canary.41
246
-
247
- ## 9.1.0-canary.40
248
-
249
- ## 9.1.0-canary.39
250
-
251
- ## 9.1.0-canary.38
252
-
253
- ## 9.1.0-canary.37
254
-
255
- ## 9.1.0-canary.36
256
-
257
- ## 9.1.0-canary.35
258
-
259
- ## 9.1.0-canary.34
260
-
261
- ## 9.1.0-canary.33
262
-
263
- ## 9.1.0-canary.32
264
-
265
- ## 9.1.0-canary.31
266
-
267
- ## 9.1.0-canary.30
268
-
269
- ## 9.1.0-canary.29
270
-
271
- ## 9.1.0-canary.28
272
-
273
- ## 9.1.0-canary.27
274
-
275
- ## 9.1.0-canary.26
276
-
277
- ## 9.1.0-canary.25
278
-
279
- ## 9.1.0-canary.24
280
-
281
- ## 9.1.0-canary.23
282
-
283
- ## 9.1.0-canary.22
284
-
285
- ## 9.1.0-canary.21
286
-
287
- ## 9.1.0-canary.20
288
-
289
- ## 9.1.0-canary.19
290
-
291
- ## 9.1.0-canary.18
292
-
293
- ## 9.1.0-canary.17
294
-
295
- ## 9.1.0-canary.16
296
-
297
- ## 9.1.0-canary.15
298
-
299
- ## 9.0.4-canary.14
300
-
301
- ### Patch Changes
302
-
303
- - [#2495](https://github.com/graphcommerce-org/graphcommerce/pull/2495) [`cd386e3`](https://github.com/graphcommerce-org/graphcommerce/commit/cd386e3bce61256bab46cca88aacc7c4aa4ac415) - Remove issuers field from MultiSafePay in preparation for iDeal 2. Please not that this change requires an upgrade to the Magento module as well. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
304
-
305
- - [#2495](https://github.com/graphcommerce-org/graphcommerce/pull/2495) [`0fc9805`](https://github.com/graphcommerce-org/graphcommerce/commit/0fc98051b87cd7fc0363609b50211d2d7382a84d) - Remove issuer list from ideal payment method ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
306
-
307
- ## 9.0.4-canary.13
308
-
309
- ## 9.0.4-canary.12
310
-
311
- ## 9.0.4-canary.11
312
-
313
- ## 9.0.4-canary.10
314
-
315
- ## 9.0.4-canary.9
316
-
317
- ## 9.0.4-canary.8
318
-
319
- ## 9.0.4-canary.7
320
-
321
- ## 9.0.4-canary.6
322
-
323
- ## 9.0.4-canary.5
324
-
325
- ## 9.0.4-canary.4
326
-
327
- ## 9.0.4-canary.3
328
-
329
- ## 9.0.4-canary.2
330
-
331
- ## 9.0.4-canary.1
332
-
333
- ## 9.0.4-canary.0
334
-
335
99
  ## 9.0.0
336
100
 
337
101
  ### Major Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-payment-multisafepay",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "10.0.0",
5
+ "version": "10.0.1-canary.1",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,22 +12,22 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/ecommerce-ui": "^10.0.0",
16
- "@graphcommerce/eslint-config-pwa": "^10.0.0",
17
- "@graphcommerce/graphql": "^10.0.0",
18
- "@graphcommerce/graphql-mesh": "^10.0.0",
19
- "@graphcommerce/image": "^10.0.0",
20
- "@graphcommerce/magento-cart": "^10.0.0",
21
- "@graphcommerce/magento-cart-checkout": "^10.0.0",
22
- "@graphcommerce/magento-cart-payment-method": "^10.0.0",
23
- "@graphcommerce/magento-cart-shipping-address": "^10.0.0",
24
- "@graphcommerce/magento-product": "^10.0.0",
25
- "@graphcommerce/magento-product-configurable": "^10.0.0",
26
- "@graphcommerce/magento-store": "^10.0.0",
27
- "@graphcommerce/next-ui": "^10.0.0",
28
- "@graphcommerce/prettier-config-pwa": "^10.0.0",
29
- "@graphcommerce/react-hook-form": "^10.0.0",
30
- "@graphcommerce/typescript-config-pwa": "^10.0.0",
15
+ "@graphcommerce/ecommerce-ui": "^10.0.1-canary.1",
16
+ "@graphcommerce/eslint-config-pwa": "^10.0.1-canary.1",
17
+ "@graphcommerce/graphql": "^10.0.1-canary.1",
18
+ "@graphcommerce/graphql-mesh": "^10.0.1-canary.1",
19
+ "@graphcommerce/image": "^10.0.1-canary.1",
20
+ "@graphcommerce/magento-cart": "^10.0.1-canary.1",
21
+ "@graphcommerce/magento-cart-checkout": "^10.0.1-canary.1",
22
+ "@graphcommerce/magento-cart-payment-method": "^10.0.1-canary.1",
23
+ "@graphcommerce/magento-cart-shipping-address": "^10.0.1-canary.1",
24
+ "@graphcommerce/magento-product": "^10.0.1-canary.1",
25
+ "@graphcommerce/magento-product-configurable": "^10.0.1-canary.1",
26
+ "@graphcommerce/magento-store": "^10.0.1-canary.1",
27
+ "@graphcommerce/next-ui": "^10.0.1-canary.1",
28
+ "@graphcommerce/prettier-config-pwa": "^10.0.1-canary.1",
29
+ "@graphcommerce/react-hook-form": "^10.0.1-canary.1",
30
+ "@graphcommerce/typescript-config-pwa": "^10.0.1-canary.1",
31
31
  "@lingui/core": "^5",
32
32
  "@lingui/macro": "^5",
33
33
  "@lingui/react": "^5",