Skip to content

Commit 53498e1

Browse files
authored
Merge branch '2.4-develop' into fallback-to-storelabels-customer-attributes
2 parents 8848c6a + 1116437 commit 53498e1

File tree

227 files changed

+660
-17320
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+660
-17320
lines changed

app/code/Magento/Backend/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Before disabling or uninstalling this module, note that the following modules de
1616
- Magento_ReleaseNotification
1717
- Magento_Search
1818
- Magento_Security
19-
- Magento_Signifyd
2019
- Magento_Swatches
2120
- Magento_Ui
2221
- Magento_User
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
9+
<entities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataProfileSchema.xsd">
11+
<entity name="Enable3DSecureBraintree">
12+
<data key="path">payment/braintree/verify_3dsecure</data>
13+
<data key="value">1</data>
14+
</entity>
15+
<entity name="Disable3DSecureBraintree">
16+
<data key="path">payment/braintree/verify_3dsecure</data>
17+
<data key="value">0</data>
18+
</entity>
19+
<entity name="DisableVaultBraintree">
20+
<data key="path">payment/braintree_cc_vault/active</data>
21+
<data key="value">0</data>
22+
</entity>
23+
</entities>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
-->
7+
8+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
10+
<actionGroup name="AssertStorefrontProductImageAppearsOnProductPagePreviewActionGroup">
11+
<annotations>
12+
<description>Validate that the Product Image is present on preview and correct on frontend product page.</description>
13+
</annotations>
14+
<arguments>
15+
<argument name="productImage" type="string" defaultValue="{{MagentoLogo.file}}"/>
16+
</arguments>
17+
18+
<waitForElementNotVisible selector="{{StorefrontProductMediaSection.gallerySpinner}}" stepKey="waitGallerySpinnerDisappear"/>
19+
<seeElement selector="{{StorefrontProductMediaSection.gallery}}" stepKey="seeProductGallery"/>
20+
<seeElement selector="{{StorefrontProductMediaSection.productImageActive(productImage)}}" stepKey="seeCorrectProductImage"/>
21+
</actionGroup>
22+
</actionGroups>

app/code/Magento/Checkout/Test/Mftf/ActionGroup/PlaceOrderWithLoggedUserActionGroup.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
<argument name="shippingMethod" defaultValue="" type="string"/>
1818
</arguments>
1919

20+
<waitForLoadingMaskToDisappear stepKey="waitForCartTotalsLoaded"/>
21+
<waitForElementVisible selector="{{CheckoutCartSummarySection.orderTotal}}" stepKey="waitForCartGrandTotalVisible"/>
2022
<waitForElementVisible selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="waitProceedToCheckout"/>
2123
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="clickProceedToCheckout"/>
2224
<click selector="{{CheckoutShippingMethodsSection.checkShippingMethodByName('shippingMethod')}}" stepKey="selectShippingMethod"/>
Lines changed: 66 additions & 70 deletions
Large diffs are not rendered by default.

app/code/Magento/ConfigurableProduct/Test/Mftf/Test/StorefrontGalleryConfigurableProductWithVisualSwatchAttributePrependMediaTest.xml

Lines changed: 290 additions & 0 deletions
Large diffs are not rendered by default.

app/code/Magento/InstantPurchase/Test/Mftf/Test/StorefrontInstantPurchaseFunctionalityNegativeScenarioTest.xml

Lines changed: 228 additions & 0 deletions
Large diffs are not rendered by default.

app/code/Magento/Paypal/Block/Express/InContext/Minicart/SmartButton.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ class SmartButton extends Template implements ShortcutInterface
2727
{
2828
private const ALIAS_ELEMENT_INDEX = 'alias';
2929

30+
const PAYPAL_BUTTON_ID = 'paypal-express-in-context-checkout-main';
31+
3032
/**
3133
* @var Config
3234
*/

app/code/Magento/Paypal/view/frontend/templates/express/in-context/component.phtml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
use Magento\Paypal\Block\Express\InContext\Minicart\Button;
6+
use Magento\Paypal\Block\Express\InContext\Minicart\SmartButton;
77

88
/** @var \Magento\Paypal\Block\Express\InContext\Component $block */
99

1010
$configuration = [
11-
'id' => Button::PAYPAL_BUTTON_ID,
11+
'id' => SmartButton::PAYPAL_BUTTON_ID,
1212
'path' => $block->getUrl(
1313
'paypal/express/gettoken',
1414
[
@@ -21,17 +21,18 @@ $configuration = [
2121
'locale' => $block->getLocale(),
2222
'environment' => $block->getEnvironment(),
2323
'button' => [
24-
Button::PAYPAL_BUTTON_ID,
24+
SmartButton::PAYPAL_BUTTON_ID,
2525
]
2626
]
2727
];
2828

2929
?>
30-
<div style="display: none;" id="<?= /* @noEscape */ Button::PAYPAL_BUTTON_ID ?>"></div>
30+
<div style="display: none;" id="<?= /* @noEscape */ SmartButton::PAYPAL_BUTTON_ID ?>"></div>
3131
<script type="text/x-magento-init">
3232
{
3333
"*": {
34-
"Magento_Paypal/js/in-context/express-checkout": <?= /* @noEscape */ $this->helper(\Magento\Framework\Json\Helper\Data::class)->jsonEncode($configuration) ?>
34+
"Magento_Paypal/js/in-context/express-checkout":
35+
<?= /* @noEscape */ $this->helper(\Magento\Framework\Json\Helper\Data::class)->jsonEncode($configuration) ?>
3536
}
3637
}
3738
</script>

app/code/Magento/ProductVideo/Test/Mftf/Data/ProductVideoData.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,9 @@
1313
<data key="videoTitle">Arctic Monkeys - Do I Wanna Know? (Official Video)</data>
1414
<data key="videoShortTitle">Arctic Monkeys</data>
1515
</entity>
16+
<entity name="VimeoProductVideo" type="product_video">
17+
<data key="videoUrl">https://vimeo.com/76979871</data>
18+
<data key="videoTitle">The New Vimeo Player (You Know, For Videos)</data>
19+
<data key="videoShortTitle">The New Vimeo Player</data>
20+
</entity>
1621
</entities>

app/code/Magento/Signifyd/Api/CaseCreationServiceInterface.php

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

app/code/Magento/Signifyd/Api/CaseManagementInterface.php

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

app/code/Magento/Signifyd/Api/CaseRepositoryInterface.php

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

0 commit comments

Comments
 (0)