Skip to content

Commit 2666464

Browse files
authored
Merge branch 'magento:develop' into patches-json-format
2 parents ec8244c + 853e57e commit 2666464

File tree

9 files changed

+32
-159
lines changed

9 files changed

+32
-159
lines changed

.travis.yml

Lines changed: 0 additions & 96 deletions
This file was deleted.

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/magento-cloud-patches",
33
"description": "Provides critical fixes for Magento 2 Enterprise Edition",
44
"type": "magento2-component",
5-
"version": "1.0.17",
5+
"version": "1.0.19",
66
"license": "OSL-3.0",
77
"repositories": {
88
"repo.magento.com": {
@@ -15,12 +15,12 @@
1515
"ext-json": "*",
1616
"composer/composer": "@stable",
1717
"composer/semver": "@stable",
18-
"symfony/config": "^3.3||^4.4||^5.1",
19-
"symfony/console": "^2.6||^4.0||^5.1",
20-
"symfony/dependency-injection": "^3.3||^4.3||^5.1",
21-
"symfony/process": "^2.1||^4.1||^5.1",
22-
"symfony/proxy-manager-bridge": "^3.3||^4.3||^5.1",
23-
"symfony/yaml": "^3.3||^4.0||^5.1",
18+
"symfony/config": "^3.3||^4.4||^5.0",
19+
"symfony/console": "^2.6||^4.0||^5.0",
20+
"symfony/dependency-injection": "^3.3||^4.3||^5.0",
21+
"symfony/process": "^2.1||^4.1||^5.0",
22+
"symfony/proxy-manager-bridge": "^3.3||^4.3||^5.0",
23+
"symfony/yaml": "^3.3||^4.0||^5.0",
2424
"monolog/monolog": "^1.25||^2.3",
2525
"magento/quality-patches": "^1.1.0"
2626
},

patches.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,9 @@
345345
"paypal/module-braintree-core": {
346346
"Fix Braintree Settlement report error": {
347347
"4.1.0": "BUNDLE-2683__braintree_settlement_report_fix__4.1.0.patch"
348+
},
349+
"Fix creating orders when Braintree is enabled": {
350+
"4.4.0": "BUNDLE-3137__braintree_create_order_fix__2.4.5.patch"
348351
}
349352
},
350353
"magento/magento2-b2b-base": {
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
diff -Nuar a/vendor/paypal/module-braintree-core/Block/Form.php b/vendor/paypal/module-braintree-core/Block/Form.php
2+
index 4bc1bdf1..70559bbe 100755
3+
--- a/vendor/paypal/module-braintree-core/Block/Form.php
4+
+++ b/vendor/paypal/module-braintree-core/Block/Form.php
5+
@@ -66,6 +66,7 @@ public function __construct(
6+
GatewayConfig $gatewayConfig,
7+
CcType $ccType,
8+
LoggerInterface $logger,
9+
+ Data $paymentDataHelper,
10+
array $data = []
11+
) {
12+
parent::__construct($context, $paymentConfig, $data);
13+
@@ -74,6 +75,7 @@ public function __construct(
14+
$this->gatewayConfig = $gatewayConfig;
15+
$this->ccType = $ccType;
16+
$this->logger = $logger;
17+
+ $this->paymentDataHelper = $paymentDataHelper;
18+
}
19+
20+
/**

src/Test/Functional/Acceptance/AcceptanceCest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ protected function patchesDataProvider(): array
5050
{
5151
return [
5252
['templateVersion' => '2.4.4'],
53+
['templateVersion' => '2.4.4', 'magentoVersion' => '2.4.4-p1'],
54+
['templateVersion' => '2.4.5', 'magentoVersion' => '2.4.5'],
5355
];
5456
}
5557
}

tests/travis/functional-ce.sh

Lines changed: 0 additions & 22 deletions
This file was deleted.

tests/travis/functional-ee.sh

Lines changed: 0 additions & 22 deletions
This file was deleted.

tests/travis/static-unit.sh

Lines changed: 0 additions & 11 deletions
This file was deleted.

travis.php.ini

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)