-
Notifications
You must be signed in to change notification settings - Fork 6
/
patchset.optional.json
2005 lines (2004 loc) · 117 KB
/
patchset.optional.json
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
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"patchset": {
"activecampaign/abandonedcart": [
{
"description": "Fix ActiveCampaign Abandoned Cart checkout restriction plugin to work with Magesuite Seo Meta Robots integration tests (RKL-639)",
"filename": "vendor/creativestyle/magento-patches/optional/activecampaign/abandonedcart/fix-compatibility-with-magesuite-seo-meta-robots.patch",
"version-constraint": "*"
}
],
"akeneo/api-php-client": [
{
"description": "Add proxy from uri to request header (LOWA-160)",
"filename": "vendor/creativestyle/magento-patches/optional/akeneo/api-php-client/add-proxy-to-request-header.patch",
"version-constraint": "*"
}
],
"akeneo/module-magento2-connector-community": [
{
"description": "Use code as label for attribute and option when label is missing (ZJ-159)",
"filename": "vendor/creativestyle/magento-patches/optional/akeneo/module-magento2-connector-community/when-label-is-missing-use-code-as-label.patch",
"version-constraint": "*"
}
],
"akeneo/magento2-connector-enterprise": [
{
"description": "Skip associate item when identifier is missing (FR-105)",
"filename": "vendor/creativestyle/magento-patches/optional/akeneo/magento2-connector-enterprise/skip-associate-item-with-missing-identifier.patch",
"version-constraint": "*"
},
{
"description": "Adjust file assets download (FR-68)",
"filename": "vendor/creativestyle/magento-patches/optional/akeneo/magento2-connector-enterprise/adjust-file-assets-download.patch",
"version-constraint": "*"
},
{
"description": "Fix missing label for specific locale issue (FR-215)",
"filename": "vendor/creativestyle/magento-patches/optional/akeneo/magento2-connector-enterprise/fix-missing-label-in-locale.patch",
"version-constraint": "<104.3.17"
},
{
"description": "Fix missing label for specific locale issue (FR-487)",
"filename": "vendor/creativestyle/magento-patches/optional/akeneo/magento2-connector-enterprise/fix-missing-label-in-locale-104.3.17.patch",
"version-constraint": ">=104.3.17"
}
],
"twig/twig": [
{
"description": "Einhell deprecated functionality fix for php 8.1",
"filename": "vendor/creativestyle/magento-patches/optional/twig/twig/twig-deprecated-functionality-fix-for-php-81.patch",
"version-constraint": "*"
},
{
"description": "Einhell deprecated functionality fix for twig markup class for php 8.1",
"filename": "vendor/creativestyle/magento-patches/optional/twig/twig/twig-markup-class-deprecated-functionality-fix-for-php-81.patch",
"version-constraint": "*"
}
],
"bluepayment-plugin/module-bluepayment": [
{
"description": "Process order status update correctly (KRA-420)",
"filename": "vendor/creativestyle/magento-patches/optional/bluepayment-plugin/module-bluepayment/process-status-update-correctly.patch",
"version-constraint": "*"
},
{
"description": "Removes fake frame-type payment methods that shows meaningless data (KRA-682).",
"filename": "vendor/creativestyle/magento-patches/optional/bluepayment-plugin/module-bluepayment/removed-prepend-frames.patch",
"version-constraint": "*"
}
],
"consentmanager/cmp": [
{
"description": "Fix cmp_whitelist,xml file.",
"filename": "vendor/creativestyle/magento-patches/optional/consentmanager/cmp/fix-cmp-whitelist-xml-file.patch",
"version-constraint": "*"
}
],
"creativestyle/magesuite-autocomplete": [
{
"description": "Fixing Einhell build test errors",
"filename": "vendor/creativestyle/magento-patches/optional/creativestyle/magesuite-autocomplete/helper-configuration-removing-types-from-methods.patch",
"version-constraint": "*"
}
],
"creativestyle/magesuite-performance-product": [
{
"description": "Set position 0 in main swatch image (FR-275)",
"filename": "vendor/creativestyle/magento-patches/optional/creativestyle/magesuite-performance-product/set-position-0-in-main-swatch-image.patch",
"version-constraint": "*"
}
],
"creativestyle/magesuite-content-constructor-admin": [
{
"description": "Add support for magento widgets for wysiwyg edutor in teaser edit view (FZ-409)",
"filename": "vendor/creativestyle/magento-patches/optional/creativestyle/magesuite-content-constructor-admin/allow-magento-widgets-in-cc-teaser.patch",
"version-constraint": ">=4.12.3"
}
],
"creativestyle/magesuite-google-structured-data": [
{
"description": "Set store before structured data indexing",
"filename": "vendor/creativestyle/magento-patches/optional/creativestyle/magesuite-google-structured-data/set-store-before-structured-data-index.patch",
"version-constraint": ">3.0.0"
}
],
"iways/module-pay-pal-plus": [
{
"description": "Fix invalid object requested in object constructor",
"filename": "vendor/creativestyle/magento-patches/optional/iways/module-pay-pal-plus/iways-paypal-plus-payment-plugin.patch",
"version-constraint": "<=1.3.2"
},
{
"description": "Remove quote collect totals calculation before request",
"filename": "vendor/creativestyle/magento-patches/optional/iways/module-pay-pal-plus/iways-paypal-remove-quote-collect-totals.patch",
"version-constraint": ">=1.3.6"
}
],
"smile/elasticsuite": [
{
"description": "Fix adminSortIndex bug",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/m21-elasticsuite-admin-sort-index-fix.patch",
"version-constraint": "*"
},
{
"description": "Patches queries mapping issue when used together with AheadWorks Customer Groups",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/change-queries-mapping-field-id.patch",
"version-constraint": "*"
},
{
"description": "Remove dependency to whole jquery-ui",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/remove-whole-jquery-ui-dependency.patch",
"version-constraint": "<=2.10.3"
},
{
"description": "Feat: forcing enabling position field in the product attribute form",
"filename": "vendor/creativestyle/magento-patches/optional/smile/module-elasticsuite-swatches/m24-forcing-enabling-position-field.patch",
"version-constraint": ">=2.10.1"
},
{
"description": "Unify synonyms by letter size (IPET-1916)",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/unify-synonyms-by-letter-size.patch",
"version-constraint": ">=2.10.13"
},
{
"description": "Skip reindex of given dimension if index has not been provided and exception was not thrown",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/krg-skip-reindex-in-case-of-failure.patch",
"version-constraint": "*"
},
{
"description": "Added retires in case elasticsearch is returning 429 error.",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/elastisearch-error-429.patch",
"version-constraint": "*"
},
{
"description": "Fixing Einhell elastic suite render range label method compatibility",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/fix-render-range-label-method-compatibility.patch",
"version-constraint": "*"
},
{
"description": "Prevent adding virtual category children queries",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/prevent-adding-virtual-category-children-queries.patch",
"version-constraint": ">=2.10.0"
},
{
"description": "Fix category preview sorting when field includes direction",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/fix-category-preview-sorting.patch",
"version-constraint": ">=2.11.7"
},
{
"description": "Change indices pattern (add microsecond)",
"filename": "vendor/creativestyle/magento-patches/optional/smile/elasticsuite/change-indices-pattern.patch",
"version-constraint": ">=2.11.7"
}
],
"smile/module-elasticsuite-configurable-product": [
{
"description": "Add collection filtering by product type configurable before fetching items.",
"filename": "vendor/creativestyle/magento-patches/optional/smile/module-elasticsuite-configurable-product/add_collection_filtering_by_product_type_configurable.patch",
"version-constraint": ">=2.10.0"
}
],
"smile/module-elasticsuite-shared-catalog": [
{
"description": "Fix sharedCatalog magento method that changed name",
"filename": "vendor/creativestyle/magento-patches/optional/smile/module-elasticsuite-shared-catalog/m24-fix-elasticsuite-shared-catalog-collection-plugin.patch",
"version-constraint": "2.10.1"
}
],
"smile/module-elasticsuite-catalog": [
{
"description": "Allow in elasticsuite to filter less than or equal range price",
"filename": "vendor/creativestyle/magento-patches/optional/smile/module-elasticsuite-catalog/change-query-condition.patch",
"version-constraint": "1.6.3"
}
],
"symfony/http-client": [
{
"description": "Add proxy from request header (LOWA-160)",
"filename": "vendor/creativestyle/magento-patches/optional/symfony/http-client/add-proxy-from-request-header.patch",
"version-constraint": "*"
}
],
"aromicon/module-deepl": [
{
"description": "Inject product to helper",
"filename": "vendor/creativestyle/magento-patches/optional/aromicon/module-deepl/inject-product-variable.patch",
"version-constraint": "*"
}
],
"magento/module-ui": [
{
"description": "Fix limited roles problem in admin panel",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-ui/m22-fix-for-limited-roles-in-admin-panel.patch",
"version-constraint": "101.0.*"
},
{
"description": "Use jquery slideUp instead of jquery-ui blind effect. Patch cannot be essential because theme-cs > 11.2.0 is needed",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-ui/remove-jquery-ui-blind-effect.patch",
"version-constraint": "<2.4.6"
}
],
"magento/module-eav": [
{
"description": "Fix attribute code length from default 30 to 60 - fixed in magento 2.3",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-eav/m22-fix-maximum-length-of-attribute-code.patch",
"version-constraint": "101.0.*"
},
{
"description": "Change destination folder for customer attribute pet_image - Dogma",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-eav/dogma-customer-pet-image-change-destination-module-eav.patch",
"version-constraint": ">=103.0.0"
},
{
"description": "When option label is the same as exiting option id the new option will not be added and this patch fixes it",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-eav/kruger-add-option-lablel-same-as-existing-id.patch",
"version-constraint": "*"
}
],
"magento/module-checkout": [
{
"description": "Generate session ID only if connection is unsecure - fixed in magento 2.2.5",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout/m22-fix-checkout-session-regenerate.patch",
"version-constraint": "100.2.*"
},
{
"description": "Fix for underscore in carrier code (LED-1814)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout/m22-fix-carrier-underscore-issue.patch",
"version-constraint": "100.2.*"
},
{
"description": "Fix redirect to home after removing a product from cart (HAAR-1812)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout/m22-fix-home-redirect-after-remove-from-cart.patch",
"version-constraint": ">=100.2.2"
},
{
"description": "Fix displaying error message about no active cart after placing order",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout/m245-fix-customer-has-no-active-cart.patch",
"version-constraint": ">=100.4.5`"
},
{
"description": "Fix for cart model, reload quote from a session if the cart has been replaced. (IPET-2176)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout/fix-for-cart-if-quote-has-been-replaced.patch",
"version-constraint": ">=100.4.5"
},
{
"description": "Fix for infinite loop detected in model session if getTotalsCollectedFlag is not set.",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout/fix-for-infinite-loop-in-model-session-for-totals-collected-flag-statement-check.patch",
"version-constraint": "*"
}
],
"magento/module-checkout-staging": [
{
"description": "Fix bug in flush_preview_quotas cron caused by amazon pay module which has amazon_quote table with ambiguous entity_id column",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout-staging/m24-fix-amazaon-pay-conflict-with-flush-preview-quotas-cron.patch",
"version-constraint": "^100.4.1"
},
{
"description": "Fixes issue with wrongly converted addresses with extension_attributes",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout-staging/fix-extension-attributes-conversion-for-checkout-staging.patch",
"version-constraint": "^100.4.2"
},
{
"description": "Fixes for wrong reindexPool indexers order",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout-staging/m24-fix-for-wrong-indexer-order.patch",
"version-constraint": "^100.4.3"
},
{
"description": "[DOG-1187] Fixes issue with saving new shipping address when it is the same like billing address",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-checkout-staging/m24-fix-saving-new-shipping-address.patch",
"version-constraint": "^100.4.2"
}
],
"magento/framework": [
{
"description": "Fix rounding issue in locale de_CH",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m22-fix-de_CH-rounding-issue.patch",
"version-constraint": "^101.0.7"
},
{
"description": "Fix missing page layout (HAAR-1308)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m22-fix-missing-page-layout.patch",
"version-constraint": "101.0.*"
},
{
"description": "Patch for DataObjectHelper AddressExtension type error",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m22-data-object-helper.patch",
"version-constraint": "*"
},
{
"description": "Patch to allow add huge xml elements without throwing error",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m233-fix-for-huge-xml-elements.patch",
"version-constraint": "<=102.0.4"
},
{
"description": "Patch to fix product image cache generating wrong hashes",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m233-fix-product-image-cache-hash-1.patch",
"version-constraint": "102.0.3"
},
{
"description": "Disable cookie size error message",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m24-disable-cookie-size-error-message.patch",
"version-constraint": ">=103.0.3"
},
{
"description": "Fix false negative output of setup:db:status command",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m243-fix-setup-db-status-false-negative.patch",
"version-constraint": ">=103.0.3"
},
{
"description": "Allow dot in query order's field validation process",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m24-allow-dot-in-validating-process.patch",
"version-constraint": ">=103.0.3"
},
{
"description": "Change the replacement for umlaut signs in URL key",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/change-replacement-for-umlaut-signs-in-url-key.patch",
"version-constraint": ">=2.0.0"
},
{
"description": "Fix custom attributes values (ROT-1247)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/fix-custom-attributes-value.patch",
"version-constraint": ">=103.0.5-p2"
},
{
"description": "Einhell deprecated functionality fix for db adapter pdo mysql class for php 8.1",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/db-adapter-pdo-mysql-class-deprecated-functionality-fix-for-php-81.patch",
"version-constraint": "*"
},
{
"description": "Increase max cookie number",
"filename": "vendor/creativestyle/magento-patches/optional/magento/framework/m24-increase-max-cookie-number.patch",
"version-constraint": "*"
}
],
"magento/module-bundle": [
{
"description": "Disable checking stock during price indexing for bundle products with dynamic price (KRG-1841)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m242-disable-checking-stock-during-price-indexing.patch",
"version-constraint": ">=101.0.2"
},
{
"description": "Allow to add multi selections with qty higher than 1",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m24-bundle-allow-multi-selections-with-qty.patch",
"version-constraint": ">=101.0.2, <103.0.0"
},
{
"description": "Allow to add multi selections with qty higher than 1",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m245-bundle-allow-multi-selections-with-qty.patch",
"version-constraint": ">=101.0.5"
},
{
"description": "Allow to translate attribute option label in line 29 of Magento_Bundle::frontend/order/items/renderer.phtml template ",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m24-catalog-bundle-order-items-render-translation.patch",
"version-constraint": ">=101.0.3"
},
{
"description": "Skip check for visibility when checking if product can be displayed in bundle product (FR-200)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m246-skip-check-for-visibility.patch",
"version-constraint": ">=101.0.6"
},
{
"description": "BundleOptions price: always return float (issue when all bundle options have price 0) (FR-267)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m246-fix-bundle-option-amount-always-return-float.patch",
"version-constraint": ">=101.0.6"
},
{
"description": "Remove bundle options prices from PDP (IPET-2568)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m24-remove-bundle-options-prices-from-pdp.patch",
"version-constraint": ">=101.0.5,<101.0.7"
},
{
"description": "Remove bundle options prices from PDP (IPET-2568)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m247-remove-bundle-options-prices-from-pdp.patch",
"version-constraint": ">=101.0.7"
},
{
"description": "Remove quantity filter for bundle price list provider to include prices of all bundle options even if their qty is not enough for purchase (TOYS-1019)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-bundle/m24-options-price-render-remove-quatnity-filter.patch",
"version-constraint": ">=101.0.3"
}
],
"magento/module-customer": [
{
"description": "Fix order of top navigation items so they can be sorted using sortOrder directive in XML update",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer/m22-fix-order-of-top-navigation-links.patch",
"version-constraint": "101.0.*"
},
{
"description": "Change destination folder for customer attribute pet_image - Dogma",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer/dogma-customer-pet-image-change-destination-module-customer.patch",
"version-constraint": ">=102.0.5"
},
{
"description": "Change pattern for customer name validation",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer/update-pattern-for-customer-name-validation.patch",
"version-constraint": ">=103.0.3"
},
{
"description": "Adds store scope to referrer url if it exists in base url to prevent redirecting to wrong store after login.",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer/fix-customer-redirect-after-login-with-store-scope.patch",
"version-constraint": ">=103.0.5"
},
{
"description": "Fix referrer url after customer login.",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer/fix-customer-redirect-after-login.patch",
"version-constraint": ">=103.0.5"
},
{
"description": "Fix email notification getWebsiteStoreId method return type",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer/fix-email-notification-get-website-store-id-return-type.patch",
"version-constraint": "103.0.4"
}
],
"magento/module-customer-custom-attributes": [
{
"description": "Change destination folder for customer attribute pet_image - Dogma",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer-custom-attributes/dogma-customer-pet-image-change-destination-module-customer-custom-attributes.patch",
"version-constraint": ">=100.4.2"
},
{
"description": "Patch for skipping address_type when converting address to quote",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer-custom-attributes/gnp-fix-for-address-type-override.patch",
"version-constraint": "*"
},
{
"description": "Patch for issue with multiselect attribute can not be default on store view",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-customer-custom-attributes/fix-issue-with-saving-attributes-on-store-view-use-default.patch",
"version-constraint": ">=100.4.5-p1"
}
],
"magento/module-quote": [
{
"description": "Add company field to rate request in quote module",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-quote/m22-add-company-to-rate-request.patch",
"version-constraint": "101.0.*"
},
{
"description": "Correct error messages so they can be easily translated",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-quote/RK-1556-missing-giftcard-translations.patch",
"version-constraint": ">=101.2.6-p1"
},
{
"description": "Fix the error with mysql Integrity constraint violation for quote_item_option table",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-quote/fix-error-with-quote-item-option-constraint-DOG-1931.patch",
"version-constraint": ">=101.2.7-p1"
}
],
"magento/module-sales": [
{
"description": "Fix invalid invoice qty when bundle products are present in the order",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-sales/m23-fix-invalid-invoice-qty-for-bundles.patch",
"version-constraint": "102.0.2"
},
{
"description": "Save address in address book opt-in while creating order from admin panel",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-sales/save-address-admin-opt-in.patch",
"version-constraint": "^102.0.2"
},
{
"description": "Wallee pending refund - redirect to order view page (IPET-985)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-sales/wallee-pending-refund-redirect-to-order-page.patch",
"version-constraint": ">=103.0.3"
},
{
"description": "Fix for additional fees tax added twice in creditmemo (IPET-1184, IPET-1606)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-sales/fix-creditmemo-additional-fees-tax-added-twice.patch",
"version-constraint": ">=103.0.3"
},
{
"description": "Fix function Order getItemByID returns null (DOG-1600)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-sales/fix-order-get-item-by-id-function.patch",
"version-constraint": ">=103.0.5-p1"
},
{
"description": "Change reorder class properties and methods visibility",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-sales/change_reorder_class_properties_and_methods_visibility.patch",
"version-constraint": ">=103.0.5-p5,<=103.0.6"
},
{
"description": "Change error to info message for the last order item product does not exist",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-sales/fix-error-message-last-order-item-product-not-exists.patch",
"version-constraint": ">=103.0.6-p6"
},
{
"description": "Fix isVisibleCustomerPrefix method in Order model, when config is set to 'No' null value is in dabatase. (RKL-597)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-sales/fix-is-visible-customer-prefix-method.patch",
"version-constraint": ">=103.0.6-p6"
}
],
"magento/module-shipping": [
{
"description": "Ticked checkbox `Email Copy of Shipment` while creating shpiment manually",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-shipping/shipment-email-checkbox-ticked-by-default.patch",
"version-constraint": "*"
}
],
"makewebbetter/hubspot-magento-2-integration": [
{
"description": "Use Laminas class instead of Zend",
"filename": "vendor/creativestyle/magento-patches/optional/makewebbetter/hubspot-magento-2-integration/use-laminas-class-instead-of-zend.patch",
"version-constraint": "*"
}
],
"mirasvit/module-rewards": [
{
"description": "Fix refund proportion calculation (IPET-825) and skip grandtotal adjustments (IPET-1184 + IPET-1206)",
"filename": "vendor/creativestyle/magento-patches/optional/mirasvit/module-rewards/fix-refund-proportion-calculation-and-skip-grandtotal-adjustments.patch",
"version-constraint": "*"
},
{
"description": "Fix discount amount calculation (IPET-1380 + IPET-1884) and adjust reward point name in discount description (IPET-1616)",
"filename": "vendor/creativestyle/magento-patches/optional/mirasvit/module-rewards/fix-reward-point-discount-amount-and-description.patch",
"version-constraint": "*"
},
{
"description": "Fix negative reward total (it can happen if discount is higher than subtotal)",
"filename": "vendor/creativestyle/magento-patches/optional/mirasvit/module-rewards/fix-minimum-reward-totals.patch",
"version-constraint": "*"
},
{
"description": "Don't substract discount from price because it generates problems if coupon code is added",
"filename": "vendor/creativestyle/magento-patches/optional/mirasvit/module-rewards/do-not-substract-discount-from-item-price.patch",
"version-constraint": "*"
},
{
"description": "Fix compatibility with test from magesuite-free-gift",
"filename": "vendor/creativestyle/magento-patches/optional/mirasvit/module-rewards/fix-compatibility-with-free-gift.patch",
"version-constraint": "*"
},
{
"description": "Fix for the issue reported by error: Exception message: Infinite loop detected (IPET-2176)",
"filename": "vendor/creativestyle/magento-patches/optional/mirasvit/module-rewards/fix-infinitive-loop-on-getting-quote.patch",
"version-constraint": ">=3.0.57"
}
],
"mirasvit/module-report": [
{
"description": "Use columns value instead of expressions (IPET-1733)",
"filename": "vendor/creativestyle/magento-patches/optional/mirasvit/module-report/use-columns-value-instead-of-expresions.patch"
}
],
"mirasvit/module-report-api": [
{
"description": "Don't skip filter fields for tmp tables (IPET-2074)",
"filename": "vendor/creativestyle/magento-patches/optional/mirasvit/module-report-api/do-not-skip-filter-fields-for-tmp-tables.patch",
"version-constraint": ">=1.0.60"
}
],
"amasty/adminactionslog": [
{
"description": "Fix performance issue by removing pagination on pages were amount of logs is very low",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/adminactionslog/fix-performance-issue-when-loading-logs-on-other-pages.patch",
"version-constraint": "*"
},
{
"description": "Optimize Admin Session Deletion Process in ActiveSessionManager (P2G-2312)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/adminactionslog/fix-performance-issue-use-collection-instead-of-getting-session-object-by-repository.patch",
"version-constraint": "<2.3.0"
},
{
"description": "Optimize Admin Session Deletion Process in ActiveSessionManager (P2G-2415)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/adminactionslog/fix-performance-issue-use-collection-instead-of-getting-session-object-by-repository-v2.3.0.patch",
"version-constraint": ">=2.3.0"
}
],
"amasty/module-xcoupon": [
{
"description": "Fix for adding the same coupon twice in the cart (HAAR-1333)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/module-xcoupon/m22-amasty-fix-adding-coupon-twice-in-cart.patch",
"version-constraint": "*"
},
{
"description": "Fixes issue with not applying coupon correctly after visiting empty cart (HAAR-2127)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/module-xcoupon/amasty-xcoupon-fix-for-empty-cart.patch",
"version-constraint": "^1.1.0"
}
],
"amasty/label": [
{
"description": "Add extra field image_2x to join (zumstein only)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/label/add-image2x-field-to-join-zumstein-only.patch",
"version-constraint": ">=2.3.8"
}
],
"amasty/promo": [
{
"description": "Fix from temporary version released for haarshop",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/promo/m22-amasty-promo-fix-popup-js.patch",
"version-constraint": "2.2.*"
},
{
"description": "Temporary fix for Amasty/Promo ^2.6.0 regarding slicker issue",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/promo/amasty-promo-popup-slicker-fix.patch",
"version-constraint": "^2.6.0"
},
{
"description": "Remove Amasty_BannersLite from dependency (patch from Amasty)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/promo/amasty-promo-remove-banners-lite.patch",
"version-constraint": "^2.6.0"
},
{
"description": "Fix redirect to home after adding amasty free gift (HAAR-1837)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/promo/m22-fix-home-redirect-after-adding-amasty-gift.patch",
"version-constraint": "^2.7.0"
},
{
"description": "Fix endless loop when quote is being saved on client login (HAAR-2003)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/promo/amasty-fix-loop-on-quote-save.patch",
"version-constraint": "^2.8.0"
},
{
"description": "Display discounted amount with tax for free gits (MIC-645)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/promo/fix-display-discounted-amount-with-tax-for-free-gifts.patch",
"version-constraint": ">=2.12.1"
}
],
"amasty/module-banners-lite": [
{
"description": "Remove cleaning product cache in Amasty_BannersLite",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/module-banners-lite/amasty-banners-lite-remove-clean-product-cache.patch",
"version-constraint": "^1.0.8"
}
],
"amasty/module-faq-product-questions": [
{
"description": "Add prefix to question url in sitemap (ipet only)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/module-faq-product-questions/ipet-fix-question-url-in-sitemap.patch",
"version-constraint": ">=2.11.3"
},
{
"description": "Allow to use hyperlink in the email template",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/module-faq-product-questions/allow-use-hyperlink-in-the-email-template.patch",
"version-constraint": ">=2.12.2"
}
],
"amasty/paction": [
{
"description": "Save category in default scope (IPET-2359)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/paction/save-category-in-default-scope.patch",
"version-constraint": "*"
}
],
"amasty/pgrid": [
{
"description": "Disable set url_path on inline url_key editor to fix an error with duplicated URL during product save",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/pgrid/amasty-pgrid-disable-set-url_path-for-product.patch",
"version-constraint": "^1.9.2"
},
{
"description": "Fix an error with duplicated insert to amasty_pgrid_qty_sold after product save",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/pgrid/amasty-pgrid-fix-error-with-duplicated-insert.patch",
"version-constraint": "^1.9.2"
},
{
"description": "Fix for Amasty filter 'Availability' on product grid (IPET-1069]",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/pgrid/amasty-pgrid-msi-availability.patch",
"version-constraint": "^1.9.2"
},
{
"description": "Add $customFieldResolvers to provide ability to add custom resolver for certain fields. (IPET-2512)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/pgrid/amasty-pgrid-add-custom-field-resolvers.patch",
"version-constraint": "^1.9.2"
}
],
"amasty/shippingtablerates": [
{
"description": "Fix an error during creating shipping address object",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/shippingtablerates/amasty-shippingtablerates-fix-create-address-object.patch",
"version-constraint": "1.10.2"
},
{
"description": "Fix infinite loop in checkout",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/shippingtablerates/fix-infinite-loop-in-checkout.patch",
"version-constraint": ">=1.10.6"
},
{
"description": "Disallow adding discount tax compensation (IPET-1404) + fix bundle total calculation for bundles with static SKU (IPET-2602)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/shippingtablerates/disallow-adding-discount-tax-compensation-and-fix-static-sku-bundle-totals.patch",
"version-constraint": ">=1.10.6"
}
],
"amasty/xnotif": [
{
"description": "Fix setting has_stock_status_filter flag without checking for show_out_of_stock config",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/xnotif/amasty-xnotif-disable-stock-filter-if-outofstock-products-not-visible.patch",
"version-constraint": ">=1.11.12,<=1.14.2"
},
{
"description": "Fix setting has_stock_status_filter flag without checking for show_out_of_stock config (for version 1.14.3)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/xnotif/amasty-xnotif-1.14.3-disable-stock-filter-if-outofstock-products-not-visible.patch",
"version-constraint": ">=1.14.3"
}
],
"amasty/module-advanced-permissions": [
{
"description": "Without this patch tests are failing, because '$userId = $this->_authSession->getUser()' sometime returns null",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/module-advanced-permissions/prevent-access-to-null-like-to-object.patch",
"version-constraint": ">=1.4.31, <1.5.0"
},
{
"description": "Fix for AbstractEntity plugin empty constructor argument ($actionNamesToIgnoreRestrictAttributes)",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/module-advanced-permissions/abstract-entity-plugin-empty-method-argument-fix.patch",
"version-constraint": "*"
}
],
"amasty/module-advanced-permissions": [
{
"description": "Without this patch tests are failing, because '$this->getCurrentUser->execute()' sometime returns null",
"filename": "vendor/creativestyle/magento-patches/optional/amasty/module-advanced-permissions/prevent-access-to-null-like-to-object-v1.5.0.patch",
"version-constraint": ">=1.5.0"
}
],
"magento/module-payment": [
{
"description": "Fix groups issue in getPaymentMethodList method - fixed in magento 2.2.6",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-payment/m22-fix-getPaymentMethodList-method.patch",
"version-constraint": "100.2.*"
}
],
"amzn/amazon-pay-module": [
{
"description": "Fix wrong type of amazon_order_reference_id",
"filename": "vendor/creativestyle/magento-patches/optional/amzn/amazon-pay-module/m22-fix-amazon-pay-extension-attribute.patch",
"version-constraint": "*"
},
{
"description": "Fix missing extension attribute amazonOrderReferenceId",
"filename": "vendor/creativestyle/magento-patches/optional/amzn/amazon-pay-module/fix-amazon-pay-missing-extension-attribute.patch",
"version-constraint": "<3.6.0"
}
],
"magento/module-offline-shipping": [
{
"description": "Address based free shipping",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-offline-shipping/m22-address-based-free-shipping.patch",
"version-constraint": "*"
},
{
"description": "Show free shipping when rule is added to whole cart",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-offline-shipping/show-free-shipping-when-rule-is-added-to-whole-cart.patch",
"version-constraint": "*"
}
],
"magento/module-paypal": [
{
"description": "Fix for duplicate Order Confirmation Emails for PayPal Express checkout order (<=2.2.5)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-paypal/m225minus-fix-paypal-duplicated-confirmation.patch",
"version-constraint": "~100.2.0,<=100.2.5"
},
{
"description": "Redirect to checkout/cart if 'skip review' option is enabled and there is an error (KRA-246)",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-paypal/redirect-to-cart-page.patch",
"version-constraint": ">=101.0.6"
}
],
"magento/module-newsletter": [
{
"description": "Prevents multiple emails sending when accessing confirmation url.",
"filename": "vendor/creativestyle/magento-patches/optional/magento/module-newsletter/prevent-multiple-success-emails-sending.patch",
"version-constraint": "*"
}
],
"mageworx/seo-suite-ultimate": [
{
"description": "Fix area code is already set error (LED-1901)",
"filename": "vendor/creativestyle/magento-patches/optional/mageworx/seo-suite-ultimate/m22-mageworx-fix-xmlsitemap-area-code-error.patch",
"version-constraint": "*"
}
],
"mageworx/module-xmlsitemap": [
{
"description": "Fix fatal error during sitemap generation process (LEDS)",
"filename": "vendor/creativestyle/magento-patches/optional/mageworx/module-xmlsitemap/mageworx-xmlsitemap-fix-generation.patch",
"version-constraint": ">=3.3.0,<3.3.2"
}
],
"mageworx/module-seomarkup": [
{
"description": "Fix product reviews on category page (LEDS)",
"filename": "vendor/creativestyle/magento-patches/optional/mageworx/module-seomarkup/mageworx-seomarkup-fix-product-review.patch",
"version-constraint": ">=2.6.1"
}
],
"magmodules/magento2-digitec-galaxus": [
{
"description": "Fix adding products to cart, MSI issue (iPet)",
"filename": "vendor/creativestyle/magento-patches/optional/magmodules/magento2-digitec-galaxus/magmodules-digitecgalaxus-fix-adding-to-cart-msi.patch",
"version-constraint": "<1.9.0"
},
{
"description": "Fix adding products to cart, MSI issue (iPet-2804)",
"filename": "vendor/creativestyle/magento-patches/optional/magmodules/magento2-digitec-galaxus/magmodules-digitecgalaxus-19-fix-adding-to-cart-msi.patch",
"version-constraint": ">=1.9.0"
},
{
"description": "Return first category path (iPet)",
"filename": "vendor/creativestyle/magento-patches/optional/magmodules/magento2-digitec-galaxus/magmodules-digitecgalaxus-return-first-category-path.patch",
"version-constraint": "*"
},
{
"description": "Set different status for galaxus orders (iPet)",
"filename": "vendor/creativestyle/magento-patches/optional/magmodules/magento2-digitec-galaxus/set-different-status-for-galaxus-orders.patch",
"version-constraint": "*"
}
],
"magmodules/magento2-channable": [
{
"description": "Fix compatibility with integration tests for magesuite-gdpr",
"filename": "vendor/creativestyle/magento-patches/optional/magmodules/magento2-channable/channable-magesuite-gdpr-tests-fix.patch",
"version-constraint": "*"
},
{
"description": "Remove 'unsigned' from transaction_fee column in quote table added by the extension",
"filename": "vendor/creativestyle/magento-patches/optional/magmodules/magento2-channable/channable_transaction_fee_column_fix.patch",
"version-constraint": "*"
}
],
"wallee/magento-2": [
{
"description": "Temporary patch prepared by Computop to fix their wallee payment module (1.0.36)",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/m22-wallee-payment.patch",
"version-optional": "1.0.36"
},
{
"description": "Fix long loading of payment methods in checkout, add cache for possiblePaymentMethodCache",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/wallee-magento-2-fix-long-loading-payment-methods.patch",
"version-constraint": ">=1.1.3,<1.3.20"
},
{
"description": "Fix synchronize payment method",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/fix-synchronize-payment-method.patch",
"version-constraint": ">=1.1.3,<1.1.6"
},
{
"description": "Add custom field to wallee payment methods",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/ipet-wallee-methods-custom-fields.patch",
"version-constraint": ">=1.1.3"
},
{
"description": "Process shipping amount and payment fee correctly in wallee refund (IPET-1184 + IPET-1206 + IPET-1269)",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/process-shipping-amount-and-payment-fee-correctly-in-wallee-refund.patch",
"version-constraint": ">=1.1.3"
},
{
"description": "Replace new line character with space in address street",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/replace-new-line-with-space-in-street.patch",
"version-constraint": ">=1.1.3"
},
{
"description": "Use the highest product tax class id as shipping tax class id",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/use-highest-product-tax-class-as-shipping-tax-class.patch",
"version-constraint": ">=1.1.3"
},
{
"description": "Fix redirect when logged out customer trying download invoice",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/fix-download-invoice-redirect-logged-out-customer.patch",
"version-constraint": ">=1.1.3"
},
{
"description": "Temporary patch added for log to file failed validation in controller for success transaction (IPET-1392)",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/log-validation-problems-after-success-transaction.patch",
"version-constraint": ">=1.1.3"
},
{
"description": "Fix for remove saved payment token in admin panel (IPET-954)",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/fix-remove-payment-tokens-in-admin.patch",
"version-constraint": ">=1.1.3"
},
{
"description": "Fix issue with compare rounded amounts (IPET-1832)",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/fix_issue_with_compare_rounded_amounts.patch",
"version-constraint": ">=1.3.5"
},
{
"description": "Wait for Wallee request before validate checkoutSession (IPET-1930)",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/wait-for-wallee-request-before-success-page.patch",
"version-constraint": ">=1.3.20,<2.1.5"
},
{
"description": "Wait for Wallee request before validate checkoutSession (IPET-1930)",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/w2-wait-for-wallee-request-before-success-page.patch",
"version-constraint": ">=2.1.5"
},
{
"description": "fix: [HAAR-3509] Save transaction data to virtual quote",
"filename": "vendor/creativestyle/magento-patches/optional/wallee/magento-2/HAAR-3509-fix-save-transaction-data-to-virtual-quote.patch",
"version-constraint": ">=2.1.13"
}
],
"aheadworks/module-advanced-reports": [
{
"description": "Change of Order Date format on 'Sales Detailed' grid from 'Aug 4, 2023 1:09:22 PM' format to '2023-08-04 13:09:22' format according to [HAKA-1830].",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-advanced-reports/view/adminhtml/ui_component/update_order_date_format_of_SalesDetailedReport.patch",
"version-constraint": "2.11.4"
}
],
"aheadworks/module-giftcard": [
{
"description": "Temporary patch prepared by Computop to fix their wallee payment module (1.0.36)",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-giftcard/m22-wallee-aw-giftcard.patch",
"version-constraint": "1.2.3"
},
{
"description": "Fix for issue with notification about invalid giftcards. (prepared by aheadworks)",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-giftcard/aheadworks-fix-invalid-giftcard-notification.patch",
"version-constraint": "^1.2.9"
},
{
"description": "Fix problem with this data patch never finish when lots of gift cards are present in the database",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-giftcard/use-update-query-for-UpdateGiftCardStoreId-data-patch.patch",
"version-constraint": "^1.5.1"
},
{
"description": "Temporary patch prepared by Computop to fix their wallee payment module (1.0.36) [HAAR-3988]",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-giftcard/m22-wallee-aw-giftcard.patch-fix-171.patch",
"version-constraint": "^1.7.1"
},
{
"description": "fix: [HAAR-4300] Fix null given on foreach when getting giftcard codes from order",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-giftcard/HAAR-4300-fix-get-giftcard-codes-on-creditmemo.patch",
"version-constraint": "1.8.1"
},
{
"description": "fix: [HAAR-4299] Fix null given on foreach when getting quote items",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-giftcard/HAAR-4299-fix-quote-get-items-null.patch",
"version-constraint": "1.8.1"
},
{
"description": "fix: [HAAR-4463] fix CO2 not covered with giftcard",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-giftcard/HAAR-4463-cover-co2-with-giftcard-fix.patch",
"version-constraint": "^1.8.1"
}
],
"aheadworks/module-customer-group-catalog-permissions": [
{
"description": "Add support for elasticsuite",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-customer-group-catalog-permissions/add-handling-of-smile-elasticsuite-for-aheadworks-module-for-customer-groups.patch",
"version-constraint": "*"
},
{
"description": "Prevent from removing is_salable attribtue from products loaded by collection",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-customer-group-catalog-permissions/do_not_remove_is_salable_from_product_collection_items.patch",
"version-constraint": "*"
}
],
"aheadworks/module-automatic-related-products": [
{
"description": "Remove constraints for table aw_autorelated_wvtav_index.",
"filename": "vendor/creativestyle/magento-patches/optional/aheadworks/module-automatic-related-products/remove-constraints-for-table-aw_autorelated_wvtav_index.patch",
"version-constraint": "*"
}
],
"emartech/emarsys-magento2-extension": [
{
"description": "Patch to fix constructor which was causing di:compile method failure",
"filename": "vendor/creativestyle/magento-patches/optional/emartech/emarsys-magento2-extension/m23-emarsys-fixed-inherited-constructor.patch",
"version-constraint": "1.3.0"
},
{
"description": "Patch removes empty values from customers and customers addresses to avoid overriding data in Emarsys contacts database",
"filename": "vendor/creativestyle/magento-patches/optional/emartech/emarsys-magento2-extension/m24-emarsys-skip-sending-customers-null-values.patch",
"version-constraint": "*"
},
{
"description": "Patch removes empty values from customers and customers addresses to avoid overriding data in Emarsys contacts database",
"filename": "vendor/creativestyle/magento-patches/optional/emartech/dont-send-null-customer-values.patch",
"version-constraint": "*"
},
{
"description": "Patch for disabling contacts synchro",
"filename": "vendor/creativestyle/magento-patches/optional/emartech/disable-contacts-sync.patch",
"version-constraint": "*"
},
{
"description": "Patch fet multistore support",
"filename": "vendor/creativestyle/magento-patches/optional/emartech/emarsys-magento2-extension/multiwebsite-support-patch-245.patch",
"version-constraint": "*"
}
],
"aheadworks/module-blog": [