-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathplugin.xml
762 lines (750 loc) · 32.1 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/shopware/5.6/engine/Shopware/Components/Plugin/schema/plugin.xsd">
<label>Adyen Shopware Plugin</label>
<label lang="de">Adyen Shopware Plugin</label>
<version>4.2.0</version>
<copyright>Adyen</copyright>
<author>Adyen</author>
<link>https://adyen.com</link>
<license>MIT</license>
<description>Official Adyen plugin</description>
<description lang="de">Offizielles Adyen plugin</description>
<compatibility minVersion="5.6.0"/>
<changelog version="1.4.1">
<changes lang="de">1.4.1 release</changes>
<changes lang="en">1.4.1 release</changes>
</changelog>
<changelog version="1.5.0">
<changes lang="de">
Fixes:
Removed customer ID from shopperinfo payload
Changed order completed state
Improvements to error handling on test API button
Improve exception logging
Yandex logo
Refund using original PSP
Features:
offer_closed notification handling
Event for order restore
Payment methods cache
Live/Test config values
</changes>
<changes lang="en">
Fixes:
Removed customer ID from shopperinfo payload
Changed order completed state
Improvements to error handling on test API button
Improve exception logging
Yandex logo
Refund using original PSP
Features:
offer_closed notification handling
Event for order restore
Payment methods cache
Live/Test config values
</changes>
</changelog>
<changelog version="1.5.1">
<changes lang="de">
Fixes:
Only send mail after successful payment
Adding N/A to houseNumberOrName
Cronjobs not running fix
Add redirect data to payments request
</changes>
<changes lang="en">
Fixes:
Only send mail after successful payment
Adding N/A to houseNumberOrName
Cronjobs not running fix
Add redirect data to payments request
</changes>
</changelog>
<changelog version="1.6.0">
<changes lang="de">
Features
Gift card payment method
Mobile Bancontact payment method
Add snippets to payment information link + update position link
Add extra events for better extensibility
Fixes
Update mail sending
Add fallback for config fetch when no shop is specified
Alter notification url to /frontend/notification/adyen
Using composer v1 in Github Actions
More strict paymentMethodFormSubmitSelector
Redirect payment methods flow with POST->Transparent controller
Adding payload and redirectResult GET parameters to transparent redirect
try/catch block for getting the Shop service from the backend
</changes>
<changes lang="en">
Features
Gift card payment method
Mobile Bancontact payment method
Add snippets to payment information link + update position link
Add extra events for better extensibility
Fixes
Update mail sending
Add fallback for config fetch when no shop is specified
Alter notification url to /frontend/notification/adyen
Using composer v1 in Github Actions
More strict paymentMethodFormSubmitSelector
Redirect payment methods flow with POST->Transparent controller
Adding payload and redirectResult GET parameters to transparent redirect
try/catch block for getting the Shop service from the backend
</changes>
</changelog>
<changelog version="1.7.0">
<changes lang="de">
Features
Bump Web Components to 3.12.1 highest compatible API v51
Add merchantReference of order number on returnUrl
Payment tokenisation
Fixes
Second shop cannot decrypt api data
Store incoming notifications in new DB entity with no extra logic
Notifications response
Payment data missing
Other
Update main.yml Github Actions
</changes>
<changes lang="en">
Features
Bump Web Components to 3.12.1 highest compatible API v51
Add merchantReference of order number on returnUrl
Payment tokenisation
Fixes
Second shop cannot decrypt api data
Store incoming notifications in new DB entity with no extra logic
Notifications response
Payment data missing
Other
Update main.yml Github Actions
</changes>
</changelog>
<changelog version="1.7.1">
<changes lang="de">
Fixes
Properly fetch email variables using orderNumber
Get Adyen config data from the CheckoutSubscriber if not present in the session storage
Merge all payment methods in one array and filter in template
</changes>
<changes lang="en">
Fixes
Properly fetch email variables using orderNumber
Get Adyen config data from the CheckoutSubscriber if not present in the session storage
Merge all payment methods in one array and filter in template
</changes>
</changelog>
<changelog version="1.7.2">
<changes lang="de">
Fixes
Early return in CheckoutSubscriber for users that have no Adyen payment preselected
Add processing time to notifications
Add PSP reference on authorization success notification
Support for MANUAL_REVIEW_ACCEPT and MANUAL_REVIEW_REJECT notifications
Hide Adyen payment methods for 0 amount transactions
Adding second notification filter where clause as andWhere
Showing all notifications in order details
Changing cancelAndRestoreByOrderNumber arg type to string
Implement needed sUniqueID for Checkout finish page
Update AuthenticationValidator.php to check HTTP_PHP_AUTH_USER besides PHP_AUTH_USER
Making the notification entity's paymentMethod column nullable
Add comments to order if available
Copying order detail attributes to basket detail on failed payment
</changes>
<changes lang="en">
Fixes
Early return in CheckoutSubscriber for users that have no Adyen payment preselected
Add processing time to notifications
Add PSP reference on authorization success notification
Support for MANUAL_REVIEW_ACCEPT and MANUAL_REVIEW_REJECT notifications
Hide Adyen payment methods for 0 amount transactions
Adding second notification filter where clause as andWhere
Showing all notifications in order details
Changing cancelAndRestoreByOrderNumber arg type to string
Implement needed sUniqueID for Checkout finish page
Update AuthenticationValidator.php to check HTTP_PHP_AUTH_USER besides PHP_AUTH_USER
Making the notification entity's paymentMethod column nullable
Add comments to order if available
Copying order detail attributes to basket detail on failed payment
</changes>
</changelog>
<changelog version="1.7.3">
<changes lang="de">
Fixes
Restore article order number to the basket after failed payment
</changes>
<changes lang="en">
Fixes
Restore article order number to the basket after failed payment
</changes>
</changelog>
<changelog version="2.0.0">
<changes lang="en">
Features
Upgrade to API v67 and Adyen Web Components Library
Fixes
Inserting payment method selection as user attribute if no user attribute exists
</changes>
<changes lang="de">
Features
Upgrade to API v67 and Adyen Web Components Library
Fixes
Inserting payment method selection as user attribute if no user attribute exists
</changes>
</changelog>
<changelog version="3.0.0">
<changes lang="en">
Features
Convert Adyen payment methods to native payment methods
Fixes
Handle IdentifyShopper, ChallengeShopper, Pending and RedirectShopper with the same createFromAction
Fix env constants
Add sUniqueID to sync payments
</changes>
<changes lang="de">
Features
Convert Adyen payment methods to native payment methods
Fixes
Handle IdentifyShopper, ChallengeShopper, Pending and RedirectShopper with the same createFromAction
Fix env constants
Add sUniqueID to sync payments
</changes>
</changelog>
<changelog version="3.0.1">
<changes lang="en">
Fixes
Fix GooglePay config provider
</changes>
<changes lang="de">
Fixes
Fix GooglePay config provider
</changes>
</changelog>
<changelog version="3.0.2">
<changes lang="en">
Fixes
Display Shopware payment methods
Update composer, lower monolog requirement
</changes>
<changes lang="de">
Fixes
Display Shopware payment methods
Update composer, lower monolog requirement
</changes>
</changelog>
<changelog version="3.1.0">
<changes lang="en">
Compatibility PHP 7.4 Shopware 5.7.x
</changes>
<changes lang="de">
Kompatibilität PHP 7.4 Shopware 5.7.x
</changes>
</changelog>
<changelog version="3.2.0">
<changes lang="en">
Stability fixes
Support Gift cards
</changes>
<changes lang="de">
Stabilitätskorrekturen
Unterstützung Geschenkkarten
</changes>
</changelog>
<changelog version="3.3.0">
<changes lang="en">
ApplePay Merchant id association file
* path: .well-known/apple-developer-merchantid-domain-association
* served directly by webserver if rules do not block access
* served by shopware front-end route
* can be manually installed by backend button in plugin configuration
* will fetch the default adyen merchantid-domain-association available file
* will fall back to file shipped with the plugin
* failsafe on url access if the file is not present it will be attempted to install
Plugin compatibility with SwagPayPal
</changes>
<changes lang="de">
ApplePay Merchant id association file
* path: .well-known/apple-developer-merchantid-domain-association
* served directly by webserver if rules do not block access
* served by shopware front-end route
* can be manually installed by backend button in plugin configuration
* will fetch the default adyen merchantid-domain-association available file
* will fall back to file shipped with the plugin
* failsafe on url access if the file is not present it will be attempted to install
Plugin compatibility with SwagPayPal
</changes>
</changelog>
<changelog version="3.3.1">
<changes lang="en">
Same release as 3.3.0, but alternate working for archive file
</changes>
<changes lang="de">
Same release as 3.3.0, but alternate working for archive file
</changes>
</changelog>
<changelog version="3.4.0">
<changes lang="en">
Enable Adyen's stored payment methods feature
</changes>
<changes lang="de">
Enable Adyen's stored payment methods feature
</changes>
</changelog>
<changelog version="3.5.0">
<changes lang="en">
USP:
* re-enable creation of stored payment methods (Tokenization) for Credit Cards (adyen type: scheme)
* functionality to remove stored payment methods / tokens
</changes>
<changes lang="de">
USP:
* re-enable creation of stored payment methods (Tokenization) for Credit Cards (adyen type: scheme)
* functionality to remove stored payment methods / tokens
</changes>
</changelog>
<changelog version="3.7.0">
<changes lang="en">
* Apple Pay amount mismatch issue is solved (issue occured on change shipping/payment where basket was being miscalculated).
* Removed html sanitizing on checkout (using json response instead of html data attribute), so design can be tweaked on payment method.
</changes>
<changes lang="de">
* Das Problem mit der Nichtübereinstimmung des Apple Pay-Betrags wurde behoben (das Problem trat bei der Änderung des Versands/der Zahlung auf, bei der der Warenkorb falsch berechnet wurde).
* HTML-Bereinigung beim Checkout entfernt (unter Verwendung von JSON-Antwort anstelle des HTML-Datenattributs), sodass das Design an der Zahlungsmethode angepasst werden kann.
</changes>
</changelog>
<changelog version="3.8.0">
<changes lang="en">
* USP - Confirm modal
* Fix: Duplicate Webhook Notifications
* Fix: Mismatch of Basket Amount for guest and user accounts on payment
* Feature: Allow additional description for payment methods (with fallback to translations)
</changes>
<changes lang="de">
* USP - Confirm modal
* Fix: Duplicate Webhook Notifications
* Fix: Mismatch of Basket Amount for guest and user accounts on payment
* Feature: Allow additional description for payment methods (with fallback to translations)
</changes>
</changelog>
<changelog version="3.8.1">
<changes lang="en">
* Fix: Automatic payment status updating
* Fix: Checkout error upon submission of additional payment data
* Fix: Notifications listing under the PHP 8
</changes>
<changes lang="de">
* Fix: Automatic payment status updating
* Fix: Checkout error upon submission of additional payment data
* Fix: Notifications listing under the PHP 8
</changes>
</changelog>
<changelog version="3.8.2">
<changes lang="en">
* Fix: Mark order payment as canceled upon exceptional Adyen API payment response
* Fix: Mark order payment as canceled for unsupported Adyen API payment responses
</changes>
<changes lang="de">
* Fix: Mark order payment as canceled upon exceptional Adyen API payment response
* Fix: Mark order payment as canceled for unsupported Adyen API payment responses
</changes>
</changelog>
<changelog version="3.8.3">
<changes lang="en">
* Fix: Empty cart upon order confirmation
* Fix: Frontend cache clear upon plugin install and update
</changes>
<changes lang="de">
* Fix: Empty cart upon order confirmation
* Fix: Frontend cache clear upon plugin install and update
</changes>
</changelog>
<changelog version="3.8.4">
<changes lang="en">
* Fix: Notifications overview error when associated order is deleted
* Fix: Add customer session expiry handling during payment requests
* Fix: Fix notification handling error for missing payment info
* Optimize: Remove empty payment data from details request
* Optimize: Generate truly unique order temporary id
</changes>
<changes lang="de">
* Fix: Notifications overview error when associated order is deleted
* Fix: Add customer session expiry handling during payment requests
* Fix: Fix notification handling error for missing payment info
* Optimize: Remove empty payment data from details request
* Optimize: Generate truly unique order temporary id
</changes>
</changelog>
<changelog version="3.8.5">
<changes lang="en">
* Fix: Order confirmation emails not sent for expired customer sessions upon payment redirects
* Optimize: Remove session dependency from payment redirect handler
</changes>
<changes lang="de">
* Fix: Order confirmation emails not sent for expired customer sessions upon payment redirects
* Optimize: Remove session dependency from payment redirect handler
</changes>
</changelog>
<changelog version="3.8.6">
<changes lang="en">
* Fix: Shopware version in payments' application info section
* Fix: Wrong payment method name on the order finish page
* Fix: Invalid GooglePay token error for production environments
</changes>
<changes lang="de">
* Fix: Shopware version in payments' application info section
* Fix: Wrong payment method name on the order finish page
* Fix: Invalid GooglePay token error for production environments
</changes>
</changelog>
<changelog version="3.8.7">
<changes lang="en">
* Optimize: Set PSP reference as transaction ID as soon as possible
* Fix: Reactivating plugin with previously deactivated umbrella payment method
</changes>
<changes lang="de">
* Optimize: Set PSP reference as transaction ID as soon as possible
* Fix: Reactivating plugin with previously deactivated umbrella payment method
</changes>
</changelog>
<changelog version="3.9.0">
<changes lang="en">
* Optimize: Handling of the customer cookie consent
* Optimize: Set payment billing address state based on the customer billing address state
* Optimize: Add plugin compatibility with Shopware 5.6.0 - 5.7.14
</changes>
<changes lang="de">
* Optimize: Handling of the customer cookie consent
* Optimize: Set payment billing address state based on the customer billing address state
* Optimize: Add plugin compatibility with Shopware 5.6.0 - 5.7.14
</changes>
</changelog>
<changelog version="3.9.1">
<changes lang="en">
* Fix: Missing credit card payment method for Sweden billing addresses
* Optimize: Handling of the invalid Webhook requests
</changes>
<changes lang="de">
* Fix: Missing credit card payment method for Sweden billing addresses
* Optimize: Handling of the invalid Webhook requests
</changes>
</changelog>
<changelog version="4.0.0">
<changes lang="en">
* New admin user interface and experience - Navigate effortlessly through an enhanced interface designed for simplicity and seamless plugin configuration.
* Expanded payment method options - Introducing new supported payment methods, giving customers more choices and convenience during checkout.
* Payment methods as a full express option - Offer customers more options with new supported payment methods, including the checkout express lineup: Apple Pay, Google Pay, Amazon Pay, and Paypal.
* Revamped checkout - Benefit from the latest version of Adyen's Checkout API, but also with the new implementation of the checkout and payment process that meets Shopware 5 best practices.
* Partial refunds - Easily process partial refunds, providing greater flexibility in handling customer returns.
* Partial capture - Seamlessly capture funds partially, granting you flexibility in managing complex orders.
* Capture control - Choose between manual and auto-capture of funds, tailoring the payment process to your business needs.
* Advanced data sending - Send L2 and L3 data for enhanced transaction insights, facilitating smoother business operations.
* Risk score visibility - View risk scores in order payment details, assisting in informed decision-making and fraud prevention.
* Adyen Giving - Enable charitable donations through Adyen Giving, allowing your customers to contribute effortlessly during transactions.
</changes>
<changes lang="de">
* New admin user interface and experience - Navigate effortlessly through an enhanced interface designed for simplicity and seamless plugin configuration.
* Expanded payment method options - Introducing new supported payment methods, giving customers more choices and convenience during checkout.
* Payment methods as a full express option - Offer customers more options with new supported payment methods, including the checkout express lineup: Apple Pay, Google Pay, Amazon Pay, and Paypal.
* Revamped checkout - Benefit from the latest version of Adyen's Checkout API, but also with the new implementation of the checkout and payment process that meets Shopware 5 best practices.
* Partial refunds - Easily process partial refunds, providing greater flexibility in handling customer returns.
* Partial capture - Seamlessly capture funds partially, granting you flexibility in managing complex orders.
* Capture control - Choose between manual and auto-capture of funds, tailoring the payment process to your business needs.
* Advanced data sending - Send L2 and L3 data for enhanced transaction insights, facilitating smoother business operations.
* Risk score visibility - View risk scores in order payment details, assisting in informed decision-making and fraud prevention.
* Adyen Giving - Enable charitable donations through Adyen Giving, allowing your customers to contribute effortlessly during transactions.
</changes>
</changelog>
<changelog version="4.0.1">
<changes lang="en">
* Implement Application info logic for payment requests
* Update core version to 1.0.1
</changes>
<changes lang="de">
* Implement Application info logic for payment requests
* Update core version to 1.0.1
</changes>
</changelog>
<changelog version="4.0.2">
<changes lang="en">
* Update core, fixed credit card mapping
</changes>
<changes lang="de">
* Update core, fixed credit card mapping
</changes>
</changelog>
<changelog version="4.0.3">
<changes lang="en">
* Change application info values
* Update core to version 1.0.4
</changes>
<changes lang="de">
* Change application info values
* Update core to version 1.0.4
</changes>
</changelog>
<changelog version="4.0.4">
<changes lang="en">
* Update core to version 1.0.7
* Add retry mechanism when checking if order exists in OrderUpdate task
* Fix Transaction details when payment code is invalid
* Refactor message when unsupported webhook event code is processed
* Add compatability for HTTP Authorisation with PHP in CGI-mode
</changes>
<changes lang="de">
* Update core to version 1.0.7
* Add retry mechanism when checking if order exists in OrderUpdate task
* Fix Transaction details when payment code is invalid
* Refactor message when unsupported webhook event code is processed
* Add compatability for HTTP Authorisation with PHP in CGI-mode
</changes>
</changelog>
<changelog version="4.1.0">
<changes lang="en">
* Pay by link - Offer merchant option to generate Payment link for orders whose payments did not succeed. Payment methods that support Pay by link:
Credit and debit cards
Buy Now Pay Later
3x 4x Oney
Afterpay
Clearpay
Klarna Pay Later
Klarna Pay over time
Ratepay
Cash and ATM payment methods
Multibanco
Direct Debit
ACH Direct Debit
SEPA Direct Debit
BACS Direct Debit
Online payments
BLIK
EPS
giropay
iDEAL
Klarna Pay now
MB WAY
MobilePay
Online banking Finland
Online banking India
Online banking Poland
Online banking Thailand
Sofort (Online bank transfer)
Trustly
Wallets
Apple Pay
Alipay
Bancontact mobile
Google Pay
GCash
MoMo
PayPal
Swish
Vipps
Zip
WeChat Pay
Prepaid and gift cards
Generic gift card
PaySafeCard
Mobile
TWINT
* Recurring payment - Offer customers to pay with recurring payment methods. Payment methods that support Recurring payment:
ACH Direct Debit
Apple Pay
BACS Direct Debit (Great Britain)
GCash (Philippines)
Google Pay
iDEAL (Netherlands)
Klarna Pay later
Klarna Pay over time (only in the US)
Klarna PayNow
SEPA Direct Debit
Sofort
</changes>
<changes lang="de">
* Pay by link - Offer merchant option to generate Payment link for orders whose payments did not succeed. Payment methods that support Pay by link:
Credit and debit cards
Buy Now Pay Later
3x 4x Oney
Afterpay
Clearpay
Klarna Pay Later
Klarna Pay over time
Ratepay
Cash and ATM payment methods
Multibanco
Direct Debit
ACH Direct Debit
SEPA Direct Debit
BACS Direct Debit
Online payments
BLIK
EPS
giropay
iDEAL
Klarna Pay now
MB WAY
MobilePay
Online banking Finland
Online banking India
Online banking Poland
Online banking Thailand
Sofort (Online bank transfer)
Trustly
Wallets
Apple Pay
Alipay
Bancontact mobile
Google Pay
GCash
MoMo
PayPal
Swish
Vipps
Zip
WeChat Pay
Prepaid and gift cards
Generic gift card
PaySafeCard
Mobile
TWINT
* Recurring payment - Offer customers to pay with recurring payment methods. Payment methods that support Recurring payment:
ACH Direct Debit
Apple Pay
BACS Direct Debit (Great Britain)
GCash (Philippines)
Google Pay
iDEAL (Netherlands)
Klarna Pay later
Klarna Pay over time (only in the US)
Klarna PayNow
SEPA Direct Debit
Sofort
</changes>
</changelog>
<changelog version="4.1.1">
<changes lang="en">
* Add support for Alma payment method
</changes>
<changes lang="de">
* Add support for Alma payment method
</changes>
</changelog>
<changelog version="4.1.2">
<changes lang="en">
* Update core to version 1.1.2
* Fix Adyen Recurring API live URL
</changes>
<changes lang="de">
* Update core to version 1.1.2
* Fix Adyen Recurring API live URL
</changes>
</changelog>
<changelog version="4.1.3">
<changes lang="en">
* Update core to version 1.1.4
* Include event codes when registrating webhook
* Fix Webhook test request body
</changes>
<changes lang="de">
* Update core to version 1.1.4
* Include event codes when registrating webhook
* Fix Webhook test request body
</changes>
</changelog>
<changelog version="4.1.4">
<changes lang="en">
* Update core to version 1.1.5
* Change checkout flow for "Pending" result
</changes>
<changes lang="de">
* Update core to version 1.1.5
* Change checkout flow for "Pending" result
</changes>
</changelog>
<changelog version="4.1.5">
<changes lang="en">
* Update core to version 1.1.6
* Update order exist check
</changes>
<changes lang="de">
* Update core to version 1.1.6
* Update order exist check
</changes>
</changelog>
<changelog version="4.1.6">
<changes lang="en">
* Fix displaying original PSP reference on order details page
</changes>
<changes lang="de">
* Fix displaying original PSP reference on order details page
</changes>
</changelog>
<changelog version="4.1.7">
<changes lang="en">
* Add support for language shops
* Wake Task runner when Adyen page is opened
</changes>
<changes lang="de">
* Add support for language shops
* Wake Task runner when Adyen page is opened
</changes>
</changelog>
<changelog version="4.1.8">
<changes lang="en">
* Fix Apple pay payments processing
* Update core version to 1.1.10
</changes>
<changes lang="de">
* Fix Apple pay payments processing
* Update core version to 1.1.10
</changes>
</changelog>
<changelog version="4.1.9">
<changes lang="en">
* Remove 'New' and 'Pending' order status from Order status mapping
* Update core version to 1.1.11
* Fix Adyen button listeners on order details page
</changes>
<changes lang="de">
* Remove 'New' and 'Pending' order status from Order status mapping
* Update core version to 1.1.11
* Fix Adyen button listeners on order details page
</changes>
</changelog>
<changelog version="4.1.10">
<changes lang="en">
* Fix payment method disabling when plugin is uninstalled or payment method is deleted in plugin.
* Update core version to 1.1.12
</changes>
<changes lang="de">
* Fix payment method disabling when plugin is uninstalled or payment method is deleted in plugin.
* Update core version to 1.1.12
</changes>
</changelog>
<changelog version="4.1.11">
<changes lang="en">
* Fix to always use https for the store domain
* Update core version to 1.1.13
* Fix order status transition when failed authorization webhook is received
</changes>
<changes lang="de">
* Fix to always use https for the store domain
* Update core version to 1.1.13
* Fix order status transition when failed authorization webhook is received
</changes>
</changelog>
<changelog version="4.2.0">
<changes lang="en">
* Add support for authorization adjustment
* Add support for click to pay
* Add support for GooglePay and ApplePay guest express checkout
</changes>
<changes lang="de">
* Add support for authorization adjustment
* Add support for click to pay
* Add support for GooglePay and ApplePay guest express checkout
</changes>
</changelog>
</plugin>