File tree Expand file tree Collapse file tree 6 files changed +65
-2
lines changed
src/Test/Functional/Acceptance Expand file tree Collapse file tree 6 files changed +65
-2
lines changed Original file line number Diff line number Diff line change 22 "name" : " magento/magento-cloud-patches" ,
33 "description" : " Provides critical fixes for Magento 2 Enterprise Edition" ,
44 "type" : " magento2-component" ,
5- "version" : " 1.0.11 " ,
5+ "version" : " 1.0.12 " ,
66 "license" : " OSL-3.0" ,
77 "require" : {
88 "php" : " ^7.0" ,
Original file line number Diff line number Diff line change 368368 },
369369 "Fixes issue with PayPal Express where previously placed order price is displayed" : {
370370 "2.3.7-p1" : " MC-42674__paypal_checkout__2.3.7-p1.patch"
371+ },
372+ "Raise rate limits" : {
373+ "2.3.7-p1" : " MC-43048__set_rate_limits__2.3.7-p1.patch" ,
374+ "2.4.3" : " MC-43048__set_rate_limits__2.4.3.patch"
371375 }
372376 }
373377}
Original file line number Diff line number Diff line change 1+ diff --git a/app/etc/di.xml b/app/etc/di.xml
2+ index ace043beb62..7751604ea1d 100644
3+ --- a/app/etc/di.xml
4+ +++ b/app/etc/di.xml
5+ @@ -1896,12 +1896,12 @@
6+ </type>
7+ <type name="Magento\Framework\Webapi\Validator\EntityArrayValidator">
8+ <arguments>
9+ - <argument name="complexArrayItemLimit" xsi:type="number">20</argument>
10+ + <argument name="complexArrayItemLimit" xsi:type="number">999999</argument>
11+ </arguments>
12+ </type>
13+ <type name="Magento\Framework\Webapi\Validator\SearchCriteriaValidator">
14+ <arguments>
15+ - <argument name="maximumPageSize" xsi:type="number">300</argument>
16+ + <argument name="maximumPageSize" xsi:type="number">999999</argument>
17+ </arguments>
18+ </type>
19+ <preference for="Magento\Framework\GraphQl\Query\Resolver\Argument\ValidatorInterface" type="Magento\Framework\GraphQl\Query\Resolver\Argument\Validator\CompositeValidator"/>
20+ @@ -1914,7 +1914,7 @@
21+ </type>
22+ <type name="Magento\Framework\GraphQl\Query\Resolver\Argument\Validator\SearchCriteriaValidator">
23+ <arguments>
24+ - <argument name="maxPageSize" xsi:type="number">300</argument>
25+ + <argument name="maxPageSize" xsi:type="number">999999</argument>
26+ </arguments>
27+ </type>
28+ <type name="Magento\Framework\Webapi\ServiceInputProcessor">
Original file line number Diff line number Diff line change 1+ diff --git a/app/etc/di.xml b/app/etc/di.xml
2+ index 078fe71913f..6ab3bdfd35c 100644
3+ --- a/app/etc/di.xml
4+ +++ b/app/etc/di.xml
5+ @@ -1946,12 +1946,12 @@
6+ </type>
7+ <type name="Magento\Framework\Webapi\Validator\EntityArrayValidator">
8+ <arguments>
9+ - <argument name="complexArrayItemLimit" xsi:type="number">20</argument>
10+ + <argument name="complexArrayItemLimit" xsi:type="number">999999</argument>
11+ </arguments>
12+ </type>
13+ <type name="Magento\Framework\Webapi\Validator\SearchCriteriaValidator">
14+ <arguments>
15+ - <argument name="maximumPageSize" xsi:type="number">300</argument>
16+ + <argument name="maximumPageSize" xsi:type="number">999999</argument>
17+ </arguments>
18+ </type>
19+ <preference for="Magento\Framework\GraphQl\Query\Resolver\Argument\ValidatorInterface" type="Magento\Framework\GraphQl\Query\Resolver\Argument\Validator\CompositeValidator"/>
20+ @@ -1964,7 +1964,7 @@
21+ </type>
22+ <type name="Magento\Framework\GraphQl\Query\Resolver\Argument\Validator\SearchCriteriaValidator">
23+ <arguments>
24+ - <argument name="maxPageSize" xsi:type="number">300</argument>
25+ + <argument name="maxPageSize" xsi:type="number">999999</argument>
26+ </arguments>
27+ </type>
28+ <type name="Magento\Framework\Webapi\ServiceInputProcessor">
Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ protected function patchesDataProvider(): array
2727 ['templateVersion ' => '2.3.5 ' , 'magentoVersion ' => '2.3.5-p2 ' ],
2828 ['templateVersion ' => '2.3.6 ' , 'magentoVersion ' => '2.3.6 ' ],
2929 ['templateVersion ' => '2.3.6 ' , 'magentoVersion ' => '2.3.6-p1 ' ],
30- ['templateVersion ' => '2.3.6 ' , 'magentoVersion ' => '2.3.7 ' ],
30+ ['templateVersion ' => '2.3.7 ' , 'magentoVersion ' => '2.3.7 ' ],
31+ ['templateVersion ' => '2.3.7 ' , 'magentoVersion ' => '2.3.7-p1 ' ],
3132 ['templateVersion ' => '2.4.0 ' , 'magentoVersion ' => '2.4.0 ' ],
3233 ];
3334 }
Original file line number Diff line number Diff line change @@ -55,6 +55,8 @@ protected function patchesDataProvider(): array
5555 ['templateVersion ' => '2.4.1 ' , 'magentoVersion ' => '2.4.1-p1 ' ],
5656 ['templateVersion ' => '2.4.2 ' , 'magentoVersion ' => '2.4.2 ' ],
5757 ['templateVersion ' => '2.4.2 ' , 'magentoVersion ' => '2.4.2-p1 ' ],
58+ ['templateVersion ' => '2.4.2 ' , 'magentoVersion ' => '2.4.2-p2 ' ],
59+ ['templateVersion ' => '2.4.3 ' , 'magentoVersion ' => '2.4.3 ' ],
5860 ['templateVersion ' => 'master ' ],
5961 ];
6062 }
You can’t perform that action at this time.
0 commit comments