@graphcommerce/magento-payment-klarna 10.0.0-canary.72
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 +1004 -0
- package/README.md +13 -0
- package/components/KlarnaPaymentActionCard/KlarnaPaymentActionCard.tsx +26 -0
- package/components/KlarnaPaymentOptions/KlarnaPaymentOptions.graphql +13 -0
- package/components/KlarnaPaymentOptions/KlarnaPaymentOptions.tsx +42 -0
- package/components/KlarnaPaymentPlaceOrder/KlarnaPaymentPlaceOrder.graphql +12 -0
- package/components/KlarnaPaymentPlaceOrder/KlarnaPaymentPlaceOrder.tsx +102 -0
- package/hooks/useKlarnaCartLock.ts +16 -0
- package/icons/klarna.png +0 -0
- package/index.ts +1 -0
- package/klarna.d.ts +24 -0
- package/methods.ts +20 -0
- package/next-env.d.ts +4 -0
- package/package.json +40 -0
- package/plugins/AddKlarnaMethods.tsx +13 -0
- package/tsconfig.json +5 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1004 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## 10.0.0-canary.72
|
|
4
|
+
|
|
5
|
+
## 10.0.0-canary.71
|
|
6
|
+
|
|
7
|
+
## 10.0.0-canary.70
|
|
8
|
+
|
|
9
|
+
## 10.0.0-canary.69
|
|
10
|
+
|
|
11
|
+
## 10.0.0-canary.68
|
|
12
|
+
|
|
13
|
+
## 10.0.0-canary.67
|
|
14
|
+
|
|
15
|
+
## 10.0.0-canary.66
|
|
16
|
+
|
|
17
|
+
## 10.0.0-canary.65
|
|
18
|
+
|
|
19
|
+
## 10.0.0-canary.64
|
|
20
|
+
|
|
21
|
+
## 10.0.0-canary.63
|
|
22
|
+
|
|
23
|
+
## 10.0.0-canary.62
|
|
24
|
+
|
|
25
|
+
## 10.0.0-canary.61
|
|
26
|
+
|
|
27
|
+
## 10.0.0-canary.60
|
|
28
|
+
|
|
29
|
+
## 10.0.0-canary.59
|
|
30
|
+
|
|
31
|
+
## 10.0.0-canary.58
|
|
32
|
+
|
|
33
|
+
## 10.0.0-canary.57
|
|
34
|
+
|
|
35
|
+
## 10.0.0-canary.56
|
|
36
|
+
|
|
37
|
+
### Major Changes
|
|
38
|
+
|
|
39
|
+
- [#2546](https://github.com/graphcommerce-org/graphcommerce/pull/2546) [`ed9332a`](https://github.com/graphcommerce-org/graphcommerce/commit/ed9332a7f78966d932041d9a7725641edc92b28d) - ## GraphCommerce 10 - Turbopack Support
|
|
40
|
+
|
|
41
|
+
This major release brings full Turbopack compatibility, dramatically improving development speed.
|
|
42
|
+
|
|
43
|
+
### 🚀 Turbopack-Compatible Interceptor System
|
|
44
|
+
|
|
45
|
+
The entire plugin/interceptor system has been rewritten to work with Turbopack:
|
|
46
|
+
|
|
47
|
+
- **No more Webpack plugins** - Removed `InterceptorPlugin` webpack plugin entirely
|
|
48
|
+
- **File-based interception** - Original files are moved to `.original.tsx` and replaced with interceptor content
|
|
49
|
+
- **Direct imports** - Interceptors import from `.original` files instead of embedding source
|
|
50
|
+
- **New CLI commands**:
|
|
51
|
+
- `graphcommerce codegen-interceptors` - Generate interceptor files
|
|
52
|
+
- `graphcommerce cleanup-interceptors` - Reset interceptor system, restore original files
|
|
53
|
+
- **Stable file hashing** - Deterministic interceptor generation for better caching
|
|
54
|
+
|
|
55
|
+
### ⚙️ Treeshakable Configuration System
|
|
56
|
+
|
|
57
|
+
Replaced Webpack `DefinePlugin`-based `import.meta.graphCommerce` with a new generated configuration system:
|
|
58
|
+
|
|
59
|
+
- **New `codegen-config-values` command** - Generates TypeScript files with precise typing
|
|
60
|
+
- **Schema-driven** - Dynamically introspects Zod schemas to determine all available properties
|
|
61
|
+
- **Fully treeshakable** - Unused config values are eliminated from the bundle
|
|
62
|
+
- **Type-safe** - Uses `Get<GraphCommerceConfig, 'path'>` for nested property access
|
|
63
|
+
- **Separate files for nested objects** - Optimal treeshaking for complex configurations
|
|
64
|
+
|
|
65
|
+
### 🔧 withGraphCommerce Changes
|
|
66
|
+
|
|
67
|
+
- **Removed** `InterceptorPlugin` - No longer needed with file-based interception
|
|
68
|
+
- **Removed** `DefinePlugin` for `import.meta.graphCommerce` - Replaced with generated config
|
|
69
|
+
- **Removed** `@mui/*` alias rewrites - No longer required
|
|
70
|
+
- **Added** Turbopack loader rules for `.yaml`, `.yml`, and `.po` files
|
|
71
|
+
- **Added** `serverExternalPackages` for all `@whatwg-node/*` packages
|
|
72
|
+
- **Added** `optimizePackageImports` for better bundle optimization
|
|
73
|
+
- **Added** `images.qualities: [52, 75]` for Next.js image optimization
|
|
74
|
+
|
|
75
|
+
### 📦 Lingui Configuration
|
|
76
|
+
|
|
77
|
+
- **Renamed** `lingui.config.js` → `lingui.config.ts` with TypeScript support
|
|
78
|
+
- **Updated** `@graphcommerce/lingui-next/config` to TypeScript with proper exports
|
|
79
|
+
- **Simplified** formatter options
|
|
80
|
+
|
|
81
|
+
### ⚛️ React 19 & Next.js 16 Compatibility
|
|
82
|
+
|
|
83
|
+
- Updated `RefObject<T>` types for React 19 (now includes `null` by default)
|
|
84
|
+
- Replaced deprecated `React.VFC` with `React.FC`
|
|
85
|
+
- Fixed `useRef` calls to require explicit initial values
|
|
86
|
+
- Updated `MutableRefObject` usage in `framer-scroller`
|
|
87
|
+
|
|
88
|
+
### 📋 ESLint 9 Flat Config
|
|
89
|
+
|
|
90
|
+
- Migrated from legacy `.eslintrc` to new flat config format (`eslint.config.mjs`)
|
|
91
|
+
- Updated `@typescript-eslint/*` packages to v8
|
|
92
|
+
- Fixed AST selector for `SxProps` rule (`typeParameters` → `typeArguments`)
|
|
93
|
+
|
|
94
|
+
### 🔄 Apollo Client
|
|
95
|
+
|
|
96
|
+
- Fixed deprecated `name` option → `clientAwareness: { name: 'ssr' }`
|
|
97
|
+
- Updated error handling types to accept `ApolloError | null | undefined`
|
|
98
|
+
|
|
99
|
+
### ⚠️ Breaking Changes
|
|
100
|
+
|
|
101
|
+
- **Node.js 24.x not supported** - Restricted to `>=20 <24.0.0` due to [nodejs/undici#4290](https://github.com/nodejs/undici/issues/4290)
|
|
102
|
+
- **Interceptor files changed** - Original components now at `.original.tsx`
|
|
103
|
+
- **Config access changed** - Use generated config values instead of `import.meta.graphCommerce`
|
|
104
|
+
- **ESLint config format** - Must use flat config (`eslint.config.mjs`)
|
|
105
|
+
- **Lingui config** - Rename `lingui.config.js` to `lingui.config.ts`
|
|
106
|
+
|
|
107
|
+
### 🗑️ Removed
|
|
108
|
+
|
|
109
|
+
- `InterceptorPlugin` webpack plugin
|
|
110
|
+
- `configToImportMeta` utility
|
|
111
|
+
- Webpack `DefinePlugin` usage for config
|
|
112
|
+
- `@mui/*` modern alias rewrites
|
|
113
|
+
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
114
|
+
|
|
115
|
+
## 9.1.0-canary.55
|
|
116
|
+
|
|
117
|
+
## 9.1.0-canary.54
|
|
118
|
+
|
|
119
|
+
## 9.1.0-canary.53
|
|
120
|
+
|
|
121
|
+
## 9.1.0-canary.52
|
|
122
|
+
|
|
123
|
+
## 9.1.0-canary.51
|
|
124
|
+
|
|
125
|
+
## 9.1.0-canary.50
|
|
126
|
+
|
|
127
|
+
## 9.1.0-canary.49
|
|
128
|
+
|
|
129
|
+
## 9.1.0-canary.48
|
|
130
|
+
|
|
131
|
+
## 9.1.0-canary.47
|
|
132
|
+
|
|
133
|
+
## 9.1.0-canary.46
|
|
134
|
+
|
|
135
|
+
## 9.1.0-canary.45
|
|
136
|
+
|
|
137
|
+
## 9.1.0-canary.44
|
|
138
|
+
|
|
139
|
+
## 9.1.0-canary.43
|
|
140
|
+
|
|
141
|
+
## 9.1.0-canary.42
|
|
142
|
+
|
|
143
|
+
## 9.1.0-canary.41
|
|
144
|
+
|
|
145
|
+
## 9.1.0-canary.40
|
|
146
|
+
|
|
147
|
+
## 9.1.0-canary.39
|
|
148
|
+
|
|
149
|
+
## 9.1.0-canary.38
|
|
150
|
+
|
|
151
|
+
## 9.1.0-canary.37
|
|
152
|
+
|
|
153
|
+
## 9.1.0-canary.36
|
|
154
|
+
|
|
155
|
+
## 9.1.0-canary.35
|
|
156
|
+
|
|
157
|
+
## 9.1.0-canary.34
|
|
158
|
+
|
|
159
|
+
## 9.1.0-canary.33
|
|
160
|
+
|
|
161
|
+
## 9.1.0-canary.32
|
|
162
|
+
|
|
163
|
+
## 9.1.0-canary.31
|
|
164
|
+
|
|
165
|
+
## 9.1.0-canary.30
|
|
166
|
+
|
|
167
|
+
## 9.1.0-canary.29
|
|
168
|
+
|
|
169
|
+
## 9.1.0-canary.28
|
|
170
|
+
|
|
171
|
+
## 9.1.0-canary.27
|
|
172
|
+
|
|
173
|
+
## 9.1.0-canary.26
|
|
174
|
+
|
|
175
|
+
## 9.1.0-canary.25
|
|
176
|
+
|
|
177
|
+
## 9.1.0-canary.24
|
|
178
|
+
|
|
179
|
+
## 9.1.0-canary.23
|
|
180
|
+
|
|
181
|
+
## 9.1.0-canary.22
|
|
182
|
+
|
|
183
|
+
## 9.1.0-canary.21
|
|
184
|
+
|
|
185
|
+
## 9.1.0-canary.20
|
|
186
|
+
|
|
187
|
+
## 9.1.0-canary.19
|
|
188
|
+
|
|
189
|
+
## 9.1.0-canary.18
|
|
190
|
+
|
|
191
|
+
## 9.1.0-canary.17
|
|
192
|
+
|
|
193
|
+
## 9.1.0-canary.16
|
|
194
|
+
|
|
195
|
+
## 9.1.0-canary.15
|
|
196
|
+
|
|
197
|
+
## 9.0.4-canary.14
|
|
198
|
+
|
|
199
|
+
## 9.0.4-canary.13
|
|
200
|
+
|
|
201
|
+
## 9.0.4-canary.12
|
|
202
|
+
|
|
203
|
+
## 9.0.4-canary.11
|
|
204
|
+
|
|
205
|
+
## 9.0.4-canary.10
|
|
206
|
+
|
|
207
|
+
## 9.0.4-canary.9
|
|
208
|
+
|
|
209
|
+
## 9.0.4-canary.8
|
|
210
|
+
|
|
211
|
+
## 9.0.4-canary.7
|
|
212
|
+
|
|
213
|
+
## 9.0.4-canary.6
|
|
214
|
+
|
|
215
|
+
## 9.0.4-canary.5
|
|
216
|
+
|
|
217
|
+
## 9.0.4-canary.4
|
|
218
|
+
|
|
219
|
+
## 9.0.4-canary.3
|
|
220
|
+
|
|
221
|
+
## 9.0.4-canary.2
|
|
222
|
+
|
|
223
|
+
## 9.0.4-canary.1
|
|
224
|
+
|
|
225
|
+
## 9.0.4-canary.0
|
|
226
|
+
|
|
227
|
+
## 9.0.0
|
|
228
|
+
|
|
229
|
+
### Patch Changes
|
|
230
|
+
|
|
231
|
+
- [#2331](https://github.com/graphcommerce-org/graphcommerce/pull/2331) [`702bfc9`](https://github.com/graphcommerce-org/graphcommerce/commit/702bfc93566c9745546988e57988431d5d4d8cb0) - Moved plugins to new format ([@paales](https://github.com/paales))
|
|
232
|
+
|
|
233
|
+
## 6.0.0
|
|
234
|
+
|
|
235
|
+
### Patch Changes
|
|
236
|
+
|
|
237
|
+
- [#1841](https://github.com/graphcommerce-org/graphcommerce/pull/1841) [`1ff022c4b`](https://github.com/graphcommerce-org/graphcommerce/commit/1ff022c4bd8ad1d9fa8c1760076f003af06ce421) - PaymentMethodUpdated is now @injectable to allow for easier customisation. ([@paales](https://github.com/paales))
|
|
238
|
+
|
|
239
|
+
## 5.1.0
|
|
240
|
+
|
|
241
|
+
### Patch Changes
|
|
242
|
+
|
|
243
|
+
- [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
|
|
244
|
+
- Updated the @mui/material package
|
|
245
|
+
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
246
|
+
- Upgraded dependencies including type-fest and graphql-mesh
|
|
247
|
+
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
248
|
+
|
|
249
|
+
## 5.0.0
|
|
250
|
+
|
|
251
|
+
### Major Changes
|
|
252
|
+
|
|
253
|
+
- [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
|
|
254
|
+
|
|
255
|
+
### Patch Changes
|
|
256
|
+
|
|
257
|
+
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`b2d73c726`](https://github.com/graphcommerce-org/graphcommerce/commit/b2d73c726fa123435fa6c54b4e0fd0db2df7c4ab) - Move to <Prev/> instead of <Component/> to call the plugin component ([@paales](https://github.com/paales))
|
|
258
|
+
|
|
259
|
+
- [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`be10e8cd1`](https://github.com/graphcommerce-org/graphcommerce/commit/be10e8cd1dce172a914ee9e5f65fdca4d0929fc8) - Migrated payment methods to use the new `onSuccess` method from `PaymentMethodContextProvider` instead of redirecting manually, makes sure the onSuccess method can be used by plugins. ([@paales](https://github.com/paales))
|
|
260
|
+
|
|
261
|
+
- [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`52882a63e`](https://github.com/graphcommerce-org/graphcommerce/commit/52882a63e96c0d3ba9641c3714d288fa4f420c82) - Do not forward the Prev prop in plugins ([@paales](https://github.com/paales))
|
|
262
|
+
|
|
263
|
+
## 4.13.0
|
|
264
|
+
|
|
265
|
+
### Patch Changes
|
|
266
|
+
|
|
267
|
+
- [#1702](https://github.com/graphcommerce-org/graphcommerce/pull/1702) [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
268
|
+
|
|
269
|
+
## 3.0.65
|
|
270
|
+
|
|
271
|
+
### Patch Changes
|
|
272
|
+
|
|
273
|
+
- Updated dependencies [[`a26a2d05e`](https://github.com/graphcommerce-org/graphcommerce/commit/a26a2d05eecabeeef70e4d69105343197ae092b7)]:
|
|
274
|
+
- @graphcommerce/magento-cart@4.9.5
|
|
275
|
+
|
|
276
|
+
## 3.0.64
|
|
277
|
+
|
|
278
|
+
### Patch Changes
|
|
279
|
+
|
|
280
|
+
- Updated dependencies [[`8393cb266`](https://github.com/graphcommerce-org/graphcommerce/commit/8393cb2662860be0c2aa5df432447bb73c427d8e), [`f544401c7`](https://github.com/graphcommerce-org/graphcommerce/commit/f544401c7b653fda39c7c260ad0dcfb3bf543b65), [`f105d4223`](https://github.com/graphcommerce-org/graphcommerce/commit/f105d4223aa68df30970149e51ae72897e489bf9)]:
|
|
281
|
+
- @graphcommerce/next-ui@4.29.3
|
|
282
|
+
- @graphcommerce/magento-cart@4.9.4
|
|
283
|
+
- @graphcommerce/magento-store@4.3.6
|
|
284
|
+
|
|
285
|
+
## 3.0.63
|
|
286
|
+
|
|
287
|
+
### Patch Changes
|
|
288
|
+
|
|
289
|
+
- Updated dependencies [[`1953c7e27`](https://github.com/graphcommerce-org/graphcommerce/commit/1953c7e27eb606a825fce1ad361393b3c781c6da)]:
|
|
290
|
+
- @graphcommerce/next-ui@4.29.2
|
|
291
|
+
- @graphcommerce/magento-cart@4.9.3
|
|
292
|
+
- @graphcommerce/magento-store@4.3.5
|
|
293
|
+
|
|
294
|
+
## 3.0.62
|
|
295
|
+
|
|
296
|
+
### Patch Changes
|
|
297
|
+
|
|
298
|
+
- Updated dependencies [[`ae28fb14c`](https://github.com/graphcommerce-org/graphcommerce/commit/ae28fb14cec298c52970260a4fc2c2551b5f175e), [`98d6a9cce`](https://github.com/graphcommerce-org/graphcommerce/commit/98d6a9cce1bb9514088be0af2736721b3edda467)]:
|
|
299
|
+
- @graphcommerce/magento-cart@4.9.2
|
|
300
|
+
- @graphcommerce/next-ui@4.29.1
|
|
301
|
+
- @graphcommerce/magento-store@4.3.4
|
|
302
|
+
|
|
303
|
+
## 3.0.61
|
|
304
|
+
|
|
305
|
+
### Patch Changes
|
|
306
|
+
|
|
307
|
+
- Updated dependencies [[`e76df6dc3`](https://github.com/graphcommerce-org/graphcommerce/commit/e76df6dc37c11c793a5d008ba36932d17dc23855), [`0bd9ea582`](https://github.com/graphcommerce-org/graphcommerce/commit/0bd9ea58230dde79c5fe2cdb07e9860151460270)]:
|
|
308
|
+
- @graphcommerce/next-ui@4.29.0
|
|
309
|
+
- @graphcommerce/magento-cart@4.9.1
|
|
310
|
+
- @graphcommerce/magento-store@4.3.3
|
|
311
|
+
|
|
312
|
+
## 3.0.60
|
|
313
|
+
|
|
314
|
+
### Patch Changes
|
|
315
|
+
|
|
316
|
+
- Updated dependencies [[`9e630670f`](https://github.com/graphcommerce-org/graphcommerce/commit/9e630670ff6c952ab7b938d890b5509804985cf3), [`cf3518499`](https://github.com/graphcommerce-org/graphcommerce/commit/cf351849999ad6fe73ce2bb258098a7dd301d517), [`2e9fa5984`](https://github.com/graphcommerce-org/graphcommerce/commit/2e9fa5984a07ff14fc1b3a4f62189a26e8e3ecdd), [`adf13069a`](https://github.com/graphcommerce-org/graphcommerce/commit/adf13069af6460c960276b402237371c12fc6dec), [`1b1504c9b`](https://github.com/graphcommerce-org/graphcommerce/commit/1b1504c9b0e51f2787bce91e1ff1940f540411d6), [`8a34f8081`](https://github.com/graphcommerce-org/graphcommerce/commit/8a34f808186274a6fe1d4f309472f1a9c6d00efd), [`3dde492ad`](https://github.com/graphcommerce-org/graphcommerce/commit/3dde492ad3a49d96481eeb7453fb305d0017b1a5)]:
|
|
317
|
+
- @graphcommerce/next-ui@4.28.1
|
|
318
|
+
- @graphcommerce/graphql@3.5.0
|
|
319
|
+
- @graphcommerce/magento-cart@4.9.0
|
|
320
|
+
- @graphcommerce/magento-store@4.3.2
|
|
321
|
+
- @graphcommerce/image@3.1.10
|
|
322
|
+
|
|
323
|
+
## 3.0.59
|
|
324
|
+
|
|
325
|
+
### Patch Changes
|
|
326
|
+
|
|
327
|
+
- Updated dependencies []:
|
|
328
|
+
- @graphcommerce/magento-cart@4.8.7
|
|
329
|
+
|
|
330
|
+
## 3.0.58
|
|
331
|
+
|
|
332
|
+
### Patch Changes
|
|
333
|
+
|
|
334
|
+
- Updated dependencies [[`93c8f3a3f`](https://github.com/graphcommerce-org/graphcommerce/commit/93c8f3a3f2fd2d16e5a5132652bf489858583f63), [`0c21c5c23`](https://github.com/graphcommerce-org/graphcommerce/commit/0c21c5c233ebab15f6629c234e3de1cc8c0452e1), [`de8925aa9`](https://github.com/graphcommerce-org/graphcommerce/commit/de8925aa910b191c62041530c68c697a58a1e52d), [`f5eae0afd`](https://github.com/graphcommerce-org/graphcommerce/commit/f5eae0afdbd474b1f81c450425ffadf2d025187a)]:
|
|
335
|
+
- @graphcommerce/magento-cart@4.8.6
|
|
336
|
+
- @graphcommerce/next-ui@4.28.0
|
|
337
|
+
- @graphcommerce/magento-store@4.3.1
|
|
338
|
+
|
|
339
|
+
## 3.0.57
|
|
340
|
+
|
|
341
|
+
### Patch Changes
|
|
342
|
+
|
|
343
|
+
- Updated dependencies []:
|
|
344
|
+
- @graphcommerce/magento-cart@4.8.5
|
|
345
|
+
|
|
346
|
+
## 3.0.56
|
|
347
|
+
|
|
348
|
+
### Patch Changes
|
|
349
|
+
|
|
350
|
+
- Updated dependencies [[`ad63ebf4e`](https://github.com/graphcommerce-org/graphcommerce/commit/ad63ebf4e33bfb0e5c9e5e68ab69b14775f3f8a8)]:
|
|
351
|
+
- @graphcommerce/magento-store@4.3.0
|
|
352
|
+
- @graphcommerce/next-ui@4.27.0
|
|
353
|
+
- @graphcommerce/magento-cart@4.8.4
|
|
354
|
+
|
|
355
|
+
## 3.0.55
|
|
356
|
+
|
|
357
|
+
### Patch Changes
|
|
358
|
+
|
|
359
|
+
- Updated dependencies [[`42e7fac75`](https://github.com/graphcommerce-org/graphcommerce/commit/42e7fac75712f9bda7a6b919ede14b3c75d07771)]:
|
|
360
|
+
- @graphcommerce/next-ui@4.26.0
|
|
361
|
+
- @graphcommerce/magento-cart@4.8.3
|
|
362
|
+
- @graphcommerce/magento-store@4.2.35
|
|
363
|
+
|
|
364
|
+
## 3.0.54
|
|
365
|
+
|
|
366
|
+
### Patch Changes
|
|
367
|
+
|
|
368
|
+
- Updated dependencies [[`dc6237644`](https://github.com/graphcommerce-org/graphcommerce/commit/dc6237644ac349debb728059e4c937cec25bf4fd), [`48273bccd`](https://github.com/graphcommerce-org/graphcommerce/commit/48273bccd2e471ce4bc024a600e693da791f1cde)]:
|
|
369
|
+
- @graphcommerce/next-ui@4.25.0
|
|
370
|
+
- @graphcommerce/magento-cart@4.8.2
|
|
371
|
+
- @graphcommerce/magento-store@4.2.34
|
|
372
|
+
|
|
373
|
+
## 3.0.53
|
|
374
|
+
|
|
375
|
+
### Patch Changes
|
|
376
|
+
|
|
377
|
+
- Updated dependencies [[`104103bc2`](https://github.com/graphcommerce-org/graphcommerce/commit/104103bc2a0fbaa510af2e26b6b00ddc63e8495b)]:
|
|
378
|
+
- @graphcommerce/next-ui@4.24.0
|
|
379
|
+
- @graphcommerce/magento-cart@4.8.1
|
|
380
|
+
- @graphcommerce/magento-store@4.2.33
|
|
381
|
+
|
|
382
|
+
## 3.0.52
|
|
383
|
+
|
|
384
|
+
### Patch Changes
|
|
385
|
+
|
|
386
|
+
- Updated dependencies [[`8d5207288`](https://github.com/graphcommerce-org/graphcommerce/commit/8d52072887f124831ed85d28ec79998f0ce55f1c)]:
|
|
387
|
+
- @graphcommerce/magento-cart@4.8.0
|
|
388
|
+
|
|
389
|
+
## 3.0.51
|
|
390
|
+
|
|
391
|
+
### Patch Changes
|
|
392
|
+
|
|
393
|
+
- Updated dependencies []:
|
|
394
|
+
- @graphcommerce/magento-cart@4.7.5
|
|
395
|
+
|
|
396
|
+
## 3.0.50
|
|
397
|
+
|
|
398
|
+
### Patch Changes
|
|
399
|
+
|
|
400
|
+
- Updated dependencies [[`9b84a68a1`](https://github.com/graphcommerce-org/graphcommerce/commit/9b84a68a1e7311a79eb687c7dcee905d3000facf)]:
|
|
401
|
+
- @graphcommerce/next-ui@4.23.1
|
|
402
|
+
- @graphcommerce/magento-cart@4.7.4
|
|
403
|
+
- @graphcommerce/magento-store@4.2.32
|
|
404
|
+
|
|
405
|
+
## 3.0.49
|
|
406
|
+
|
|
407
|
+
### Patch Changes
|
|
408
|
+
|
|
409
|
+
- Updated dependencies [[`396b5de5d`](https://github.com/graphcommerce-org/graphcommerce/commit/396b5de5d50c7b8f59bf636807e7a4b50f14e0b2)]:
|
|
410
|
+
- @graphcommerce/graphql@3.4.8
|
|
411
|
+
- @graphcommerce/magento-cart@4.7.3
|
|
412
|
+
- @graphcommerce/magento-store@4.2.31
|
|
413
|
+
|
|
414
|
+
## 3.0.48
|
|
415
|
+
|
|
416
|
+
### Patch Changes
|
|
417
|
+
|
|
418
|
+
- Updated dependencies [[`755d2cf83`](https://github.com/graphcommerce-org/graphcommerce/commit/755d2cf83343a5ad3d61063eff595d821de360aa), [`dc7f2dda4`](https://github.com/graphcommerce-org/graphcommerce/commit/dc7f2dda40ff8572fc11161de6eb62ca13e720dd)]:
|
|
419
|
+
- @graphcommerce/next-ui@4.23.0
|
|
420
|
+
- @graphcommerce/magento-cart@4.7.2
|
|
421
|
+
- @graphcommerce/magento-store@4.2.30
|
|
422
|
+
|
|
423
|
+
## 3.0.47
|
|
424
|
+
|
|
425
|
+
### Patch Changes
|
|
426
|
+
|
|
427
|
+
- Updated dependencies []:
|
|
428
|
+
- @graphcommerce/magento-store@4.2.29
|
|
429
|
+
- @graphcommerce/magento-cart@4.7.1
|
|
430
|
+
|
|
431
|
+
## 3.0.46
|
|
432
|
+
|
|
433
|
+
### Patch Changes
|
|
434
|
+
|
|
435
|
+
- Updated dependencies [[`04708dacc`](https://github.com/graphcommerce-org/graphcommerce/commit/04708daccc213c6ea927bc67fa3bd0d5b1fad619), [`bb94e7045`](https://github.com/graphcommerce-org/graphcommerce/commit/bb94e7045460cb671c45d612a0833731d7c20c30), [`b0dc4e2e1`](https://github.com/graphcommerce-org/graphcommerce/commit/b0dc4e2e1982d502d38dd50a0f493396360a7a15), [`4a5286dfe`](https://github.com/graphcommerce-org/graphcommerce/commit/4a5286dfeaa1719e594a0078f274fbab53969c4e), [`d46d5ed0c`](https://github.com/graphcommerce-org/graphcommerce/commit/d46d5ed0cc5794391b7527fc17bbb68ec2212e33), [`e573278e4`](https://github.com/graphcommerce-org/graphcommerce/commit/e573278e43506a6b17a2981e61d0e9fad41eb2eb), [`5f781a217`](https://github.com/graphcommerce-org/graphcommerce/commit/5f781a217ce63ed56bc1a9983487b04400a8a315), [`ac6eedbb1`](https://github.com/graphcommerce-org/graphcommerce/commit/ac6eedbb14d3abd8cf1231a98dc2a8b7f4659f1f)]:
|
|
436
|
+
- @graphcommerce/next-ui@4.22.0
|
|
437
|
+
- @graphcommerce/magento-cart@4.7.0
|
|
438
|
+
- @graphcommerce/magento-store@4.2.28
|
|
439
|
+
- @graphcommerce/graphql@3.4.7
|
|
440
|
+
- @graphcommerce/image@3.1.9
|
|
441
|
+
|
|
442
|
+
## 3.0.45
|
|
443
|
+
|
|
444
|
+
### Patch Changes
|
|
445
|
+
|
|
446
|
+
- Updated dependencies [[`1f7ee6f6c`](https://github.com/graphcommerce-org/graphcommerce/commit/1f7ee6f6cfb28544439ed36e10929ac530d1b2b7), [`707dbc73d`](https://github.com/graphcommerce-org/graphcommerce/commit/707dbc73d181204d88fdbbd2e09340e25b2b5f7b)]:
|
|
447
|
+
- @graphcommerce/next-ui@4.21.0
|
|
448
|
+
- @graphcommerce/graphql@3.4.6
|
|
449
|
+
- @graphcommerce/magento-cart@4.6.9
|
|
450
|
+
- @graphcommerce/magento-store@4.2.27
|
|
451
|
+
- @graphcommerce/image@3.1.8
|
|
452
|
+
|
|
453
|
+
## 3.0.44
|
|
454
|
+
|
|
455
|
+
### Patch Changes
|
|
456
|
+
|
|
457
|
+
- Updated dependencies [[`43822fd61`](https://github.com/graphcommerce-org/graphcommerce/commit/43822fd61c949215b8ddce9fb37d09f29b638426), [`3a619b70d`](https://github.com/graphcommerce-org/graphcommerce/commit/3a619b70d082804b8de46a8e8232f9431479a8b7)]:
|
|
458
|
+
- @graphcommerce/next-ui@4.20.0
|
|
459
|
+
- @graphcommerce/magento-cart@4.6.8
|
|
460
|
+
- @graphcommerce/magento-store@4.2.26
|
|
461
|
+
|
|
462
|
+
## 3.0.43
|
|
463
|
+
|
|
464
|
+
### Patch Changes
|
|
465
|
+
|
|
466
|
+
- Updated dependencies [[`b6d3a3c13`](https://github.com/graphcommerce-org/graphcommerce/commit/b6d3a3c13ea63ef0f691f497507f07c0e094de5b)]:
|
|
467
|
+
- @graphcommerce/next-ui@4.19.0
|
|
468
|
+
- @graphcommerce/magento-cart@4.6.7
|
|
469
|
+
- @graphcommerce/magento-store@4.2.25
|
|
470
|
+
|
|
471
|
+
## 3.0.42
|
|
472
|
+
|
|
473
|
+
### Patch Changes
|
|
474
|
+
|
|
475
|
+
- Updated dependencies [[`6ce2cbaf2`](https://github.com/graphcommerce-org/graphcommerce/commit/6ce2cbaf2cf27e21b753f7cb71e7e74826294de6), [`6ce2cbaf2`](https://github.com/graphcommerce-org/graphcommerce/commit/6ce2cbaf2cf27e21b753f7cb71e7e74826294de6)]:
|
|
476
|
+
- @graphcommerce/graphql@3.4.5
|
|
477
|
+
- @graphcommerce/next-ui@4.18.0
|
|
478
|
+
- @graphcommerce/magento-cart@4.6.6
|
|
479
|
+
- @graphcommerce/magento-store@4.2.24
|
|
480
|
+
|
|
481
|
+
## 3.0.41
|
|
482
|
+
|
|
483
|
+
### Patch Changes
|
|
484
|
+
|
|
485
|
+
- Updated dependencies [[`49370878a`](https://github.com/graphcommerce-org/graphcommerce/commit/49370878a48b90a4579026a7c56c54f97840cebb), [`b6ce5548c`](https://github.com/graphcommerce-org/graphcommerce/commit/b6ce5548c66a8ca62d3aee29467045f7f07f30c8)]:
|
|
486
|
+
- @graphcommerce/graphql@3.4.4
|
|
487
|
+
- @graphcommerce/next-ui@4.17.0
|
|
488
|
+
- @graphcommerce/magento-cart@4.6.5
|
|
489
|
+
- @graphcommerce/magento-store@4.2.23
|
|
490
|
+
|
|
491
|
+
## 3.0.40
|
|
492
|
+
|
|
493
|
+
### Patch Changes
|
|
494
|
+
|
|
495
|
+
- Updated dependencies [[`87a188d6f`](https://github.com/graphcommerce-org/graphcommerce/commit/87a188d6f216b7f7b9ec95afbe74f1146cb07ce4), [`1eb131766`](https://github.com/graphcommerce-org/graphcommerce/commit/1eb131766c32db6fcb0a8e83dba2c3d241658595)]:
|
|
496
|
+
- @graphcommerce/next-ui@4.16.0
|
|
497
|
+
- @graphcommerce/magento-cart@4.6.4
|
|
498
|
+
- @graphcommerce/magento-store@4.2.22
|
|
499
|
+
|
|
500
|
+
## 3.0.39
|
|
501
|
+
|
|
502
|
+
### Patch Changes
|
|
503
|
+
|
|
504
|
+
- Updated dependencies [[`a88f166f0`](https://github.com/graphcommerce-org/graphcommerce/commit/a88f166f0115c58254fe47171da51a5850658a32), [`d92780d5c`](https://github.com/graphcommerce-org/graphcommerce/commit/d92780d5c3bb80b5a1519c087338548303e4cc2f)]:
|
|
505
|
+
- @graphcommerce/next-ui@4.15.1
|
|
506
|
+
- @graphcommerce/magento-cart@4.6.3
|
|
507
|
+
- @graphcommerce/magento-store@4.2.21
|
|
508
|
+
|
|
509
|
+
## 3.0.38
|
|
510
|
+
|
|
511
|
+
### Patch Changes
|
|
512
|
+
|
|
513
|
+
- Updated dependencies [[`e167992df`](https://github.com/graphcommerce-org/graphcommerce/commit/e167992dfdc6964a392af719667f8a188626ab1b), [`9c2504b4e`](https://github.com/graphcommerce-org/graphcommerce/commit/9c2504b4ed75f41d3003c4d3339814010e85e37e)]:
|
|
514
|
+
- @graphcommerce/next-ui@4.15.0
|
|
515
|
+
- @graphcommerce/magento-cart@4.6.2
|
|
516
|
+
- @graphcommerce/magento-store@4.2.20
|
|
517
|
+
|
|
518
|
+
## 3.0.37
|
|
519
|
+
|
|
520
|
+
### Patch Changes
|
|
521
|
+
|
|
522
|
+
- Updated dependencies [[`01f1588c9`](https://github.com/graphcommerce-org/graphcommerce/commit/01f1588c9200bb39dd61146e260bfa2b32060612), [`2ce406727`](https://github.com/graphcommerce-org/graphcommerce/commit/2ce406727c01a3367cea26c331d8455748592ce9)]:
|
|
523
|
+
- @graphcommerce/graphql@3.4.3
|
|
524
|
+
- @graphcommerce/magento-cart@4.6.1
|
|
525
|
+
- @graphcommerce/magento-store@4.2.19
|
|
526
|
+
|
|
527
|
+
## 3.0.36
|
|
528
|
+
|
|
529
|
+
### Patch Changes
|
|
530
|
+
|
|
531
|
+
- Updated dependencies [[`1afc6a547`](https://github.com/graphcommerce-org/graphcommerce/commit/1afc6a5473d6e31f47b5d0188801803b31865290), [`03d01c06c`](https://github.com/graphcommerce-org/graphcommerce/commit/03d01c06c6dc13df8d38ab5b40bd100c567a9e8d), [`afcd8e4bf`](https://github.com/graphcommerce-org/graphcommerce/commit/afcd8e4bfb7010da4d5faeed85b61991ed7975f4), [`02e1988e5`](https://github.com/graphcommerce-org/graphcommerce/commit/02e1988e5f361c6f66ae30d3bbee38ef2ac062df), [`323fdee4b`](https://github.com/graphcommerce-org/graphcommerce/commit/323fdee4b15ae23e0e84dd0588cb2c6446dcfd50), [`d03f0860b`](https://github.com/graphcommerce-org/graphcommerce/commit/d03f0860b882db4f280d9467aef9d66e56c1c030), [`b68d0b44a`](https://github.com/graphcommerce-org/graphcommerce/commit/b68d0b44a87688c80fb0aa4a5c840f262ce48d2f)]:
|
|
532
|
+
- @graphcommerce/graphql@3.4.2
|
|
533
|
+
- @graphcommerce/magento-cart@4.6.0
|
|
534
|
+
- @graphcommerce/next-ui@4.14.0
|
|
535
|
+
- @graphcommerce/magento-store@4.2.18
|
|
536
|
+
|
|
537
|
+
## 3.0.35
|
|
538
|
+
|
|
539
|
+
### Patch Changes
|
|
540
|
+
|
|
541
|
+
- Updated dependencies [[`18054c441`](https://github.com/graphcommerce-org/graphcommerce/commit/18054c441962ba750bed3acc39ab46c8d3a341ce), [`c5c539c44`](https://github.com/graphcommerce-org/graphcommerce/commit/c5c539c44eeac524cd62ce649e132d2e00333794), [`6f69bc54c`](https://github.com/graphcommerce-org/graphcommerce/commit/6f69bc54c6e0224452817c532ae58d9c332b61ea), [`21886d6fa`](https://github.com/graphcommerce-org/graphcommerce/commit/21886d6fa64a48d9e932bfaf8d138c9b13c36e43)]:
|
|
542
|
+
- @graphcommerce/graphql@3.4.1
|
|
543
|
+
- @graphcommerce/next-ui@4.13.1
|
|
544
|
+
- @graphcommerce/magento-cart@4.5.2
|
|
545
|
+
- @graphcommerce/magento-store@4.2.17
|
|
546
|
+
|
|
547
|
+
## 3.0.34
|
|
548
|
+
|
|
549
|
+
### Patch Changes
|
|
550
|
+
|
|
551
|
+
- Updated dependencies [[`8d8fda262`](https://github.com/graphcommerce-org/graphcommerce/commit/8d8fda2623e561cb43441110c67ffa34b692668a), [`d41cff721`](https://github.com/graphcommerce-org/graphcommerce/commit/d41cff7211230561ceeb7786cf75790efd6377cd), [`cefa7b365`](https://github.com/graphcommerce-org/graphcommerce/commit/cefa7b3652b55108d2178927e3c5d98a111cf373)]:
|
|
552
|
+
- @graphcommerce/next-ui@4.13.0
|
|
553
|
+
- @graphcommerce/magento-store@4.2.16
|
|
554
|
+
- @graphcommerce/magento-cart@4.5.1
|
|
555
|
+
|
|
556
|
+
## 3.0.33
|
|
557
|
+
|
|
558
|
+
### Patch Changes
|
|
559
|
+
|
|
560
|
+
- Updated dependencies [[`5f927ebdc`](https://github.com/graphcommerce-org/graphcommerce/commit/5f927ebdc6f0331833e02b96e4f169bfe475ac6b), [`c87a28e7d`](https://github.com/graphcommerce-org/graphcommerce/commit/c87a28e7dad87bffd0bd125ad5fdca65aaa389cc), [`c756f42e5`](https://github.com/graphcommerce-org/graphcommerce/commit/c756f42e503761a497e4a5a7a02d02141df231c3)]:
|
|
561
|
+
- @graphcommerce/graphql@3.4.0
|
|
562
|
+
- @graphcommerce/magento-cart@4.5.0
|
|
563
|
+
- @graphcommerce/next-ui@4.12.0
|
|
564
|
+
- @graphcommerce/magento-store@4.2.15
|
|
565
|
+
|
|
566
|
+
## 3.0.32
|
|
567
|
+
|
|
568
|
+
### Patch Changes
|
|
569
|
+
|
|
570
|
+
- Updated dependencies [[`fe4baa42d`](https://github.com/graphcommerce-org/graphcommerce/commit/fe4baa42db0081ed960d62aef688bd36a7ac974f)]:
|
|
571
|
+
- @graphcommerce/magento-cart@4.4.8
|
|
572
|
+
- @graphcommerce/next-ui@4.11.2
|
|
573
|
+
- @graphcommerce/magento-store@4.2.14
|
|
574
|
+
|
|
575
|
+
## 3.0.31
|
|
576
|
+
|
|
577
|
+
### Patch Changes
|
|
578
|
+
|
|
579
|
+
- Updated dependencies [[`11bca2d2f`](https://github.com/graphcommerce-org/graphcommerce/commit/11bca2d2f7dbb7c5e2827c04eb0db43d4099f2fd)]:
|
|
580
|
+
- @graphcommerce/next-ui@4.11.1
|
|
581
|
+
- @graphcommerce/magento-cart@4.4.7
|
|
582
|
+
- @graphcommerce/magento-store@4.2.13
|
|
583
|
+
|
|
584
|
+
## 3.0.30
|
|
585
|
+
|
|
586
|
+
### Patch Changes
|
|
587
|
+
|
|
588
|
+
- Updated dependencies [[`d140fca34`](https://github.com/graphcommerce-org/graphcommerce/commit/d140fca3463b73e761e23fd1d9216305727f0c1a), [`9ec0338df`](https://github.com/graphcommerce-org/graphcommerce/commit/9ec0338dfe34d37b0f2c24e36ffa6ed13ea1145e), [`735b78672`](https://github.com/graphcommerce-org/graphcommerce/commit/735b786724d5401cbe6e88f2515e121a1a0945b2)]:
|
|
589
|
+
- @graphcommerce/magento-cart@4.4.6
|
|
590
|
+
- @graphcommerce/next-ui@4.11.0
|
|
591
|
+
- @graphcommerce/magento-store@4.2.12
|
|
592
|
+
- @graphcommerce/graphql@3.3.0
|
|
593
|
+
|
|
594
|
+
## 3.0.29
|
|
595
|
+
|
|
596
|
+
### Patch Changes
|
|
597
|
+
|
|
598
|
+
- Updated dependencies []:
|
|
599
|
+
- @graphcommerce/magento-cart@4.4.5
|
|
600
|
+
|
|
601
|
+
## 3.0.28
|
|
602
|
+
|
|
603
|
+
### Patch Changes
|
|
604
|
+
|
|
605
|
+
- Updated dependencies [[`371e6cf52`](https://github.com/graphcommerce-org/graphcommerce/commit/371e6cf52916a3b6c44192bd40cc8271bd608832), [`4143483f3`](https://github.com/graphcommerce-org/graphcommerce/commit/4143483f37c038d2bbf218be2685e27a31a35745)]:
|
|
606
|
+
- @graphcommerce/next-ui@4.10.0
|
|
607
|
+
- @graphcommerce/magento-cart@4.4.4
|
|
608
|
+
- @graphcommerce/magento-store@4.2.11
|
|
609
|
+
|
|
610
|
+
## 3.0.27
|
|
611
|
+
|
|
612
|
+
### Patch Changes
|
|
613
|
+
|
|
614
|
+
- [#1490](https://github.com/graphcommerce-org/graphcommerce/pull/1490) [`d311ef48b`](https://github.com/graphcommerce-org/graphcommerce/commit/d311ef48bb3e97806d992af5516d6b7f183ec9cb) Thanks [@paales](https://github.com/paales)! - upgraded packages
|
|
615
|
+
|
|
616
|
+
- Updated dependencies [[`a9213f1f5`](https://github.com/graphcommerce-org/graphcommerce/commit/a9213f1f5a410d217768386ccb6d9b5ce7bd5782), [`d311ef48b`](https://github.com/graphcommerce-org/graphcommerce/commit/d311ef48bb3e97806d992af5516d6b7f183ec9cb)]:
|
|
617
|
+
- @graphcommerce/next-ui@4.9.0
|
|
618
|
+
- @graphcommerce/graphql@3.2.1
|
|
619
|
+
- @graphcommerce/image@3.1.7
|
|
620
|
+
- @graphcommerce/magento-cart@4.4.3
|
|
621
|
+
- @graphcommerce/magento-store@4.2.10
|
|
622
|
+
|
|
623
|
+
## 3.0.26
|
|
624
|
+
|
|
625
|
+
### Patch Changes
|
|
626
|
+
|
|
627
|
+
- Updated dependencies [[`0ab7c5465`](https://github.com/graphcommerce-org/graphcommerce/commit/0ab7c5465441cba9bf8cd185a6790ce2f443f4ed)]:
|
|
628
|
+
- @graphcommerce/next-ui@4.8.4
|
|
629
|
+
- @graphcommerce/magento-cart@4.4.2
|
|
630
|
+
- @graphcommerce/magento-store@4.2.9
|
|
631
|
+
|
|
632
|
+
## 3.0.25
|
|
633
|
+
|
|
634
|
+
### Patch Changes
|
|
635
|
+
|
|
636
|
+
- Updated dependencies [[`d205b037f`](https://github.com/graphcommerce-org/graphcommerce/commit/d205b037fee82b8c03993f2c586f477e826093bf)]:
|
|
637
|
+
- @graphcommerce/magento-cart@4.4.1
|
|
638
|
+
|
|
639
|
+
## 3.0.24
|
|
640
|
+
|
|
641
|
+
### Patch Changes
|
|
642
|
+
|
|
643
|
+
- Updated dependencies [[`bed806ddd`](https://github.com/graphcommerce-org/graphcommerce/commit/bed806dddd7e025806a69798ef9587aa165d392f)]:
|
|
644
|
+
- @graphcommerce/graphql@3.2.0
|
|
645
|
+
- @graphcommerce/magento-cart@4.4.0
|
|
646
|
+
- @graphcommerce/magento-store@4.2.8
|
|
647
|
+
|
|
648
|
+
## 3.0.23
|
|
649
|
+
|
|
650
|
+
### Patch Changes
|
|
651
|
+
|
|
652
|
+
- Updated dependencies []:
|
|
653
|
+
- @graphcommerce/magento-cart@4.3.4
|
|
654
|
+
|
|
655
|
+
## 3.0.22
|
|
656
|
+
|
|
657
|
+
### Patch Changes
|
|
658
|
+
|
|
659
|
+
- Updated dependencies [[`afc67103d`](https://github.com/graphcommerce-org/graphcommerce/commit/afc67103d0e00583e274465036fd287537f95e79)]:
|
|
660
|
+
- @graphcommerce/next-ui@4.8.3
|
|
661
|
+
- @graphcommerce/magento-cart@4.3.3
|
|
662
|
+
- @graphcommerce/magento-store@4.2.7
|
|
663
|
+
|
|
664
|
+
## 3.0.21
|
|
665
|
+
|
|
666
|
+
### Patch Changes
|
|
667
|
+
|
|
668
|
+
- Updated dependencies [[`d6262de71`](https://github.com/graphcommerce-org/graphcommerce/commit/d6262de71d2254a2b0b492e1a60f9e141767470e), [`c8c246b8a`](https://github.com/graphcommerce-org/graphcommerce/commit/c8c246b8aaab0621b68a2fca2a1c529a56fad962), [`e3005fe63`](https://github.com/graphcommerce-org/graphcommerce/commit/e3005fe6306093d47b08c6756c21c8175649e30b)]:
|
|
669
|
+
- @graphcommerce/magento-cart@4.3.2
|
|
670
|
+
- @graphcommerce/next-ui@4.8.2
|
|
671
|
+
- @graphcommerce/magento-store@4.2.6
|
|
672
|
+
|
|
673
|
+
## 3.0.20
|
|
674
|
+
|
|
675
|
+
### Patch Changes
|
|
676
|
+
|
|
677
|
+
- Updated dependencies [[`a9df81310`](https://github.com/graphcommerce-org/graphcommerce/commit/a9df81310c051876dd82fb2819105dece47cc213), [`f167f9963`](https://github.com/graphcommerce-org/graphcommerce/commit/f167f99630966a7de43717937d43669e66132494)]:
|
|
678
|
+
- @graphcommerce/next-ui@4.8.1
|
|
679
|
+
- @graphcommerce/magento-cart@4.3.1
|
|
680
|
+
- @graphcommerce/magento-store@4.2.5
|
|
681
|
+
- @graphcommerce/image@3.1.6
|
|
682
|
+
|
|
683
|
+
## 3.0.19
|
|
684
|
+
|
|
685
|
+
### Patch Changes
|
|
686
|
+
|
|
687
|
+
- Updated dependencies [[`cf575395c`](https://github.com/graphcommerce-org/graphcommerce/commit/cf575395c16e9c571f75d4563004c3018a29aeaa)]:
|
|
688
|
+
- @graphcommerce/magento-cart@4.3.0
|
|
689
|
+
|
|
690
|
+
## 3.0.18
|
|
691
|
+
|
|
692
|
+
### Patch Changes
|
|
693
|
+
|
|
694
|
+
- Updated dependencies [[`0363b9671`](https://github.com/graphcommerce-org/graphcommerce/commit/0363b9671db7c2932321d97faf6f1eb385238397), [`3ac90b57c`](https://github.com/graphcommerce-org/graphcommerce/commit/3ac90b57c68b96f9d81771d6664ed9435a28fc1d), [`ed2b67a06`](https://github.com/graphcommerce-org/graphcommerce/commit/ed2b67a0618d9db97e79ed2a8226e0ae12403943)]:
|
|
695
|
+
- @graphcommerce/next-ui@4.8.0
|
|
696
|
+
- @graphcommerce/magento-cart@4.2.15
|
|
697
|
+
- @graphcommerce/magento-store@4.2.4
|
|
698
|
+
|
|
699
|
+
## 3.0.17
|
|
700
|
+
|
|
701
|
+
### Patch Changes
|
|
702
|
+
|
|
703
|
+
- Updated dependencies [[`c30893857`](https://github.com/graphcommerce-org/graphcommerce/commit/c3089385791291e812a48c2691a39a2325ee0439)]:
|
|
704
|
+
- @graphcommerce/magento-store@4.2.3
|
|
705
|
+
- @graphcommerce/magento-cart@4.2.14
|
|
706
|
+
|
|
707
|
+
## 3.0.16
|
|
708
|
+
|
|
709
|
+
### Patch Changes
|
|
710
|
+
|
|
711
|
+
- [#1451](https://github.com/graphcommerce-org/graphcommerce/pull/1451) [`f698ff85d`](https://github.com/graphcommerce-org/graphcommerce/commit/f698ff85df6bb0922288471bb3c81856091b8061) Thanks [@paales](https://github.com/paales)! - Removed all occurences of @lingui/macro and moved to @lingui/macro / @lingui/core in preparation to move to swc.
|
|
712
|
+
|
|
713
|
+
Since we've removed @lingui/macro, all occurences need to be replaced with @lingui/core and @lingui/react.
|
|
714
|
+
|
|
715
|
+
All occurences of `<Trans>` and `t` need to be replaced:
|
|
716
|
+
|
|
717
|
+
```tsx
|
|
718
|
+
import { t, Trans } from '@lingui/macro'
|
|
719
|
+
|
|
720
|
+
function MyComponent() {
|
|
721
|
+
const foo = 'bar'
|
|
722
|
+
return (
|
|
723
|
+
<div aria-label={t`Account ${foo}`}>
|
|
724
|
+
<Trans>My Translation {foo}</Trans>
|
|
725
|
+
</div>
|
|
726
|
+
)
|
|
727
|
+
}
|
|
728
|
+
```
|
|
729
|
+
|
|
730
|
+
Needs to be replaced with:
|
|
731
|
+
|
|
732
|
+
```tsx
|
|
733
|
+
import { i18n } from '@lingui/core'
|
|
734
|
+
import { Trans } from '@lingui/react'
|
|
735
|
+
|
|
736
|
+
function MyComponent() {
|
|
737
|
+
const foo = 'bar'
|
|
738
|
+
return (
|
|
739
|
+
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
740
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
741
|
+
</div>
|
|
742
|
+
)
|
|
743
|
+
}
|
|
744
|
+
```
|
|
745
|
+
|
|
746
|
+
[More examples for Trans](https://lingui.js.org/ref/macro.html#examples-of-jsx-macros) and [more examples for `t`](https://lingui.js.org/ref/macro.html#examples-of-js-macros)
|
|
747
|
+
|
|
748
|
+
- Updated dependencies [[`f698ff85d`](https://github.com/graphcommerce-org/graphcommerce/commit/f698ff85df6bb0922288471bb3c81856091b8061)]:
|
|
749
|
+
- @graphcommerce/magento-cart@4.2.13
|
|
750
|
+
- @graphcommerce/magento-store@4.2.2
|
|
751
|
+
- @graphcommerce/next-ui@4.7.2
|
|
752
|
+
- @graphcommerce/graphql@3.1.3
|
|
753
|
+
|
|
754
|
+
## 3.0.15
|
|
755
|
+
|
|
756
|
+
### Patch Changes
|
|
757
|
+
|
|
758
|
+
- Updated dependencies []:
|
|
759
|
+
- @graphcommerce/magento-cart@4.2.12
|
|
760
|
+
|
|
761
|
+
## 3.0.14
|
|
762
|
+
|
|
763
|
+
### Patch Changes
|
|
764
|
+
|
|
765
|
+
- Updated dependencies [[`25ef6cf08`](https://github.com/graphcommerce-org/graphcommerce/commit/25ef6cf08c278105307d6f604b7135d637e9046c), [`80e30bb77`](https://github.com/graphcommerce-org/graphcommerce/commit/80e30bb77015755fbc00a7935d590f80c1c1c18c)]:
|
|
766
|
+
- @graphcommerce/graphql@3.1.2
|
|
767
|
+
- @graphcommerce/magento-cart@4.2.11
|
|
768
|
+
- @graphcommerce/magento-store@4.2.1
|
|
769
|
+
- @graphcommerce/next-ui@4.7.1
|
|
770
|
+
|
|
771
|
+
## 3.0.13
|
|
772
|
+
|
|
773
|
+
### Patch Changes
|
|
774
|
+
|
|
775
|
+
- Updated dependencies [[`f3d06dd83`](https://github.com/graphcommerce-org/graphcommerce/commit/f3d06dd836c9a76412b419d4d2c79bbd0ee92e04)]:
|
|
776
|
+
- @graphcommerce/magento-store@4.2.0
|
|
777
|
+
- @graphcommerce/next-ui@4.7.0
|
|
778
|
+
- @graphcommerce/magento-cart@4.2.10
|
|
779
|
+
|
|
780
|
+
## 3.0.12
|
|
781
|
+
|
|
782
|
+
### Patch Changes
|
|
783
|
+
|
|
784
|
+
- Updated dependencies []:
|
|
785
|
+
- @graphcommerce/magento-cart@4.2.9
|
|
786
|
+
- @graphcommerce/magento-store@4.1.9
|
|
787
|
+
|
|
788
|
+
## 3.0.11
|
|
789
|
+
|
|
790
|
+
### Patch Changes
|
|
791
|
+
|
|
792
|
+
- Updated dependencies [[`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2)]:
|
|
793
|
+
- @graphcommerce/graphql@3.1.1
|
|
794
|
+
- @graphcommerce/next-ui@4.6.2
|
|
795
|
+
- @graphcommerce/magento-store@4.1.8
|
|
796
|
+
- @graphcommerce/magento-cart@4.2.8
|
|
797
|
+
|
|
798
|
+
## 3.0.10
|
|
799
|
+
|
|
800
|
+
### Patch Changes
|
|
801
|
+
|
|
802
|
+
- Updated dependencies [[`d8906cf4a`](https://github.com/graphcommerce-org/graphcommerce/commit/d8906cf4afbfc234aedd91a2c581f82623267357)]:
|
|
803
|
+
- @graphcommerce/magento-cart@4.2.7
|
|
804
|
+
|
|
805
|
+
## 3.0.9
|
|
806
|
+
|
|
807
|
+
### Patch Changes
|
|
808
|
+
|
|
809
|
+
- [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4) Thanks [@paales](https://github.com/paales)! - Updated dependencies
|
|
810
|
+
|
|
811
|
+
- Updated dependencies [[`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542), [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542), [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4)]:
|
|
812
|
+
- @graphcommerce/graphql@3.1.0
|
|
813
|
+
- @graphcommerce/magento-cart@4.2.6
|
|
814
|
+
- @graphcommerce/magento-store@4.1.7
|
|
815
|
+
- @graphcommerce/next-ui@4.6.1
|
|
816
|
+
- @graphcommerce/image@3.1.5
|
|
817
|
+
|
|
818
|
+
## 3.0.8
|
|
819
|
+
|
|
820
|
+
### Patch Changes
|
|
821
|
+
|
|
822
|
+
- Updated dependencies []:
|
|
823
|
+
- @graphcommerce/magento-cart@4.2.5
|
|
824
|
+
|
|
825
|
+
## 3.0.7
|
|
826
|
+
|
|
827
|
+
### Patch Changes
|
|
828
|
+
|
|
829
|
+
- Updated dependencies [[`3c801f45c`](https://github.com/graphcommerce-org/graphcommerce/commit/3c801f45c7df55131acf30ae2fe0d2344830d480), [`b8d04130a`](https://github.com/graphcommerce-org/graphcommerce/commit/b8d04130a1b1cb8fc85308939235140288744465), [`3192fab82`](https://github.com/graphcommerce-org/graphcommerce/commit/3192fab82560e2211dfcacadc3b0b305260527d8), [`0e425e85e`](https://github.com/graphcommerce-org/graphcommerce/commit/0e425e85ee8fed280349317ee0440c7bceea5823), [`8a354d1cd`](https://github.com/graphcommerce-org/graphcommerce/commit/8a354d1cd4757497ddfc9b1969a0addbc8ff616b)]:
|
|
830
|
+
- @graphcommerce/next-ui@4.6.0
|
|
831
|
+
- @graphcommerce/magento-cart@4.2.4
|
|
832
|
+
- @graphcommerce/image@3.1.4
|
|
833
|
+
- @graphcommerce/magento-store@4.1.6
|
|
834
|
+
|
|
835
|
+
## 3.0.6
|
|
836
|
+
|
|
837
|
+
### Patch Changes
|
|
838
|
+
|
|
839
|
+
- [#1378](https://github.com/graphcommerce-org/graphcommerce/pull/1378) [`b610a6e40`](https://github.com/graphcommerce-org/graphcommerce/commit/b610a6e4049e8c9e8b5d2aeff31b8e1bfc24abe5) Thanks [@paales](https://github.com/paales)! - Pin all versions internally so we can’t end up in an unfixable state for the user
|
|
840
|
+
|
|
841
|
+
- Updated dependencies [[`b610a6e40`](https://github.com/graphcommerce-org/graphcommerce/commit/b610a6e4049e8c9e8b5d2aeff31b8e1bfc24abe5)]:
|
|
842
|
+
- @graphcommerce/graphql@3.0.7
|
|
843
|
+
- @graphcommerce/image@3.1.3
|
|
844
|
+
- @graphcommerce/magento-cart@4.2.3
|
|
845
|
+
- @graphcommerce/magento-store@4.1.5
|
|
846
|
+
- @graphcommerce/next-ui@4.5.1
|
|
847
|
+
|
|
848
|
+
## 3.0.5
|
|
849
|
+
|
|
850
|
+
### Patch Changes
|
|
851
|
+
|
|
852
|
+
- [#1369](https://github.com/graphcommerce-org/graphcommerce/pull/1369) [`ae6449502`](https://github.com/graphcommerce-org/graphcommerce/commit/ae64495024a455bbe5188588604368c1542840c9) Thanks [@paales](https://github.com/paales)! - Upgraded dependencies
|
|
853
|
+
|
|
854
|
+
- Updated dependencies [[`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a), [`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a), [`ae6449502`](https://github.com/graphcommerce-org/graphcommerce/commit/ae64495024a455bbe5188588604368c1542840c9), [`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a), [`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a)]:
|
|
855
|
+
- @graphcommerce/graphql@3.0.6
|
|
856
|
+
- @graphcommerce/next-ui@4.5.0
|
|
857
|
+
- @graphcommerce/image@3.1.2
|
|
858
|
+
- @graphcommerce/magento-cart@4.2.2
|
|
859
|
+
- @graphcommerce/magento-store@4.1.4
|
|
860
|
+
|
|
861
|
+
## 3.0.4
|
|
862
|
+
|
|
863
|
+
### Patch Changes
|
|
864
|
+
|
|
865
|
+
- [#1307](https://github.com/ho-nl/m2-pwa/pull/1307) [`bd10506d3`](https://github.com/ho-nl/m2-pwa/commit/bd10506d32fdbc91d01dadc29a12ebd1e0943655) Thanks [@paales](https://github.com/paales)! - All default exports are now named exports internally and all `index.tsx` are renamed to the component name.
|
|
866
|
+
|
|
867
|
+
* [#1307](https://github.com/ho-nl/m2-pwa/pull/1307) [`27cb1f2d8`](https://github.com/ho-nl/m2-pwa/commit/27cb1f2d8dbfb8f1b301ce56fb6a2b6c1fc6a5ef) Thanks [@paales](https://github.com/paales)! - upgrade dependencies
|
|
868
|
+
|
|
869
|
+
* Updated dependencies [[`3d63b39f7`](https://github.com/ho-nl/m2-pwa/commit/3d63b39f7e330d1827a32dba782667d7b21adaba), [`bd10506d3`](https://github.com/ho-nl/m2-pwa/commit/bd10506d32fdbc91d01dadc29a12ebd1e0943655), [`27cb1f2d8`](https://github.com/ho-nl/m2-pwa/commit/27cb1f2d8dbfb8f1b301ce56fb6a2b6c1fc6a5ef)]:
|
|
870
|
+
- @graphcommerce/next-ui@4.2.4
|
|
871
|
+
- @graphcommerce/graphql@3.0.4
|
|
872
|
+
- @graphcommerce/image@3.1.1
|
|
873
|
+
- @graphcommerce/magento-cart@4.1.4
|
|
874
|
+
- @graphcommerce/magento-store@4.1.2
|
|
875
|
+
|
|
876
|
+
## 3.0.3
|
|
877
|
+
|
|
878
|
+
### Patch Changes
|
|
879
|
+
|
|
880
|
+
- [`973ff8645`](https://github.com/ho-nl/m2-pwa/commit/973ff86452a70ade9f4db13fdda6e963d7220e96) Thanks [@paales](https://github.com/paales)! - made packages public
|
|
881
|
+
|
|
882
|
+
* [#1278](https://github.com/ho-nl/m2-pwa/pull/1278) [`81ea406d5`](https://github.com/ho-nl/m2-pwa/commit/81ea406d54d6b5c662c030a7fea444abc4117a20) Thanks [@ErwinOtten](https://github.com/ErwinOtten)! - Upgraded dependencies to the latest version
|
|
883
|
+
|
|
884
|
+
* Updated dependencies [[`973ff8645`](https://github.com/ho-nl/m2-pwa/commit/973ff86452a70ade9f4db13fdda6e963d7220e96), [`81ea406d5`](https://github.com/ho-nl/m2-pwa/commit/81ea406d54d6b5c662c030a7fea444abc4117a20), [`3a719c88c`](https://github.com/ho-nl/m2-pwa/commit/3a719c88cad1eab58602de28c41adc0fc4827e1d), [`5ffcb56bf`](https://github.com/ho-nl/m2-pwa/commit/5ffcb56bfcbe49ebeaf24f9341e819a145ab9a14)]:
|
|
885
|
+
- @graphcommerce/graphql@3.0.3
|
|
886
|
+
- @graphcommerce/image@3.1.0
|
|
887
|
+
- @graphcommerce/magento-cart@4.1.2
|
|
888
|
+
- @graphcommerce/magento-store@4.0.3
|
|
889
|
+
- @graphcommerce/next-ui@4.1.2
|
|
890
|
+
|
|
891
|
+
## 3.0.2
|
|
892
|
+
|
|
893
|
+
### Patch Changes
|
|
894
|
+
|
|
895
|
+
- [#1276](https://github.com/ho-nl/m2-pwa/pull/1276) [`ce09388e0`](https://github.com/ho-nl/m2-pwa/commit/ce09388e0d7ef33aee660612340f6fbae15ceec2) Thanks [@paales](https://github.com/paales)! - We've moved lots of internal packages from `dependencies` to `peerDependencies`. The result of this is that there will be significantly less duplicate packages in the node_modules folders.
|
|
896
|
+
|
|
897
|
+
* [#1276](https://github.com/ho-nl/m2-pwa/pull/1276) [`52a45bba4`](https://github.com/ho-nl/m2-pwa/commit/52a45bba4dc6dd6df3c81f5023df7d23ed8a534d) Thanks [@paales](https://github.com/paales)! - Upgraded to [NextJS 12.1](https://nextjs.org/blog/next-12-1)! This is just for compatibility, but we'll be implementing [On-demand Incremental Static Regeneration](https://nextjs.org/blog/next-12-1#on-demand-incremental-static-regeneration-beta) soon.
|
|
898
|
+
|
|
899
|
+
This will greatly reduce the requirement to rebuid stuff and we'll add a management UI on the frontend to be able to revalidate pages manually.
|
|
900
|
+
|
|
901
|
+
* Updated dependencies [[`381e4c86a`](https://github.com/ho-nl/m2-pwa/commit/381e4c86a8321ce96e1fa5c7d3c0a0c0ff3e02c7), [`ce09388e0`](https://github.com/ho-nl/m2-pwa/commit/ce09388e0d7ef33aee660612340f6fbae15ceec2), [`e7c8e2756`](https://github.com/ho-nl/m2-pwa/commit/e7c8e2756d637cbcd2e793d62ef5721d35d9fa7b), [`b08a8eb1d`](https://github.com/ho-nl/m2-pwa/commit/b08a8eb1d024b9d3e7712ef034029151670db275), [`52a45bba4`](https://github.com/ho-nl/m2-pwa/commit/52a45bba4dc6dd6df3c81f5023df7d23ed8a534d), [`5a4809b1a`](https://github.com/ho-nl/m2-pwa/commit/5a4809b1a705aa32f620f520085df48ee25f9949)]:
|
|
902
|
+
- @graphcommerce/magento-cart@4.1.1
|
|
903
|
+
- @graphcommerce/next-ui@4.1.1
|
|
904
|
+
- @graphcommerce/graphql@3.0.2
|
|
905
|
+
- @graphcommerce/image@3.0.2
|
|
906
|
+
- @graphcommerce/magento-store@4.0.2
|
|
907
|
+
|
|
908
|
+
## 3.0.1
|
|
909
|
+
|
|
910
|
+
### Patch Changes
|
|
911
|
+
|
|
912
|
+
- [`0cbaa878b`](https://github.com/ho-nl/m2-pwa/commit/0cbaa878b8a844d5abbeb1797b625a33130e6514) Thanks [@paales](https://github.com/paales)! - Added homepage and repository package.json files, so that the packages link to back to the website and repository
|
|
913
|
+
- Updated dependencies [[`0cbaa878b`](https://github.com/ho-nl/m2-pwa/commit/0cbaa878b8a844d5abbeb1797b625a33130e6514)]:
|
|
914
|
+
- @graphcommerce/graphql@3.0.1
|
|
915
|
+
- @graphcommerce/image@3.0.1
|
|
916
|
+
- @graphcommerce/magento-cart@4.0.1
|
|
917
|
+
- @graphcommerce/magento-store@4.0.1
|
|
918
|
+
- @graphcommerce/next-ui@4.0.1
|
|
919
|
+
|
|
920
|
+
## 3.0.0
|
|
921
|
+
|
|
922
|
+
### Major Changes
|
|
923
|
+
|
|
924
|
+
- [#1258](https://github.com/ho-nl/m2-pwa/pull/1258) [`ad36382a4`](https://github.com/ho-nl/m2-pwa/commit/ad36382a4d55d83d9e47b7eb6a02671a2a631a05) Thanks [@paales](https://github.com/paales)! - Upgraded to Material UI 5
|
|
925
|
+
|
|
926
|
+
### Patch Changes
|
|
927
|
+
|
|
928
|
+
- Updated dependencies [[`ad36382a4`](https://github.com/ho-nl/m2-pwa/commit/ad36382a4d55d83d9e47b7eb6a02671a2a631a05)]:
|
|
929
|
+
- @graphcommerce/graphql@3.0.0
|
|
930
|
+
- @graphcommerce/image@3.0.0
|
|
931
|
+
- @graphcommerce/magento-cart@4.0.0
|
|
932
|
+
- @graphcommerce/magento-store@4.0.0
|
|
933
|
+
- @graphcommerce/next-ui@4.0.0
|
|
934
|
+
|
|
935
|
+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
936
|
+
|
|
937
|
+
# [2.105.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-payment-klarna@2.104.31...@graphcommerce/magento-payment-klarna@2.105.0) (2021-11-12)
|
|
938
|
+
|
|
939
|
+
### Features
|
|
940
|
+
|
|
941
|
+
- added tons of translations ([9bb0ac7](https://github.com/ho-nl/m2-pwa/commit/9bb0ac709b58df6ea6141e92e4923a5ca9ae2963))
|
|
942
|
+
|
|
943
|
+
# [2.104.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-payment-klarna@2.103.35...@graphcommerce/magento-payment-klarna@2.104.0) (2021-10-27)
|
|
944
|
+
|
|
945
|
+
### Features
|
|
946
|
+
|
|
947
|
+
- **nextjs:** upgraded to nextjs 12 ([9331bc8](https://github.com/ho-nl/m2-pwa/commit/9331bc801f6419522115cc47d291d49d608d5a90))
|
|
948
|
+
|
|
949
|
+
## [2.103.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-payment-klarna@2.103.0...@graphcommerce/magento-payment-klarna@2.103.1) (2021-09-27)
|
|
950
|
+
|
|
951
|
+
**Note:** Version bump only for package @graphcommerce/magento-payment-klarna
|
|
952
|
+
|
|
953
|
+
# 2.103.0 (2021-09-27)
|
|
954
|
+
|
|
955
|
+
### Bug Fixes
|
|
956
|
+
|
|
957
|
+
- ignore md files from triggering version updates ([4f98392](https://github.com/ho-nl/m2-pwa/commit/4f9839250b3a32d3070da5290e5efcc5e2243fba))
|
|
958
|
+
- remove conflicting files ([0c17ae4](https://github.com/ho-nl/m2-pwa/commit/0c17ae46be62b775ac83b35f11c532ce2d9401a3))
|
|
959
|
+
|
|
960
|
+
### Features
|
|
961
|
+
|
|
962
|
+
- added braintree libraries for checkout process ([970ae9a](https://github.com/ho-nl/m2-pwa/commit/970ae9a03510e6e6851ffb81758ab71daedc7096))
|
|
963
|
+
- added PaymentModule API and persistent selection of form fields ([b67f735](https://github.com/ho-nl/m2-pwa/commit/b67f7358f62edd56a8232d625ecee56af350bfb8))
|
|
964
|
+
- checkout/payment page added to checkout ([7e54cd6](https://github.com/ho-nl/m2-pwa/commit/7e54cd68685543ded27b285f15f6d9729b969a02))
|
|
965
|
+
- created stacked-pages package ([d86008e](https://github.com/ho-nl/m2-pwa/commit/d86008ee659ccb25b194a41d624b394a1ddbd088))
|
|
966
|
+
- **graphql:** introduced new graphql package that holds all generated files ([a3e7aa0](https://github.com/ho-nl/m2-pwa/commit/a3e7aa05540540533b5ced9a95f1f802ecbe499f))
|
|
967
|
+
- **image:** introduced completely rewritten Image component ([e3413b3](https://github.com/ho-nl/m2-pwa/commit/e3413b3a57392d6571ea64cb8d9c8dca05ea31df))
|
|
968
|
+
- next.js 11 ([7d61407](https://github.com/ho-nl/m2-pwa/commit/7d614075a778f488045034f74be4f75b93f63c43))
|
|
969
|
+
- **playwright:** added new playwright package to enable browser testing ([6f49ec7](https://github.com/ho-nl/m2-pwa/commit/6f49ec7595563775b96ebf21c27e39da1282e8d9))
|
|
970
|
+
- renamed all packages to use [@graphcommerce](https://github.com/graphcommerce) instead of [@reachdigital](https://github.com/reachdigital) ([491e4ce](https://github.com/ho-nl/m2-pwa/commit/491e4cec9a2686472dac36b79f999257c0811ffe))
|
|
971
|
+
- upgrade to node 14 ([d079a75](https://github.com/ho-nl/m2-pwa/commit/d079a751e9bfd8dc7f5009d2c9f31c336a0c96ab))
|
|
972
|
+
- upgraded to nextjs 11 ([0053beb](https://github.com/ho-nl/m2-pwa/commit/0053beb7ef597c190add7264256a0eaec35868da))
|
|
973
|
+
|
|
974
|
+
### Reverts
|
|
975
|
+
|
|
976
|
+
- Revert "chore: upgrade @apollo/client" ([55ff24e](https://github.com/ho-nl/m2-pwa/commit/55ff24ede0e56c85b8095edadadd1ec5e0b1b8d2))
|
|
977
|
+
|
|
978
|
+
# Change Log
|
|
979
|
+
|
|
980
|
+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
981
|
+
|
|
982
|
+
# [2.102.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-payment-klarna@2.101.10...@graphcommerce/magento-payment-klarna@2.102.0) (2021-08-12)
|
|
983
|
+
|
|
984
|
+
### Features
|
|
985
|
+
|
|
986
|
+
- upgraded to nextjs 11 ([0053beb](https://github.com/ho-nl/m2-pwa/commit/0053beb7ef597c190add7264256a0eaec35868da))
|
|
987
|
+
|
|
988
|
+
## [2.101.9](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-payment-klarna@2.101.8...@graphcommerce/magento-payment-klarna@2.101.9) (2021-08-09)
|
|
989
|
+
|
|
990
|
+
### Reverts
|
|
991
|
+
|
|
992
|
+
- Revert "chore: upgrade @apollo/client" ([55ff24e](https://github.com/ho-nl/m2-pwa/commit/55ff24ede0e56c85b8095edadadd1ec5e0b1b8d2))
|
|
993
|
+
|
|
994
|
+
# [2.101.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-payment-klarna@2.100.19...@graphcommerce/magento-payment-klarna@2.101.0) (2021-07-26)
|
|
995
|
+
|
|
996
|
+
### Features
|
|
997
|
+
|
|
998
|
+
- **playwright:** added new playwright package to enable browser testing ([6f49ec7](https://github.com/ho-nl/m2-pwa/commit/6f49ec7595563775b96ebf21c27e39da1282e8d9))
|
|
999
|
+
|
|
1000
|
+
## [2.100.11](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-payment-klarna@2.100.10...@graphcommerce/magento-payment-klarna@2.100.11) (2021-07-20)
|
|
1001
|
+
|
|
1002
|
+
### Bug Fixes
|
|
1003
|
+
|
|
1004
|
+
- ignore md files from triggering version updates ([4f98392](https://github.com/ho-nl/m2-pwa/commit/4f9839250b3a32d3070da5290e5efcc5e2243fba))
|