-
Notifications
You must be signed in to change notification settings - Fork 59
/
support-patches.json
13275 lines (13275 loc) · 436 KB
/
support-patches.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
{
"AC-13283": {
"categories": [
"GraphQL"
],
"title": "Revert PlaceOrder backwards incompatible changes included in 2.4.6-p8.",
"packages": {
"magento/magento2-base": {
"2.4.6-p8": {
"file": "os/AC-13283_2.4.6-p8.patch"
}
}
}
},
"B2B-2674": {
"categories": [
"Performance",
"GraphQL"
],
"title": "Add caching capability to the customAttributeMetadata GraphQL query",
"packages": {
"magento/magento2-base": {
">=2.4.4 <2.4.7": {
"file": "os/B2B-2674_2.4.6.patch"
}
}
}
},
"B2B-2598": {
"categories": [
"Performance",
"GraphQL"
],
"title": "Add caching capability to the availableStores, countries, country, currency, and storeConfig GraphQL queries",
"packages": {
"magento/magento2-base": {
">=2.4.4 <2.4.7": {
"file": "os/B2B-2598__add_caching_capability_to_GraphQL_queries__2.4.6.patch"
}
}
}
},
"BUNDLE-2833": {
"categories": [
"Price/Tax",
"Shipping"
],
"title": "Fixes issue where Vertex-calculated tax wasn't considered when determining free shipping",
"packages": {
"vertex/module-tax": {
">=3.4.0 <3.5.0 || >=4.0.0 <4.2.0": {
"file": "os/BUNDLE-2833__Allows_Vertex_calculated_tax_to_be_included_in_free_shipping.patch"
}
}
}
},
"BUNDLE-3375": {
"categories": [
"Payments"
],
"title": "The fix adds all the necessary fields to fulfill the 3DS VISA mandate requirements when using Braintree as a payment gateway.",
"packages": {
"paypal/module-braintree-core": {
"4.3.0": {
"file": "os/BUNDLE-3375__braintree_3ds_collectDeviceData_ipAddress_2.4.4-p1-p2-p3-p4.patch"
},
">=4.3.0-p1 <4.3.0-p10": {
"file": "os/BUNDLE-3375__braintree_3ds_collectDeviceData_ipAddress_2.4.4-p5-p6-p7-p8-p9-p10.patch"
},
">=4.4.0 <4.4.0-p2": {
"file": "os/BUNDLE-3375__braintree_3ds_collectDeviceData_ipAddress_2.4.5-p1-p2-p3.patch"
},
">=4.4.0-p2 <4.4.0-p9": {
"file": "os/BUNDLE-3375__braintree_3ds_collectDeviceData_ipAddress_2.4.5-p4-p5-p6-p7-p8-p9.patch"
},
"4.5.0": {
"file": "os/BUNDLE-3375__braintree_3ds_collectDeviceData_ipAddress_2.4.6-p1.patch"
},
">4.5.0 <4.5.0-p7": {
"file": "os/BUNDLE-3375__braintree_3ds_collectDeviceData_ipAddress_2.4.6-p2-p3-p4-p5-p6-p7.patch"
},
">=4.6.1 <4.6.1-p2": {
"file": "os/BUNDLE-3375__braintree_3ds_collectDeviceData_ipAddress_2.4.7-p1-p2.patch"
}
}
}
},
"ACSD-59280": {
"categories": [
"Other"
],
"title": "Fixes the error \"Call to undefined method ReflectionUnionType::getName()\" happening when installing 2.4.4-pX versions.",
"packages": {
"magento/magento2-base": {
">=2.4.4 <2.4.5": {
"file": "os/ACSD-59280_2.4.4-p6.patch",
"require": [
"ACSD-55031"
]
}
}
}
},
"MDVA-25602": {
"categories": [
"Payments"
],
"title": "Fixes issue with PayPal Payflow Pro payment method and treating cookies as SameSite=Lax by default in the Chrome 80 browser and API response redirect to customer login page",
"packages": {
"magento/magento2-base": {
"2.3.0": {
"file": "os/MDVA-25602_2.3.0.patch"
},
">=2.3.1 <2.3.2": {
"file": "os/MDVA-25602_2.3.1.patch"
},
">=2.3.2 <2.3.3": {
"file": "os/MDVA-25602_2.3.2.patch"
},
">=2.3.3 <2.3.5": {
"file": "os/MDVA-25602_2.3.4.patch"
}
},
"magento/magento2-ee-base": {
">=2.3.0 <2.3.5": {
"file": "commerce/MDVA-25602_2.3.4.patch"
}
}
}
},
"MDVA-30052": {
"categories": [
"Performance"
],
"title": "Fixes the issue with private content (local storage) not being populated correctly, which resulted in performance problems.",
"packages": {
"magento/magento2-base": {
">=2.3.2-p2 <2.3.5": {
"file": "os/MDVA-30052_2.3.4-p2.patch"
}
}
}
},
"MDVA-26694": {
"categories": [
"Catalog/Product"
],
"title": "Fixes the issue with product and catalog caches expiring daily, though being scheduled to expire differently.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.3.6 || >=2.4.0 <2.4.1": {
"file": "os/MDVA-26694_2.3.1.patch",
"replaced-with": "MDVA-26694-V2"
}
}
}
},
"MDVA-26694-V2": {
"categories": [
"Catalog/Product"
],
"title": "Fixes the issue with product and catalog caches expiring daily, though being scheduled to expire differently.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.3.6 || >=2.4.0 <2.4.1": {
"file": "os/MDVA-26694_2.3.1_v2.patch"
},
">=2.3.6 <=2.3.7-p1 || >=2.4.1 <2.4.4": {
"file": "os/MDVA-40045_2.3.6-p1.patch"
}
}
}
},
"MDVA-30131": {
"categories": [
"Catalog Search"
],
"title": "Fixes the issue with layered navigation, where the 'No' value for boolean type product attributes was not included in layered navigation if Elasticsearch was used as a search engine.",
"packages": {
"magento/magento2-base": {
">=2.3.4 <2.3.6 || 2.4.0": {
"file": "os/MDVA-30131_2.3.4.patch"
},
">=2.3.3 <2.3.4": {
"file": "os/MDVA-30841_2.3.3.patch"
}
}
}
},
"MDVA-27825": {
"categories": [
"Performance",
"Import/Export"
],
"title": "Fixes the issue where exporting of big amounts of data failed because of memory leak.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.4.1": {
"file": "os/MDVA-27825_2.3.3.patch",
"replaced-with": "MDVA-34879"
}
}
}
},
"MDVA-29085": {
"categories": [
"B2B",
"Emails"
],
"title": "Fixes the B2B issue where no required new company emails are sent out if a company is created by API.",
"packages": {
"magento/magento2-b2b-base": {
">=1.1.0 <=1.1.5-p1": {
"file": "commerce/MDVA-29085_2.3.5-p1.patch"
}
}
}
},
"MDVA-29835": {
"categories": [
"Order/Checkout"
],
"title": "Fixes the issue where gift card orders contained two codes instead one.",
"packages": {
"magento/magento2-ee-base": {
">2.3.1 <2.4.2": {
"file": "commerce/MDVA-29835_2.3.4-p2.patch"
}
}
}
},
"MDVA-29344": {
"categories": [
"Content"
],
"title": "Fixes the issue where Page Builder gets stuck after copying text from a header element to a text element.",
"packages": {
"magento/module-page-builder": {
">=1.3.0 <=2.0.1": {
"file": "os/MDVA-29344_2.3.5-p1.patch"
}
}
}
},
"MC-35514": {
"categories": [
"Order/Checkout"
],
"title": "Fixes the issue where merchants could not add ordered products to a package from the Admin Create Package page and save the package.",
"packages": {
"magento/magento2-base": {
">=2.4.0 <2.4.1": {
"file": "os/MC-35514_2.4.0.patch"
}
}
}
},
"MC-35984": {
"categories": [
"Order/Checkout"
],
"title": "Fixes the issue where merchants could not interact with any page elements on the Returns page after creating a shipping label for a Return Merchandise Authorization (RMA).",
"packages": {
"magento/magento2-ee-base": {
">=2.4.0 <2.4.1": {
"file": "commerce/MC-35984_2.4.0.patch"
}
}
}
},
"MDVA-30195": {
"categories": [
"Cron"
],
"title": "Fixes the issue where cron jobs fail if database name is too long, resulting in categories not being updated on the frontend.",
"packages": {
"magento/magento2-base": {
">=2.3.1 <=2.3.4-p2": {
"file": "os/MDVA-30195_2.3.4-p2.patch"
}
}
}
},
"MDVA-30106": {
"categories": [
"Order/Checkout",
"Payments"
],
"title": "Fixes the issue where during checkout, payments are not loaded with \u201cCannot read property \u2018length\u2019 of null \u201d error in JS console.",
"packages": {
"magento/magento2-base": {
"^2.3.0": {
"file": "os/MDVA-30106_2.3.4.patch"
}
}
}
},
"MDVA-28656": {
"categories": [
"Order/Checkout"
],
"title": "Fixes the issue where if an order was placed with no payment information required (for example, with 100% discount) and an invoice was created for the order, the order status changes to Closed instead of Complete.",
"packages": {
"magento/magento2-base": {
">=2.3.1 <2.3.6 || >=2.4.0 <2.4.1": {
"file": "os/MDVA-28656_2.3.5-p1.patch"
},
"2.3.6": {
"file": "os/MDVA-36390_2.3.6.patch"
}
}
}
},
"MDVA-30209": {
"categories": [
"Customer"
],
"title": "Fixes the issue where the customer group was changed to default if customer updated their account information.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <=2.3.3-p1": {
"file": "os/MDVA-30209_2.3.0.patch"
}
}
}
},
"MDVA-30123": {
"categories": [
"GraphQL"
],
"title": "Fixes the issue where attribute option labels are not translated correctly for GraphQL queries.",
"packages": {
"magento/magento2-base": {
">=2.3.4 <2.3.6 || >=2.4.0 <2.4.1": {
"file": "os/MDVA-30123_2.3.4.patch"
}
}
}
},
"MDVA-29996": {
"categories": [
"Catalog/Product"
],
"title": "Fixes the issue where after enabling category permission, the category page is not getting cached by Full Page Cache.",
"packages": {
"magento/magento2-ee-base": {
">=2.3.3 <2.4.2": {
"file": "commerce/MDVA-29996_2.3.3.patch"
}
}
}
},
"MDVA-30164": {
"categories": [
"Admin"
],
"title": "Fixes the issue where customers records cannot be exported from the Customers grid, if custom customer attributes exist.",
"packages": {
"magento/magento2-base": {
">=2.3.1 <2.4.2": {
"file": "os/MDVA-30164_2.3.2.patch"
}
}
}
},
"MDVA-30444": {
"categories": [
"GraphQL",
"Emails"
],
"title": "Fixes the issue where no confirmation email is sent for orders placed using GraphQL.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.4.1": {
"file": "os/MDVA-30444_2.3.5-p1.patch"
}
}
}
},
"MDVA-30490": {
"categories": [
"Catalog/Product"
],
"title": "Fixes the issue where products comparison throws the 500 error page, if one of the products has an empty short description.",
"packages": {
"magento/magento2-base": {
">=2.3.4 <=2.3.5-p2": {
"file": "os/MDVA-30490_2.3.5-p2.patch"
}
}
}
},
"MDVA-30232": {
"categories": [
"Order/Checkout"
],
"title": "Fixes the issue where it is not possible to re-order if the original order contains a gift card.",
"packages": {
"magento/magento2-base": {
">=2.3.1 <2.4.1": {
"file": "os/MDVA-30232_2.3.5-p1.patch"
}
}
}
},
"MDVA-29965": {
"categories": [
"Shopping Cart"
],
"title": "Fixes the issue where customers get Invalid Form Key error when adding a product to the cart.",
"packages": {
"magento/magento2-base": {
">=2.3.3 <2.4.0": {
"file": "os/MDVA-29965_2.3.5-p1.patch"
}
}
}
},
"MDVA-30008": {
"categories": [
"B2B"
],
"title": "Fixes the B2B issue where it is not possible to place orders through Admin API for a product which is in a public catalog.",
"packages": {
"magento/magento2-b2b-base": {
">=1.1.1 <1.2.2": {
"file": "commerce/MDVA-30008_2.3.3.patch"
}
}
}
},
"MDVA-22469": {
"categories": [
"Content"
],
"title": "Fixes the issue where after upgrading to Magento 2.3.3, Page Builder is not working in the Admin panel and some JS and CSS files are not loading.",
"packages": {
"magento/magento2-base": {
">=2.3.2-p2 <=2.3.3-p1": {
"file": "os/MDVA-22469_2.3.3.patch"
}
},
"magento/module-page-builder": {
">=1.0.3 <=1.1.1": {
"file": "os/MDVA-22469_1.1.0.patch"
}
}
}
},
"MDVA-28191": {
"categories": [
"Payments",
"Admin"
],
"title": "Fixes the issue where no payment methods are loaded during order creation via Magento Admin panel.",
"packages": {
"magento/magento2-base": {
">=2.3.3 <2.4.2": {
"file": "os/MDVA-28191_2.3.5-p1.patch"
}
}
}
},
"MDVA-29959": {
"categories": [
"B2B"
],
"title": "Fixes the issue where restricted admin user with 'Companies' permissions is not allowed to delete company account.",
"packages": {
"magento/magento2-b2b-base": {
">=1.1.0 <=1.1.3-p1": {
"file": "commerce/MDVA-29959_2.3.3.patch"
}
}
}
},
"MDVA-30265": {
"categories": [
"Order/Checkout",
"Shipping"
],
"title": "Fixes the issue where shipment tracking link stops working after Invoice creation.",
"packages": {
"magento/magento2-base": {
">=2.3.3 <2.4.2": {
"file": "os/MDVA-30265_2.3.3.patch"
}
}
}
},
"MDVA-28409": {
"categories": [
"Cron",
"Performance"
],
"title": "Fixes the issue where the 'sales_clean_quotes' cron job fails with out-of-memory error when the number of expired quotes in the database is huge.",
"packages": {
"magento/magento2-base": {
">=2.3.4 <2.3.6 || 2.4.0": {
"file": "os/MDVA-28409_2.3.4.patch"
}
}
}
},
"MDVA-30593": {
"categories": [
"Shopping Cart"
],
"title": "Fixes the issue where quotes, that expired according to the Quote Lifetime setting, are not cleaned up.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.3.4": {
"file": "os/MDVA-30593_2.3.3.patch"
}
}
}
},
"MDVA-30107": {
"categories": [
"Other"
],
"title": "Fixes the issue where store switcher doesn't work as expected if different base URLs are used for store views.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.3.5": {
"file": "os/MDVA-30107_2.3.3.patch"
},
">=2.3.5 <2.3.6": {
"file": "os/MDVA-30623_2.3.5-p2.patch"
}
}
}
},
"MDVA-28763": {
"categories": [
"Web API"
],
"title": "Fixes the issue where product image is getting duplicated after updating product information using REST API more than once.",
"packages": {
"magento/magento2-base": {
">=2.3.2 <2.3.4": {
"file": "os/MDVA-28763_2.3.3.patch",
"replaced-with": "MDVA-28763-V2"
}
}
}
},
"MDVA-28763-V2": {
"categories": [
"Web API"
],
"title": "Fixes the issue where product image is getting duplicated after updating product information using REST API more than once.",
"packages": {
"magento/magento2-base": {
">=2.3.2 <2.3.4": {
"file": "os/MDVA-28763_2.3.3-p1_v3.patch"
}
}
}
},
"MDVA-30284": {
"categories": [
"Catalog Search"
],
"title": "Fixes the issue where Catalog Search indexer fails due to the following Elasticsearch error: `limit of total fields in index has been exceeded`.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.4.2": {
"file": "os/MDVA-30284_2.3.5-p2.patch"
}
}
}
},
"MDVA-29042": {
"categories": [
"B2B"
],
"title": "Fixes the issue where Catalog permissions were changed to `Allow` automatically after new product was added to the shared catalog.",
"packages": {
"magento/magento2-b2b-base": {
">=1.1.3 <=1.1.4-p2": {
"file": "commerce/MDVA-29042_2.3.4.patch"
}
}
}
},
"MDVA-30428": {
"categories": [
"Inventory",
"Customer"
],
"title": "Fixes the issue where customers cannot add a product to wishlist if this product is assigned to a custom inventory source.",
"packages": {
"magento/magento2-base": {
">=2.3.3 <2.3.4": {
"file": "os/MDVA-30445_2.3.3.patch"
},
">=2.3.4 <2.3.5": {
"file": "os/MDVA-31024_2.3.4-p2.patch"
},
">=2.3.5 <2.3.6 || >=2.4.0 <2.4.1": {
"file": "os/MDVA-30428_2.3.5-p1.patch"
}
},
"magento/inventory-metapackage": {
">=1.2.0 <1.2.1": {
"file": "os/MDVA-30428_1.1.5.patch"
}
},
"magento/inventory-composer-metapackage": {
">=1.1.3 <1.1.4": {
"file": "os/MDVA-30445_1.1.3.patch"
},
">=1.1.4 <1.1.5": {
"file": "os/MDVA-31024_1.1.4.patch"
},
">=1.1.5 <1.1.6": {
"file": "os/MDVA-30428_1.1.5.patch"
}
}
}
},
"MDVA-28661": {
"categories": [
"B2B"
],
"title": "Fixes the issue where an error is thrown in the `Company Users` company account section after company admin is changed.",
"packages": {
"magento/magento2-b2b-base": {
">=1.1.0 <1.2.2": {
"file": "commerce/MDVA-28661_2.3.5-p1.patch"
}
}
}
},
"MDVA-28993": {
"categories": [
"Catalog Search"
],
"title": "Implements the \"Minimum should match\" functionality and partial search for Elasticsearch engine. Solves issues with hyphens in search queries.",
"packages": {
"magento/magento2-base": {
">=2.3.4 <2.3.6": {
"file": "os/MDVA-28993_2.3.4.patch"
},
">=2.3.6 <2.4.0": {
"file": "os/MDVA-42247_2.3.6-p1.patch"
}
}
}
},
"MDVA-30102": {
"categories": [
"Cache"
],
"title": "Fixes the issue where Redis cache grows up quickly since layout caches don't have TTL.",
"packages": {
"magento/magento2-base": {
">=2.3.2 <2.4.2": {
"file": "os/MDVA-30102_2.3.5.patch"
}
}
}
},
"MDVA-30599": {
"categories": [
"Web API"
],
"title": "Fixes the issue where guest quotes created using API are incorrectly marked as quotes for logged in customers.",
"packages": {
"magento/magento2-base": {
">=2.3.3 <2.3.4": {
"file": "os/MDVA-34567_2.3.3-p1_v1.patch"
},
">=2.3.4 <2.4.2": {
"file": "os/MDVA-30599_2.3.5-p2.patch"
}
}
}
},
"MDVA-29446": {
"categories": [
"Order/Checkout",
"Shipping"
],
"title": "Fixes the issue where the price of not applicable shipping method is shown as zero during checkout.",
"packages": {
"magento/magento2-base": {
">=2.3.3 <=2.3.7-p3 || >=2.4.0 <2.4.2": {
"file": "os/MDVA-29446_2.3.4.patch"
}
}
}
},
"MDVA-30357": {
"categories": [
"Cron"
],
"title": "Fixes the issue with wrong image URLs are created when generating a sitemap by cron.",
"packages": {
"magento/magento2-base": {
">=2.3.2 <2.3.5": {
"file": "os/MDVA-30357_2.3.3.patch",
"require": [
"MCLOUD-3025"
]
},
">=2.3.5 <=2.4.0": {
"file": "os/MDVA-30357_2.3.5.patch"
}
}
}
},
"MDVA-30565": {
"categories": [
"Order/Checkout",
"Shopping Cart"
],
"title": "Fixes the issue where \"No such entity with cartid = 0\" error is displayed for guest customer on storefront checkout if persistent shopping cart is enabled.",
"packages": {
"magento/magento2-base": {
">=2.3.2 <=2.3.3-p1": {
"file": "os/MDVA-30565_2.3.3-p1.patch"
},
">=2.3.4 <=2.3.4-p2": {
"file": "os/MDVA-38531_2.3.4-p2.patch"
},
">=2.3.6 <2.4.0 || >=2.4.1 <2.4.2": {
"file": "os/MDVA-35423_2.4.1.patch"
}
}
}
},
"MDVA-29787": {
"categories": [
"Catalog/Product"
],
"title": "Fixes the issue where target rule for related products does not work when 'is one of' condition is used to define products to be displayed.",
"packages": {
"magento/magento2-ee-base": {
">=2.3.0 <2.4.2": {
"file": "commerce/MDVA-29787_2.3.3.patch"
}
}
}
},
"MDVA-30977": {
"categories": [
"Catalog/Product"
],
"title": "Fixes the issue with random products missing from categories after reindex.",
"packages": {
"magento/magento2-base": {
">=2.3.4 <2.3.5": {
"file": "os/MDVA-30977_2.3.4.patch",
"replaced-with": "MDVA-30977-V2"
},
">=2.3.5 <2.4.0": {
"file": "os/MDVA-30977_2.3.5-p1.patch",
"replaced-with": "MDVA-30977-V2"
}
},
"magento/inventory-composer-metapackage": {
">=1.1.4 <1.2.0": {
"file": "os/MDVA-30977_1.1.5-p1.patch",
"replaced-with": "MDVA-30977-V2"
}
}
}
},
"MDVA-30977-V2": {
"categories": [
"Catalog/Product"
],
"title": "Fixes the issue with random products missing from categories after reindex.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.3.3": {
"file": "os/MDVA-28682_2.3.0.patch"
},
">=2.3.3 <2.3.4": {
"file": "os/MDVA-28682_2.3.3.patch"
},
">=2.3.4 <2.3.5": {
"file": "os/MDVA-30977_2.3.4.patch"
},
">=2.3.5 <2.3.7": {
"file": "os/MDVA-30977_2.3.5-p1_v4.patch"
},
">=2.3.7 <=2.3.7-p2": {
"file": "os/MDVA-39190_2.3.7.patch"
},
">=2.4.0 <2.4.2": {
"file": "os/MDVA-33068_2.4.0.patch"
}
},
"magento/inventory-composer-metapackage": {
">=1.1.4 <1.1.7": {
"file": "os/MDVA-30977_1.1.5-p1_v4.patch"
},
"1.1.7": {
"file": "os/MDVA-39190_1.1.7.patch"
}
},
"magento/inventory-metapackage": {
">=1.2.0 <1.2.2": {
"file": "os/MDVA-33068_1.2.0.patch"
}
}
}
},
"MDVA-28202": {
"categories": [
"Catalog Search",
"Inventory"
],
"title": "Fixes the issue where Layered Navigation doesn't filter configurable products correctly when MSI is used.",
"packages": {
"magento/magento2-base": {
">=2.3.4 <2.4.2": {
"file": "os/MDVA-28202_2.3.5-p1.patch"
}
},
"magento/inventory-metapackage": {
">=1.2.0 <1.2.2": {
"file": "os/MDVA-28202_1.1.5-p1.patch"
}
},
"magento/inventory-composer-metapackage": {
">=1.1.4 <1.2.0": {
"file": "os/MDVA-28202_1.1.5-p1.patch"
}
}
}
},
"MDVA-28300": {
"categories": [
"GraphQL"
],
"title": "Fixes the issue where GraphQL request doesn't reflect the price changes from catalog price rules.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.3.4": {
"file": "os/MDVA-28300_2.3.5-p1.patch"
},
">=2.3.4 <2.3.6": {
"file": "os/MDVA-28300_2.3.5-p1.patch",
"replaced-with": "MDVA-33975"
}
}
}
},
"MDVA-31006": {
"categories": [
"Payments",
"Order/Checkout"
],
"title": "Fixes the issue where duplicated orders appear after placing an order using Paypal Express payment.",
"packages": {
"magento/magento2-base": {
"2.3.0 || 2.3.1": {
"file": "os/MDVA-31006_2.3.1.patch"
},
">=2.3.2 <2.3.3": {
"file": "os/MDVA-30730_2.3.2-p2.patch"
},
">=2.3.3 <2.4.2": {
"file": "os/MDVA-31006_2.3.5-p2.patch"
}
}
}
},
"MDVA-30972": {
"categories": [
"Web API"
],
"title": "Fixes the issue where custom order status was changed to Processing after partial shipment creation using WebApi.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.4.2": {
"file": "os/MDVA-30972_2.3.5-p2.patch"
}
}
}
},
"MDVA-30594": {
"categories": [
"Order/Checkout",
"Price/Tax"
],
"title": "Fixes the issue where an order with multiple addresses could not be saved during checkout when FPT is configured.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.4.2": {
"file": "os/MDVA-30594_2.3.3.patch"
}
}
}
},
"MDVA-29148": {
"categories": [
"Web API"
],
"title": "Fixes the issue when creating a product via an API call, the product custom attribute of \"\\Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend\" (like Multiselect) type does not use its default value if no value was provided in the payload.",
"packages": {
"magento/magento2-base": {
">=2.3.0 <2.4.2": {
"file": "os/MDVA-29148_2.3.3-p1.patch"
}
}
}
},
"MDVA-30837": {
"categories": [
"Shipping",
"Price/Tax"
],
"title": "Added a configuration setting \"Include Tax to Amount\": Yes/No in Free Shipping method configuration. When \"Include Tax to Amount\" is set to Yes Minimum Order Amount is calculated as = Subtotal + Tax. When \"Include Tax to Amount\" is set to No Minimum Order Amount is calculated as = Subtotal",
"packages": {
"magento/magento2-base": {
">=2.3.1 <2.3.5": {
"file": "os/MDVA-30837_2.3.4-p2.patch"
},
">=2.3.5 <2.3.8": {
"file": "os/MDVA-43787_2.3.5-p2.patch"
}
}
}
},
"MDVA-25028": {
"categories": [
"Payments",
"Order/Checkout"
],
"title": "Fixes the issue when orders that are placed using PayPal Payflow Pro are not set to Suspected Fraud status when fraud filters are triggered.",
"packages": {
"magento/magento2-base": {
">=2.3.2 <2.3.3": {
"file": "os/MDVA-25028_2.3.2.patch",
"require": [
"MDVA-31006"
]
},
">=2.3.5 <=2.3.5-p2": {
"file": "os/MDVA-31282_2.3.5-p2.patch"
},
">=2.3.6 <=2.4.2-p1": {
"file": "os/MDVA-37751_2.4.1.patch"
}
}
}
},
"MDVA-31224": {
"categories": [
"Performance"
],
"title": "Improves the performance of the `catalog_product_price` re-index operation for bundle products.",
"packages": {
"magento/magento2-base": {
">=2.3.3 <2.3.5": {
"file": "os/MDVA-31224_2.3.3.patch"
}
}
}
},
"MDVA-31321": {
"categories": [
"Catalog Search"
],
"title": "Fixes a blank page (error) when \"Show All\" is selected. Elasticsearch returns large list of product ids. In this scenario the order by clause gets converted to an incorrect SQL format.",
"packages": {
"magento/magento2-base": {
">=2.3.2 <2.3.3 || 2.3.3-p1": {
"file": "os/MDVA-31321_2.3.2.patch"
},
"2.3.3": {
"file": "os/MDVA-31321_2.3.3.patch",
"require": [
"MAGECLOUD-4847"
]
},
">=2.3.4 <2.3.5": {
"file": "os/MDVA-29968_2.3.4-p2.patch"
}
}
}
},
"MDVA-30815": {
"categories": [
"Catalog Search"
],
"title": "Fixes the issue where when you changed how many search results should be displayed on the search results page, Magento displayed a blank page. Elasticsearch now correctly displays results from category pages when you change the number of search results viewed per page.",
"packages": {
"magento/magento2-base": {
">=2.3.2 <2.3.3": {
"file": "os/MDVA-24444_2.3.2-p2.patch",
"require": [
"MCLOUD-5684",
"MDVA-31321"
]